From bc7d5704f970c3854d2aa169de4a1df3b1ce148b Mon Sep 17 00:00:00 2001 From: PYDT <85057800+87owo@users.noreply.github.com> Date: Sat, 22 Jul 2023 00:22:58 +0800 Subject: [PATCH] Add files via upload --- PYAS.py | 23 +++++++++++------------ PYAS_Function.py | 2 +- PYAS_Version.py | 2 +- 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/PYAS.py b/PYAS.py index 8d9293c..f802b5b 100644 --- a/PYAS.py +++ b/PYAS.py @@ -48,7 +48,7 @@ def init_configs(self): self.scan = False self.block_window = True self.pyas_opacity = 0 - self.pyas_version = "2.7.7" + self.pyas_version = "2.7.8" self.ui.Theme_White.setChecked(True) self.pyas = str(sys.argv[0]).replace("\\", "/") self.key = self.pyas_key() @@ -818,10 +818,13 @@ def pe_scan(self,file): pe.close() for entry in pe.DIRECTORY_ENTRY_IMPORT: for func in entry.imports: - fn.append(str(func.name, "utf-8")) - for vfl in function_list: - if len(set(fn) & set(vfl)) / len(set(fn) | set(vfl)) == 1.0: - return True + try: + fn.append(str(func.name, "utf-8")) + except: + pass + if fn in function_list: + print(fn) + return True return False except: return False @@ -1189,16 +1192,13 @@ def protect_system_processes(self): continue elif ":/Windows" in self.p_file or ":/Program" in self.p_file: continue - elif self.high_sensitivity == 1 and self.sign_scan(self.p_file): - if self.protect_process_kill(self.p_name): - self.system_notification(self.text_Translate("無效簽名攔截: ")+self.p_name) elif self.api_scan(self.p_file): if self.protect_process_kill(self.p_name): self.system_notification(self.text_Translate("惡意軟體攔截: ")+self.p_name) elif self.pe_scan(self.p_file): if self.protect_process_kill(self.p_name): self.system_notification(self.text_Translate("可疑檔案攔截: ")+self.p_name) - else: + elif self.sign_scan(self.p_file): self.p_check = self.p_name gc.collect() existing_proc = current_proc @@ -1232,9 +1232,8 @@ def protect_system_file(self,path): if file_type in slist and self.sign_scan(file) and self.api_scan(file): os.remove(file) self.system_notification(self.text_Translate("惡意軟體刪除: ")+file) - elif file_type in alist and self.last_file == file_name: - if self.protect_process_kill(self.p_check): - self.system_notification(self.text_Translate("勒索軟體攔截: ")+self.p_check) + elif self.last_file == file_name and self.protect_process_kill(self.p_check): + self.system_notification(self.text_Translate("勒索軟體攔截: ")+self.p_check) self.last_file = file_name gc.collect() except: diff --git a/PYAS_Function.py b/PYAS_Function.py index ff80ff7..9038198 100644 --- a/PYAS_Function.py +++ b/PYAS_Function.py @@ -1 +1 @@ -function_list = [['LoadLibraryA', 'GetProcAddress', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'GetDC', '?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDXZ', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?widen@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDD@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QBE?AVlocale@2@XZ', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?tie@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_ostream@DU?$char_traits@D@std@@@2@XZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?unshift@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PAD1AAPAD@Z', '?setg@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD00@Z', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAPAD0PAH001@Z', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '?in@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?out@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?eback@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?gptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?pptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?egptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?gbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXH@Z', '?epptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?_Gndec@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '?_Gninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '?_Gnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBE_JXZ', '?pbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXH@Z', '?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '?_Getcat@?$codecvt@DDU_Mbstatet@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?rdbuf@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@XZ', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ', '?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PAD_J@Z', '?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@_JH@Z', '?tellg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@U_Mbstatet@@@2@XZ', '?width@ios_base@std@@QAE_J_J@Z', '?width@ios_base@std@@QBE_JXZ', '?flags@ios_base@std@@QBEHXZ', '?good@ios_base@std@@QBE_NXZ', '?always_noconv@codecvt_base@std@@QBE_NXZ', '??Bid@locale@std@@QAEIXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '??1_Lockit@std@@QAE@XZ', '??0_Lockit@std@@QAE@H@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ', '?uncaught_exception@std@@YA_NXZ', '?_Xout_of_range@std@@YAXPBD@Z', '?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A', '?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z', '?_Xlength_error@std@@YAXPBD@Z', '?_Pnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBE_JXZ', '_CxxThrowException', '__current_exception_context', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', 'memcpy', '__current_exception', 'memset', '_except_handler4_common', 'memmove', '_fseeki64', '__p__commode', 'fsetpos', 'ungetc', 'setvbuf', 'fgetpos', 'fwrite', '_set_fmode', '_get_stream_buffer_pointers', '__stdio_common_vfprintf', 'fgetc', 'fclose', 'fflush', '__acrt_iob_func', 'fputc', 'fread', '_lock_file', '_unlock_file', 'exit', '_exit', '_configure_narrow_argv', '__p___argc', '_initterm_e', '_cexit', '_c_exit', '_register_thread_local_exe_atexit_callback', '_initterm', '_set_app_type', '_get_initial_narrow_environment', '_seh_filter_exe', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_controlfp_s', 'terminate', '_initialize_narrow_environment', '_invalid_parameter_noinfo_noreturn', '__p___argv', 'free', '_set_new_mode', 'malloc', '_callnewh', '__setusermatherr', '_configthreadlocale'], ['GetCurrentProcess', 'FindNextFileA', 'FindClose', 'GetSystemDirectoryA', 'DeleteFileA', 'SetFileAttributesA', 'ExitProcess', 'FreeLibrary', 'CreateEventW', 'WaitForSingleObjectEx', 'FindFirstFileA', 'SetEvent', 'GetConsoleWindow', 'RemoveDirectoryA', 'CreateThread', 'Sleep', 'GetProcAddress', 'CloseHandle', 'LoadLibraryA', 'CreateFileA', 'ResetEvent', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetLastError', 'SetLastError', 'QueryPerformanceFrequency', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileAttributesExW', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadFile', 'ReadConsoleW', 'FlushFileBuffers', 'HeapReAlloc', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'HeapSize', 'CreateFileW', 'WriteConsoleW', 'SetEndOfFile', 'DeviceIoControl', 'RtlUnwind', 'SystemParametersInfoA', 'GetSystemMenu', 'GetWindowRect', 'GetDC', 'ShowWindow', 'SetWindowTextA', 'GetForegroundWindow', 'MoveWindow', 'DrawMenuBar', 'FindWindowA', 'DeleteMenu', 'CryptReleaseContext', 'CryptAcquireContextA', 'CryptGenRandom', 'AllocateAndInitializeSid', 'FreeSid', 'CheckTokenMembership', 'SHGetSpecialFolderPathA', 'PathFileExistsA'], ['_CorExeMain'], ['GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'Sleep', 'GetStdHandle', 'GetTimeZoneInformation', 'GetACP', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetCommandLineA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetDateFormatA', 'GetTimeFormatA', 'GetDriveTypeA', 'SetEnvironmentVariableA', 'HeapReAlloc', 'VirtualAlloc', 'SetCurrentDirectoryA', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'GetCurrentDirectoryA', 'LocalFileTimeToFileTime', 'CreateFileA', 'GetShortPathNameA', 'GetVolumeInformationA', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'SystemTimeToFileTime', 'GetThreadLocale', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'CloseHandle', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpW', 'GetVersionExA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindNextFileA', 'FindClose', 'FreeLibrary', 'InterlockedDecrement', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'lstrcmpiA', 'SetLastError', 'GetLastError', 'InterlockedExchange', 'GetStringTypeExA', 'MultiByteToWideChar', 'CompareStringW', 'WideCharToMultiByte', 'lstrlenA', 'FreeEnvironmentStringsA', 'GetComputerNameA', 'CopyAcceleratorTableA', 'CreateMenu', 'PostThreadMessageA', 'GetTabbedTextExtentA', 'RegisterClipboardFormatA', 'GetSysColorBrush', 'UnregisterClassA', 'LoadCursorA', 'DestroyCursor', 'SetCursorPos', 'SetCapture', 'RedrawWindow', 'InflateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'IsZoomed', 'WindowFromPoint', 'KillTimer', 'SetTimer', 'SetRect', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'SetRectEmpty', 'IsRectEmpty', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'PostQuitMessage', 'IsWindowEnabled', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetWindow', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'ScreenToClient', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetWindowRgn', 'DrawIcon', 'FindWindowA', 'LockWindowUpdate', 'GetDCEx', 'DestroyIcon', 'GetClassLongA', 'GetMenuItemInfoA', 'GetDlgCtrlID', 'IsChild', 'InvalidateRect', 'IsIconic', 'AdjustWindowRectEx', 'ReleaseDC', 'GetDC', 'GetClientRect', 'CopyRect', 'IsWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'UnhookWindowsHookEx', 'ShowWindow', 'UpdateWindow', 'LoadBitmapA', 'CharUpperA', 'SendMessageA', 'SetWindowLongA', 'GetWindowLongA', 'EnableWindow', 'GetForegroundWindow', 'DeleteDC', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetStockObject', 'GetDeviceCaps', 'TextOutA', 'CreatePen', 'CreateSolidBrush', 'CreateDCA', 'GetBkColor', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetViewportOrgEx', 'DPtoLP', 'Rectangle', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'CreateFontIndirectA', 'SetRectRgn', 'CombineRgn', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'StartPage', 'CreateBitmap', 'GetObjectA', 'CreateRectRgn', 'SelectClipRgn', 'DeleteObject', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'PatBlt', 'CreateRectRgnIndirect', 'ExtTextOutA', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetJobA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear'], ['Sleep', 'WaitForSingleObject', 'CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'GetLastError', 'CreateMutexW', 'FreeConsole', 'GetModuleHandleA', 'CloseHandle', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetClipboardViewer'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'GetVersionExA', 'FreeResource', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'ReadConsoleInputA', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'CopyFileW', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetPrivateProfileIntA', 'WriteProfileStringW', 'GetLastError', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetModuleHandleW', 'ExitProcess', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetModuleFileNameA', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA'], ['SetErrorMode', 'LoadLibraryW', 'FlushFileBuffers', 'CloseHandle', 'CreateFileW', 'IsProcessorFeaturePresent', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleW', 'SetStdHandle', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'GetLastError', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapCreate', 'EncodePointer', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'MultiByteToWideChar', 'HeapSize', 'RtlUnwind', 'PostQuitMessage', 'DefWindowProcW', 'DestroyWindow', 'UpdateWindow', 'CreateWindowExW', 'RegisterClassExW', 'DispatchMessageW', 'TranslateMessage', 'TranslateAcceleratorW', 'GetMessageW', 'LoadAcceleratorsW'], ['htonl', 'FindClose', 'FindFirstFileA', 'GetVolumeInformationA', 'WaitForSingleObject', 'CreateMutexA', 'OpenMutexA', 'ReadFile', 'FindNextFileA', 'FreeLibrary', 'GetTempPathA', 'GetSystemDirectoryA', 'GetSystemTime', 'lstrlenA', 'lstrcpynA', 'GetComputerNameA', 'OpenProcess', 'GetVersionExA', 'GetModuleFileNameA', 'LocalFree', 'LocalAlloc', 'GetCurrentProcess', 'GetCurrentThread', 'CreateMutexW', 'SetLastError', 'lstrcpyA', 'GetVersion', 'lstrcatA', 'VirtualFree', 'ReleaseMutex', 'VirtualAlloc', 'OpenMutexW', 'GetModuleHandleA', 'LoadLibraryExA', 'IsBadReadPtr', 'CreateFileW', 'GetEnvironmentVariableW', 'LoadLibraryW', 'MapViewOfFile', 'CreateFileMappingA', 'LoadLibraryA', 'SetFilePointer', 'GetProcAddress', 'CreateThread', 'Sleep', 'CreateFileA', 'WriteFile', 'CloseHandle', 'GetFileTime', 'SetFileTime', 'CreateProcessA', 'BeginUpdateResourceA', 'UpdateResourceA', 'EndUpdateResourceA', 'FindResourceA', 'LoadResource', 'SizeofResource', 'LockResource', 'DeleteFileA', 'GetLastError', 'CopyFileA', 'SetFileAttributesA', 'GetEnvironmentVariableA', 'GetCurrentProcessId', 'GetFileSize', 'UnregisterClassA', 'SetPropA', 'CreateWindowExW', 'DestroyWindow', 'wsprintfA', 'UnregisterClassW', 'RegDeleteValueA', 'RegEnumValueA', 'LookupAccountNameA', 'RegEnumKeyExA', 'LookupAccountSidA', 'IsValidSid', 'AccessCheck', 'OpenProcessToken', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetUserNameW', 'LookupAccountSidW', 'AllocateAndInitializeSid', 'FreeSid', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegSetValueExA', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'InitializeSecurityDescriptor', 'AddAccessAllowedAce', 'InitializeAcl', 'DuplicateTokenEx', 'OpenThreadToken', 'GetSidIdentifierAuthority', 'SetSecurityDescriptorDacl', '_mbschr', '_local_unwind2', 'strcmp', 'wcsncat', 'wcscpy', 'strncmp', '_wcsicmp', '_adjust_fdiv', '_itoa', '_stricmp', 'sscanf', 'strcat', 'memset', 'strstr', 'strncpy', 'memcpy', 'strlen', 'malloc', 'strcpy', 'free', 'strncat', 'memcmp', '_snprintf', '_ftol', 'realloc', '_abnormal_termination', 'wcscmp', 'wcslen', '??3@YAXPAX@Z', '??2@YAPAXI@Z', '_initterm'], ['WSACleanup', 'socket', 'inet_ntoa', 'setsockopt', 'ntohs', 'recvfrom', 'ioctlsocket', 'htons', 'WSAStartup', '__WSAFDIsSet', 'select', 'accept', 'listen', 'bind', 'closesocket', 'WSAGetLastError', 'recv', 'sendto', 'send', 'inet_addr', 'gethostbyname', 'gethostname', 'connect', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_ReplaceIcon', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'InitCommonControlsEx', 'ImageList_Create', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetQueryDataAvailable', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetQueryOptionW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetReadFile', 'InternetConnectW', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'DestroyEnvironmentBlock', 'UnloadUserProfile', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'DuplicateHandle', 'CreateThread', 'WaitForSingleObject', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'IsWow64Process', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleFileNameW', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'SetEndOfFile', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'SetCurrentDirectoryW', 'GetLongPathNameW', 'GetShortPathNameW', 'DeleteFileW', 'FindNextFileW', 'CopyFileExW', 'MoveFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'CopyFileW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'HeapReAlloc', 'HeapSize', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'GetProcessId', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'DecodePointer', 'GetLastError', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCurrentThread', 'CloseHandle', 'GetFullPathNameW', 'EncodePointer', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'WriteConsoleW', 'FindClose', 'SetEnvironmentVariableA', 'AdjustWindowRectEx', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'SetRect', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'MonitorFromRect', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'MessageBoxW', 'DefWindowProcW', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'UnregisterHotKey', 'CheckMenuRadioItem', 'CharLowerBuffW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'SystemParametersInfoW', 'LoadImageW', 'GetClassNameW', 'StrokePath', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'GetDeviceCaps', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'LineTo', 'AngleArc', 'MoveToEx', 'Ellipse', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'GetTextFaceW', 'CreateFontW', 'SetTextColor', 'PolyDraw', 'BeginPath', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'StrokeAndFillPath', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetAce', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'RegCreateKeyExW', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'AddAce', 'SetSecurityDescriptorDacl', 'GetUserNameW', 'InitiateSystemShutdownExW', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHCreateShellItem', 'SHGetDesktopFolder', 'SHGetSpecialFolderLocation', 'SHGetFolderPathW', 'SHFileOperationW', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoSetProxyBlanket', 'CoCreateInstanceEx', 'CoInitializeSecurity', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'SafeArrayAllocDescriptorEx', 'SafeArrayCreateVector', 'RegisterTypeLib', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'VariantCopy', 'VariantClear', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'RegisterTypeLibForUser', 'UnRegisterTypeLibForUser', 'UnRegisterTypeLib', 'CreateDispTypeInfo', 'SysAllocString', 'VariantInit'], ['ImmGetConversionStatus', 'ImmGetConversionListW', 'ImmGetStatusWindowPos', 'ImmEnumRegisterWordA', 'ImmCreateContext', 'GetOpenFileNamePreviewA', 'DrawDibProfileDisplay', 'DrawDibEnd', 'DrawDibDraw', 'DrawDibBegin', 'ICSeqCompressFrameEnd', 'ICCompress', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode'], ['HeapFree', 'RtlUnwind', 'VirtualAlloc', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'LocalFileTimeToFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'WriteFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'InterlockedIncrement', 'FindResourceExA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'InterlockedDecrement', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'MulDiv', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'VirtualProtect', 'SizeofResource', 'ExitProcess', 'GetFileSize', 'GlobalAlloc', 'GlobalFree', 'ReadFile', 'GlobalUnlock', 'GlobalReAlloc', 'SetFilePointer', 'CreateFileA', 'CloseHandle', 'GlobalLock', 'GetLastError', 'FindResourceA', 'LoadResource', 'LockResource', 'LocalAlloc', 'LocalFree', 'lstrlenA', 'lstrcmpiA', 'GetStringTypeExA', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'MultiByteToWideChar', 'GetVersion', 'FreeEnvironmentStringsA', 'InterlockedExchange', 'SetParent', 'SetRect', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'PostQuitMessage', 'ShowOwnedPopups', 'GetSysColorBrush', 'LoadCursorA', 'GetMenuItemInfoA', 'UnregisterClassA', 'GetDCEx', 'SetCapture', 'DestroyIcon', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'SetMenu', 'RedrawWindow', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'BringWindowToTop', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetWindowTextA', 'IsDialogMessageA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'RegisterWindowMessageA', 'GetSystemMenu', 'SendDlgItemMessageA', 'WinHelpA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'TrackPopupMenu', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'GetMenu', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'GetWindow', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'InflateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetWindowThreadProcessId', 'LoadIconA', 'SetCursor', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'LockWindowUpdate', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'ShowWindow', 'UpdateWindow', 'IsWindowEnabled', 'GetDlgItem', 'GetParent', 'PostMessageA', 'GetWindowLongA', 'GetWindowRect', 'SetFocus', 'GetFocus', 'GetAsyncKeyState', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'GetCapture', 'GetActiveWindow', 'SetActiveWindow', 'MapDialogRect', 'SetWindowPos', 'IsChild', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'CreatePatternBrush', 'GetStockObject', 'SetViewportOrgEx', 'CreateSolidBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'PatBlt', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetBkColor', 'EnumFontFamiliesExA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'CreateRectRgn', 'CreateDIBitmap', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'BitBlt', 'DeleteObject', 'CreatePalette', 'SelectPalette', 'RealizePalette', 'SelectClipRgn', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'timeEndPeriod', 'WSAGetOverlappedResult'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__C_specific_handler', '__dllonexit', '__iob_func', '_amsg_exit', '_beginthreadex', '_endthreadex', '_ftime', '_initterm', '_lock', '_onexit', '_setjmp', '_unlock', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'longjmp', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'realloc', 'signal', 'sprintf', 'strcmp', 'strlen', 'strncmp', 'vfprintf'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'GetFileAttributesExW', 'FreeLibrary', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'GetCommandLineA', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'TlsAlloc', 'GetProcessAffinityMask', 'SetLocaleInfoA', 'SetFileTime', 'CompareFileTime', 'SearchPathW', 'GetShortPathNameW', 'GetFullPathNameW', 'MoveFileW', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTickCount', 'GetFileSize', 'CopyFileW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'lstrcpynA', 'lstrcpynW', 'GetDiskFreeSpaceW', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessW', 'lstrcmpiA', 'GetTempFileNameW', 'lstrcatW', 'LoadLibraryA', 'GetModuleHandleA', 'OpenProcess', 'lstrcpyW', 'GetVersionExW', 'GetSystemDirectoryW', 'GetVersion', 'lstrcpyA', 'RemoveDirectoryW', 'lstrcmpA', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GlobalFree', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MulDiv', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW', 'lstrlenW', 'LoadIconW', 'MessageBoxW', 'wsprintfW', 'SetClassWord', 'EnableScrollBar', 'LoadCursorA', 'DrawTextA', 'ToUnicode', 'SendDlgItemMessageW', 'GetMessageTime', 'SetWinEventHook', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'ScreenToClient', 'GetMessagePos', 'CallWindowProcW', 'IsWindowVisible', 'LoadBitmapW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'GetWindowRect', 'AppendMenuW', 'CreatePopupMenu', 'GetSystemMetrics', 'EndDialog', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'SetWindowPos', 'DialogBoxParamW', 'CheckDlgButton', 'CreateWindowExW', 'SystemParametersInfoW', 'RegisterClassW', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharNextA', 'CharUpperW', 'CharPrevW', 'wvsprintfW', 'DispatchMessageW', 'PeekMessageW', 'wsprintfA', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'SendMessageTimeoutW', 'LoadCursorW', 'SetCursor', 'GetWindowLongW', 'GetSysColor', 'CharNextW', 'GetClassInfoW', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'EndPaint', 'FindWindowExW', 'GetStockObject', 'GetStringBitmapA', 'SetBoundsRect', 'FONTOBJ_vGetInfo', 'GetETM', 'FONTOBJ_pfdg', 'GdiEntry4', 'FONTOBJ_pifi', 'SetMetaFileBitsEx', 'AnimatePalette', 'ResetDCA', 'CLIPOBJ_cEnumStart', 'SetBkColor', 'GdiConvertRegion', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectW', 'SetBkMode', 'SetTextColor', 'SelectObject', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegEnumKeyW', 'RegCloseKey', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumValueW', 'SHGetFolderPathW', 'SHGetDiskFreeSpaceA', 'Shell_NotifyIconW', 'SHCreateProcessAsUserW', 'ShellExecuteEx', 'SHFormatDrive', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'SHGetSpecialFolderLocation', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'PathAppendW', 'PathRemoveFileSpecW', 'StrCmpNA', 'StrStrIA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create'], ['WriteConsoleW', 'GetConsoleOutputCP', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoW', 'CreateFileA', 'FreeConsole', 'GetLogicalDrives', 'GetConsoleWindow', 'GetModuleHandleA', 'MultiByteToWideChar', 'WriteConsoleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'HeapAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'GetClassInfoA', 'CallWindowProcA', 'SetWindowLongA', 'CheckDlgButton', 'GetActiveWindow', 'LoadCursorA', 'MessageBoxA', 'wsprintfA', 'GetDlgItemTextA', 'SetWindowTextA', 'GetStockObject', 'DeleteObject', 'SetBkMode', 'SetTextColor', 'CreateFontIndirectA', 'SelectObject', 'GetObjectA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegDeleteKeyA'], ['GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'GetConsoleAliasesLengthW', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'lstrlenA', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['ExitProcess', 'GetNativeSystemInfo', 'FreeLibrary', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'GetLastError', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'Sleep', 'SetConsoleTextAttribute', 'SetConsoleCursorPosition', 'GetStdHandle', 'SetConsoleCursorInfo', 'SetEnvironmentVariableA', 'HeapSize', 'FlushFileBuffers', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetConsoleMode', 'GetNumberOfConsoleInputEvents', 'PeekConsoleInputA', 'ReadConsoleInputA', 'SetConsoleMode', 'MultiByteToWideChar', 'WideCharToMultiByte', 'EncodePointer', 'DecodePointer', 'CreateThread', 'GetCurrentThreadId', 'ExitThread', 'LoadLibraryExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'GetModuleHandleExW', 'AreFileApisANSI', 'WriteFile', 'GetModuleFileNameW', 'DeleteCriticalSection', 'CreateFileW', 'CloseHandle', 'RtlUnwind', 'ReadFile', 'ReadConsoleW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetConsoleCP', 'GetTimeZoneInformation', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetFileType', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'WriteConsoleW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessA', 'GetFileAttributesExW', 'SetStdHandle', 'SetFilePointerEx', 'GetStringTypeW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'SetEndOfFile', 'SendMessageA', 'ShowWindow', 'PlaySoundW'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['GetProcessHeap', 'CreateFileA', 'CloseHandle', 'GetLastError', 'HeapWalk', 'CreateFiber', 'SwitchToFiber', 'CreateActCtxA', 'ActivateActCtx', 'DeactivateActCtx', 'OpenThread', 'GetFileAttributesA', 'FindFirstFileA', 'FindNextFileA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'CreateFileMappingA', 'VirtualAlloc', 'RaiseException', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'SetLastError', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsSetValue', 'FreeLibrary', 'LoadLibraryExW', 'CompareStringW', 'LCMapStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'ExitProcess', 'GetModuleHandleExW', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'HeapReAlloc', 'RtlUnwindEx', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA'], ['SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetVolumePathNameW', 'GetPrivateProfileIntA', 'GetSystemPowerStatus', 'GetCalendarInfoA', 'GetProcessHandleCount', 'GetConsoleAliasExesLengthW', 'LeaveCriticalSection', 'GetFileAttributesA', 'WriteConsoleW', 'GetModuleFileNameW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'DeleteFiber', 'SetLastError', 'InterlockedDecrement', 'HeapSize', 'SetComputerNameA', 'SearchPathA', 'OpenWaitableTimerA', 'LoadLibraryA', 'Process32FirstW', 'GetProcessId', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'GetModuleHandleA', 'FindNextFileW', 'CompareStringA', 'SetFileShortNameA', 'FindAtomW', 'AreFileApisANSI', 'InterlockedIncrement', 'GetProcAddress', 'GetVolumeNameForVolumeMountPointA', 'GetLastError', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'EnterCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsW', 'SelectObject'], ['OpenProcess', 'GetTickCount', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'lstrcmpW', 'lstrlenW', 'SetVolumeMountPointW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'CreateFileW', 'WriteFile', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'lstrlenA', 'GetCommandLineW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetFileSizeEx', 'GetCurrentProcess', 'ReadFile', 'SetFileAttributesW', 'SetFilePointerEx', 'WaitForSingleObject', 'CreateMutexA', 'WaitForMultipleObjects', 'GetCurrentProcessId', 'ExitProcess', 'CreateThread', 'ExitThread', 'SetProcessShutdownParameters', 'GetSystemInfo', 'lstrcmpiW', 'lstrcpyW', 'lstrcatW', 'OpenMutexA', 'MoveFileExW', 'WideCharToMultiByte', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'ReleaseSemaphore', 'CreateSemaphoreA', 'TerminateProcess', 'Sleep', 'GetLastError', 'CloseHandle', 'GetVolumePathNamesForVolumeNameW', 'GetDriveTypeW', 'FindVolumeClose', 'FindNextVolumeW', 'GetLogicalDrives', 'FindFirstVolumeW', 'wsprintfA', 'QueryServiceStatusEx', 'OpenSCManagerA', 'EnumDependentServicesA', 'ControlService', 'CloseServiceHandle', 'CryptAcquireContextW', 'CryptReleaseContext', 'CryptGenRandom', 'OpenServiceA', 'SHEmptyRecycleBinA', 'CommandLineToArgvW', 'ShellExecuteW', 'NetShareEnum', 'NetApiBufferFree', 'RmGetList', 'RmStartSession', 'RmEndSession', 'RmRegisterResources', 'WNetCloseEnum', 'WNetEnumResourceW', 'WNetOpenEnumW', 'WNetGetConnectionW'], ['GetMailslotInfo', 'lstrcmpA', 'lstrlenA', 'OpenSemaphoreW', 'LoadLibraryA', 'LoadLibraryW', 'GetModuleFileNameW', 'GetFirmwareEnvironmentVariableA', 'FindResourceExW', 'EndUpdateResourceW', 'WritePrivateProfileSectionA', 'GetPrivateProfileSectionNamesA', 'GetCurrentDirectoryW', 'CreateDirectoryExW', 'DefineDosDeviceA', 'GetFileAttributesExA', 'DeleteFileW', 'CopyFileW', 'IsBadStringPtrA', 'BuildCommDCBAndTimeoutsW', 'GetNamedPipeInfo', 'GetDefaultCommConfigW', 'OpenJobObjectA', 'SetInformationJobObject', 'AddRefActCtx', 'GetNumaHighestNodeNumber', 'GetNumaProcessorNode', 'GetCalendarInfoW', 'SetCalendarInfoA', 'EnumDateFormatsA', 'GetSystemDefaultLangID', 'GetSystemDefaultLCID', 'PeekConsoleInputA', 'AllocConsole', 'WriteConsoleW', 'SetFilePointerEx', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'GetSystemTimes', 'GetCommState', 'GetFileTime', 'DeviceIoControl', 'LockFileEx', 'GetExitCodeThread', 'TerminateThread', 'FreeEnvironmentStringsW', 'GetProcessTimes', 'HeapUnlock', 'HeapAlloc', 'VirtualQuery', 'VirtualProtect', 'LocalAlloc', 'GlobalUnWire', 'GlobalUnlock', 'CommConfigDialogA', 'GlobalAlloc', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'LCMapStringW', 'GetLocaleInfoW', 'GetCPInfo', 'CloseHandle', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'GetLastError', 'FreeLibrary', 'LoadLibraryExW', 'HeapFree', 'HeapReAlloc', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'GetACP', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetProcessHeap', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'TranslateMDISysAccel', 'GetCaretPos', 'GetWindowDC', 'IsIconic', 'ReplyMessage', 'GetMonitorInfoW', 'ControlService', 'RegQueryValueExW', 'RegQueryValueA', 'RegQueryInfoKeyW', 'RegOpenKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'SetKernelObjectSecurity', 'GetPrivateObjectSecurity', 'GetSecurityDescriptorControl', 'AddAuditAccessAce', 'GetAce', 'MapGenericMask', 'ObjectPrivilegeAuditAlarmA', 'OpenBackupEventLogW', 'ClearEventLogW', 'RegisterServiceCtrlHandlerA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'InterlockedExchange', 'FormatMessageA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['Sleep', 'WaitForSingleObject', 'CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'GetLastError', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'CloseHandle', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ShowWindow', 'SetClipboardViewer'], ['FindCloseChangeNotification', 'CreateDirectoryExA', 'GetFileAttributesExA', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'GetPrivateProfileIntA', 'LoadLibraryW', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetModuleFileNameW', 'GetCPInfoExW', 'GetLastError', 'GetLongPathNameW', 'InterlockedIncrement', 'SetComputerNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'MoveFileA', 'CreateEventW', 'OpenJobObjectW', 'EnumDateFormatsA', 'SetConsoleTitleW', 'LocalSize', 'WriteFileEx', 'LocalFree', 'HeapReAlloc', 'FreeLibrary', 'GetConsoleAliasesLengthW', 'GetProcAddress', 'FindFirstChangeNotificationW', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'Sleep', 'RtlUnwind', 'HeapSize', 'RaiseException', 'ClientToScreen', 'IsTokenRestricted', 'GetOldestEventLogRecord'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'CharUpperBuffW', 'VariantChangeTypeEx', 'RaiseException'], ['CreateDirectoryExA', 'ReadConsoleInputA', 'GetTempPathA', 'GetSystemDirectoryW', 'RemoveDirectoryW', 'OutputDebugStringA', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'GetCurrentProcess', 'RtlCaptureContext', 'InterlockedDecrement', 'SetFileTime', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'SetProcessPriorityBoost', 'EndUpdateResourceA', 'GetModuleHandleW', 'FindFirstVolumeA', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'SetErrorMode', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructA', 'AddConsoleAliasA', 'GetConsoleAliasA', 'FindNextFileA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['GetFileInformationByHandle', 'GetFullPathNameW', 'GetFullPathNameA', 'GetLogicalDriveStringsW', 'SetUnhandledExceptionFilter', 'ConnectNamedPipe', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'DeviceIoControl', 'LeaveCriticalSection', 'OpenMutexW', 'GetCurrentProcess', 'GetCurrentThread', 'TlsAlloc', 'TlsGetValue', 'TlsFree', 'FlushInstructionCache', 'GetSystemInfo', 'GetLocalTime', 'GetVersion', 'GetTickCount', 'GetSystemDirectoryA', 'GetSystemDirectoryW', 'GetWindowsDirectoryW', 'VirtualAlloc', 'VirtualProtect', 'VirtualAllocEx', 'CreateFileMappingW', 'MapViewOfFileEx', 'VirtualLock', 'VirtualUnlock', 'FindResourceExW', 'GetModuleFileNameA', 'GetModuleHandleW', 'LoadResource', 'FindResourceW', 'LoadLibraryA', 'LoadLibraryW', 'GlobalAlloc', 'LocalAlloc', 'MulDiv', 'FileTimeToDosDateTime', 'lstrlenA', 'lstrlenW', 'OpenMutexA', 'OpenSemaphoreA', 'CreateFileMappingA', 'GlobalAddAtomW', 'WritePrivateProfileStringA', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WaitNamedPipeA', 'IsBadWritePtr', 'IsBadCodePtr', 'SystemTimeToFileTime', 'GetConsoleCP', 'GetConsoleOutputCP', 'WriteConsoleA', 'WriteConsoleW', 'GetConsoleScreenBufferInfo', 'IsDebuggerPresent', 'CreateDirectoryA', 'GetLastError', 'GetFileAttributesW', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentThreadId', 'ExitProcess', 'FreeLibrary', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsSetValue', 'GetSystemTimeAsFileTime', 'LoadLibraryExW', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'SetFilePointerEx', 'GetConsoleMode', 'WriteFile', 'FlushFileBuffers', 'GetFileType', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetModuleFileNameW', 'EncodePointer', 'InterlockedFlushSList', 'RtlUnwind', 'RaiseException', 'InitializeSListHead', 'GetCurrentProcessId', 'GetStartupInfoW', 'CompareFileTime', 'ExpandEnvironmentStringsW', 'ExpandEnvironmentStringsA', 'GetFileAttributesA', 'GetDriveTypeW', 'GetDriveTypeA', 'FindFirstFileW', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'CreateFileW', 'CreateFileA', 'SetLastError', 'CreateDirectoryW', 'SetStdHandle', 'GetStdHandle', 'GetProcAddress', 'UnhandledExceptionFilter', 'GetModuleHandleA', 'DecodePointer', 'LoadIconW', 'CreateIconIndirect', 'RegisterWindowMessageA', 'RegisterWindowMessageW', 'AttachThreadInput', 'SetWindowsHookExW', 'GetWindowThreadProcessId', 'FindWindowW', 'EqualRect', 'SetRect', 'MapWindowPoints', 'ScreenToClient', 'MessageBeep', 'MessageBoxW', 'SetPropW', 'RedrawWindow', 'SetForegroundWindow', 'SetActiveWindow', 'CheckMenuItem', 'CreatePopupMenu', 'LoadMenuW', 'SetCapture', 'MapVirtualKeyW', 'GetActiveWindow', 'CharUpperW', 'CharUpperA', 'CheckDlgButton', 'SetWindowPlacement', 'GetStockObject', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreatePalette', 'CreateICW', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateBitmap', 'GetOpenFileNameW', 'GetSaveFileNameW', 'ChooseFontW', 'RegNotifyChangeKeyValue', 'DeleteService', 'RegCloseKey', 'CoGetClassObject', 'CoInitializeEx', 'CoCreateGuid'], ['InitCommonControlsEx', 'GdipDrawImageRectI', 'GdipFree', 'GdipLoadImageFromStream', 'GdipLoadImageFromFile', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromFileICM', 'GdipCloneImage', 'GdipDisposeImage', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdiplusShutdown', 'GdiplusStartup', 'GdipSetClipRectI', 'GdipAlloc', 'GdipGraphicsClear', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'HeapSize', 'HeapReAlloc', 'LCMapStringEx', 'GetStringTypeW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'LoadLibraryW', 'MulDiv', 'GetLastError', 'GlobalLock', 'GlobalUnlock', 'VirtualAlloc', 'CloseHandle', 'SetEvent', 'CreateEventA', 'CreateThread', 'OutputDebugStringW', 'LoadLibraryExW', 'LeaveCriticalSection', 'EnterCriticalSection', 'Sleep', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount64', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'InitOnceExecuteOnce', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetModuleHandleW', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'FlsAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'GetModuleFileNameW', 'WriteFile', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleExW', 'ExitProcess', 'GetProcessHeap', 'DecodePointer', 'RaiseException', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'HeapFree', 'HeapAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'MultiByteToWideChar', 'GetCommandLineA', 'GetCurrentThreadId', 'SetLastError', 'RtlPcToFileHeader', 'EncodePointer', 'CreateFileW', 'EndPaint', 'GetClientRect', 'GetWindowLongPtrA', 'BeginPaint', 'LoadCursorA', 'LoadIconA', 'DefMDIChildProcA', 'LoadStringA', 'RegisterClassExA', 'SetWindowLongPtrA', 'SetWindowTextA', 'MsgWaitForMultipleObjects', 'SendDlgItemMessageA', 'SetDlgItemTextA', 'EndDialog', 'DialogBoxParamA', 'PeekMessageA', 'TranslateMDISysAccel', 'DefFrameProcA', 'SetCursor', 'MessageBoxA', 'GetSubMenu', 'EnableMenuItem', 'GetMenu', 'DestroyWindow', 'PostQuitMessage', 'SendMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CreateWindowExA', 'ShellAboutA', 'CoTaskMemAlloc', 'PropVariantClear', 'CLSIDFromString', 'CoTaskMemFree', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CoTaskMemRealloc', 'GetHGlobalFromStream', 'CreateStreamOnHGlobal'], ['SetConsoleMode', 'GetConsoleMode', 'PeekConsoleInputA', 'GetNumberOfConsoleInputEvents', 'RaiseException', 'RtlUnwind', 'SetConsoleCtrlHandler', 'ExitThread', 'CreateThread', 'PeekNamedPipe', 'GetDriveTypeA', 'FindFirstFileA', 'ExitProcess', 'GetTimeZoneInformation', 'HeapSize', 'VirtualAlloc', 'VirtualQuery', 'SetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetStartupInfoA', 'HeapCreate', 'CreateDirectoryA', 'GetConsoleCP', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetCurrentDirectoryA', 'GetFullPathNameA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEnvironmentVariableA', 'GetProcessHeap', 'FindResourceW', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'DeleteFileA', 'HeapAlloc', 'HeapFree', 'GetStartupInfoW', 'FindResourceExW', 'ReadConsoleInputA', 'GetProfileIntW', 'SearchPathW', 'GetTempPathW', 'GetTempFileNameW', 'GetFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'lstrcpyW', 'GetFullPathNameW', 'GetVolumeInformationW', 'DuplicateHandle', 'GetFileSize', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'MoveFileW', 'LocalReAlloc', 'GlobalHandle', 'GlobalReAlloc', 'LocalAlloc', 'GetCurrentDirectoryW', 'FileTimeToSystemTime', 'GetThreadLocale', 'HeapReAlloc', 'lstrlenA', 'GlobalGetAtomNameW', 'GlobalFlags', 'InitializeCriticalSection', 'GlobalFindAtomW', 'CompareStringW', 'GetVersionExA', 'GlobalSize', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'SuspendThread', 'ResumeThread', 'SetThreadPriority', 'FreeResource', 'GlobalFree', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'GlobalAddAtomW', 'GlobalDeleteAtom', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetModuleFileNameW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'GetDateFormatA', 'VirtualProtect', 'GetTimeFormatA', 'FormatMessageA', 'CompareStringA', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'GetModuleHandleW', 'lstrlenW', 'FlushConsoleInputBuffer', 'GetTickCount', 'GlobalMemoryStatus', 'GetVersion', 'GetFileType', 'FreeLibrary', 'VirtualLock', 'VirtualUnlock', 'GetSystemInfo', 'GlobalMemoryStatusEx', 'ResetEvent', 'GetVersionExW', 'ReleaseSemaphore', 'CreateSemaphoreW', 'GetFileInformationByHandle', 'GetDiskFreeSpaceW', 'CreateFileW', 'DeleteFileW', 'RemoveDirectoryW', 'CopyFileW', 'CreateDirectoryW', 'WriteFileGather', 'SetEndOfFile', 'LoadLibraryA', 'GetCurrentProcess', 'SetFilePointerEx', 'ReadFileScatter', 'GetFileSizeEx', 'DeviceIoControl', 'CreateWaitableTimerW', 'SetLastError', 'GetSystemTimeAsFileTime', 'TlsAlloc', 'CreateFileA', 'GetQueuedCompletionStatus', 'ReadFile', 'PostQueuedCompletionStatus', 'WaitForMultipleObjects', 'TerminateThread', 'QueueUserAPC', 'SetWaitableTimer', 'WriteFile', 'GetOverlappedResult', 'GetModuleHandleA', 'GetProcAddress', 'CancelIo', 'TlsSetValue', 'InterlockedDecrement', 'SetEvent', 'SleepEx', 'GetCurrentProcessId', 'CreateMutexW', 'ReleaseMutex', 'WaitForSingleObject', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'VerSetConditionMask', 'VerifyVersionInfoW', 'CreateIoCompletionPort', 'GetCurrentThreadId', 'CreateEventW', 'CloseHandle', 'InterlockedExchange', 'InterlockedExchangeAdd', 'GetFileAttributesW', 'GetDriveTypeW', 'DeleteCriticalSection', 'WideCharToMultiByte', 'TlsGetValue', 'InterlockedIncrement', 'LeaveCriticalSection', 'EnterCriticalSection', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'TlsFree', 'FindNextFileW', 'GetConsoleScreenBufferInfo', 'FindClose', 'GetLastError', 'FillConsoleOutputCharacterW', 'GetStdHandle', 'SetConsoleCursorPosition', 'Sleep', 'FindFirstFileW', 'MultiByteToWideChar', 'LockResource', 'SizeofResource', 'LoadResource', 'VirtualFree', 'IsClipboardFormatAvailable', 'MapVirtualKeyExW', 'IsCharLowerW', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'UpdateLayeredWindow', 'EnableScrollBar', 'UnionRect', 'SetCursorPos', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'UnpackDDElParam', 'ReuseDDElParam', 'InsertMenuItemW', 'TranslateAcceleratorW', 'UnregisterClassW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'LoadImageW', 'CopyImage', 'OpenClipboard', 'DrawStateW', 'RegisterClipboardFormatW', 'EnumChildWindows', 'LockWindowUpdate', 'BringWindowToTop', 'KillTimer', 'IsMenu', 'SetClassLongW', 'SetParent', 'CreatePopupMenu', 'NotifyWinEvent', 'SetWindowRgn', 'CreateAcceleratorTableW', 'LoadAcceleratorsW', 'DestroyAcceleratorTable', 'GetAsyncKeyState', 'GetKeyboardState', 'GetKeyboardLayout', 'ToUnicodeEx', 'PostThreadMessageW', 'SetRectEmpty', 'LoadMenuW', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'CopyAcceleratorTableW', 'SetRect', 'IsRectEmpty', 'CharNextW', 'CharUpperW', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'DeleteMenu', 'LoadCursorW', 'GetSysColorBrush', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'CheckDlgButton', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'IsChild', 'GetCapture', 'DefFrameProcW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'PtInRect', 'GetMenu', 'SetWindowLongW', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'DestroyMenu', 'GetMenuItemInfoW', 'InflateRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'ScreenToClient', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'FillRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetScrollPos', 'SetScrollPos', 'SetFocus', 'WinHelpW', 'SystemParametersInfoW', 'OffsetRect', 'MessageBeep', 'RedrawWindow', 'IsZoomed', 'GetMenuStringW', 'GetMenuItemID', 'InsertMenuW', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'MapVirtualKeyW', 'GetKeyNameTextW', 'DefMDIChildProcW', 'DrawMenuBar', 'TranslateMDISysAccel', 'FrameRect', 'GetUpdateRect', 'CharUpperBuffW', 'CopyIcon', 'SubtractRect', 'GetIconInfo', 'GetDoubleClickTime', 'CreateMenu', 'GetWindowRgn', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'DestroyCursor', 'GetClassLongW', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'ShowOwnedPopups', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetProcessWindowStation', 'MessageBoxA', 'GetUserObjectInformationW', 'GetSystemMenu', 'SetTimer', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadIconW', 'AppendMenuW', 'GetSystemMetrics', 'EnableWindow', 'SendMessageW', 'RemovePropW', 'GetDCOrgEx', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetTextMetricsW', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'OffsetRgn', 'CreateDIBitmap', 'EnumFontFamiliesW', 'GetTextCharsetInfo', 'CreateRoundRectRgn', 'SetDIBColorTable', 'GetDIBits', 'RealizePalette', 'StretchBlt', 'SetPixel', 'CreateDIBSection', 'PtVisible', 'CreateEllipticRgn', 'CreatePolygonRgn', 'Polyline', 'Ellipse', 'Polygon', 'Rectangle', 'RoundRect', 'CreatePalette', 'GetTextExtentPoint32W', 'GetWindowOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'GetViewportOrgEx', 'LPtoDP', 'ExtFloodFill', 'SetPaletteEntries', 'GetNearestPaletteIndex', 'GetSystemPaletteEntries', 'EnumFontFamiliesExW', 'GetTextFaceW', 'SetPixelV', 'GetPixel', 'GetWindowExtEx', 'CreateHatchBrush', 'CreateFontIndirectW', 'CreateSolidBrush', 'CreatePen', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutW', 'TextOutW', 'GetPaletteEntries', 'GetViewportExtEx', 'GetObjectW', 'CreateRectRgn', 'SelectClipRgn', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CopyMetaFileW', 'PatBlt', 'CreateRectRgnIndirect', 'CreateBitmap', 'BitBlt', 'DeleteDC', 'GetDeviceCaps', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'RectVisible', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleW', 'OpenPrinterW', 'ClosePrinter', 'DocumentPropertiesW', 'DeregisterEventSource', 'ReportEventA', 'RegCloseKey', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegEnumKeyW', 'RegOpenKeyW', 'RegQueryValueW', 'RegEnumKeyExW', 'RegisterEventSourceA', 'RegDeleteValueW', 'RegSetValueExW', 'RegCreateKeyExW', 'DragFinish', 'SHGetFileInfoW', 'SHAppBarMessage', 'ShellExecuteW', 'DragQueryFileW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'PathRemoveFileSpecW', 'OleUIBusyW', 'OleLockRunning', 'CoTaskMemFree', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'OleDuplicateData', 'CoCreateInstance', 'CoGetClassObject', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CreateILockBytesOnHGlobal', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoInitializeEx', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'DoDragDrop', 'OleGetClipboard', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'CLSIDFromString', 'CLSIDFromProgID', 'IsAccelerator', 'OleTranslateAccelerator', 'SysStringLen', 'SysAllocString', 'OleCreateFontIndirect', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SafeArrayDestroy', 'VariantCopy', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdiplusShutdown', 'GdiplusStartup', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipCloneImage', 'send', 'socket', 'closesocket', 'WSAIoctl', 'getaddrinfo', 'WSAStringToAddressA', 'WSAAddressToStringA', 'select', 'WSASocketW', 'WSASendTo', 'WSASend', 'WSARecvFrom', 'WSARecv', 'listen', 'shutdown', 'ioctlsocket', 'getsockname', 'getpeername', 'getsockopt', 'setsockopt', 'connect', 'bind', 'WSAGetLastError', 'accept', 'WSACleanup', 'WSAStartup', 'htons', 'ntohs', 'htonl', 'ntohl', 'freeaddrinfo', 'WSASetLastError', '__WSAFDIsSet', 'recv', 'AcceptEx', 'GetAcceptExSockaddrs', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundW'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'GetConsoleAliasExesLengthA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetWindowsDirectoryW', 'DeleteFileW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'FindResourceExW', 'LoadLibraryA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['FindFirstChangeNotificationA', 'MulDiv', 'Sleep', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetProcessWorkingSetSize', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OutputDebugStringA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LocalFree', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsValidCodePage', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetTempFileNameA', 'GetSystemInfo', 'GetSystemDefaultLangID', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProfileIntA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'Beep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'CreateFileA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'GetUserNameA', 'CreateStreamOnHGlobal', 'IsAccelerator', 'ReleaseStgMedium', 'OleDraw', 'OleSetMenuDescriptor', 'RevokeDragDrop', 'RegisterDragDrop', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoDisconnectObject', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'DoDragDrop', 'RegisterDragDrop', 'CoUninitialize', 'CoInitialize', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'CoCreateInstance', 'CoCreateInstance', 'CoTaskMemFree', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VarBstrFromBool', 'VarBstrFromDate', 'VarBstrFromCy', 'VarBoolFromStr', 'VarCyFromStr', 'VarDateFromStr', 'VarR8FromStr', 'VarI4FromStr', 'VarNot', 'VarNeg', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHGetMalloc', 'SHGetDesktopFolder', 'Shell_NotifyIconA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetInstanceExplorer', 'wvsprintfA', 'mouse_event', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterHotKey', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendNotifyMessageA', 'SendMessageTimeoutA', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterHotKey', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWindowUpdate', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsClipboardFormatAvailable', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursorInfo', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExA', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DrawCaption', 'DrawAnimatedRects', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CopyIcon', 'CloseClipboard', 'ClipCursor', 'ClientToScreen', 'ChildWindowFromPointEx', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BringWindowToTop', 'BeginPaint', 'AttachThreadInput', 'AppendMenuA', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemTime', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetInputState', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'mciSendCommandA', 'mciGetErrorStringA'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'VariantCopy', 'ShellExecuteA', 'CharNextA'], ['__WSAFDIsSet', 'recv', 'send', 'setsockopt', 'ntohs', 'recvfrom', 'select', 'WSAStartup', 'htons', 'accept', 'listen', 'bind', 'closesocket', 'connect', 'WSACleanup', 'ioctlsocket', 'sendto', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'socket', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_ReplaceIcon', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetQueryOptionW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetConnectW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleFileNameW', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'GetLongPathNameW', 'GetCurrentThread', 'FindNextFileW', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'WaitForSingleObject', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'CloseHandle', 'GetLastError', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedIncrement', 'CreateThread', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'SetFilePointer', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'DeleteFileW', 'SetEnvironmentVariableA', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'DrawMenuBar', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'MonitorFromRect', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'CopyImage', 'CheckMenuRadioItem', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'UnregisterHotKey', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'AdjustWindowRectEx', 'SetRect', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'DeleteMenu', 'PeekMessageW', 'MessageBoxW', 'DefWindowProcW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'SystemParametersInfoW', 'CharLowerBuffW', 'GetWindowTextW', 'SetPixel', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'GetDeviceCaps', 'CloseFigure', 'LineTo', 'AngleArc', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'MoveToEx', 'Ellipse', 'PolyDraw', 'BeginPath', 'SelectObject', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'EndPath', 'GetSaveFileNameW', 'GetOpenFileNameW', 'GetAclInformation', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'InitiateSystemShutdownExW', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'SetSecurityDescriptorDacl', 'AddAce', 'GetAce', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHCreateShellItem', 'SHGetDesktopFolder', 'SHGetSpecialFolderLocation', 'SHGetFolderPathW', 'SHFileOperationW', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'RegisterTypeLib', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'UnRegisterTypeLib', 'SafeArrayCreateVector', 'SysAllocString', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'VariantCopy', 'VariantClear', 'CreateDispTypeInfo', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SafeArrayAllocDescriptorEx', 'VariantInit'], ['MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'CopyFileA', 'GetLastError', 'OpenMutexA', 'GetFileAttributesA', 'CreateFileA', 'LoadLibraryA', 'LockResource', 'DeleteFileA', 'HeapReAlloc', 'CloseHandle', 'RaiseException', 'FindResourceExW', 'LoadResource', 'FindResourceW', 'HeapAlloc', 'SetFileAttributesA', 'DecodePointer', 'HeapDestroy', 'GetProcAddress', 'DeleteCriticalSection', 'GetProcessHeap', 'WideCharToMultiByte', 'CreateProcessA', 'CreateDirectoryA', 'GetComputerNameA', 'AreFileApisANSI', 'ReadFile', 'HeapCreate', 'GetFullPathNameW', 'InterlockedCompareExchange', 'GetDiskFreeSpaceW', 'OutputDebugStringA', 'LockFile', 'InitializeCriticalSection', 'SetFilePointer', 'HeapSize', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'CreateFileW', 'GetFileAttributesW', 'GetVersionExW', 'UnmapViewOfFile', 'HeapValidate', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesExW', 'OutputDebugStringW', 'EnterCriticalSection', 'DeleteFileW', 'GetSystemInfo', 'LoadLibraryW', 'HeapCompact', 'UnlockFile', 'CreateFileMappingA', 'LocalFree', 'LockFileEx', 'GetFileSize', 'GetCurrentProcessId', 'SystemTimeToFileTime', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'SetStdHandle', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'FreeEnvironmentStringsW', 'GetModuleHandleA', 'CreateMutexA', 'FindResourceA', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetFullPathNameA', 'WriteFile', 'SetLastError', 'HeapFree', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'CreateThread', 'GetTimeZoneInformation', 'GetExitCodeProcess', 'HeapQueryInformation', 'SetEnvironmentVariableA', 'GetConsoleCP', 'ReadConsoleW', 'GetConsoleMode', 'SetFilePointerEx', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetACP', 'GetCommandLineW', 'GetCommandLineA', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'GetModuleHandleExW', 'ExitProcess', 'SizeofResource', 'GetVersionExA', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'RtlUnwind', 'GetModuleFileNameW', 'LoadLibraryExW', 'InterlockedPushEntrySList', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'InitializeSListHead', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentThreadId', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetDC', 'ReleaseDC', 'GetDesktopWindow', 'wsprintfA', 'GetSystemMetrics', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'BitBlt', 'RegOpenKeyExA', 'RegCloseKey', 'RegQueryValueExA', 'SystemFunction036', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoSetProxyBlanket', 'CoInitializeEx', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeSecurity', 'VariantInit', 'VariantClear', 'PathFindExtensionW', 'PathFindExtensionA', 'GdipSaveImageToFile', 'GdipCreateBitmapFromScan0', 'GdipGetImageEncodersSize', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipGetImageEncoders', 'GdipCloneImage', 'GdipAlloc', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCheckConnectionA', 'InternetOpenA', 'InternetCloseHandle', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['ConnectNamedPipe', 'GetModuleHandleW', 'CreateNamedPipeW', 'TerminateThread', 'DisconnectNamedPipe', 'FlushFileBuffers', 'GetTempPathW', 'GetProcAddress', 'DeleteFileW', 'FreeLibrary', 'GlobalAlloc', 'LoadLibraryW', 'GetComputerNameExW', 'GlobalFree', 'ExitProcess', 'GetVersionExW', 'GetModuleFileNameW', 'DisableThreadLibraryCalls', 'ResumeThread', 'GetEnvironmentVariableW', 'GetFileSize', 'SetFilePointer', 'SetLastError', 'LoadResource', 'GetCurrentThread', 'OpenProcess', 'GetSystemDirectoryW', 'SizeofResource', 'GetLocalTime', 'Process32FirstW', 'LockResource', 'Process32NextW', 'GetModuleHandleA', 'lstrcatW', 'CreateToolhelp32Snapshot', 'GetCurrentProcess', 'VirtualFree', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'WideCharToMultiByte', 'GetExitCodeProcess', 'WaitForMultipleObjects', 'CreateProcessW', 'PeekNamedPipe', 'GetTempFileNameW', 'InterlockedExchange', 'LeaveCriticalSection', 'MultiByteToWideChar', 'CreateFileA', 'GetTickCount', 'CreateThread', 'LocalFree', 'FindNextFileW', 'CreateFileMappingW', 'LocalAlloc', 'FindClose', 'GetFileSizeEx', 'CreateFileW', 'Sleep', 'FlushViewOfFile', 'GetLogicalDrives', 'WaitForSingleObject', 'GetDriveTypeW', 'UnmapViewOfFile', 'MapViewOfFile', 'FindFirstFileW', 'CloseHandle', 'DeviceIoControl', 'GetLastError', 'GetSystemDirectoryA', 'ReadFile', 'WriteFile', 'GetProcessHeap', 'InitializeCriticalSection', 'HeapReAlloc', 'GetWindowsDirectoryW', 'EnterCriticalSection', 'HeapFree', 'SetFilePointerEx', 'HeapAlloc', 'FindResourceW', 'ExitWindowsEx', 'wsprintfA', 'wsprintfW', 'CryptGenRandom', 'CryptAcquireContextA', 'CryptExportKey', 'CryptAcquireContextW', 'CreateProcessAsUserW', 'InitiateSystemShutdownExW', 'DuplicateTokenEx', 'SetTokenInformation', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'OpenThreadToken', 'GetSidSubAuthority', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetThreadToken', 'CredEnumerateW', 'CredFree', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptSetKeyParam', 'CryptReleaseContext', 'CommandLineToArgvW', 'SHGetFolderPathW', 'CoCreateGuid', 'CoTaskMemFree', 'StringFromCLSID', 'CryptStringToBinaryW', 'CryptBinaryToStringW', 'CryptDecodeObjectEx', 'PathAppendW', 'StrToIntW', 'PathFindFileNameW', 'PathFileExistsW', 'StrCmpW', 'StrCmpIW', 'StrChrW', 'StrCatW', 'StrStrW', 'PathFindExtensionW', 'PathCombineW', 'StrStrIW', 'GetIpNetTable', 'GetAdaptersInfo', 'inet_ntoa', 'gethostbyname', '__WSAFDIsSet', 'ntohl', 'ioctlsocket', 'connect', 'inet_addr', 'select', 'recv', 'send', 'htons', 'closesocket', 'socket', 'WSAStartup', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCancelConnection2W', 'WNetAddConnection2W', 'WNetCloseEnum', 'NetServerEnum', 'NetApiBufferFree', 'NetServerGetInfo', 'DhcpEnumSubnetClients', 'DhcpRpcFreeMemory', 'DhcpGetSubnetInfo', 'DhcpEnumSubnets', 'malloc', '_itoa', 'free', 'memset', 'rand', 'memcpy'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'LoadLibraryA', 'LocalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalWire', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'IsDebuggerPresent', 'SetConsoleCursorPosition', 'GetLastError', 'DebugActiveProcess', 'lstrcmpW', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'SetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GetProcAddress', 'GlobalCompact', 'UnregisterWait', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'CreateIoCompletionPort', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'GetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'GlobalDeleteAtom', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'InitAtomTable', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'VirtualAlloc', 'GetBinaryTypeW', 'QueryDosDeviceW', 'LeaveCriticalSection', 'Sleep', 'EnterCriticalSection', 'RaiseException', 'RtlUnwind', 'MoveFileA', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleHandleA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'WideCharToMultiByte', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetStdHandle', 'CloseHandle', 'CreateFileA', 'OemToCharA', 'AlphaBlend'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetConsoleWindow', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetConsoleTitleA', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_findclose', '_findfirst64', '_findnext64', '_fmode', '_fstat64', '_ftime', '_initterm', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'remove', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strncpy', 'strrchr', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'DrawIcon', 'EnableMenuItem', 'GetCursorPos', 'GetSystemMenu', 'GetWindowDC', 'LoadIconA', 'MessageBoxA'], ['SetLocaleInfoA', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'WriteConsoleA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemDefaultLangID', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'VariantInit', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'GetOpenFileNameA', 'sndPlaySoundA', 'MulDiv', 'LresultFromObject'], ['GetMappedFileNameA', 'GetModuleFileNameExA', 'EnumProcessModules', 'StrRChrW', 'StrRChrA', 'PathStripPathA', 'StrDupA', 'wnsprintfA', 'PathCombineW', 'StrChrA', 'StrCmpIW', 'StrCmpNIW', 'StrChrW', 'PathRemoveBlanksA', 'PathRemoveArgsA', 'StrCmpW', 'PathRemoveBlanksW', 'PathRemoveArgsW', 'StrStrIW', 'StrTrimW', 'RtlEqualUnicodeString', 'NtQueryObject', 'NtQueryInformationFile', 'NtQuerySystemInformation', '_strnicmp', '_wcsnicmp', '_strupr', 'NtQueryVirtualMemory', 'RtlUnwind', 'RtlCompareUnicodeString', 'RtlInitUnicodeString', 'memcmp', 'ZwQueryInformationProcess', 'RtlNtStatusToDosError', 'ZwClose', 'NtUnmapViewOfSection', 'memset', 'memcpy', 'DbgPrint', 'ZwQueryKey', 'htonl', 'socket', 'WSAStringToAddressW', 'WSACleanup', 'WSAStartup', 'shutdown', 'setsockopt', 'send', 'select', 'recv', 'htons', 'ioctlsocket', 'connect', 'closesocket', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'lstrcmpA', 'lstrcpyA', 'lstrlenA', 'SetLastError', 'lstrcmpiW', 'lstrcpyW', 'lstrcatA', 'lstrcatW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LocalFree', 'lstrcmpiA', 'VirtualAlloc', 'VirtualFree', 'OpenProcess', 'ReadProcessMemory', 'GetFileSize', 'ReadFile', 'SetFilePointer', 'GetModuleFileNameA', 'CreateFileA', 'MapViewOfFile', 'CreateFileMappingW', 'CreateFileW', 'GetCurrentThread', 'TerminateThread', 'InitializeCriticalSection', 'ReleaseMutex', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'SetErrorMode', 'CreateMutexA', 'SetEnvironmentVariableW', 'GetVersionExA', 'IsBadStringPtrA', 'ExpandEnvironmentStringsW', 'GetCurrentProcess', 'VirtualProtect', 'GetModuleHandleA', 'GetCurrentProcessId', 'LoadLibraryA', 'GetVersion', 'VerLanguageNameW', 'GetLocaleInfoW', 'GetSystemTimeAsFileTime', 'GetProcessTimes', 'RemoveDirectoryW', 'CreateDirectoryW', 'DuplicateHandle', 'SetFilePointerEx', 'SetEndOfFile', 'GetFileInformationByHandle', 'GetProcessId', 'GetProcessHeap', 'Process32NextW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'GetSystemWindowsDirectoryW', 'GetSystemWindowsDirectoryA', 'GetTempPathW', 'GetLongPathNameW', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'SystemTimeToFileTime', 'GetSystemTime', 'MulDiv', 'OpenFileMappingA', 'CreateFileMappingA', 'UnmapViewOfFile', 'InterlockedDecrement', 'InterlockedIncrement', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW', 'lstrcmpW', 'FindClose', 'WriteFile', 'GetEnvironmentVariableW', 'OpenEventA', 'lstrcpynW', 'FreeLibrary', 'GetComputerNameW', 'GetVolumeInformationW', 'LoadLibraryW', 'CreateEventA', 'lstrlenW', 'GetTickCount', 'WaitForMultipleObjects', 'WaitForSingleObject', 'ResetEvent', 'SetEvent', 'GetCurrentThreadId', 'ExitProcess', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'HeapDestroy', 'OpenThread', 'SwitchToThread', 'CreateThread', 'HeapCreate', 'LocalAlloc', 'GetProcAddress', 'GetModuleHandleW', 'CloseHandle', 'Sleep', 'ResumeThread', 'GetLastError', 'SleepEx', 'wsprintfA', 'IsWindow', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetAncestor', 'GetWindowInfo', 'CallNextHookEx', 'GetClassNameA', 'FindWindowA', 'GetParent', 'SetClassLongA', 'GetClassLongA', 'SetWindowLongA', 'GetWindowLongA', 'FillRect', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'RedrawWindow', 'MenuItemFromPoint', 'GetMenuItemRect', 'EndMenu', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetSystemMenu', 'GetMenuState', 'HiliteMenuItem', 'GetMenu', 'SetKeyboardState', 'SetLayeredWindowAttributes', 'PrintWindow', 'CallWindowProcA', 'DefWindowProcA', 'PostMessageA', 'SendMessageTimeoutA', 'SendMessageA', 'ActivateKeyboardLayout', 'GetDC', 'ReleaseDC', 'MessageBoxA', 'FindWindowW', 'wsprintfW', 'GetUserObjectInformationA', 'AttachThreadInput', 'ShowWindow', 'SetWindowPos', 'IsWindowVisible', 'IsIconic', 'BringWindowToTop', 'SetFocus', 'SetActiveWindow', 'SetForegroundWindow', 'GetWindowRect', 'MapWindowPoints', 'WindowFromPoint', 'PtInRect', 'EnumChildWindows', 'GetLastActivePopup', 'GetWindow', 'GetGUIThreadInfo', 'RealChildWindowFromPoint', 'IntersectRect', 'SetThreadDesktop', 'DrawEdge', 'SendMessageW', 'GetWindowTextA', 'GetWindowLongW', 'SetWindowLongW', 'GetScrollBarInfo', 'GetDoubleClickTime', 'GetSystemMetrics', 'GetMenuItemInfoA', 'GetMenuDefaultItem', 'IsRectEmpty', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'PostThreadMessageA', 'DestroyWindow', 'CreateDialogIndirectParamW', 'EndDialog', 'GetDlgItem', 'SetWindowTextA', 'ExitWindowsEx', 'GetKeyState', 'CreatePopupMenu', 'DestroyMenu', 'AppendMenuA', 'CreateDesktopA', 'OpenDesktopA', 'CloseDesktop', 'RegisterWindowMessageA', 'PostMessageW', 'GetDesktopWindow', 'GetShellWindow', 'EnumWindows', 'ChangeDisplaySettingsExA', 'EnumDisplaySettingsA', 'EnumDisplayDevicesA', 'ChildWindowFromPointEx', 'SetWinEventHook', 'UnhookWinEvent', 'ToUnicodeEx', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'ToAscii', 'VkKeyScanA', 'VkKeyScanExA', 'VkKeyScanExW', 'MapVirtualKeyA', 'MapVirtualKeyExA', 'RegisterClassA', 'CreateWindowExA', 'MoveWindow', 'CharUpperBuffW', 'SetTimer', 'KillTimer', 'DrawTextW', 'BeginPaint', 'EndPaint', 'GetSysColor', 'SendNotifyMessageA', 'OpenClipboard', 'CloseClipboard', 'GetClipboardOwner', 'SetClipboardViewer', 'ChangeClipboardChain', 'SetClipboardData', 'GetClipboardData', 'EmptyClipboard', 'FindWindowExA', 'GetThreadDesktop', 'GetWindowThreadProcessId', 'WindowFromDC', 'GetStockObject', 'GdiFlush', 'CreateDIBSection', 'SetDIBColorTable', 'GetDIBits', 'GetRegionData', 'CreateFontA', 'GetClipBox', 'SetBkColor', 'SetBkMode', 'SetTextColor', 'ExtTextOutA', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SetViewportOrgEx', 'SelectClipRgn', 'GetViewportOrgEx', 'GetClipRgn', 'DeleteObject', 'CreateRectRgn', 'BitBlt', 'GetSystemPaletteEntries', 'CombineRgn', 'CreateBitmap', 'CreatePatternBrush', 'DeleteDC', 'GetDeviceCaps', 'SetWindowOrgEx', 'OpenProcessToken', 'OpenThreadToken', 'GetTokenInformation', 'GetUserNameW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'DuplicateTokenEx', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'CreateProcessWithTokenW', 'ShellExecuteA', 'SHGetFolderPathW', 'CertFreeCertificateContext', 'CryptQueryObject', 'CertGetNameStringW', 'CertFindCertificateInStore', 'CertCloseStore', 'CryptMsgGetParam', 'CryptDecodeObject', 'CryptMsgClose', 'AlphaBlend', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'SysFreeString'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'DecodePointer', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['SetFilePointerEx', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'VirtualAlloc', 'SetErrorMode', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetLocaleInfoA', 'HeapSize', 'SetEvent', 'HeapReAlloc', 'HeapAlloc', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LoadLibraryA', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'VirtualFree', 'HeapCreate', 'InterlockedDecrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'DeleteCriticalSection', 'SetHandleCount', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'ExitProcess', 'GetCommandLineA', 'SetEnvironmentVariableW', 'QueryPerformanceCounter', 'OpenEventW', 'MultiByteToWideChar', 'LocalFree', 'LocalAlloc', 'LoadLibraryW', 'IsDebuggerPresent', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedCompareExchange', 'InitializeCriticalSectionAndSpinCount', 'GetVolumeInformationW', 'GetTimeZoneInformation', 'GetTimeFormatW', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetLastError', 'GetEnvironmentStringsW', 'GetFileType', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCommandLineW', 'GetAtomNameA', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'CreateThread', 'CreateMutexW', 'CreateHardLinkA', 'CreateEventW', 'RtlUnwind', 'CloseHandle', 'LoadCursorW', 'LoadIconA', 'keybd_event', 'UnregisterHotKey', 'UnhookWindowsHookEx', 'ShowCaret', 'SetWindowsHookExW', 'SetProcessDefaultLayout', 'SetKeyboardState', 'SetForegroundWindow', 'SetDeskWallpaper', 'SendDlgItemMessageW', 'RegisterWindowMessageW', 'RegisterHotKey', 'PostMessageW', 'OemToCharW', 'MapVirtualKeyExA', 'LoadStringW', 'IsCharAlphaNumericA', 'InvertRect', 'InvalidateRect', 'GetWindowThreadProcessId', 'GetWindowRgn', 'GetUpdateRect', 'GetMonitorInfoW', 'GetMenuState', 'GetLastActivePopup', 'GetKeyState', 'GetForegroundWindow', 'GetDlgItemTextW', 'GetDlgItem', 'GetClipboardSequenceNumber', 'GetAsyncKeyState', 'EnumDisplayMonitors', 'EndDialog', 'EnableWindow', 'DlgDirListW', 'DialogBoxParamW', 'DestroyIcon', 'CharUpperW', 'CallNextHookEx', 'AttachThreadInput', 'wsprintfW', 'SetDIBitsToDevice', 'SetDCPenColor', 'SetDCBrushColor', 'STROBJ_bGetAdvanceWidths', 'RoundRect', 'Polyline', 'PolyTextOutA', 'Pie', 'GetWinMetaFileBits', 'GetMetaFileW', 'GetMetaFileA', 'GetLogColorSpaceA', 'GetDIBits', 'GetDCBrushColor', 'GetArcDirection', 'GdiPlayEMF', 'GdiEntry16', 'GdiConvertEnhMetaFile', 'ExcludeClipRect', 'EngDeleteSemaphore', 'EngComputeGlyphSet', 'EngCheckAbort', 'DeviceCapabilitiesExW', 'DeleteObject', 'CreateColorSpaceA', 'SetFontEnumeration', 'StartServiceCtrlDispatcherW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegEnumValueW', 'RegConnectRegistryW', 'RegCloseKey', 'OpenServiceW', 'OpenSCManagerW', 'OpenProcessToken', 'ControlService', 'CloseServiceHandle', 'RegOpenKeyExA', 'SHGetFolderPathW', 'SHGetFileInfoW', 'ExtractIconExW', 'CommandLineToArgvW', 'ShellExecuteExW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetMessageW', 'DeleteDC', 'ShellExecuteW', 'WSAStartup'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'memcpy', 'memset', 'realloc', 'sprintf', 'strchr', 'strlen', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationA', 'ShellExecuteA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetLastInputInfo', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['GetModuleHandleA', 'ShowWindow', 'RegQueryValueA', '??1_Lockit@std@@QAE@XZ', '__setusermatherr', 'ShellAboutW', '_lock_file', 'fputc', 'accept', 'free', '_time64', 'DllGetVersion', 'rand', '_configthreadlocale', 'exit', 'memset'], ['waveOutUnprepareHeader', 'timeKillEvent', 'timeSetEvent', 'mmioAscend', 'mmioWrite', 'mmioCreateChunk', 'mmioOpenA', 'waveOutReset', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutSetVolume', 'waveOutGetVolume', 'mmioClose', 'mmioFlush', 'waveOutWrite', 'waveOutPrepareHeader', 'GetCPInfo', 'GetOEMCP', 'WriteFile', 'FlushFileBuffers', 'GetCurrentProcess', 'SetErrorMode', 'GetFileAttributesA', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetThreadLocale', 'VirtualAlloc', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'HeapSize', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GlobalFlags', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'GetModuleHandleA', 'GetProcAddress', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'SetFilePointer', 'GetFullPathNameA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'GlobalReAlloc', 'CreateThread', 'SetThreadPriority', 'ExitThread', 'LoadLibraryW', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalAlloc', 'GlobalLock', 'DeleteCriticalSection', 'WaitForSingleObject', 'Sleep', 'InitializeCriticalSection', 'CreateEventA', 'CloseHandle', 'SetEvent', 'EnterCriticalSection', 'LeaveCriticalSection', 'ResetEvent', 'GlobalHandle', 'GlobalUnlock', 'GlobalFree', 'lstrlenA', 'CompareStringA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'IsWindowEnabled', 'PostQuitMessage', 'ValidateRect', 'SetCursor', 'GetWindowThreadProcessId', 'EndDialog', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'GetDesktopWindow', 'DestroyMenu', 'GetSysColorBrush', 'LoadCursorA', 'UnregisterClassA', 'SendDlgItemMessageA', 'WinHelpA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'TrackPopupMenu', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'GetMenu', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'EnableMenuItem', 'CheckMenuItem', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'ScreenToClient', 'GrayStringA', 'DrawTextExA', 'TabbedTextOutA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetCursorPos', 'SetWindowRgn', 'SetRect', 'GetWindowRect', 'PostMessageA', 'LoadMenuA', 'GetSubMenu', 'CopyRect', 'GetSystemMetrics', 'LoadIconA', 'IsIconic', 'DrawIcon', 'ShowWindow', 'PtInRect', 'ReleaseCapture', 'SendMessageA', 'GetWindowLongA', 'WindowFromPoint', 'GetParent', 'SetCapture', 'GetCapture', 'GetActiveWindow', 'ClientToScreen', 'GetFocus', 'SetFocus', 'PeekMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'EnableWindow', 'SetWindowTextA', 'IsDialogMessageA', 'UpdateWindow', 'RegisterWindowMessageA', 'KillTimer', 'SetTimer', 'InvalidateRect', 'GetDC', 'GetClientRect', 'DrawTextA', 'ModifyMenuA', 'ExtCreateRegion', 'CreateDIBSection', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteObject', 'CreateBitmap', 'DPtoLP', 'GetClipBox', 'DeleteDC', 'StretchBlt', 'CombineRgn', 'CreateCompatibleBitmap', 'GetStockObject', 'GetTextExtentPoint32A', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'GetObjectA', 'CreateFontIndirectA', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'RegOpenKeyExW', 'PathFindFileNameA', 'PathFindExtensionA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CreateStreamOnHGlobal', 'OleLoadPicture', 'VariantInit', 'VariantChangeType', 'VariantClear'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'AddAce', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLangID', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetSystemDefaultLangID', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeProcess', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'GetOpenFileNameA', 'sndPlaySoundA', 'MulDiv'], ['GetModuleHandleA', 'CharNextA', 'RegCloseKey', 'ShellAboutW', '_CorExeMain', 'DrawStatusTextW'], ['GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReplaceFileA', 'CreateMutexW', 'FindFirstFileA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'IsValidCodePage', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'GetDateFormatW', 'SetCurrentDirectoryA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'CharUpperBuffW', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetDateFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'BuildCommDCBAndTimeoutsW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['getaddrinfo', 'freeaddrinfo', 'closesocket', 'WSAStartup', 'socket', 'send', 'recv', 'connect', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'SetLastError', 'GetLastError', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'VariantInit', 'SysFreeString', 'SysAllocString'], ['GetMetaRgn', 'GdiGetBatchLimit', 'GetBitmapDimensionEx', 'CloseHandle', 'WaitForSingleObject', 'CreateThread', 'VirtualProtectEx', 'FreeConsole', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RaiseException', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'OutputDebugStringW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'SetConsoleCtrlHandler', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadFile', 'ReadConsoleW', 'CreateFileW', 'DecodePointer'], ['GetThreadUILanguage', 'AreFileApisANSI', 'GetThreadErrorMode', 'GetCurrentProcessorNumber', 'GetCommandLineW', 'GetTickCount', 'IsSystemResumeAutomatic', 'IsDebuggerPresent', 'GetACP', 'SwitchToThread', 'GetLastError', 'TlsAlloc', 'GetCommandLineA', 'UnregisterApplicationRestart', 'FlushProcessWriteBuffers', 'GetCurrentThreadId', 'GetSystemDefaultUILanguage', 'RaiseException', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'DecodePointer', 'MultiByteToWideChar', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryExW', 'GetEnvironmentStringsW', 'lstrcmpiW', 'FreeLibrary', 'WriteConsoleW', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileSizeEx', 'HeapSize', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetFileType', 'GetStdHandle', 'GetProcessHeap', 'SetFileApisToOEM', 'CloseHandle', 'ReadFile', 'FindClose', 'GetTickCount64', 'GetModuleFileNameW', 'LoadLibraryA', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleExW', 'ExitProcess', 'InterlockedFlushSList', 'RtlUnwindEx', 'RtlPcToFileHeader', 'OutputDebugStringW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'EncodePointer', 'SetLastError', 'IsProcessDPIAware', 'GetForegroundWindow', 'CreateMenu', 'GetMenuCheckMarkDimensions', 'CloseClipboard', 'GetCapture', 'GetKBCodePage', 'GetMessageTime', 'AnyPopup', 'EmptyClipboard', 'InSendMessage', 'GetMessageExtraInfo', 'GetClipboardSequenceNumber', 'GetFocus', 'SetCursor', 'LoadCursorW', 'CharNextW', 'GetActiveWindow', 'GetOpenClipboardWindow', 'RegSetValueExW', 'RegEnumKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'CoTaskMemFree', 'CoCreateInstance', 'CoTaskMemAlloc', 'CoFreeUnusedLibraries', 'CoTaskMemRealloc', 'VarUI4FromStr', 'InternetQueryDataAvailable'], ['CreateFileA', 'FindResourceW', 'LoadResource', 'WriteFile', 'WideCharToMultiByte', 'SizeofResource', 'GetTempPathW', 'LockResource', 'CloseHandle', 'GetFullPathNameA', 'GetDriveTypeW', 'CreateFileW', 'EncodePointer', 'DecodePointer', 'GetLastError', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetCommandLineW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetStdHandle', 'GetModuleFileNameW', 'HeapFree', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'GetProcessHeap', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'HeapSize', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringW', 'RtlUnwind', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'GetCurrentDirectoryW', 'ShellExecuteA', 'PathAppendA'], ['GetProcAddress', 'LoadLibraryA', 'WaitForSingleObject', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'GetLastError', 'EnterCriticalSection', 'ReleaseMutex', 'CloseHandle'], ['HeapFree', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetCurrentProcess', 'GetThreadLocale', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'InterlockedDecrement', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'GetFileType', 'GetSysColorBrush', 'LoadCursorA', 'UnregisterClassA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'PtInRect', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'SystemParametersInfoA', 'DestroyMenu', 'CopyRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindow', 'SetFocus', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DdeFreeDataHandle', 'DdeDisconnect', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'SetWindowTextA', 'IsDialogMessageA', 'GetDlgCtrlID', 'EnableWindow', 'DdeNameService', 'GetSystemMetrics', 'DdeConnect', 'DdeClientTransaction', 'CreateWindowExW', 'AppendMenuA', 'ShowWindow', 'DdeUninitialize', 'DdeFreeStringHandle', 'SendMessageA', 'GetClientRect', 'DdeUnaccessData', 'DrawIcon', 'DdeInitializeA', 'LoadIconA', 'DdeAccessData', 'IsIconic', 'PostMessageA', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetSystemMenu', 'DdeCreateStringHandleA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'CreateBitmap', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'PtVisible', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetEvent', 'SetTapeParameters', 'GetModuleHandleW', 'GetNumberFormatA', 'ReadConsoleW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapCreate', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLargestConsoleWindowSize', 'WriteConsoleOutputW', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'ReadFileEx', 'GetTempFileNameA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'BeginUpdateResourceA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'RequestWakeupLatency', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'EnumCalendarInfoExA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'GetDefaultCommConfigW', 'TlsGetValue', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetThreadContext', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsA', 'GetCharABCWidthsI'], ['GetModuleHandleA', 'DefWindowProcA', 'RegOpenKeyExA', '_CorExeMain', 'ShellAboutW', 'ImageList_Draw'], ['GetComputerNameW', 'GetModuleFileNameA', 'GetCurrentProcessId', 'OpenProcess', 'GetModuleFileNameW', 'SetLastError', 'WaitForSingleObject', 'CreateEventW', 'FreeLibrary', 'WinExec', 'GetPrivateProfileStringW', 'CopyFileW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'LocalFree', 'LocalAlloc', 'LoadResource', 'FindResourceW', 'SizeofResource', 'LockResource', 'GetTickCount', 'GetCurrentThread', 'Sleep', 'GetProcessHeap', 'HeapAlloc', 'GetLastError', 'GetTempPathA', 'SetCurrentDirectoryW', 'GetShortPathNameA', 'LoadLibraryW', 'GetProcAddress', 'WideCharToMultiByte', 'MultiByteToWideChar', 'SystemTimeToFileTime', 'DosDateTimeToFileTime', 'GetCurrentProcess', 'DuplicateHandle', 'CloseHandle', 'WriteFile', 'SetFileTime', 'SetFilePointer', 'ReadFile', 'GetFileType', 'CreateFileW', 'CreateDirectoryW', 'TerminateProcess', 'GetCurrentDirectoryW', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetTimeZoneInformation', 'GetFileSizeEx', 'GetConsoleOutputCP', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'ExitProcess', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'RtlUnwind', 'RaiseException', 'GetStringTypeW', 'WriteConsoleW', 'GetCPInfo', 'CompareStringEx', 'LCMapStringEx', 'DecodePointer', 'EncodePointer', 'InitializeCriticalSectionEx', 'InitializeSListHead', 'GetStartupInfoW', 'IsDebuggerPresent', 'GetModuleHandleW', 'ResetEvent', 'SetEvent', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'FlushFileBuffers', 'QueryPerformanceCounter', 'MapViewOfFile', 'CreateFileMappingW', 'AreFileApisANSI', 'TryEnterCriticalSection', 'HeapCreate', 'HeapFree', 'EnterCriticalSection', 'GetFullPathNameW', 'GetDiskFreeSpaceW', 'OutputDebugStringA', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetFullPathNameA', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'GetFileAttributesW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesA', 'GetFileAttributesExW', 'OutputDebugStringW', 'FlushViewOfFile', 'CreateFileA', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'GetSystemInfo', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'LookupAccountNameW', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'IsValidSecurityDescriptor', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetTokenInformation', 'GetLengthSid', 'FreeSid', 'EqualSid', 'DuplicateToken', 'AllocateAndInitializeSid', 'AddAccessAllowedAce', 'AccessCheck', 'OpenThreadToken', 'OpenProcessToken', 'ShellExecuteExA', 'CoInitializeEx', 'CoGetObject', 'CoUninitialize', 'InternetGetCookieExA', 'Netbios', 'RtlInitUnicodeString', 'NtFreeVirtualMemory', 'LdrEnumerateLoadedModules', 'RtlEqualUnicodeString', 'RtlAcquirePebLock', 'NtAllocateVirtualMemory', 'RtlReleasePebLock', 'RtlNtStatusToDosError', 'RtlCreateHeap', 'RtlDestroyHeap', 'RtlAllocateHeap', 'RtlFreeHeap', 'NtClose', 'NtOpenKey', 'NtEnumerateValueKey', 'NtQueryValueKey'], ['GetShortPathNameA', 'CreateFileA', 'GetCPInfo', 'GetOEMCP', 'GetAtomNameA', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileAttributesA', 'GetFileTime', 'HeapFree', 'RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'TerminateProcess', 'UnhandledExceptionFilter', 'GetFullPathNameA', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'GetACP', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GlobalFlags', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetModuleFileNameW', 'InterlockedDecrement', 'InterlockedIncrement', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'lstrcatA', 'WinExec', 'lstrcpyA', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'SetUnhandledExceptionFilter', 'InterlockedExchange', 'DestroyIcon', 'GetDialogBaseUnits', 'GetMenuItemInfoA', 'DestroyMenu', 'UnregisterClassA', 'FillRect', 'WindowFromPoint', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'DeleteMenu', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'GetScrollInfo', 'SetScrollInfo', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetWindowsHookExA', 'CallNextHookEx', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'GetSysColor', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'GetClassInfoExA', 'TabbedTextOutA', 'SendMessageA', 'MessageBeep', 'SetCapture', 'RedrawWindow', 'ReleaseCapture', 'PtInRect', 'GetClientRect', 'SetCursor', 'SetWindowLongA', 'IsWindow', 'InvalidateRect', 'InflateRect', 'ReleaseDC', 'GetDC', 'GetParent', 'GetWindowRect', 'CopyIcon', 'LoadCursorA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageA', 'PostQuitMessage', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'SetWindowPlacement', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'GetViewportExtEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'SetViewportExtEx', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'SelectPalette', 'GetStockObject', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'GetObjectA', 'CreateFontIndirectA', 'GetWindowExtEx', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCloseKey', 'RegCreateKeyA', 'ExtractIconA', 'SHGetFileInfoA', 'ShellExecuteA', 'PathFindExtensionA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetPrivateProfileSectionNamesW', 'CreateTimerQueue', 'CreateMutexW', 'SearchPathW', 'lstrcmpA', 'SetLocaleInfoA', 'EnumCalendarInfoA', 'GetModuleHandleExA', 'BuildCommDCBAndTimeoutsA', 'CallNamedPipeA', 'LocalCompact', 'EnumCalendarInfoW', 'SetDefaultCommConfigW', 'InterlockedCompareExchange', 'WriteConsoleInputA', 'BackupSeek', '_lclose', 'GetWindowsDirectoryA', 'FindActCtxSectionStringA', 'SetProcessPriorityBoost', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GlobalAlloc', 'GetSystemDirectoryW', 'GetFirmwareEnvironmentVariableA', 'LoadLibraryW', 'GetFileAttributesA', 'GetComputerNameExA', 'TransactNamedPipe', 'PulseEvent', 'IsDBCSLeadByte', 'CompareStringW', 'GetDevicePowerState', 'DeactivateActCtx', 'GetConsoleOutputCP', 'GetStdHandle', 'SetLastError', 'GetProcAddress', 'ResetEvent', 'OpenWaitableTimerA', 'OpenMutexA', 'CreateFileMappingA', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'WriteProfileSectionW', 'AddAtomA', 'WaitForMultipleObjects', 'EnumResourceTypesW', 'FindNextFileA', 'GetModuleHandleA', 'GetStringTypeW', 'WaitForDebugEvent', 'GetCurrentThreadId', 'DeleteFileW', 'CopyFileExA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetConsoleAliasW', 'LocalUnlock', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetLastError', 'InterlockedDecrement', 'GetCurrentThread', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapFree', 'FatalAppExitA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'GetLocaleInfoW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'SetFilePointer', 'IsProcessorFeaturePresent', 'HeapSize', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle', 'CreateFileW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'DeleteFileA', 'LoadMenuA', 'ReportEventW'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationW', 'SetPriorityClass', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointA', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'GetTimeZoneInformation', 'GetSystemDirectoryA', 'GetDriveTypeW', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'WaitForDebugEvent', 'EndUpdateResourceW', 'GetLastError', 'GetSystemTime', 'GlobalMemoryStatusEx', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'TerminateThread', 'GetACP', 'FindAtomA', 'EnterCriticalSection', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'GetOverlappedResult', 'CreateNamedPipeA', 'InterlockedDecrement', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'AreFileApisANSI', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'GetStringTypeW', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileA', 'GetCommMask', 'CloseHandle', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotA', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'CopyFileExA', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'HeapUnlock', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ImpersonateSelf'], ['GetFileAttributesW', 'GetFileSizeEx', 'CreateFileA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'ReadFile', 'GetFileSize', 'WriteFile', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetFileAttributesW', 'SetCurrentDirectoryW', 'CreateDirectoryW', 'GetTempPathW', 'GetWindowsDirectoryW', 'GetFileAttributesA', 'SizeofResource', 'LockResource', 'LoadResource', 'MultiByteToWideChar', 'Sleep', 'OpenMutexA', 'GetFullPathNameA', 'CopyFileA', 'GetModuleFileNameA', 'VirtualAlloc', 'VirtualFree', 'FreeLibrary', 'HeapAlloc', 'GetProcessHeap', 'GetModuleHandleA', 'SetLastError', 'VirtualProtect', 'IsBadReadPtr', 'HeapFree', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'CreateDirectoryA', 'GetStartupInfoA', 'SetFilePointer', 'SetFileTime', 'GetComputerNameW', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'GlobalAlloc', 'LoadLibraryA', 'GetProcAddress', 'GlobalFree', 'CreateProcessA', 'CloseHandle', 'WaitForSingleObject', 'TerminateProcess', 'GetExitCodeProcess', 'FindResourceA', 'wsprintfA', 'CreateServiceA', 'OpenServiceA', 'StartServiceA', 'CloseServiceHandle', 'CryptReleaseContext', 'RegCreateKeyW', 'RegSetValueExA', 'RegQueryValueExA', 'RegCloseKey', 'OpenSCManagerA', 'realloc', 'fclose', 'fwrite', 'fread', 'fopen', 'sprintf', 'rand', 'srand', 'strcpy', 'memset', 'strlen', 'wcscat', 'wcslen', '__CxxFrameHandler', '??3@YAXPAX@Z', 'memcmp', '_except_handler3', '_local_unwind2', 'wcsrchr', 'swprintf', '??2@YAPAXI@Z', 'memcpy', 'strcmp', 'strrchr', '__p___argv', '__p___argc', '_stricmp', 'free', 'malloc', '??0exception@@QAE@ABV0@@Z', '??1exception@@UAE@XZ', '??0exception@@QAE@ABQBD@Z', '_CxxThrowException', 'calloc', 'strcat', '_mbsstr', '??1type_info@@UAE@XZ', '_exit', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp'], ['GetModuleHandleA', '_CorExeMain'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'GetPrivateProfileIntW', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['CreateDirectoryExW', 'ReadConsoleInputA', 'GetTempPathW', 'GetSystemDirectoryW', 'RemoveDirectoryA', 'OutputDebugStringW', 'GetProcAddress', 'LocalAlloc', 'MoveFileWithProgressW', 'SearchPathW', 'VerifyVersionInfoW', 'CopyFileExW', 'GetThreadLocale', 'FindNextFileA', 'FindFirstVolumeW', 'LocalShrink', 'LocalFlags', 'ExitThread', 'GetModuleHandleW', 'SetFileTime', 'InterlockedDecrement', 'RemoveVectoredExceptionHandler', 'lstrcatA', 'CreateActCtxW', 'UpdateResourceW', 'CopyFileW', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'EnumResourceLanguagesA', 'InterlockedIncrement', 'SetFileApisToOEM', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructA', 'AddConsoleAliasA', 'GetConsoleAliasW', 'FindResourceA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['GetConsoleAliasesLengthW', 'AllocConsole', 'GetConsoleAliasExesLengthA', 'InterlockedIncrement', 'OpenJobObjectA', 'InterlockedDecrement', 'GetUserDefaultLCID', 'WriteConsoleInputA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetCommandLineA', 'GetPriorityClass', 'GetVolumePathNameW', 'SetFileShortNameW', 'GetCalendarInfoW', 'LeaveCriticalSection', 'CreateSemaphoreA', 'GetFileAttributesW', 'WriteConsoleW', 'GetCompressedFileSizeA', 'CompareStringW', 'GetVolumePathNameA', 'SetThreadPriority', 'CreateMailslotW', 'DeleteFiber', 'GetCPInfoExW', 'CreateMutexW', 'SetLastError', 'GetProcAddress', 'SearchPathA', 'GlobalFree', 'GetTempFileNameA', 'OpenWaitableTimerA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'SetCalendarInfoW', 'MoveFileA', 'GetNumberFormatW', 'BeginUpdateResourceA', 'AddAtomA', 'HeapWalk', 'OpenJobObjectW', 'GetPrivateProfileSectionNamesA', 'FindNextFileA', 'GetModuleHandleA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'EnumDateFormatsW', 'GetShortPathNameW', 'GetCPInfoExA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'LocalFileTimeToFileTime', 'GetCurrentDirectoryW', 'GetVolumeNameForVolumeMountPointA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'WideCharToMultiByte', 'HeapSetInformation', 'GetStartupInfoW', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'CloseHandle', 'RaiseException', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'MultiByteToWideChar', 'IsProcessorFeaturePresent', 'LCMapStringW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LoadLibraryW', 'HeapReAlloc', 'ReadFile', 'CreateFileW', 'ReadEventLogW'], ['memset', 'wcsncmp', 'memmove', 'wcsncpy', 'wcsstr', '_wcsnicmp', '_wcsdup', 'free', '_wcsicmp', 'wcslen', 'wcscpy', 'wcscmp', 'wcscat', 'memcpy', 'tolower', 'malloc', 'GetModuleHandleW', 'HeapCreate', 'GetStdHandle', 'SetConsoleCtrlHandler', 'HeapDestroy', 'ExitProcess', 'WriteFile', 'GetTempFileNameW', 'LoadLibraryExW', 'EnumResourceTypesW', 'FreeLibrary', 'RemoveDirectoryW', 'EnumResourceNamesW', 'GetCommandLineW', 'LoadResource', 'SizeofResource', 'FreeResource', 'FindResourceW', 'GetNativeSystemInfo', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'EnterCriticalSection', 'CloseHandle', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'TerminateThread', 'CreateThread', 'GetProcAddress', 'GetVersionExW', 'Sleep', 'WideCharToMultiByte', 'HeapAlloc', 'HeapFree', 'LoadLibraryW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetModuleFileNameW', 'PeekNamedPipe', 'TerminateProcess', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GetCurrentProcess', 'DuplicateHandle', 'CreatePipe', 'CreateProcessW', 'GetExitCodeProcess', 'SetUnhandledExceptionFilter', 'HeapSize', 'MultiByteToWideChar', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTempPathW', 'DeleteFileW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'CreateFileW', 'SetFilePointer', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TlsAlloc', 'HeapReAlloc', 'DeleteCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetLastError', 'SetLastError', 'UnregisterWait', 'GetCurrentThread', 'RegisterWaitForSingleObject', 'CharUpperW', 'CharLowerW', 'MessageBoxW', 'DefWindowProcW', 'DestroyWindow', 'GetWindowLongW', 'GetWindowTextLengthW', 'GetWindowTextW', 'UnregisterClassW', 'LoadIconW', 'LoadCursorW', 'RegisterClassExW', 'IsWindowEnabled', 'EnableWindow', 'GetSystemMetrics', 'CreateWindowExW', 'SetWindowLongW', 'SendMessageW', 'SetFocus', 'CreateAcceleratorTableW', 'SetForegroundWindow', 'BringWindowToTop', 'GetMessageW', 'TranslateAcceleratorW', 'TranslateMessage', 'DispatchMessageW', 'DestroyAcceleratorTable', 'PostMessageW', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'IsWindowVisible', 'EnumWindows', 'SetWindowPos', 'GetStockObject', 'InitCommonControlsEx', 'ShellExecuteExW', 'SHGetFolderLocation', 'SHGetPathFromIDListW', 'timeBeginPeriod', 'CoInitialize', 'CoTaskMemFree', 'PathAddBackslashW', 'PathRenameExtensionW', 'PathQuoteSpacesW', 'PathRemoveArgsW', 'PathRemoveBackslashW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'sndPlaySoundA', 'PlaySoundA', 'LresultFromObject', 'InetIsOffline'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'PatBlt', 'NtQueryInformationProcess', 'VariantCopy', 'SHGetFileInfoA', 'GetDC', 'WSAIoctl', 'send'], ['HeapFree', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'Sleep', 'GetACP', 'FileTimeToLocalFileTime', 'LCMapStringW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetOEMCP', 'GetCPInfo', 'FileTimeToSystemTime', 'CreateFileA', 'GetFullPathNameA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'GetThreadLocale', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'InterlockedDecrement', 'FormatMessageA', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'LocalFree', 'LocalAlloc', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'CompareStringW', 'WideCharToMultiByte', 'lstrlenA', 'LCMapStringA', 'GetSysColorBrush', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckRadioButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetClassInfoExA', 'GetClassInfoA', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SystemParametersInfoA', 'DestroyMenu', 'CopyRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'EnableWindow', 'GetSystemMetrics', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'UnregisterClassA', 'CreateWindowExA', 'LoadCursorA', 'AppendMenuA', 'SendMessageA', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'PostQuitMessage', 'PostMessageA', 'SetCursor', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'RegisterClassA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'CreateBitmap', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'PtVisible', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'DragAcceptFiles', 'DragFinish', 'DragQueryFileA', 'PathFindExtensionA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'WTSSendMessageW', 'GetProcessWindowStation', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'exit'], ['GetLastError', 'SetLastError', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'GetTickCount', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'DebugBreak', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', 'ShowWindow', 'memmove', '_register_onexit_function', '_set_fmode', '_callnewh', '__setusermatherr', '_configthreadlocale', 'VariantChangeTypeEx', 'RaiseException'], ['CreateWindowExA'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'FreeSid', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetKeyboardType', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'TranslateMessage', 'SetWindowLongW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'ExitWindowsEx', 'DispatchMessageW', 'DestroyWindow', 'CharUpperBuffW', 'CallWindowProcW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SizeofResource', 'SignalObjectAndWait', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'MultiByteToWideChar', 'LockResource', 'LoadResource', 'LoadLibraryW', 'GetWindowsDirectoryW', 'GetVersionExW', 'GetVersion', 'GetUserDefaultLangID', 'GetThreadLocale', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeProcess', 'GetEnvironmentVariableW', 'GetDiskFreeSpaceW', 'GetCurrentProcess', 'GetCommandLineW', 'GetCPInfo', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'EnumCalendarInfoW', 'DeleteFileW', 'CreateProcessW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CloseHandle', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'InitCommonControls', 'Sleep', 'AdjustTokenPrivileges'], ['WinHttpOpen', 'WinHttpConnect', 'WinHttpReadData', 'WinHttpOpenRequest', 'WinHttpSendRequest', 'WinHttpReceiveResponse', 'WinHttpQueryDataAvailable', 'WinHttpCloseHandle', 'WSAStartup', 'WSACleanup', 'gethostname', 'gethostbyname', 'inet_ntoa', 'accept', 'GetVersionExW', 'GetProcAddress', 'GetModuleHandleW', 'GetSystemInfo', 'LocalAlloc', 'GetTickCount', 'GetTempPathA', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'CreateFileW', 'GetFileSize', 'ReadFile', 'CloseHandle', 'LocalShrink', 'CreateThread', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'GetLocaleInfoW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'LocalCompact', 'LocalFlags', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'LoadLibraryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'CreateProcessA', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'CompareStringW', 'SetEnvironmentVariableA', 'SetEndOfFile', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetModuleFileNameW', 'FlushFileBuffers', 'Sleep', 'InitializeCriticalSection', 'SetFilePointer', 'GetConsoleMode', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'GetProcessHeap', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'MultiByteToWideChar', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapSize', 'ExitProcess', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'GetFileAttributesA', 'WriteFile', 'GetConsoleCP', 'ShowOwnedPopups', 'ShowCaret', 'wsprintfW', 'GetKeyboardLayoutList', 'FlashWindow', 'ShowWindow', 'CreateCompatibleDC', 'CreateMetaFileW', 'GetBrushOrgEx', 'DrawEscape', 'DescribePixelFormat', 'CreateCompatibleBitmap', 'CopyMetaFileA', 'Arc', 'GetPixel', 'AddFontResourceA', 'AnimatePalette', 'ChoosePixelFormat', 'CreateBitmap', 'ImpersonateSelf', 'SetThreadToken', 'DragQueryPoint', 'DragFinish', 'FindExecutableW', 'GetAdaptersInfo', 'timeGetTime'], ['ExitProcess', 'GetNativeSystemInfo', 'FreeLibrary', 'HeapAlloc', 'HeapFree', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'GetLastError', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'SetEnvironmentVariableA', 'CreateFileW', 'HeapReAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'GetModuleHandleExW', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetTimeZoneInformation', 'RtlUnwind', 'GetConsoleMode', 'GetConsoleCP', 'CloseHandle', 'GetFileType', 'DeleteCriticalSection', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'LoadLibraryExW', 'OutputDebugStringW', 'SetFilePointerEx', 'SetStdHandle', 'WriteConsoleW', 'FlushFileBuffers', 'HeapSize', 'RaiseException', 'ShowWindow', 'MessageBoxA'], ['SHAutoComplete', 'PathCombineA', 'StrFormatByteSize64A', 'PathRemoveFileSpecA', 'PathRenameExtensionA', 'GetCurrentDirectoryA', 'lstrcpyA', 'MulDiv', 'lstrcpynA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FlushInstructionCache', 'GetCurrentProcess', 'lstrcmpA', 'FindFirstFileExA', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'Sleep', 'lstrcatA', 'GetProcAddress', 'FindResourceExA', 'LockResource', 'GetFileAttributesA', 'GetVersionExA', 'ExpandEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InterlockedExchange', 'HeapSize', 'HeapReAlloc', 'HeapDestroy', 'VirtualAlloc', 'IsDBCSLeadByte', 'IsProcessorFeaturePresent', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'InterlockedCompareExchange', 'FreeLibrary', 'LoadLibraryA', 'GetCurrentThreadId', 'DeleteCriticalSection', 'RaiseException', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'InterlockedIncrement', 'VirtualFree', 'InterlockedDecrement', 'lstrlenW', 'GetModuleHandleA', 'MultiByteToWideChar', 'lstrlenA', 'GetModuleFileNameA', 'GetLastError', 'WideCharToMultiByte', 'SizeofResource', 'LoadResource', 'FindResourceA', 'LoadLibraryExA', 'lstrcmpiA', 'FillRect', 'DefWindowProcA', 'MessageBoxA', 'DestroyWindow', 'CharNextA', 'GetActiveWindow', 'GetDialogBaseUnits', 'GetWindow', 'MonitorFromWindow', 'GetMonitorInfoA', 'GetDlgCtrlID', 'SetDlgItemTextA', 'GetWindowRect', 'SetWindowPos', 'SetFocus', 'GetWindowTextA', 'LoadCursorA', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColorBrush', 'UnregisterClassA', 'GetSysColor', 'LoadImageA', 'GetDesktopWindow', 'CallWindowProcA', 'InvalidateRect', 'EnableWindow', 'SetCursor', 'GetClientRect', 'MapWindowPoints', 'RegisterWindowMessageA', 'ReleaseDC', 'GetWindowTextLengthA', 'GetParent', 'PostMessageA', 'SetWindowTextA', 'GetDlgItem', 'GetDC', 'SendMessageA', 'GetObjectA', 'CreatePen', 'Polygon', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetDeviceCaps', 'CreateFontIndirectA', 'SelectObject', 'GetTextMetricsA', 'DeleteObject', 'DeleteDC', 'GetOpenFileNameA', 'GetSaveFileNameA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegCloseKey', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegSetValueExA', 'RegDeleteValueA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'OleUninitialize', 'VarDecCmp', 'VarDecFromStr', 'VarR8FromStr', 'VarI4FromStr', 'VarDateFromStr', 'VarUI4FromStr', 'CreatePropertySheetPageA', 'PropertySheetA', 'DestroyPropertySheetPage', 'InitCommonControlsEx', '_purecall', '_mbscmp', '_mbsinc', '_ismbcspace', '?terminate@@YAXXZ', '_CxxThrowException', '_unlock', '__dllonexit', '_encode_pointer', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', '_malloc_crt', '_initterm', '_initterm_e', '_amsg_exit', '_adjust_fdiv', '__CppXcptFilter', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_crt_debugger_hook', '__clean_type_info_names_internal', 'memset', 'memcpy_s', 'free', '??2@YAPAXI@Z', '_stricmp', '_atoi64', '_vscprintf', 'vsprintf_s', 'memmove_s', 'strnlen', 'strlen', '_recalloc', '__CxxFrameHandler3', '??_V@YAXPAX@Z', '??3@YAXPAX@Z', 'malloc', '_resetstkoflw', '??_U@YAPAXI@Z', '_mbsnbcpy_s', '_encoded_null', '_mbsstr'], ['Sleep', 'lstrlenW', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'UnlockFile', 'TerminateThread', 'TerminateProcess', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetPriorityClass', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'MulDiv', 'MoveFileExA', 'MoveFileA', 'LockResource', 'LockFile', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'HeapAlloc', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetVolumeInformationA', 'GetVersionExA', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetThreadContext', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileA', 'DeleteCriticalSection', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'DeleteService', 'CloseServiceHandle', 'RegDeleteValueA', 'UnrealizeObject', 'StretchBlt', 'SetWinMetaFileBits', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'NtQueryInformationProcess', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'SHGetFileInfoA', 'SHFileOperationA', 'CreateWindowExA', 'mouse_event', 'keybd_event', 'UpdateWindow', 'UnregisterClassA', 'TranslateMessage', 'SwapMouseButton', 'SetWindowPos', 'SetWindowLongA', 'SetTimer', 'SetRect', 'SetProcessWindowStation', 'SetCursorPos', 'SendMessageA', 'ReleaseDC', 'RegisterClassExA', 'RegisterClassA', 'PostMessageA', 'OpenWindowStationA', 'OpenDesktopA', 'MessageBoxA', 'LoadStringA', 'LoadIconA', 'KillTimer', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowLongA', 'GetWindowDC', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetProcessWindowStation', 'GetMessageA', 'GetLastInputInfo', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClipboardData', 'GetClassInfoA', 'FillRect', 'ExitWindowsEx', 'EnumWindows', 'EnumChildWindows', 'EnableMenuItem', 'EmptyClipboard', 'DrawIconEx', 'DispatchMessageA', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcA', 'CreateIcon', 'CloseWindowStation', 'CloseClipboard', 'CallWindowProcA', 'AttachThreadInput', 'CharNextA', 'CharLowerBuffA', 'CharUpperBuffA', 'CharToOemA', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'WSAIoctl', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetServByName', 'WSAAsyncGetHostByName', 'WSAAsyncSelect', 'getservbyname', 'gethostbyname', 'socket', 'shutdown', 'send', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'getsockname', 'connect', 'closesocket', 'bind'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'GetThreadLocale', 'GetStartupInfoA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'GetTokenInformation', 'FreeSid', 'EqualSid', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'TerminateProcess', 'SystemTimeToFileTime', 'Sleep', 'SetFileTime', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'ReadFile', 'OpenProcess', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'LoadLibraryA', 'GlobalFree', 'GlobalAlloc', 'GetVersion', 'GetUserDefaultLangID', 'GetProcAddress', 'GetModuleHandleA', 'GetLocalTime', 'GetLastError', 'GetFileTime', 'GetFileSize', 'GetExitCodeProcess', 'GetCurrentThread', 'GetCurrentProcess', 'FreeLibrary', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'DosDateTimeToFileTime', 'CompareFileTime', 'CloseHandle', 'StretchDIBits', 'StretchBlt', 'SetWindowOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetRectRgn', 'SetROP2', 'SetPixel', 'SetDIBits', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectObject', 'SaveDC', 'RestoreDC', 'OffsetRgn', 'MoveToEx', 'IntersectClipRect', 'GetStockObject', 'GetPixel', 'GetDIBits', 'ExtSelectClipRgn', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CombineRgn', 'BitBlt', 'WaitMessage', 'ValidateRect', 'TranslateMessage', 'ShowWindow', 'SetWindowPos', 'SetTimer', 'SetParent', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SendMessageA', 'ScreenToClient', 'ReleaseDC', 'PostQuitMessage', 'OffsetRect', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'InvalidateRect', 'GetWindowRgn', 'GetWindowRect', 'GetWindowDC', 'GetUpdateRgn', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetParent', 'GetWindow', 'GetKeyState', 'GetFocus', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetCapture', 'FillRect', 'ExitWindowsEx', 'EnumWindows', 'EndPaint', 'EnableWindow', 'EnableMenuItem', 'DrawIcon', 'DestroyWindow', 'DestroyIcon', 'DeleteMenu', 'CopyImage', 'ClientToScreen', 'BeginPaint', 'CharLowerBuffA', 'timeKillEvent', 'timeSetEvent', 'SysAllocStringLen', 'OleInitialize', 'ImageList_Draw', 'ImageList_SetBkColor', 'ImageList_Create', 'InitCommonControls', 'SHGetFileInfoA', 'wvsprintfA', 'SetWindowLongA', 'SetPropA', 'SendMessageA', 'RemovePropA', 'RegisterClassA', 'PostMessageA', 'PeekMessageA', 'MessageBoxA', 'LoadIconA', 'LoadCursorA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindowLongA', 'GetPropA', 'GetClassLongA', 'GetClassInfoA', 'FindWindowA', 'DrawTextA', 'DispatchMessageA', 'DefWindowProcA', 'CreateWindowExA', 'CallWindowProcA', 'GetTextExtentPoint32A', 'GetObjectA', 'CreateFontIndirectA', 'AddFontResourceA', 'WritePrivateProfileStringA', 'SetFileAttributesA', 'SetCurrentDirectoryA', 'RemoveDirectoryA', 'LoadLibraryA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetTimeFormatA', 'GetTempPathA', 'GetSystemDirectoryA', 'GetShortPathNameA', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetComputerNameA', 'GetCommandLineA', 'FindNextFileA', 'FindFirstFileA', 'ExpandEnvironmentStringsA', 'DeleteFileA', 'CreateFileA', 'CreateDirectoryA', 'CompareStringA', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegEnumKeyExA', 'RegCreateKeyExA', 'LookupPrivilegeValueA', 'GetUserNameA', 'ShellExecuteExA', 'ShellExecuteA', 'FDIDestroy', 'FDICopy', 'FDICreate', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHChangeNotify', 'SHBrowseForFolderA'], ['GetModuleHandleA', '_CIcos'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'VariantChangeTypeEx', 'RaiseException'], ['GetLastError', 'WaitForSingleObject', 'CreateMutexW', 'Sleep', 'CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'lstrlenW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow', 'SetClipboardViewer'], ['Sleep', 'GetSystemDirectoryA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'FindResourceA', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'SetEndOfFile', 'LoadResource', 'LockResource', 'SizeofResource', 'DeleteFileA', 'CreateFileA', 'SetFileTime', 'CloseHandle', 'WriteFile', 'GetTickCount', 'GetLocalTime', 'SystemTimeToFileTime', 'GetFileAttributesA', 'CreateDirectoryA', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapFree', 'GetLastError', 'ReadFile', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetProcAddress', 'LoadLibraryA', 'GetStringTypeW', 'ShowWindow', 'EndDialog', 'PostQuitMessage', 'DialogBoxParamA', 'OpenSCManagerA', 'OpenServiceA', 'CloseServiceHandle', 'QueryServiceStatus', 'ControlService', 'DeleteService', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCloseKey', 'CreateServiceA', 'ChangeServiceConfig2A', 'RegCreateKeyA', 'StartServiceA'], ['SizeofResource', 'GetCommandLineW', 'VirtualAlloc', 'FreeResource', 'LockResource', 'LoadResource', 'FindResourceW', 'ExitProcess', 'GetModuleHandleW', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'LCMapStringW', 'LocalFree', 'GetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CommandLineToArgvW', 'CoInitialize', 'SafeArrayDestroy', 'VariantInit', 'SysAllocString', 'SafeArrayPutElement', 'SafeArrayUnaccessData', 'SafeArrayCreate', 'SafeArrayCreateVector', 'SafeArrayAccessData', 'VariantClear', 'CLRCreateInstance'], ['CreateDirectoryExW', 'ReadConsoleInputA', 'GetTempPathW', 'GetSystemDirectoryW', 'RemoveDirectoryA', 'OutputDebugStringW', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'FindResourceA', 'LoadModule', 'InterlockedDecrement', 'RemoveVectoredExceptionHandler', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'CopyFileExW', 'GetThreadLocale', 'GetModuleHandleW', 'FindFirstVolumeW', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'EnumResourceLanguagesA', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructW', 'AddConsoleAliasA', 'GetConsoleAliasW', 'FindNextFileA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleAliasExesLengthA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'DeleteFileA', 'FindResourceExW', 'SearchPathA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetSysColorBrush', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleHandleW', 'MessageBoxW', 'RegOpenKeyExW', '_CorExeMain', 'ImageList_Create', 'ShellAboutW'], ['GetLastError', 'SetLastError', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'GetTickCount', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetStdHandle', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer'], ['GetModuleHandleA', 'PeekMessageA', 'RegQueryValueA', 'SHGetFolderPathW', 'ImageList_SetBkColor'], ['GetModuleHandleA', 'GetDlgItem', 'RegCloseKey', '_CorExeMain', 'PathMakeUniqueName', 'ImageList_Draw'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'TlsSetValue', 'TlsGetValue', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'WriteFile', 'SizeofResource', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GetTempPathA', 'GetTempFileNameA', 'GetProcAddress', 'FreeResource', 'FreeLibrary', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'DeleteFileA', 'CreateFileA', 'CloseHandle', 'TranslateMessage', 'PeekMessageA', 'MessageBoxA', 'GetActiveWindow', 'DispatchMessageA'], ['GetLocaleInfoA', 'CreateToolhelp32Snapshot', 'OpenMutexA', 'Process32NextW', 'LoadLibraryA', 'Process32FirstW', 'GetProcAddress', 'VirtualProtect', 'SetLastError', 'VirtualFree', 'VirtualAlloc', 'GetNativeSystemInfo', 'HeapAlloc', 'GetProcessHeap', 'FreeLibrary', 'IsBadReadPtr', 'GetTempPathW', 'OpenProcess', 'lstrcatW', 'GetCurrentProcessId', 'GetTempFileNameW', 'GetCurrentProcess', 'GetSystemDirectoryA', 'GlobalAlloc', 'GlobalLock', 'GetTickCount', 'GlobalUnlock', 'WriteProcessMemory', 'ResumeThread', 'GetThreadContext', 'VirtualAllocEx', 'ReadProcessMemory', 'CreateProcessW', 'SetThreadContext', 'LocalAlloc', 'GlobalFree', 'MulDiv', 'SizeofResource', 'GetLongPathNameW', 'SetFilePointer', 'FindResourceA', 'LockResource', 'LoadResource', 'LocalFree', 'FormatMessageA', 'GetModuleFileNameA', 'lstrcpynA', 'AllocConsole', 'CreateMutexA', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'HeapSize', 'WriteConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindFirstFileExA', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'GetTimeZoneInformation', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'HeapReAlloc', 'GetACP', 'GetStdHandle', 'GetModuleHandleExW', 'MoveFileExW', 'RtlUnwind', 'RaiseException', 'LoadLibraryExW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'TlsFree', 'TlsSetValue', 'CopyFileW', 'DeleteFileA', 'ExpandEnvironmentStringsA', 'FindNextFileA', 'FindFirstFileA', 'GetFileSize', 'TerminateThread', 'CreateDirectoryW', 'GetLastError', 'SetFileAttributesW', 'GetModuleHandleA', 'RemoveDirectoryW', 'MoveFileW', 'SetFilePointerEx', 'GetLogicalDriveStringsA', 'DeleteFileW', 'GetFileAttributesW', 'FindClose', 'lstrlenA', 'GetDriveTypeA', 'FindNextFileW', 'GetFileSizeEx', 'FindFirstFileW', 'ExitProcess', 'CreateProcessA', 'PeekNamedPipe', 'CreatePipe', 'TerminateProcess', 'ReadFile', 'HeapFree', 'HeapCreate', 'CreateEventA', 'GetLocalTime', 'CreateThread', 'SetEvent', 'CreateEventW', 'WaitForSingleObject', 'Sleep', 'GetModuleFileNameW', 'CloseHandle', 'ExitThread', 'CreateFileW', 'WriteFile', 'QueryPerformanceFrequency', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'DecodePointer', 'EncodePointer', 'WideCharToMultiByte', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEndOfFile', 'SetForegroundWindow', 'SetClipboardData', 'EnumWindows', 'ExitWindowsEx', 'EmptyClipboard', 'ShowWindow', 'SetWindowTextW', 'MessageBoxW', 'IsWindowVisible', 'TranslateMessage', 'DispatchMessageA', 'GetMessageA', 'GetWindowTextW', 'wsprintfW', 'GetClipboardData', 'UnhookWindowsHookEx', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'GetKeyboardLayout', 'SetWindowsHookExA', 'CloseClipboard', 'OpenClipboard', 'GetKeyboardState', 'CallNextHookEx', 'CloseWindow', 'SendInput', 'mouse_event', 'DrawIcon', 'GetSystemMetrics', 'GetIconInfo', 'SystemParametersInfoW', 'GetCursorPos', 'RegisterClassExA', 'GetKeyboardLayoutNameA', 'GetWindowTextLengthW', 'GetKeyState', 'ToUnicodeEx', 'AppendMenuA', 'CreateWindowExA', 'DefWindowProcA', 'TrackPopupMenu', 'CreatePopupMenu', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'DeleteObject', 'CreateDCA', 'GetObjectA', 'SelectObject', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameW', 'RegEnumKeyExA', 'QueryServiceStatus', 'CloseServiceHandle', 'OpenSCManagerW', 'OpenSCManagerA', 'ControlService', 'StartServiceW', 'QueryServiceConfigW', 'ChangeServiceConfigW', 'OpenServiceW', 'EnumServicesStatusW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCreateKeyA', 'RegCloseKey', 'RegQueryInfoKeyW', 'RegQueryValueExA', 'RegCreateKeyExW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegSetValueExA', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegQueryValueExW', 'RegDeleteKeyA', 'ShellExecuteW', 'ShellExecuteExA', 'Shell_NotifyIconA', 'ExtractIconA', 'PathFileExistsW', 'PathFileExistsA', 'StrToIntA', 'PlaySoundW', 'mciSendStringA', 'mciSendStringW', 'waveInClose', 'waveInAddBuffer', 'waveInStart', 'waveInOpen', 'waveInUnprepareHeader', 'waveInPrepareHeader', 'waveInStop', 'send', 'socket', 'connect', 'recv', 'gethostbyname', 'WSASetLastError', 'inet_addr', 'gethostbyaddr', 'getservbyport', 'ntohs', 'getservbyname', 'htonl', 'htons', 'inet_ntoa', 'closesocket', 'WSAGetLastError', 'WSAStartup', 'URLDownloadToFileW', 'URLOpenBlockingStreamW', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipCloneImage', 'GdipAlloc', 'GdipDisposeImage', 'GdipFree', 'GdipGetImageEncodersSize', 'GdipSaveImageToStream', 'GdipSaveImageToFile', 'GdipLoadImageFromStream'], ['GetSysColorBrush', 'TlsAlloc', 'GetSystemTimeAsFileTime', 'CharUpperBuffW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PtVisible', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetSysColorBrush', 'CharUpperBuffW', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleHandleA', 'GetProcessWindowStation', 'RegCloseKey', 'PropertySheet'], ['GetStringTypeA', 'ReleaseMutex', 'ResumeThread', 'SetThreadPriority', 'GetLastError', 'WaitForSingleObject', 'CreateMutexA', 'CreateThread', 'GetCommandLineA', 'GetProcAddress', 'ExitProcess', 'GlobalFree', 'LoadLibraryA', 'GlobalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetDriveTypeA', 'FindClose', 'FindNextFileA', 'CloseHandle', 'SetFileTime', 'GetFileTime', 'CreateFileA', 'FindFirstFileA', 'SetCurrentDirectoryA', 'WriteFile', 'ReadFile', 'SetFilePointer', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'FreeLibrary', 'GetStartupInfoA', 'GetVersion', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'MultiByteToWideChar', 'MessageBoxA', 'ShellExecuteA'], ['GetProcessHeap', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'GetCommandLineA', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'FileTimeToLocalFileTime', 'GetFileTime', 'GetFileAttributesW', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringW', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'GetModuleHandleA', 'lstrlenW', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GlobalAddAtomW', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'SetHandleCount', 'ExitProcess', 'CharUpperW', 'CharNextW', 'CopyAcceleratorTableW', 'IsRectEmpty', 'SetRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'FindWindowW', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadAcceleratorsW', 'InsertMenuItemW', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorW', 'InvalidateRect', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'TrackPopupMenu', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'SystemParametersInfoW', 'DestroyMenu', 'GetMenuItemInfoW', 'InflateRect', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'ScreenToClient', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'FillRect', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindow', 'GetSysColorBrush', 'LoadCursorW', 'DestroyCursor', 'SetCursorPos', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuW', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'ShowOwnedPopups', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SetCapture', 'GetFocus', 'GetParent', 'OffsetRect', 'RedrawWindow', 'GetSystemMenu', 'GetWindowRect', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadIconW', 'AppendMenuW', 'GetSystemMetrics', 'SendMessageW', 'EnableWindow', 'DeferWindowPos', 'UnregisterClassA', 'CreatePatternBrush', 'SelectObject', 'CreateCompatibleDC', 'GetStockObject', 'GetDeviceCaps', 'CreateSolidBrush', 'CreateFontIndirectW', 'GetTextExtentPoint32W', 'CreateCompatibleBitmap', 'DeleteDC', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'PatBlt', 'CreateBitmap', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectW', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'SetViewportOrgEx', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'DragQueryFileW', 'DragFinish', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'SysFreeString'], ['ExitProcess', 'GetNativeSystemInfo', 'FreeLibrary', 'HeapAlloc', 'HeapFree', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'GetLastError', 'HeapReAlloc', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'GetModuleHandleExW', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetStringTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'LCMapStringW', 'LoadLibraryExW', 'OutputDebugStringW', 'RtlUnwind', 'HeapSize', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CloseHandle', 'SetStdHandle', 'WriteConsoleW', 'CreateFileW'], ['AllocConsole', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetConsoleAliasesW', 'SetFilePointer', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'MoveFileA', 'FindFirstChangeNotificationA', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'GetStdHandle', 'UnregisterWait', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['OpenProcessToken', 'getaddrinfo', 'EnumDisplayDevicesA', 'SetEndOfFile', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['RaiseException', 'GetLastError', 'MultiByteToWideChar', 'lstrlenA', 'InterlockedDecrement', 'GetProcAddress', 'LoadLibraryA', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetModuleHandleA', 'Module32Next', 'CloseHandle', 'Module32First', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'SetEndOfFile', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetLocaleInfoA', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'GetCommandLineA', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'FlushFileBuffers', 'SetFilePointer', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'RtlUnwind', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'OleInitialize', 'SafeArrayCreate', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysAllocString'], ['OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'MoveFileExW', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'VirtualUnlock', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'ExitThread', 'GetModuleFileNameW', 'VirtualAlloc', 'TerminateProcess', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'lstrlenW', 'CloseHandle', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'HttpQueryInfoA', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'wglDeleteContext', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetVolumePathNameW', 'GetCalendarInfoA', 'GetProcessHandleCount', 'GetFileAttributesA', 'WriteConsoleW', 'SetSystemPowerState', 'GetModuleFileNameW', 'CompareStringW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'GetPrivateProfileIntW', 'DeleteFiber', 'SetLastError', 'GetProcAddress', 'InterlockedIncrement', 'HeapSize', 'SetComputerNameA', 'EnterCriticalSection', 'SearchPathA', 'OpenWaitableTimerA', 'LoadLibraryA', 'Process32FirstW', 'GetProcessId', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetFileShortNameA', 'FindAtomW', 'AreFileApisANSI', 'GetConsoleAliasExesLengthA', 'AttachConsole', 'GetVolumeNameForVolumeMountPointA', 'GetLastError', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsW', 'SelectObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'wglDeleteContext', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'RtlUnwind', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'GetTickCount', 'GetFileTime', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringW', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GetModuleHandleA', 'InterlockedDecrement', 'lstrlenW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomW', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetEnvironmentStrings', 'ExitProcess', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'MessageBeep', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'CharNextW', 'CharUpperW', 'SetPropW', 'GetSysColorBrush', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageW', 'PostQuitMessage', 'InvalidateRect', 'LoadBitmapW', 'GetParent', 'GetClientRect', 'IsIconic', 'DrawIcon', 'GetSystemMetrics', 'SendMessageW', 'GetSystemMenu', 'AppendMenuW', 'LoadIconW', 'EnableWindow', 'UnregisterClassA', 'ScaleWindowExtEx', 'GetWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'SetWindowExtEx', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'GetViewportExtEx', 'DeleteObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'BitBlt', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetPixel', 'GetObjectW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SetPixelV', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString'], ['DirectDrawCreate', 'GetConsoleMode', 'GetConsoleCP', '_lclose', 'FlushFileBuffers', 'CompareStringW', 'CompareStringA', 'GetTimeZoneInformation', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetModuleHandleA', 'FindResourceA', 'LoadResource', 'LockResource', '_lopen', 'SetEnvironmentVariableA', '_lread', 'OutputDebugStringA', 'InitializeCriticalSection', 'LCMapStringW', 'LCMapStringA', 'HeapAlloc', 'GetLastError', 'HeapFree', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapCreate', 'HeapDestroy', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryA', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'CreateFileA', 'LoadCursorA', 'RegisterClassExA', 'GetSystemMetrics', 'CreateWindowExA', 'ShowWindow', 'PeekMessageA', 'DispatchMessageA', 'DestroyWindow', 'DefWindowProcA', 'ShowCursor', 'SendMessageA', 'PostQuitMessage', 'LoadImageA', 'TranslateMessage', 'CreateFontA', 'SetTextColor', 'SetBkColor', 'SetBkMode', 'TextOutA', 'DeleteObject', 'GetPixel', 'SetPixel', 'CreateCompatibleDC', 'SelectObject', 'GetObjectA', 'StretchBlt', 'DeleteDC', 'GetStockObject', 'SetFileSecurityW', 'CommandLineToArgvW'], ['RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'FatalAppExitA', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'GetModuleFileNameW', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'FreeResource', 'GetCurrentThreadId', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'GetCurrentProcessId', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'WideCharToMultiByte', 'lstrlenW', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'InterlockedExchange', 'GetVersion', 'FreeEnvironmentStringsA', 'GetEnvironmentVariableW', 'MapVirtualKeyA', 'IsRectEmpty', 'DeleteMenu', 'GetSystemMenu', 'SetParent', 'UnionRect', 'DestroyIcon', 'UnregisterClassA', 'WindowFromPoint', 'GetDCEx', 'LockWindowUpdate', 'SetCapture', 'EndDialog', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'GetDialogBaseUnits', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'IsChild', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetKeyNameTextA', 'CallWindowProcA', 'GetWindowPlacement', 'RegisterWindowMessageA', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetClassNameA', 'WinHelpA', 'GetWindowThreadProcessId', 'GetActiveWindow', 'EqualRect', 'GetKeyState', 'GetMenu', 'LoadIconA', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'LoadAcceleratorsA', 'SetActiveWindow', 'IsWindowVisible', 'IsIconic', 'InsertMenuItemA', 'CreatePopupMenu', 'GetClassInfoA', 'IntersectRect', 'SetRectEmpty', 'GetLastActivePopup', 'BringWindowToTop', 'PostMessageA', 'SetMenu', 'GetDesktopWindow', 'TranslateAcceleratorA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetFocus', 'SetWindowPos', 'ScrollWindowEx', 'SetFocus', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'IsWindow', 'SetWindowTextA', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'UpdateWindow', 'EnableWindow', 'GetWindowLongA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'SendDlgItemMessageA', 'GetDlgItemTextA', 'GetDlgItemInt', 'GetDlgItem', 'CheckRadioButton', 'CheckDlgButton', 'GetWindow', 'GetMenuState', 'GetMenuItemInfoA', 'GetSysColorBrush', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcA', 'GetWindowDC', 'SendMessageA', 'GetMessagePos', 'PtInRect', 'GetWindowRect', 'LoadImageA', 'GetSysColor', 'GetSystemMetrics', 'CopyRect', 'InflateRect', 'DrawEdge', 'DrawFrameControl', 'DrawFocusRect', 'SetRect', 'GetParent', 'GetClientRect', 'OffsetRect', 'SetTimer', 'SetCursor', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'LoadCursorA', 'KillTimer', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'GetCursorPos', 'SystemParametersInfoA', 'StartDocA', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'GetPixel', 'CreatePatternBrush', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateHatchBrush', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetTextExtentPoint32A', 'GetCharWidthA', 'StretchDIBits', 'GetBkColor', 'GetTextMetricsA', 'BitBlt', 'SetTextCharacterExtra', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'CreateDIBPatternBrushPt', 'CreateFontA', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateCompatibleBitmap', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'SelectObject', 'RoundRect', 'GetTextColor', 'GetBkMode', 'CreateFontIndirectA', 'CreateSolidBrush', 'GetStockObject', 'StretchBlt', 'Polygon', 'CreateCompatibleDC', 'GetObjectA', 'SetMapperFlags', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['WaitNamedPipeA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'SetFirmwareEnvironmentVariableW', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedIncrement', 'GetLastError', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['VirtualAlloc', 'Sleep', 'GetProcAddress', 'LoadLibraryW', 'CreateFileW', 'VirtualQuery', 'VirtualFree', 'VirtualProtect', 'GetCurrentProcess', 'FlushInstructionCache', 'LoadLibraryA', 'IsBadReadPtr', 'FreeLibrary', 'lstrcmpA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'GetCurrentThread', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FindClose', 'FindFirstFileExA', 'FindFirstFileExW', 'FindNextFileA', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'SetConsoleCtrlHandler', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'OutputDebugStringA', 'OutputDebugStringW', 'CloseHandle', 'WaitForSingleObjectEx', 'CreateThread', 'WriteConsoleW', 'EncodePointer', 'DecodePointer'], ['lstrcatA', 'GetModuleHandleA', 'CreateFileA', 'lstrcpyA', 'CreateThread', 'GetProcAddress', 'GetFileSize', 'GetConsoleWindow', 'GetLastError', 'lstrlenA', 'WriteConsoleW', 'CreateFileW', 'CloseHandle', 'QueryPerformanceCounter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RaiseException', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapReAlloc', 'SetFilePointerEx', 'GetFileType', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'GetConsoleMode', 'FlushFileBuffers', 'GetConsoleOutputCP', 'HeapSize', 'DecodePointer', 'ShowWindow'], ['GetOEMCP', 'GetCommandLineA', 'RtlUnwind', 'ExitProcess', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetCPInfo', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetModuleHandleW', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'LocalFree', 'lstrlenA', 'InterlockedDecrement', 'MulDiv', 'MultiByteToWideChar', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GlobalAddAtomA', 'GetCurrentProcessId', 'GetLastError', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'WideCharToMultiByte', 'CompareStringA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleA', 'CreateThread', 'CloseHandle', 'VirtualProtect', 'LoadLibraryA', 'VirtualAlloc', 'GetProcAddress', 'SetLastError', 'Sleep', 'IsBadReadPtr', 'GetProcessHeap', 'VirtualFree', 'HeapFree', 'HeapAlloc', 'FreeLibrary', 'VirtualQuery', 'SetHandleCount', 'GetNativeSystemInfo', 'LoadCursorA', 'GetSysColorBrush', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'GetDlgItemTextA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindow', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'DestroyMenu', 'UpdateWindow', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SetTimer', 'IsIconic', 'KillTimer', 'LoadIconA', 'DrawIcon', 'GetClientRect', 'SendMessageA', 'ShowWindow', 'PostMessageA', 'GetSystemMetrics', 'EnableWindow', 'GetMenu', 'GetStockObject', 'SelectObject', 'GetDeviceCaps', 'DeleteDC', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'CreateBitmap', 'PtVisible', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'SetViewportOrgEx', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit', 'htons', 'setsockopt', 'sendto', 'htonl', 'bind', 'socket', 'closesocket', 'inet_addr', 'recvfrom', 'WSACleanup', 'WSAStartup'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'SetFilePointer', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'InterlockedPushEntrySList', 'GetProcAddress', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['EnumCalendarInfoA', 'GetDriveTypeW', 'GlobalCompact', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'InterlockedCompareExchange', 'SetComputerNameW', 'OpenSemaphoreA', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'LoadLibraryW', 'GetConsoleAliasExesLengthW', 'InitAtomTable', 'WriteConsoleW', 'GetModuleFileNameW', 'lstrcatA', 'MultiByteToWideChar', 'GetStringTypeExA', 'SearchPathW', 'DeleteFiber', 'GetLastError', 'GetCurrentDirectoryW', 'GetProcAddress', 'CreateJobSet', 'RemoveDirectoryA', 'GetLocalTime', 'WriteConsoleA', 'InterlockedExchangeAdd', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'SetFileApisToANSI', 'AddAtomA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'FindNextFileW', 'VirtualProtect', 'CompareStringA', 'FileTimeToLocalFileTime', 'DeleteFileW', 'MoveFileWithProgressW', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'GetProfileIntA', 'GetVolumeNameForVolumeMountPointA', 'CreateFileW', 'CloseHandle', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MoveFileA', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'IsProcessorFeaturePresent', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'DeleteFileA', 'GetCharABCWidthsA', 'WinHttpGetProxyForUrl'], ['FindWindowA', 'GetSysColorBrush', 'MessageBoxW', 'GetSystemMetrics', 'FreeLibrary', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'GetLastError', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemInfo', 'VirtualAlloc', 'MultiByteToWideChar', 'GetConsoleWindow', 'SetEnvironmentVariableW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'WriteConsoleW', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['GetModuleHandleW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'SetLastError', 'GetCurrentProcessId', 'LocalFree', 'LocalAlloc', 'FormatMessageW', 'GetModuleFileNameW', 'GetTempPathW', 'GetTempFileNameW', 'GetProcAddress', 'WriteFile', 'CloseHandle', 'DeleteFileW', 'GetFileAttributesW', 'GetLastError', 'ReadFile', 'MultiByteToWideChar', 'WriteConsoleW', 'FlushFileBuffers', 'FreeLibrary', 'LoadLibraryW', 'CreateFileW', 'lstrcpynW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'WideCharToMultiByte', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlPcToFileHeader', 'EncodePointer', 'RaiseException', 'RtlUnwindEx', 'InterlockedFlushSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'HeapFree', 'HeapAlloc', 'GetStringTypeW', 'GetACP', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetWindowThreadProcessId', 'EnumWindows', 'MessageBoxW', 'LoadStringW', 'RealGetWindowClassW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysAllocString'], ['midiOutGetDevCapsW', 'HGLOBAL_UserMarshal', 'HPALETTE_UserUnmarshal', 'SHQueryValueExW', 'RegOverridePredefKey', 'SetupDiCreateDeviceInfoList', 'tolower', 'AVIStreamStart', 'GetProcAddress', 'GetModuleHandleW', 'CloseHandle', 'GetSystemTimeAdjustment', 'GetModuleHandleA', 'InterlockedPopEntrySList'], ['lstrcpy', 'InitCommonControls'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'TranslateMessage', 'RegCreateKeyExA', 'CLSIDFromProgID', 'inet_addr', 'PathFileExistsA', 'DnsQuery_A', 'SHGetSpecialFolderPathA', 'strrchr', 'VariantChangeType'], ['GetConsoleAliasesLengthW', 'FindResourceExW', 'GetLogicalDriveStringsW', 'AddConsoleAliasW', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'VirtualFree', 'GenerateConsoleCtrlEvent', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetPriorityClass', 'GlobalAlloc', 'AddRefActCtx', 'GetLocaleInfoW', 'GetCalendarInfoW', 'ReplaceFileW', 'GetModuleFileNameW', 'DeactivateActCtx', 'OpenMutexW', 'GetLastError', 'WritePrivateProfileStructA', 'ChangeTimerQueueTimer', 'lstrcmpiA', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'VirtualAllocEx', 'LoadLibraryA', 'InterlockedExchangeAdd', 'GetConsoleScreenBufferInfo', 'WritePrivateProfileStringA', 'FindFirstVolumeMountPointW', 'CreateEventW', 'GetCurrentConsoleFont', 'FindAtomA', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCommTimeouts', 'WaitForDebugEvent', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'FindNextVolumeA', 'CreateMutexW', 'GetCurrentDirectoryW', 'GetDateFormatW', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapCreate', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'CloseHandle', 'CreateFileA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'CharLowerBuffA', 'GetCharABCWidthsFloatA', 'GetCharWidthA'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'GetUserNameW', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryW', 'CreateFileW', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileW', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'FindNextFileW', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameW', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileW', 'MultiByteToWideChar', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesW', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_assert', '_beginthreadex', '_errno', '_filelengthi64', '_mkdir', '_snwprintf', '_stat', '_vscprintf', '_vsnprintf', '_wfopen', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'freopen', 'fseek', 'fsetpos', 'ftell', 'fwprintf', 'fwrite', 'getenv', 'localtime', 'malloc', 'memcmp', 'mktime', 'realloc', 'remove', 'sprintf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strncpy', 'time', 'utime', 'wcscat', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationW', 'ShellExecuteA', 'ShellExecuteW', 'CreateWindowExW', 'DefWindowProcW', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextW', 'GetKeyState', 'GetKeyboardState', 'GetLastInputInfo', 'GetMessageW', 'GetSystemMetrics', 'GetWindowTextW', 'IsWindowVisible', 'MapVirtualKeyW', 'PostQuitMessage', 'RegisterClassExW', 'ReleaseDC', 'SendMessageA', 'SendMessageW', 'SetCursorPos', 'SetWindowTextW', 'ShowWindow', 'ToUnicode', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['GetDateFormatW', 'CreateMutexW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'FindResourceExW', 'GetLogicalDriveStringsW', 'AddConsoleAliasW', 'GetModuleHandleW', 'GetTickCount', 'VirtualFree', 'GenerateConsoleCtrlEvent', 'GetConsoleAliasesA', 'GetPriorityClass', 'GlobalAlloc', 'AddRefActCtx', 'GetLocaleInfoW', 'GetCalendarInfoW', 'ReplaceFileW', 'GetModuleFileNameW', 'DeactivateActCtx', 'OpenMutexW', 'GetLastError', 'GetCurrentDirectoryW', 'ChangeTimerQueueTimer', 'lstrcmpiA', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'LoadLibraryA', 'InterlockedExchangeAdd', 'GetConsoleScreenBufferInfo', 'WritePrivateProfileStringA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'CreateEventW', 'GetCurrentConsoleFont', 'FindAtomA', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCommTimeouts', 'WaitForDebugEvent', 'GetCurrentThreadId', 'GetVersionExA', 'OpenFileMappingA', 'FindNextVolumeA', 'ReadFile', 'GetProcessHeap', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapCreate', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'HeapSize', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'CloseHandle', 'CreateFileA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'SetEndOfFile', 'GetComboBoxInfo', 'CharToOemBuffW', 'CharLowerBuffA'], ['BCryptGenRandom', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'QueryPerformanceCounter', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'ExitProcess', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'SetLastError', 'SetThreadErrorMode', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WriteConsoleW', 'WriteFile', 'MessageBoxA'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleAliasExesLengthA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'DeleteFileA', 'FindResourceExW', 'SearchPathA', 'GetSystemDefaultLangID', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'CreateFileA', 'GetShortPathNameW', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringW', 'GetThreadLocale', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetTickCount', 'GetCurrentProcessId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'InterlockedExchange', 'lstrcmpW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GetCurrentThreadId', 'CloseHandle', 'FreeLibrary', 'GetModuleFileNameW', 'GetModuleHandleW', 'MulDiv', 'GetModuleHandleA', 'GetProcAddress', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrlenW', 'WideCharToMultiByte', 'lstrlenA', 'CompareStringW', 'InterlockedDecrement', 'InterlockedIncrement', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'FreeEnvironmentStringsA', 'ExitProcess', 'LoadCursorW', 'GetSysColorBrush', 'DestroyIcon', 'RegisterClipboardFormatW', 'GetWindowThreadProcessId', 'SetCursor', 'ShowWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'MessageBoxW', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'DestroyMenu', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'PostMessageW', 'PostQuitMessage', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'PostThreadMessageW', 'DrawTextW', 'TabbedTextOutW', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetWindowLongW', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'TranslateAcceleratorW', 'GetSystemMenu', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadAcceleratorsW', 'LoadIconW', 'AppendMenuW', 'RemoveMenu', 'GetSystemMetrics', 'SendMessageW', 'EnableWindow', 'UnregisterClassA', 'DeleteDC', 'GetStockObject', 'SetViewportOrgEx', 'GetDeviceCaps', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'CreateBitmap', 'GetObjectW', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'OffsetViewportOrgEx', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegSetValueExW', 'RegQueryValueW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyW', 'RegSetValueW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'ExtractIconW', 'PathFindExtensionW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleIsCurrentClipboard', 'CoDisconnectObject', 'StringFromCLSID', 'CoTaskMemFree', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'LoadTypeLib', 'VariantInit', 'SysAllocString', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'SysAllocStringLen', 'SysStringLen', 'SysStringByteLen', 'RevokeActiveObject', 'RegisterActiveObject', 'SysFreeString'], ['AllocConsole', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesA', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'InitializeCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetStdHandle', 'GetLastError', 'SetFilePointer', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetProcAddress', 'UnregisterWait', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'LocalFileTimeToFileTime', 'EnumResourceTypesA', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['SetThreadStackGuarantee', 'GetFileInformationByHandle', 'GetFileInformationByHandleEx', 'SetFilePointerEx', 'VirtualAlloc', 'CreateThread', 'WaitForSingleObject', 'VirtualProtect', 'VirtualFree', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'CreateIoCompletionPort', 'SetFileCompletionNotificationModes', 'SetLastError', 'GetFinalPathNameByHandleW', 'GetQueuedCompletionStatusEx', 'TryAcquireSRWLockExclusive', 'Sleep', 'GetModuleHandleA', 'GetProcAddress', 'CompareStringW', 'LCMapStringW', 'SwitchToThread', 'GetStringTypeW', 'GetFileType', 'SetStdHandle', 'SetEnvironmentVariableW', 'HeapSize', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetConsoleOutputCP', 'GetCPInfo', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'GetOEMCP', 'HeapReAlloc', 'GetACP', 'IsValidCodePage', 'SetHandleInformation', 'GetCurrentThread', 'GetStdHandle', 'GetConsoleMode', 'MultiByteToWideChar', 'WriteConsoleW', 'WaitForSingleObjectEx', 'LoadLibraryA', 'CreateMutexA', 'GetCurrentProcess', 'ReleaseMutex', 'GetEnvironmentVariableW', 'RtlLookupFunctionEntry', 'GetModuleHandleW', 'FormatMessageW', 'GetFullPathNameW', 'CreateFileW', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'CloseHandle', 'GetCurrentDirectoryW', 'RtlCaptureContext', 'AcquireSRWLockShared', 'ReleaseSRWLockShared', 'GetCommandLineW', 'PostQueuedCompletionStatus', 'GetProcessHeap', 'GetCommandLineA', 'GetModuleHandleExW', 'TerminateProcess', 'AddVectoredExceptionHandler', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'GetModuleFileNameW', 'WriteFile', 'RtlPcToFileHeader', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'RtlUnwindEx', 'EncodePointer', 'RaiseException', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'WSASend', 'getsockopt', 'connect', 'shutdown', 'freeaddrinfo', 'WSAStartup', 'WSACleanup', 'recv', 'WSASocketW', 'send', 'getsockname', 'WSAGetLastError', 'getpeername', 'closesocket', 'bind', 'WSAIoctl', 'setsockopt', 'ioctlsocket', 'getaddrinfo', 'NtCancelIoFileEx', 'RtlNtStatusToDosError', 'NtDeviceIoControlFile', 'NtCreateFile', 'NtWriteFile', 'NtReadFile', 'CertVerifyCertificateChainPolicy', 'CertFreeCertificateChain', 'CertGetCertificateChain', 'CertEnumCertificatesInStore', 'CertDuplicateCertificateChain', 'CertAddCertificateContextToStore', 'CertOpenStore', 'CertDuplicateStore', 'CertDuplicateCertificateContext', 'CertCloseStore', 'CertFreeCertificateContext', 'AcceptSecurityContext', 'DeleteSecurityContext', 'FreeContextBuffer', 'EncryptMessage', 'AcquireCredentialsHandleA', 'ApplyControlToken', 'FreeCredentialsHandle', 'DecryptMessage', 'QueryContextAttributesW', 'InitializeSecurityContextW', 'RegQueryValueExW', 'RegCloseKey', 'SystemFunction036', 'RegOpenKeyExW', 'BCryptGenRandom'], ['GetVolumePathNameW', 'LoadLibraryW', 'GetProcessHandleCount', 'InterlockedPopEntrySList', 'lstrcpynW', 'WriteConsoleW', 'LocalHandle', 'GetMailslotInfo', 'GetModuleFileNameW', 'GetConsoleAliasesW', 'GetLongPathNameW', 'SetLastError', 'MoveFileW', 'SetComputerNameA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'LocalAlloc', 'IsWow64Process', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'UpdateResourceW', 'GetConsoleTitleW', 'VirtualProtect', 'GetFileAttributesExW', 'GetShortPathNameW', 'GetCPInfoExA', 'GetFileInformationByHandle', 'SetFileAttributesW', 'CreateThread', 'CreateFileW', 'GetConsoleAliasesLengthA', 'WriteProfileSectionW', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'Sleep', 'HeapSize', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'RaiseException', 'HeapReAlloc', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'CloseHandle', 'ClientToScreen', 'GetTextExtentExPointW', 'ClearEventLogA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SelectClipPath', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedFlushSList', 'WaitNamedPipeA', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'SetFirmwareEnvironmentVariableW', 'RemoveDirectoryA', 'SetStdHandle', 'CreateSemaphoreW', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'GetCommState', 'InterlockedIncrement', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'RaiseException', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapReAlloc', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['GetProcAddress', 'GetModuleHandleW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'SetLastError', 'GetCurrentProcessId', 'LocalFree', 'LocalAlloc', 'FormatMessageW', 'GetModuleFileNameW', 'GetTempPathW', 'GetTempFileNameW', 'InterlockedDecrement', 'WriteFile', 'CloseHandle', 'DeleteFileW', 'GetFileAttributesW', 'GetLastError', 'ReadFile', 'MultiByteToWideChar', 'WriteConsoleW', 'DecodePointer', 'FreeLibrary', 'LoadLibraryW', 'CreateFileW', 'lstrcpynW', 'FlushFileBuffers', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'EncodePointer', 'RtlUnwind', 'RaiseException', 'InterlockedFlushSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'HeapFree', 'HeapAlloc', 'GetStringTypeW', 'GetACP', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetWindowThreadProcessId', 'EnumWindows', 'MessageBoxW', 'LoadStringW', 'RealGetWindowClassW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysAllocString'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenIcon', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'mciSendStringA', 'mciSendCommandA', 'mciGetErrorStringA', 'GetProcAddress', 'NtFlushInstructionCache', 'FileProtocolHandlerA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'VariantChangeTypeEx', 'RaiseException'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetMessageTime', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'GetActiveObject', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetUserDefaultLCID', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'OleRegEnumVerbs', 'IsAccelerator', 'CoCreateInstance', 'CoUninitialize', 'IsEqualGUID', 'CreateStreamOnHGlobal', 'OleInitialize', 'ProgIDFromCLSID', 'OleUninitialize', 'CoGetClassObject', 'CoInitialize', 'CoTaskMemFree', 'OleDraw', 'CoTaskMemAlloc', 'OleSetMenuDescriptor', 'StringFromCLSID', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'SetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['lstrlenW', 'CloseHandle', 'SetErrorMode', 'CreateThread'], ['GetCommandLineA', 'RtlUnwind', 'Sleep', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'HeapAlloc', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'HeapFree', 'GetTickCount', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringW', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetModuleHandleA', 'GlobalFindAtomW', 'GetVersionExW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'MulDiv', 'InterlockedDecrement', 'lstrlenA', 'lstrlenW', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GlobalAddAtomW', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetModuleFileNameW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'GetEnvironmentStringsW', 'ExitProcess', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'CharUpperW', 'ReleaseCapture', 'SetCapture', 'LoadCursorW', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetForegroundWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'UpdateWindow', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSysColor', 'GetSystemMetrics', 'DestroyMenu', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'EnableWindow', 'SendMessageW', 'AppendMenuW', 'LoadIconW', 'UnhookWindowsHookEx', 'GetWindowTextW', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'GetTopWindow', 'CharNextW', 'GetSystemMenu', 'InvalidateRect', 'GetClientRect', 'GetWindowRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuW', 'GetParent', 'GetFocus', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'PostQuitMessage', 'PostMessageW', 'SetCursor', 'MessageBoxW', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongW', 'GetWindowThreadProcessId', 'SetWindowPos', 'MapDialogRect', 'SetWindowContextHelpId', 'GetWindow', 'ValidateRect', 'GetCursorPos', 'PeekMessageW', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'CallNextHookEx', 'SetWindowsHookExW', 'EndDialog', 'GetClassNameW', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'CreateBitmap', 'GetWindowExtEx', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'ExtTextOutW', 'GetObjectW', 'GetDeviceCaps', 'GetFileTitleW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'OleUIBusyW', 'CoRevokeClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'OleIsCurrentClipboard', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoGetClassObject', 'SysAllocStringLen', 'SysStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'OleDraw', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['GetConsoleAliasesLengthW', 'FindResourceExW', 'GetLogicalDriveStringsW', 'AddConsoleAliasW', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'VirtualFree', 'GenerateConsoleCtrlEvent', 'GetConsoleAliasesA', 'IsBadReadPtr', 'GetNumberFormatA', 'GlobalAlloc', 'AddRefActCtx', 'GetLocaleInfoW', 'GetCalendarInfoW', 'ReplaceFileW', 'GetModuleFileNameW', 'DeactivateActCtx', 'OpenMutexW', 'GetLastError', 'GetCurrentDirectoryW', 'WritePrivateProfileStructA', 'lstrcmpiA', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'VirtualAllocEx', 'LoadLibraryA', 'InterlockedExchangeAdd', 'GetConsoleScreenBufferInfo', 'WritePrivateProfileStringA', 'FindFirstVolumeMountPointW', 'CreateEventW', 'GetCurrentConsoleFont', 'FindAtomA', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCommTimeouts', 'WaitForDebugEvent', 'GetVersionExA', 'AddConsoleAliasA', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'FindNextVolumeA', 'CreateMutexW', 'ChangeTimerQueueTimer', 'GetDateFormatW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'WideCharToMultiByte', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'HeapSize', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'RegisterClassW', 'CharLowerBuffA', 'GetCharABCWidthsFloatA', 'GetCharWidthA'], ['GetModuleHandleA', 'MessageBoxA', 'GetUserNameA', 'PropertySheet', 'SHGetIconOverlayIndexA', '_CorExeMain'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegDeleteValueA', 'lstrlenW', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'UnlockFile', 'TerminateThread', 'TerminateProcess', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetPriorityClass', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'MulDiv', 'MoveFileExA', 'MoveFileA', 'LockResource', 'LockFile', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'HeapAlloc', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetVolumeInformationA', 'GetVersionExA', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetThreadContext', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileA', 'DeleteCriticalSection', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWinMetaFileBits', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'mouse_event', 'keybd_event', 'UpdateWindow', 'UnregisterClassA', 'TranslateMessage', 'SwapMouseButton', 'SetWindowPos', 'SetWindowLongA', 'SetTimer', 'SetRect', 'SetProcessWindowStation', 'SetCursorPos', 'SendMessageA', 'ReleaseDC', 'RegisterClassExA', 'RegisterClassA', 'PostMessageA', 'OpenWindowStationA', 'OpenDesktopA', 'MessageBoxA', 'LoadStringA', 'LoadIconA', 'KillTimer', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowLongA', 'GetWindowDC', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetProcessWindowStation', 'GetMessageA', 'GetLastInputInfo', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClipboardData', 'GetClassInfoA', 'FillRect', 'ExitWindowsEx', 'EnumWindows', 'EnumChildWindows', 'EnableMenuItem', 'EmptyClipboard', 'DrawIconEx', 'DispatchMessageA', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcA', 'CreateIcon', 'CloseWindowStation', 'CloseClipboard', 'CallWindowProcA', 'AttachThreadInput', 'CharNextA', 'CharLowerBuffA', 'CharUpperBuffA', 'CharToOemA', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'DeleteService', 'CloseServiceHandle', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetServByName', 'WSAAsyncGetHostByName', 'WSAAsyncSelect', 'getservbyname', 'gethostbyname', 'socket', 'shutdown', 'send', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'getsockname', 'connect', 'closesocket', 'bind', 'NtQueryInformationProcess', 'SHGetFileInfoA', 'SHFileOperationA', 'WSAIoctl'], ['SysFreeString', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA', 'CharToOemA', 'WriteFile', 'VirtualQuery', 'LoadLibraryA', 'GetVersionExA', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCPInfo', 'FreeLibrary', 'EnumCalendarInfoA'], ['OpenProcess', 'GetEnvironmentVariableA', 'FindFirstFileA', 'GetProcAddress', 'VirtualAlloc', 'CopyFileA', 'FindClose', 'LoadLibraryA', 'Process32Next', 'GlobalMemoryStatusEx', 'GetModuleFileNameA', 'FindNextFileA', 'CreateToolhelp32Snapshot', 'CloseHandle', 'lstrcpyA', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetConsoleWindow', 'lstrcpynA', 'SetEvent', 'WaitForSingleObject', 'CreateEventA', 'CreateThread', 'GetTickCount', 'GetModuleHandleA', 'FreeConsole', 'AllocConsole', 'SetConsoleCtrlHandler', 'InitializeCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'LockResource', 'GlobalAlloc', 'GlobalReAlloc', 'GlobalFree', 'ReadFile', 'CreateDirectoryW', 'GetLastError', 'EncodePointer', 'DecodePointer', 'GetFileAttributesExW', 'GetConsoleMode', 'ReadConsoleInputA', 'SetConsoleMode', 'HeapAlloc', 'GetDriveTypeW', 'GetFullPathNameA', 'GetSystemTimeAsFileTime', 'GetModuleHandleExW', 'AreFileApisANSI', 'GetCommandLineA', 'RaiseException', 'Process32First', 'HeapFree', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'HeapSize', 'SetLastError', 'InterlockedIncrement', 'GetCurrentThreadId', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WideCharToMultiByte', 'CreateFileW', 'GetProcessHeap', 'GetCurrentDirectoryW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoW', 'GetModuleHandleW', 'LoadLibraryExW', 'GetFileType', 'InitOnceExecuteOnce', 'QueryPerformanceCounter', 'GetTickCount64', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetConsoleCP', 'SetFilePointerEx', 'HeapReAlloc', 'OutputDebugStringW', 'LoadLibraryW', 'CompareStringEx', 'LCMapStringEx', 'SetStdHandle', 'FlushFileBuffers', 'WriteConsoleW', 'GetExitCodeProcess', 'CreateProcessA', 'SetEndOfFile', 'ReadConsoleW', 'SetEnvironmentVariableA', 'lstrlenA', 'LocalFree', 'InterlockedDecrement', 'ExitProcess', 'GetLocalTime', 'RtlUnwind', 'Sleep', 'ValidateRect', 'GetWindowRect', 'AdjustWindowRectEx', 'ScreenToClient', 'LoadCursorA', 'DestroyIcon', 'IsWindowVisible', 'ReleaseDC', 'SendMessageA', 'PeekMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetForegroundWindow', 'SetWindowPos', 'DestroyWindow', 'CreateWindowExA', 'GetAsyncKeyState', 'GetDC', 'RegisterClassExA', 'UnregisterClassA', 'PostQuitMessage', 'DefWindowProcA', 'DrawTextA', 'ShowWindow', 'PostMessageA', 'OpenProcessToken', 'GetLengthSid', 'CoInitializeSecurity', 'CoCreateInstance', 'CoInitializeEx', 'ExtractIconA', 'SysFreeString', 'VariantInit', 'VariantClear', 'SysAllocString', 'socket', 'recv', 'WSACleanup', 'htons', 'inet_addr', 'WSAStartup', 'connect', 'send', 'closesocket'], ['RtlUnwind', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'RaiseException', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetFileTime', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'FatalAppExitA', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileSizeEx', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetStringTypeExA', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetModuleHandleW', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetCurrentProcessId', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'InterlockedDecrement', 'GetModuleFileNameW', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'lstrlenA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'WinExec', 'MulDiv', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'FreeEnvironmentStringsW', 'SizeofResource', 'InsertMenuItemA', 'LoadAcceleratorsA', 'GetMenuBarInfo', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'SetRect', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'WindowFromPoint', 'DestroyMenu', 'GetMenuItemInfoA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'GetMenuStringA', 'InsertMenuA', 'RemoveMenu', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'CreatePopupMenu', 'GetClassNameA', 'GetPropA', 'RemovePropA', 'GetFocus', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'EnableWindow', 'ReleaseDC', 'GetDC', 'SendMessageA', 'CopyRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'GetDesktopWindow', 'BringWindowToTop', 'TranslateAcceleratorA', 'SetRectEmpty', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'SetCapture', 'DeleteMenu', 'UnregisterClassA', 'GetSysColorBrush', 'GetClassLongA', 'GetDialogBaseUnits', 'GetDlgItem', 'KillTimer', 'SetTimer', 'SetWindowTextA', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'LoadIconA', 'GetSystemMetrics', 'SetCursor', 'PtInRect', 'InflateRect', 'GetWindowRect', 'ScreenToClient', 'InvalidateRect', 'RedrawWindow', 'GetParent', 'LoadCursorA', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowLongA', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'RegisterWindowMessageA', 'SetWindowLongA', 'CopyIcon', 'DestroyCursor', 'MessageBeep', 'IsWindow', 'GetSysColor', 'GetMessagePos', 'SetPropA', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'ScaleViewportExtEx', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateHatchBrush', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetBkColor', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'SelectClipPath', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'EnumMetaFile', 'GetTextExtentPoint32A', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CopyMetaFileA', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'GetStockObject', 'CreateSolidBrush', 'GetObjectA', 'CreateDCA', 'GetDeviceCaps', 'DeleteDC', 'CreateFontIndirectA', 'DeleteObject', 'SelectObject', 'GetTextMetricsA', 'GetViewportExtEx', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegSetValueA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCloseKey', 'RegDeleteValueA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ShellExecuteA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathRemoveFileSpecW', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'StringFromGUID2', 'CoDisconnectObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'CoCreateInstance', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CLSIDFromString', 'CoUninitialize', 'CoInitializeEx', 'StringFromCLSID', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetLastError', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetCommState', 'EnumResourceTypesA', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'HeapValidate', 'SetConsoleCursorPosition', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'InterlockedDecrement', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'BackupWrite', 'WriteProfileSectionA', 'RemoveDirectoryA', 'SetStdHandle', 'LocalAlloc', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'FoldStringA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'QueryPerformanceFrequency', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'DeleteFileA', 'GetCommState', 'VerSetConditionMask', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'RaiseException', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'LoadLibraryExW', 'SetConsoleCtrlHandler', 'FindClose', 'FindFirstFileExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'WriteConsoleW', 'GetProcAddress', 'GetModuleFileNameW', 'SetDllDirectoryW', 'FreeLibrary', 'GetLastError', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwindEx', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCommandLineA', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindNextFileW', 'SetStdHandle', 'DeleteFileW', 'ReadFile', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'HeapReAlloc', 'GetFileAttributesExW', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'SetEndOfFile', 'ConvertSidToStringSidW', 'GetTokenInformation', 'OpenProcessToken', 'ConvertStringSecurityDescriptorToSecurityDescriptorW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'Sleep', 'SetFilePointer', 'SetEvent', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetEnvironmentVariableA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA', 'CharToOemA', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'waveOutGetNumDevs'], ['CloseHandle', 'SetErrorMode', 'CreateThread'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'GetACP', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'capCreateCaptureWindowA', 'PatBlt', 'CoInitialize', 'VariantCopy', 'ShellExecuteA', 'GetDC', 'sndPlaySoundA', 'send'], ['SetLocaleInfoA', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetMessageTime', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'GetActiveObject', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetUserDefaultLCID', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'CompareStringA', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'OleRegEnumVerbs', 'IsAccelerator', 'CoCreateInstance', 'CoUninitialize', 'IsEqualGUID', 'CreateStreamOnHGlobal', 'OleInitialize', 'ProgIDFromCLSID', 'OleUninitialize', 'CoGetClassObject', 'CoInitialize', 'CoTaskMemFree', 'OleDraw', 'CoTaskMemAlloc', 'OleSetMenuDescriptor', 'StringFromCLSID', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'SetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetProcessHeap', 'GetUserDefaultLangID', 'GetTickCount64', 'TlsAlloc', 'GetCurrentProcessorNumber', 'UnregisterApplicationRestart', 'GetLogicalDrives', 'GetOEMCP', 'GetSystemDefaultUILanguage', 'VirtualAlloc', 'GetThreadLocale', 'GetUserDefaultUILanguage', 'FlushProcessWriteBuffers', 'GetLargePageMinimum', 'GetCurrentThreadId', 'UnregisterApplicationRecoveryCallback', 'GetCommandLineA', 'GetLastError', 'GetErrorMode', 'GetEnvironmentStringsW', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetFileType', 'GetStdHandle', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'LCMapStringW', 'DecodePointer', 'GetShellWindow', 'GetFocus', 'GetCursor', 'InSendMessage', 'GetCapture', 'GetMenuCheckMarkDimensions', 'EmptyClipboard', 'CountClipboardFormats', 'GetKBCodePage', 'IsProcessDPIAware', 'GetForegroundWindow', 'GetClipboardSequenceNumber', 'CreateMenu', 'GetProcessWindowStation', 'GetMessageExtraInfo', 'GetOpenClipboardWindow', 'InitNetworkAddressControl', 'CoUninitialize'], ['TerminateProcess', 'InterlockedCompareExchange', 'UnhandledExceptionFilter', 'InterlockedExchange', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualAllocExNuma', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'FreeConsole', 'LoadLibraryExW', 'FindResourceA', 'LoadResource', 'SizeofResource', 'GetCurrentProcess', 'Sleep', 'GetSystemTimeAsFileTime', 'GetClientRect', 'GetWindowRect', 'PtInRect', 'GetCursorPos', 'GetDC', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'DialogBoxParamA', 'SetWindowLongA', 'CallWindowProcA', 'InvalidateRect', 'GetDlgItemInt', 'SetDlgItemInt', 'wsprintfA', 'SendMessageA', 'CreateDialogParamA', 'ShowWindow', 'SetWindowTextA', 'EndDialog', 'GetDlgItem', 'SetWindowPos', 'GetBkMode', 'GetTextColor', 'GetBkColor', 'SetBkMode', 'CreateFontIndirectA', 'SetBkColor', 'EnumFontFamiliesExA', 'TextOutA', 'DeleteObject', 'SetTextColor', 'SelectObject', 'ChooseFontA', 'ChooseColorA', '_controlfp_s', '_invoke_watson', '_except_handler4_common', '_decode_pointer', '_onexit', '_lock', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '_crt_debugger_hook', 'printf', 'memcpy', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter', 'exit', '__initenv', '_initterm', '_initterm_e', '_configthreadlocale', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '_encode_pointer', '__set_app_type'], ['GetCurrentProcess', 'CreateProcessW', 'ExitThread', 'WaitForSingleObject', 'GetLastError', 'ExitProcess', 'IsDebuggerPresent', 'GetVersionExW', 'GetVolumeInformationW', 'SetEndOfFile', 'HeapSize', 'WriteConsoleW', 'ReadConsoleW', 'GetProcAddress', 'FindFirstFileExW', 'FindClose', 'GetCommandLineW', 'GetCommandLineA', 'GetProcessHeap', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'GetModuleHandleW', 'CreateProcessA', 'GetStartupInfoA', 'GetModuleFileNameW', 'SetFileAttributesA', 'CopyFileA', 'GetFileAttributesA', 'GetModuleFileNameA', 'CloseHandle', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetFileAttributesW', 'FindFirstFileW', 'FindNextFileW', 'SetFileAttributesW', 'GetLocalTime', 'CreateThread', 'WinExec', 'GetLogicalDrives', 'SetStdHandle', 'FlushFileBuffers', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'Sleep', 'GetFileAttributesExW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetCPInfo', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'RtlUnwind', 'QueryPerformanceFrequency', 'MoveFileExW', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetACP', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetFileType', 'GetExitCodeProcess', 'GetSystemMetrics', 'LoadCursorW', 'RegisterClassExW', 'CreateWindowExW', 'ShowWindow', 'ScreenToClient', 'GetCursorPos', 'DrawTextA', 'MessageBoxW', 'DefWindowProcW', 'PostQuitMessage', 'DestroyWindow', 'SetTimer', 'KillTimer', 'InvalidateRect', 'EndPaint', 'DrawTextW', 'FillRect', 'BeginPaint', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'GetWindowLongW', 'SetWindowLongW', 'LineTo', 'MoveToEx', 'CreatePen', 'SetBkMode', 'DeleteObject', 'TextOutA', 'TextOutW', 'SetTextColor', 'SetBkColor', 'SelectObject', 'CreateFontW', 'CreateSolidBrush', 'SystemFunction036', 'RegCloseKey', 'RegQueryValueExW', 'RegOpenKeyExW', 'GetUserNameW', 'InternetOpenUrlW', 'InternetReadFile', 'InternetOpenW', 'NetUserGetInfo'], ['DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'GetSystemWindowsDirectoryW', 'UnlockFile', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'GetVolumePathNameW', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetDevicePowerState', 'ReplaceFileA', 'SetCurrentDirectoryA', 'GetProfileIntW', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'IsValidCodePage', 'CopyFileA', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'CreateMutexW', 'FindFirstFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'CharUpperBuffW', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['timeEndPeriod', 'timeBeginPeriod', 'WSAGetOverlappedResult', 'WriteFile', 'WriteConsoleW', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'LoadLibraryA', 'LoadLibraryW', 'GetSystemInfo', 'GetStdHandle', 'GetQueuedCompletionStatus', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateThread', 'CreateIoCompletionPort', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'WaitForSingleObject', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'GetLastError', 'Sleep', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ShowWindow', 'MoveToEx'], ['WriteConsoleOutputCharacterW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'lstrlenW', 'CreateDirectoryA', 'GetConsoleAliasesW', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'FindFirstChangeNotificationW', 'MoveFileW', 'WriteProfileSectionA', 'SetStdHandle', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'VirtualProtect', 'SetCalendarInfoA', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW'], ['ReadConsoleA', 'GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetTapeParameters', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'LoadLibraryW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapDestroy', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLargestConsoleWindowSize', 'WriteConsoleOutputW', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'ReadFileEx', 'GetTempFileNameA', 'ResetEvent', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'RequestWakeupLatency', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'GetDefaultCommConfigW', 'TlsGetValue', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetThreadContext', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsW', 'GetCharABCWidthsI'], ['CreateProcessA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'ResumeThread', 'SetThreadContext', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'WriteProcessMemory', '_amsg_exit', '_initterm', '_iob', '_lock', '_snprintf', '_unlock', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'strlen', 'strncmp', 'vfprintf'], ['LoadLibraryW', 'GetProcAddress', 'EnterCriticalSection', 'InitializeCriticalSection', 'GetVolumeInformationW', 'GetDiskFreeSpaceW', 'GetFileTime', 'GetCurrentProcessId', 'Sleep', 'GetLocalTime', 'HeapReAlloc', 'GetStringTypeW', 'MultiByteToWideChar', 'LCMapStringW', 'WideCharToMultiByte', 'HeapSize', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'DecodePointer', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'ImageList_SetDragCursorImage', 'CreatePropertySheetPageW', 'PropertySheetW', 'ImageList_LoadImageW', 'FindTextW', 'GetSaveFileNameW', 'GetOpenFileNameW', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitialize', 'CoUninitialize', 'GetThemeBackgroundRegion', 'CloseThemeData', 'OleTranslateColor', 'OleCreateFontIndirect', 'OleCreatePictureIndirect', 'OleCreatePropertyFrameIndirect', 'OleCreatePropertyFrame', 'OleLoadPicture', 'OleUIUpdateLinksW', 'OleUIAddVerbMenuW', 'OleUIPromptUserW'], ['FreeLibrary', 'HeapAlloc', 'HeapFree', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'Sleep', 'CloseHandle', 'WriteConsoleW', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'LoadLibraryExW', 'LCMapStringW', 'GetStringTypeW', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'GetLastError', 'HeapReAlloc', 'EncodePointer', 'DecodePointer', 'GetCommandLineW', 'RaiseException', 'RtlUnwind', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThreadId', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'CreateFileW', 'DispatchMessageW', 'DefWindowProcW', 'UpdateWindow', 'CreateWindowExW', 'ShowWindow', 'LoadStringW', 'EndDialog', 'LoadIconW', 'RegisterClassExW', 'LoadAcceleratorsW', 'TranslateMessage', 'EndPaint', 'DestroyWindow', 'TranslateAcceleratorW', 'GetMessageW', 'PostQuitMessage', 'DialogBoxParamW', 'LoadCursorW', 'BeginPaint', 'CoCreateGuid', 'FwpmFilterAdd0', 'FwpmEngineClose0', 'FwpmFilterDeleteByKey0', 'FwpmEngineOpen0', 'InternetCloseHandle', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA'], ['AbortPath', 'memset', 'GetTickCount64', 'TryEnterCriticalSection', 'OleInitialize', 'GetSystemMenu', 'GetUpdatedClipboardFormats', 'PrintWindow', 'ToAscii'], ['ShellExecuteW', 'CoInitializeEx', 'CoUninitialize', '?_Xlength_error@std@@YAXPBD@Z', '?_Xout_of_range@std@@YAXPBD@Z', '_cexit', '_exit', '_XcptFilter', 'exit', '_wcmdln', '_initterm', '_lock', '_configthreadlocale', '__setusermatherr', '__CxxFrameHandler3', '_fmode', '__set_app_type', '_crt_debugger_hook', '__wgetmainargs', '?terminate@@YAXXZ', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_except_handler4_common', '_invoke_watson', '_controlfp_s', '__dllonexit', '_unlock', 'memmove', '??2@YAPAXI@Z', '??0exception@std@@QAE@ABQBD@Z', '??1exception@std@@UAE@XZ', '?what@exception@std@@UBEPBDXZ', '??0exception@std@@QAE@ABV01@@Z', '??3@YAXPAX@Z', '_amsg_exit', '_onexit', 'memcpy', '_CxxThrowException', '_initterm_e', '_commode', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoW', 'HeapSetInformation', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'DecodePointer', 'EncodePointer', 'GetCurrentThreadId'], ['GetCurrentProcess', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetSystemDirectoryA', 'GetBinaryTypeW', 'SetConsoleTitleA', 'InterlockedDecrement', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'SetComputerNameA', 'LoadLibraryA', 'LocalAlloc', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'SetFileAttributesW', 'FindResourceW', 'FreeLibrary', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['CreateDirectoryExA', 'ReadConsoleInputA', 'GetTempPathW', 'GetSystemDirectoryW', 'RemoveDirectoryA', 'OutputDebugStringW', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'FindResourceA', 'LoadModule', 'InterlockedDecrement', 'RemoveVectoredExceptionHandler', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'CopyFileExW', 'EndUpdateResourceA', 'GetModuleHandleW', 'FindFirstVolumeA', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'EnumResourceLanguagesW', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructW', 'AddConsoleAliasA', 'GetConsoleAliasA', 'FindNextFileA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', '_CorExeMain'], ['RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'CloseHandle', 'CreateFileA', 'EnumResourceLanguagesA', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCurrentDirectoryA', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeW', 'GetUserDefaultLangID', 'GetUserDefaultUILanguage', 'GetVersion', 'GetVersionExA', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapFree', 'LoadLibraryA', 'MultiByteToWideChar', 'RaiseException', 'RtlUnwind', 'SetConsoleCtrlHandler', 'SetFilePointer', 'SetHandleCount', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'WideCharToMultiByte', 'WriteFile', 'CreateFontIndirectA', 'SelectObject', 'BeginPaint', 'CreateWindowExA', 'DefWindowProcA', 'DestroyMenu', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawMenuBar', 'DrawTextA', 'EndDialog', 'EndPaint', 'EnumThreadWindows', 'GetClientRect', 'GetDlgItem', 'GetMenu', 'GetMessageA', 'GetParent', 'InvalidateRect', 'LoadAcceleratorsA', 'LoadCursorA', 'LoadIconA', 'LoadMenuA', 'LoadStringA', 'MessageBoxA', 'PostQuitMessage', 'RegisterClassExA', 'SendMessageA', 'SetMenu', 'ShowWindow', 'TranslateAcceleratorA', 'TranslateMessage', 'UpdateWindow', 'wsprintfA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'AddAce', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter'], ['GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'LoadLibraryA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetStringTypeW', 'GetCommandLineW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'HeapSize', 'ExitProcess', 'InterlockedDecrement', 'GetCurrentThreadId', 'SetLastError', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'WideCharToMultiByte', 'LocalAlloc', 'LocalFree', 'CreateProcessW', 'GetVersion', 'CloseHandle', 'CreateEventW', 'GetProcAddress', 'GetLastError', 'GetModuleFileNameW', 'FormatMessageW', 'Sleep', 'LoadLibraryW', 'GetModuleHandleW', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'VirtualAlloc', 'EnterCriticalSection', 'HeapFree', 'ExitThread', 'ResumeThread', 'CreateThread', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleA', 'DialogBoxIndirectParamW', 'InflateRect', 'SetWindowTextW', 'CreateDesktopW', 'DestroyWindow', 'SetCursor', 'TranslateAcceleratorW', 'GetWindowRect', 'SetActiveWindow', 'GetMessageW', 'PostQuitMessage', 'TrackPopupMenu', 'RegisterWindowMessageW', 'PostMessageW', 'GetKeyState', 'SetForegroundWindow', 'DialogBoxParamW', 'LoadCursorW', 'CallNextHookEx', 'OpenDesktopW', 'FindWindowW', 'GetClientRect', 'SetFocus', 'GetDC', 'TranslateMessage', 'LoadAcceleratorsW', 'ChildWindowFromPoint', 'LoadIconW', 'OffsetRect', 'InvalidateRect', 'BringWindowToTop', 'SystemParametersInfoW', 'ReleaseDC', 'GetDlgItem', 'EndDialog', 'GetSysColor', 'SetWindowPos', 'GetCursorPos', 'CheckDlgButton', 'ShowWindow', 'CreatePopupMenu', 'GetSysColorBrush', 'IsDlgButtonChecked', 'SwitchDesktop', 'SetThreadDesktop', 'CreateWindowExW', 'InsertMenuW', 'SetWindowsHookExW', 'MessageBoxW', 'RegisterClassW', 'GetSystemMetrics', 'SendMessageW', 'UnregisterHotKey', 'DestroyMenu', 'RegisterHotKey', 'DefWindowProcW', 'MoveWindow', 'DispatchMessageW', 'GetWindowPlacement', 'StartPage', 'GetDeviceCaps', 'SetMapMode', 'StartDocW', 'EndDoc', 'BitBlt', 'SetTextColor', 'DeleteDC', 'CreateFontIndirectW', 'StretchBlt', 'SetBkMode', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetObjectW', 'SetStretchBltMode', 'GetStockObject', 'EndPage', 'PrintDlgW', 'RegCreateKeyW', 'RegSetValueExW', 'RegCloseKey', 'GetSecurityDescriptorSacl', 'RegOpenKeyExW', 'SetSecurityInfo', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegDeleteValueW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'Shell_NotifyIconW'], ['GetModuleHandleA', 'wsprintfA', 'getaddrinfo', 'GetTokenInformation', 'GetUserNameExA', 'CoUninitialize'], ['SendDlgItemMessageW', 'GetMenuState', 'GetDCEx', 'CheckMenuRadioItem', 'GetMessagePos', 'DrawThemeBackground', 'DrawThemeIcon', 'IsThemePartDefined', 'GetThemeIntList', 'GetBufferedPaintBits', 'GetBufferedPaintDC', 'DrawThemeParentBackground', 'GetThemeSysColorBrush', 'SetWindowTheme', 'GetThemePropertyOrigin', 'CoGetCallerTID', 'CLIPFORMAT_UserSize', 'StgOpenStorageEx', 'DcomChannelSetHResult', 'StgGetIFillLockBytesOnFile', 'MkParseDisplayName', 'CreateStdProgressIndicator', 'OleConvertIStorageToOLESTREAM', 'GetProcAddress', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetProcessHeap', 'LCMapStringW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'GetTickCount', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['FindNextVolumeW', 'LeaveCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'ExitProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'FillConsoleOutputCharacterA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'GetProcAddress', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringW', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'TerminateThread', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'TerminateProcess', 'GetACP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetFileAttributesW', 'MoveFileW', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['GetVersionExA', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GlobalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'GetLastError', 'HeapReAlloc', 'InterlockedDecrement', 'InterlockedIncrement', 'GetProcAddress', 'GetLocaleInfoA', 'LoadLibraryA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'GetFileAttributesA', 'GetVersion', 'DisableThreadLibraryCalls', 'MultiByteToWideChar', 'IsBadWritePtr', 'CompareStringW', 'lstrcmpA', 'MulDiv', 'GetProcessHeap', 'lstrcpynA', 'lstrcpyA', 'LeaveCriticalSection', 'DeleteCriticalSection', 'FreeLibrary', 'HeapFree', 'WideCharToMultiByte', 'lstrlenW', 'HeapAlloc', 'GetTickCount', 'EnterCriticalSection', 'lstrlenA', 'lstrcmpiA', 'lstrcatA', 'InitializeCriticalSection', 'IsDBCSLeadByte', 'GetNextDlgTabItem', 'IsWindowEnabled', 'IsDialogMessageA', 'WinHelpA', 'CreateDialogIndirectParamA', 'RegisterClipboardFormatA', 'SetCursorPos', 'MapWindowPoints', 'GetClipboardFormatNameA', 'SetWindowRgn', 'RegisterWindowMessageA', 'GetWindowLongA', 'CreateWindowExA', 'IntersectRect', 'ShowWindow', 'ShowScrollBar', 'MoveWindow', 'GetKeyState', 'DefWindowProcA', 'ReleaseCapture', 'PeekMessageA', 'EndDialog', 'GetWindow', 'GetWindowTextA', 'CharNextA', 'SendDlgItemMessageA', 'GetDlgItem', 'MessageBeep', 'MessageBoxA', 'wsprintfA', 'GetActiveWindow', 'DialogBoxParamA', 'GetCursorPos', 'UnregisterClassA', 'EqualRect', 'GetParent', 'CheckDlgButton', 'IsWindow', 'IsChild', 'UnhookWindowsHookEx', 'IsDlgButtonChecked', 'InvalidateRect', 'SetCursor', 'BeginPaint', 'EndPaint', 'DestroyWindow', 'GetClientRect', 'CallWindowProcA', 'LoadBitmapA', 'SetFocus', 'SetWindowTextA', 'GetWindowRect', 'PtInRect', 'SetParent', 'DispatchMessageA', 'SetWindowPos', 'TranslateMessage', 'SetWindowLongA', 'GetWindowTextLengthA', 'SetRect', 'EnableWindow', 'GetClassInfoA', 'IsWindowVisible', 'PeekMessageW', 'PostMessageW', 'GetScrollInfo', 'GetAsyncKeyState', 'PostMessageA', 'SetCapture', 'SendMessageA', 'SetScrollInfo', 'ScrollDC', 'SetRectEmpty', 'UpdateWindow', 'IsRectEmpty', 'WindowFromDC', 'DrawFrameControl', 'DrawEdge', 'InflateRect', 'DrawFocusRect', 'OffsetRect', 'GetFocus', 'FillRect', 'GetSysColor', 'LoadCursorA', 'RegisterClassA', 'GetCapture', 'GetDC', 'ReleaseDC', 'GetSystemMetrics', 'LoadStringA', 'SetWindowsHookExA', 'GetWindowThreadProcessId', 'ScreenToClient', 'ClientToScreen', 'CallNextHookEx', 'CreateOleAdviseHolder', 'ReleaseStgMedium', 'DoDragDrop', 'RegisterDragDrop', 'RevokeDragDrop', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleSaveToStream', 'OleLoadFromStream', 'CoCreateInstance', 'RegEnumKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayGetLBound', 'SafeArrayPutElement', 'VariantCopyInd', 'VariantCopy', 'SafeArrayGetUBound', 'SetErrorInfo', 'OleCreatePropertyFrame', 'CreateErrorInfo', 'LoadTypeLibEx', 'UnRegisterTypeLib', 'VariantChangeType', 'RegisterTypeLib', 'GetErrorInfo', 'LoadTypeLib', 'SafeArrayCreate', 'SafeArrayAccessData', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'OleLoadPicture', 'SafeArrayDestroy', 'OleTranslateColor', 'SysStringLen', 'OleCreatePictureIndirect', 'SysAllocStringLen', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysAllocString', 'OleCreateFontIndirect', 'SafeArrayRedim', 'CreateBitmap', 'CopyMetaFileA', 'CreateDCA', 'SetViewportExtEx', 'SetMapMode', 'CopyEnhMetaFileA', 'GetStockObject', 'CreateCompatibleBitmap', 'StretchBlt', 'GetNearestColor', 'CreatePalette', 'GetBitmapBits', 'CreateDIBitmap', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetPaletteEntries', 'GetTextMetricsA', 'DeleteObject', 'SetBkColor', 'SetTextColor', 'SelectObject', 'CreateSolidBrush', 'PatBlt', 'SetBkMode', 'ExtTextOutA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'IntersectClipRect', 'DeleteDC', 'BitBlt', 'CreateCompatibleDC', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'GetObjectA', 'LPtoDP', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgnIndirect'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'HeapFree', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetFileAttributesW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle'], ['SetLocaleInfoA', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'WriteConsoleA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'InitCommonControlsEx', 'GetOpenFileNameW', 'SetBkMode', 'ShellExecuteW', 'GetDC', 'send'], ['AllocateAndInitializeSid', 'FreeSid', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFileType', 'GetFinalPathNameByHandleW', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'NtQuerySystemInformation', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'CreateDirectoryExW', 'GetSystemDirectoryW', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventA', 'LeaveCriticalSection', 'LocalHandle', 'GetBinaryTypeW', 'CompareStringW', 'lstrlenW', 'ReplaceFileA', 'FreeLibraryAndExitThread', 'SetLastError', 'MapViewOfFile', 'AttachConsole', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'VirtualProtect', 'GetCPInfoExA', 'CloseHandle', 'BindIoCompletionCallback', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapFree', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'LoadLibraryA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'GetLocaleInfoA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'FlushFileBuffers', 'CreateFileA', 'ClientToScreen'], ['GetModuleHandleA', 'CreateWindowExA', 'RegQueryValueW', 'CreateStatusWindowA', 'SHGetIconOverlayIndexA', '_CorExeMain'], ['GetComputerNameW', 'GetEnvironmentStrings', 'GlobalAlloc', 'LoadLibraryW', 'GetLocaleInfoW', 'GetVersionExW', 'SetConsoleTitleA', 'GetTempPathW', 'LCMapStringA', 'EnumSystemLocalesA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'EnterCriticalSection', 'InterlockedIncrement', 'WriteConsoleA', 'MoveFileA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'GetConsoleTitleW', 'GetFileTime', 'SetCalendarInfoA', 'SetFileValidData', 'DebugBreak', 'LocalFree', 'WriteProcessMemory', 'GetLocaleInfoA', 'LoadLibraryExW', 'LoadLibraryA', 'GetVolumeNameForVolumeMountPointA', 'CreateFileA', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'CloseHandle', 'LeaveCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'WindowFromPoint', 'GetFontUnicodeRanges', 'WinHttpCloseHandle'], ['LoadLibraryA', 'CloseHandle', 'GetProcAddress', 'CreateFileMappingA', 'GetFileSize', 'FreeLibrary', 'MapViewOfFile', 'GetCommandLineA', 'Beep', 'HeapFree', 'VirtualAlloc', 'lstrcatA', 'ExitThread', 'Sleep', 'GetLastError', 'DeleteFileA', 'HeapAlloc', 'ExitProcess', 'GetProcessHeap', 'GetSystemTime', 'Process32First', 'VirtualFree', 'WriteFile', 'CreateMutexA', 'GetTimeFormatA', 'CreateToolhelp32Snapshot', 'GetTempPathA', 'GetDateFormatA', 'GlobalAlloc', 'Process32Next', 'GetTickCount', 'lstrcmpA', 'lstrcpyA', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'SetLastError', 'CreateFileA', 'GetCurrentThreadId', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'OutputDebugStringA', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'LoadLibraryExW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetModuleHandleW', 'GetModuleHandleExW', 'SetConsoleCtrlHandler', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'SetStdHandle', 'GetFileType', 'UnmapViewOfFile', 'VirtualProtect', 'GetCurrentThread', 'GetModuleFileNameA', 'GetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileExW', 'FindFirstFileExA', 'FindClose', 'GetModuleFileNameW', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'WriteConsoleW', 'MessageBoxA', 'GetKeyboardLayout', 'EnableMenuItem', 'DestroyMenu', 'ActivateKeyboardLayout', 'FindTextA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'InternetCanonicalizeUrlA', 'HttpAddRequestHeadersA', 'InternetQueryOptionA', 'HttpQueryInfoA', 'InternetSetOptionA', 'InternetOpenA', 'InternetCloseHandle', 'HttpSendRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpOpenRequestA'], ['GetModuleHandleW', 'KillTimer', 'RegOpenKeyExW', 'GetCharWidthA', 'CommandLineToArgvW'], ['SetComputerNameW', 'SetEvent', 'SetTapeParameters', 'GetModuleHandleW', 'GetNumberFormatA', 'ReadConsoleW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapCreate', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'ReadFileEx', 'InterlockedCompareExchange', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'IsSystemResumeAutomatic', 'BeginUpdateResourceA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'GetConsoleCursorInfo', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetTempPathA', 'EnumCalendarInfoExA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'LCMapStringW', 'GetLogicalDriveStringsW', 'WriteConsoleOutputW', 'GetDefaultCommConfigW', 'TlsGetValue', 'SetThreadContext', 'GetConsoleAliasesLengthW', 'GetTempFileNameA', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'WideCharToMultiByte', 'DdeQueryStringW', 'GetClassInfoExW', 'CreateAcceleratorTableA', 'ChangeMenuW', 'GetCharABCWidthsI', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsA', 'BackupEventLogA'], ['lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'lstrcpyW', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'IsDebuggerPresent', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetThreadPriority', 'GetThreadLocale', 'GetLocalTime', 'GetFullPathNameW', 'GetExitCodeThread', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FormatMessageW', 'FindResourceW', 'EnumCalendarInfoW', 'CreateFileW', 'CreateEventW', 'GetFileInformationByHandle', 'SetConsoleMode', 'SetConsoleDisplayMode', 'InitializeCriticalSectionAndSpinCount', 'GetThreadTimes', 'RemoveDirectoryW', 'GetCommMask', 'CallNamedPipeW', '_hwrite', 'GetThreadPriorityBoost', 'GetStartupInfoW', 'GetComputerNameExW', 'CreateDirectoryExA', 'FreeConsole', 'FindVolumeMountPointClose', 'GetSystemWindowsDirectoryW', 'FileTimeToDosDateTime', 'DnsHostnameToComputerNameA', 'GetCurrencyFormatA', 'GetSystemTimeAsFileTime', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetShortPathNameW', 'GetModuleHandleA', 'lstrcatW', 'DeleteFileW', 'CreateSemaphoreW', 'SetCursorPos', 'ShowScrollBar', 'FindWindowW', 'SetFocus', 'SetForegroundWindow', 'LoadStringW', 'MessageBoxW', 'ExitWindowsEx', 'EndMenu', 'GetThreadDesktop', 'GetClipboardOwner', 'IsCharLowerW', 'CloseClipboard', 'GetDesktopWindow', 'InSendMessage', 'GetDialogBaseUnits', 'CopyIcon', 'LoadCursorFromFileA', 'CloseWindow', 'IsCharAlphaA', 'GetKeyState', 'OemKeyScan', 'VkKeyScanA', 'GetInputState', 'CharLowerW', 'LoadIconA', 'GetWindowContextHelpId', 'LoadCursorW', 'IsWindow', 'LoadCursorFromFileW', 'VkKeyScanW', 'OpenIcon', 'DestroyMenu', 'CharNextA', 'WindowFromDC', 'PaintDesktop', 'DestroyIcon', 'IsCharUpperW', 'IsCharAlphaNumericW', 'GetShellWindow', 'GetWindowTextLengthA', 'ReleaseCapture', 'CharUpperA', 'CharLowerA', 'GetClipboardSequenceNumber', 'GetSysColor', 'GetWindowTextLengthW', 'GetMessageTime', 'ShowCaret', 'IsCharLowerA', 'GetClipboardViewer', 'DestroyWindow', 'GetKeyboardType', 'GetActiveWindow', 'DestroyCursor', 'GetWindowDC', 'IsCharAlphaW', 'GetAsyncKeyState', 'IsGUIThread', 'GetFocus', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'GdiEntry7', 'GdiResetDCEMF', 'XFORMOBJ_iGetXform', 'ExtCreatePen', 'SetDeviceGammaRamp', 'StartDocA', 'GetGlyphIndicesA', 'GetEUDCTimeStamp', 'SetTextAlign', 'PtInRegion', 'SetDCPenColor', 'EngUnicodeToMultiByteN', 'GdiCreateLocalMetaFilePict', 'GdiReleaseDC', 'GetMiterLimit', 'StrokeAndFillPath', 'CloseMetaFile', 'bInitSystemAndFontsDirectoriesW', 'GetCharWidth32A', 'GdiGetCharDimensions', 'FillRgn', 'GetNearestPaletteIndex', 'CreateFontA', 'TextOutA', 'STROBJ_bGetAdvanceWidths', 'GetBkMode', 'GdiEntry9', 'OffsetRgn', 'PATHOBJ_bEnum', 'TranslateCharsetInfo', 'EngCreateSemaphore', 'GetEnhMetaFilePixelFormat', 'GetGraphicsMode', 'CancelDC', 'WidenPath', 'CreatePatternBrush', 'GetBkColor', 'StrokePath', 'FillPath', 'PathToRegion', 'GetPixelFormat', 'GdiFlush', 'SwapBuffers', 'GetFontLanguageInfo', 'FlattenPath', 'GetTextCharset', 'DeleteColorSpace', 'GdiGetBatchLimit', 'GetObjectType', 'BeginPath', 'AddFontResourceW', 'GetDCBrushColor', 'GetROP2', 'EndPath', 'AddFontResourceA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'ReportEventW', 'RegisterEventSourceW', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryInfoKeyW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'DeregisterEventSource', 'StartServiceCtrlDispatcherW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerW', 'OpenServiceW', 'OpenSCManagerW', 'DeleteService', 'CreateServiceW', 'CloseServiceHandle', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'RegCreateKeyW', 'RegOpenKeyW', 'OpenProcessToken', 'RegQueryValueExA', 'RegOpenKeyA', 'ShellExecuteW', 'SHGetFolderPathW', 'Shell_NotifyIcon', 'DuplicateIcon', 'SHPathPrepareForWriteW', 'SHGetFileInfoW', 'SHGetDataFromIDListA', 'SHEmptyRecycleBinW', 'ExtractAssociatedIconA', 'SHCreateDirectoryExW', 'SHFreeNameMappings', 'SHGetFolderLocation', 'SHGetInstanceExplorer', 'ExtractAssociatedIconExA', 'ShellExecuteExA', 'ExtractIconW', 'SHQueryRecycleBinW', 'SHLoadInProc', 'SHGetIconOverlayIndexW', 'SHQueryRecycleBinA', 'ExtractIconExW', 'SHAddToRecentDocs', 'SHGetSpecialFolderPathA', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateInstance', 'IsEqualGUID', 'StrCmpNIA', 'StrRStrIA', 'StrCmpNIW', 'StrRChrIW', 'StrStrIW', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetModuleHandleA', 'ReleaseDC', 'RegQueryValueExW', 'FillRgn', 'sndPlaySoundW', 'GradientFill'], ['PathFileExistsW', 'PathFileExistsA', 'Sleep', 'SizeofResource', 'GetConsoleWindow', 'GetVersionExW', 'GetModuleFileNameW', 'CreateFileW', 'MultiByteToWideChar', 'GetLastError', 'GetProcAddress', 'GetSystemDirectoryW', 'CreateEventW', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'CreateThread', 'CreateProcessA', 'GetExitCodeProcess', 'WriteConsoleW', 'WriteFile', 'GetModuleHandleW', 'SetEvent', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'LoadResource', 'FindResourceW', 'GetNativeSystemInfo', 'GetCommandLineW', 'GetFileAttributesExW', 'SetEnvironmentVariableA', 'LockResource', 'GetModuleHandleExW', 'SetStdHandle', 'ReadConsoleW', 'LoadLibraryW', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WideCharToMultiByte', 'GetStringTypeW', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'SetEndOfFile', 'AreFileApisANSI', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetStdHandle', 'GetFileType', 'GetProcessHeap', 'ReadFile', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetFilePointer', 'HeapReAlloc', 'OutputDebugStringW', 'ExitWindowsEx', 'ShowWindow', 'RegisterServiceCtrlHandlerW', 'RevertToSelf', 'SetServiceStatus', 'ImpersonateLoggedOnUser', 'ChangeServiceConfig2W', 'LookupPrivilegeValueW', 'CreateProcessAsUserW', 'LogonUserW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'OpenProcessToken', 'CreateServiceW', 'AdjustTokenPrivileges', 'ShellExecuteW', 'ShellExecuteA'], ['CloseHandle', 'ConnectNamedPipe', 'CreateFileA', 'CreateNamedPipeA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'QueryPerformanceCounter', 'ReadFile', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WriteFile', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_iob', '_lock', '_onexit', '_unlock', '_winmajor', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'sprintf', 'strlen', 'strncmp', 'vfprintf'], ['RtlUnwind', 'RaiseException', 'HeapReAlloc', 'Sleep', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'VirtualAlloc', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCommandLineA', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'HeapFree', 'HeapAlloc', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'lstrlenA', 'CloseHandle', 'WritePrivateProfileStringW', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'InterlockedExchange', 'InterlockedDecrement', 'WideCharToMultiByte', 'GlobalAlloc', 'FormatMessageW', 'LocalFree', 'GetCurrentProcessId', 'GetModuleFileNameW', 'MulDiv', 'GetModuleHandleA', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'FreeLibrary', 'CompareStringW', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'lstrlenW', 'SizeofResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FindResourceW', 'LoadResource', 'LockResource', 'FreeResource', 'ExitProcess', 'MultiByteToWideChar', 'GetProcAddress', 'GetModuleHandleW', 'LoadLibraryW', 'GetLastError', 'GetTickCount', 'SetLastError', 'LoadCursorW', 'GetSysColorBrush', 'DestroyMenu', 'SetCursor', 'GetMessageW', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'ShowWindow', 'SetWindowTextW', 'IsDialogMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetCapture', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetFocus', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageW', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageW', 'MapWindowPoints', 'GetKeyState', 'SetMenu', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'PostMessageW', 'GetMenuItemID', 'GetMenuItemCount', 'EnableWindow', 'LoadBitmapW', 'SendMessageW', 'ReleaseDC', 'MessageBoxW', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'RegisterWindowMessageW', 'InvalidateRect', 'LoadIconW', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSysColor', 'FillRect', 'EndDialog', 'GetNextDlgTabItem', 'GetParent', 'IsWindowEnabled', 'GetDlgItem', 'GetWindowLongW', 'IsWindow', 'DestroyWindow', 'CreateDialogIndirectParamW', 'SetActiveWindow', 'GetActiveWindow', 'GetDesktopWindow', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'GetWindowRect', 'GetSubMenu', 'GetDC', 'CopyRect', 'SendDlgItemMessageW', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'PtVisible', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'CreateSolidBrush', 'CreateCompatibleDC', 'DeleteObject', 'MoveToEx', 'LineTo', 'SetMapMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'BitBlt', 'CreateCompatibleBitmap', 'RectVisible', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCloseKey', 'RegSetValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryValueExW', 'InitCommonControlsEx', 'PathFindExtensionW', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['CreateFileA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'LockFile', 'ReadFile', 'UnlockFile', 'WriteFile', 'CloseHandle', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetModuleFileNameA', 'SwitchToFiber', 'CreateFiber', 'ConvertThreadToFiber', 'GetTempPathA', 'CallNamedPipeA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwindEx', 'InterlockedFlushSList', 'SetLastError', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetCurrentProcess', 'TerminateProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringW', 'FindFirstFileExA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'CreateFileW', 'RaiseException'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CreateFileW', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableW', 'CopyIcon', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'lstrcpyW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'UpdateResourceW', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'RaiseException', 'IsDebuggerPresent', 'OpenMutexW', 'MultiByteToWideChar', 'MulDiv', 'MoveFileW', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoW', 'EnterCriticalSection', 'EndUpdateResourceW', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateFileW', 'CreateEventW', 'CompareStringW', 'CloseHandle', 'BeginUpdateResourceW', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ShellExecuteW', 'ExtractIconW', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW'], ['GetClipboardData', 'GetDlgItem', 'SendDlgItemMessageA', 'AppendMenuA', 'CreatePopupMenu', 'DestroyMenu', 'ClientToScreen', 'TrackPopupMenu', 'GetCursorPos', 'SendMessageA', 'GetDlgItemTextA', 'wsprintfA', 'MessageBoxA', 'LoadCursorA', 'GetActiveWindow', 'CheckDlgButton', 'SetWindowTextA', 'IsDlgButtonChecked', 'SetWindowLongA', 'CallWindowProcA', 'GetClassInfoA', 'CloseClipboard', 'CheckMenuRadioItem', 'EnumClipboardFormats', 'SetDlgItemTextA', 'EndDialog', 'RegisterClassA', 'DefDlgProcA', 'SetActiveWindow', 'SetMenuItemInfoA', 'CheckMenuItem', 'GetMenu', 'InsertMenuItemA', 'SetWindowPlacement', 'SetTimer', 'GetSystemMenu', 'MoveWindow', 'GetClientRect', 'PostQuitMessage', 'DestroyWindow', 'DestroyIcon', 'KillTimer', 'GetSysColor', 'GetEnvironmentStringsW', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'MultiByteToWideChar', 'LCMapStringA', 'RtlUnwind', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'HeapFree', 'VirtualFree', 'GetModuleHandleA', 'GetProcAddress', 'FreeConsole', 'GetCommandLineA', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'HeapCreate', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement'], ['VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'AddConsoleAliasW', 'GetSystemDefaultLCID', 'EnumCalendarInfoExW', 'TlsSetValue', 'LoadLibraryW', 'DeleteVolumeMountPointW', 'InterlockedPopEntrySList', 'SetConsoleMode', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'InterlockedIncrement', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'DeleteFileW', 'DeleteAtom', 'GetConsoleProcessList', 'DebugBreak', 'FindResourceExW', 'GetConsoleAliasExesLengthA', 'SearchPathA', 'CloseHandle', 'CreateFileA', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'CreateDirectoryA', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateLayeredWindow', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'AppendMenuA', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'WNetGetConnectionA', 'lstrcpyA', 'lstrcmpA', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'OpenProcess', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LocalFileTimeToFileTime', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemDirectoryA', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreatePipe', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'ReleaseStgMedium', 'OleDraw', 'OleSetMenuDescriptor', 'RevokeDragDrop', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'CLSIDFromString', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'GetOpenFileNameA', 'CertGetNameStringA', 'WTHelperProvDataFromStateData', 'WTHelperGetProvCertFromChain', 'WTHelperGetProvSignerFromChain', 'WinVerifyTrust', 'CryptCATAdminReleaseCatalogContext', 'CryptCATCatalogInfoFromContext', 'CryptCATAdminEnumCatalogFromHash', 'CryptCATAdminCalcHashFromFileHandle', 'CryptCATAdminReleaseContext', 'CryptCATAdminAcquireContext', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'SHGetMalloc', 'SHGetDesktopFolder', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetServByName', 'WSAAsyncGetHostByName', 'WSAAsyncSelect', 'getservbyname', 'gethostbyname', 'socket', 'setsockopt', 'send', 'select', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_addr', 'htons', 'getsockopt', 'connect', 'closesocket', 'bind', 'accept', 'SHGetInstanceExplorer', 'FindFirstChangeNotificationA', 'DoDragDrop', 'RegisterDragDrop', 'GdipDrawImageRect', 'GdipReleaseDC', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipDisposeImage', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromStream', 'GdiplusShutdown', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'LoadLibraryA', 'GetProcAddress', 'GetLastError', 'FreeLibrary', 'InitializeCriticalSection', 'GetModuleFileNameW', 'GetModuleHandleW', 'TerminateProcess', 'GetCurrentProcess', 'DeleteCriticalSection', 'LoadLibraryW', 'CreateEventW', 'CompareStringW', 'SetLastError', 'GetModuleHandleA', 'VirtualProtect', 'GetTickCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'VirtualAlloc', 'WriteProcessMemory', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'GetCurrentThreadId', 'Thread32First', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'GetSystemInfo', 'LoadResource', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FindResourceExW', 'FindResourceExA', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'HeapAlloc', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'GetSystemTime', 'GetLocalTime', 'SystemTimeToFileTime', 'CompareFileTime', 'GetCommandLineA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'LCMapStringA', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'RaiseException', 'Sleep', 'ExitProcess', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'HeapSize', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'VirtualQuery', 'MessageBoxW', 'CharUpperBuffW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'lstrlenA', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'SetFilePointer', 'VirtualAlloc', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['GetConsoleAliasesLengthW', 'VirtualQuery', 'FindResourceExW', 'InterlockedIncrement', 'InterlockedDecrement', 'GetComputerNameW', 'SetEvent', 'GetModuleHandleW', 'SetFileTime', 'GetLocaleInfoW', 'Sleep', 'GetCalendarInfoW', 'GetVersionExW', 'GetStringTypeExW', 'DnsHostnameToComputerNameW', 'GetMailslotInfo', 'SetConsoleTitleA', 'RaiseException', 'LCMapStringA', 'GetProcAddress', 'VirtualAlloc', 'PeekConsoleInputW', 'SetStdHandle', 'SetFileAttributesA', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'FoldStringA', 'GetSystemInfo', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'GetModuleHandleA', 'UpdateResourceW', 'GetConsoleTitleW', 'DeleteFileW', 'GetConsoleProcessList', 'SwitchToThread', 'HeapSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCommandLineA', 'GetStartupInfoA', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'RtlUnwind', 'MultiByteToWideChar', 'GetLastError', 'ReadFile', 'ExitProcess', 'WriteFile', 'HeapFree', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'WinHttpSetDefaultProxyConfiguration', 'TransparentBlt'], ['SetDllDirectoryA', 'GetSystemTimeAsFileTime', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'Sleep', 'GetModuleHandleA'], ['GetModuleFileNameW', 'Sleep', 'VerSetConditionMask', 'VerifyVersionInfoW', 'GetTempPathW', 'WaitForSingleObject', 'GetCurrentThread', 'DeleteFileW', 'WideCharToMultiByte', 'GetTempFileNameW', 'VirtualQuery', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'InterlockedFlushSList', 'RaiseException', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'CloseHandle', 'CreateThread', 'ExitThread', 'ResumeThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'WriteConsoleW', 'DecodePointer', 'GetSystemInfo', 'VirtualProtect', 'LoadLibraryExA'], ['lstrcatA', 'GetEnvironmentVariableA', 'GetLastError', 'SetLastError', 'GetProcAddress', 'SetFileAttributesA', 'LoadLibraryA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'DeleteFileW', 'DeleteFileA', 'GetComputerNameA', 'GetFileSize', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'MultiByteToWideChar', 'GetTempPathA', 'GetCurrentProcess', 'SetFileTime', 'CreateEventA', 'GetModuleFileNameW', 'CreateDirectoryA', 'GetTempFileNameA', 'OpenEventA', 'GetFileTime', 'GetVersionExA', 'CreateFileA', 'InitializeCriticalSection', 'CreateProcessA', 'EnterCriticalSection', 'DeleteCriticalSection', 'GetTickCount', 'WaitForSingleObject', 'GetLocalTime', 'CreateEventW', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'lstrlenW', 'lstrcatW', 'FileTimeToDosDateTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetModuleHandleW', 'VirtualProtectEx', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'GetProcessHeap', 'SetEndOfFile', 'GetLocaleInfoA', 'lstrlenA', 'GetVersionExW', 'Sleep', 'LoadLibraryW', 'FreeLibrary', 'ExitProcess', 'LeaveCriticalSection', 'HeapFree', 'HeapAlloc', 'ExitThread', 'ResumeThread', 'CreateThread', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'GetStdHandle', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapSize', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetTimeZoneInformation', 'RtlUnwind', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'VirtualQuery', 'wsprintfW', 'SendMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'wsprintfA', 'RegSetValueExA', 'RegQueryValueExA', 'RegSetValueExW', 'RegCloseKey', 'RegCreateKeyExA', 'RegCreateKeyExW'], ['GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileAttributesExW', 'GetFileSizeEx', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOEMCP', 'GetPrivateProfileSectionW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExA', 'GetWindowsDirectoryW', 'GlobalFree', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'GetConsoleOutputCP', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LocalReAlloc', 'LockResource', 'MultiByteToWideChar', 'OpenEventW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'RtlUnwind', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetFilePointerEx', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadUILanguage', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcmpiW', 'lstrcpynA', 'lstrcpynW', 'lstrlenA', 'lstrlenW', 'GetConsoleCP', 'GetConsoleMode', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetAtomNameW', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageW', 'FlushInstructionCache', 'FlushFileBuffers', 'FindResourceW', 'FindResourceExW', 'FindAtomW', 'ExitProcess', 'EnumSystemLocalesA', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'DeleteAtom', 'CreateToolhelp32Snapshot', 'CreateThread', 'CreateProcessW', 'CreateMutexW', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'LoadLibraryExW', 'AddAtomW', 'UnregisterClassA', 'TranslateMessage', 'SetWindowLongW', 'SetTimer', 'SendMessageTimeoutW', 'RegisterClassW', 'RegisterClassExW', 'PostThreadMessageW', 'PostMessageW', 'PeekMessageW', 'MessageBoxW', 'LoadStringW', 'GetKeyboardLayout', 'KillTimer', 'IsWindow', 'GetWindowLongW', 'GetMessageW', 'GetClassInfoExW', 'GetActiveWindow', 'VkKeyScanA', 'GetKeyboardType', 'IsWindowUnicode', 'IsCharLowerW', 'CallWindowProcW', 'CharNextW', 'CreateWindowExW', 'DefWindowProcW', 'DestroyWindow', 'DispatchMessageW', 'ExitWindowsEx', 'GetCaretBlinkTime', 'GetLastActivePopup', 'LoadCursorFromFileW', 'GetMenuContextHelpId', 'GetWindowContextHelpId', 'GetParent', 'DestroyMenu', 'LoadIconA', 'GetSysColorBrush', 'IsIconic', 'GetMessageExtraInfo', 'GetOpenClipboardWindow', 'AnyPopup', 'LoadCursorW', 'FindWindowW', 'InSendMessage', 'GetTextAlign', 'GetGraphicsMode', 'GetTextCharset', 'UpdateColors', 'EndDoc', 'GetBkColor', 'GetDCBrushColor', 'CreateSolidBrush', 'UnrealizeObject', 'CreateMetaFileW', 'CloseFigure', 'PathToRegion', 'GetStockObject', 'RegCloseKey', 'RegCreateKeyExW', 'RegOpenKeyExA', 'RegSetValueExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegNotifyChangeKeyValue', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'RegDeleteKeyW', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'ShellExecuteW', 'CoTaskMemRealloc', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'StrCpyNW', 'StrCmpNIW', 'StrCmpIW', 'SHGetValueW', 'StrStrIA', 'PathIsDirectoryW', 'PathFindFileNameW', 'PathFileExistsW', 'PathCombineW', 'PathAppendW', 'StrStrIW', 'UrlGetPartA', 'wvnsprintfW', 'PathRemoveFileSpecW', 'InitCommonControlsEx', 'ImmDisableIME'], ['CreateJobObjectW', 'HeapFree', 'SetHandleInformation', 'GetProfileStringW', 'GetTimeFormatA', 'LockFile', 'ConnectNamedPipe', 'FreeEnvironmentStringsA', 'SetTapeParameters', 'GetTickCount', 'CreateRemoteThread', 'GetCompressedFileSizeW', 'GetVolumePathNameW', 'GlobalAlloc', 'SetSystemTimeAdjustment', 'GetConsoleAliasExesLengthW', 'LeaveCriticalSection', 'GetFileAttributesA', 'IsDBCSLeadByte', 'GetModuleFileNameW', 'GetTimeZoneInformation', 'CreateJobObjectA', 'LCMapStringA', 'CreateDirectoryA', 'InitializeSListHead', 'GetCurrentDirectoryW', 'GetLongPathNameW', 'GetProcAddress', 'CreateJobSet', 'CreateMemoryResourceNotification', 'SetFileAttributesA', 'DisableThreadLibraryCalls', 'GetAtomNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'AddVectoredExceptionHandler', 'SetConsoleOutputCP', 'AddAtomW', 'HeapLock', 'GetCommMask', 'GetOEMCP', 'GetModuleHandleA', 'EnumSystemGeoID', 'CompareStringW', 'CompareStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'LCMapStringW', 'WriteConsoleOutputCharacterA', 'SetConsoleTextAttribute', 'SetLocalTime', 'GetConsoleAliasesLengthW', 'SetFilePointer', 'SetPriorityClass', 'GetEnvironmentVariableW', 'InterlockedExchange', 'LocalUnlock', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'RtlUnwind', 'DeleteCriticalSection', 'FatalAppExitA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'CloseHandle', 'CreateFileA', 'RaiseException', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'HeapSize', 'GetLocaleInfoW', 'GetLocaleInfoA', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'SetEndOfFile', 'GetProcessHeap', 'MultiByteToWideChar', 'ReadFile', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'SetEnvironmentVariableA', 'GetMonitorInfoA', 'GetDesktopWindow', 'SetProcessDefaultLayout', 'GetUserObjectInformationW', 'GetClassLongW', 'GetBoundsRect', 'RegCreateKeyA', 'GetPrivateObjectSecurity', 'DuplicateToken', 'EqualPrefixSid', 'PrivilegedServiceAuditAlarmA', 'OpenEventLogA'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetProcessTimes', 'GetVolumePathNameW', 'GetCalendarInfoA', 'GetFileAttributesA', 'WriteConsoleW', 'SetSystemPowerState', 'GetModuleFileNameW', 'CompareStringW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'GetPrivateProfileIntW', 'DeleteFiber', 'GetLastError', 'GetProcAddress', 'InterlockedIncrement', 'HeapSize', 'SetComputerNameA', 'EnterCriticalSection', 'SearchPathA', 'OpenWaitableTimerA', 'LoadLibraryA', 'Process32FirstW', 'GetProcessId', 'LocalAlloc', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'CancelTimerQueueTimer', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetFileShortNameA', 'FindAtomW', 'AreFileApisANSI', 'GetConsoleAliasExesLengthA', 'AttachConsole', 'GetVolumeNameForVolumeMountPointA', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsA', 'SelectObject'], ['FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'HeapQueryInformation', 'HeapSize', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'FlsAlloc', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'GetACP', 'IsValidCodePage', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'HeapAlloc', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapFree', 'RtlUnwindEx', 'RtlLookupFunctionEntry', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetModuleHandleW', 'GetOEMCP', 'GetCPInfo', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'MulDiv', 'lstrlenA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'VirtualAlloc', 'WinExec', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'SetHandleCount', 'FindResourceA', 'TranslateMessage', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'WindowFromPoint', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'GetClassLongPtrA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetLastActivePopup', 'DispatchMessageA', 'GetWindowLongPtrA', 'SetWindowLongPtrA', 'UnhookWindowsHookEx', 'GetMessageTime', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'SetMenu', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowPos', 'SystemParametersInfoA', 'EnableWindow', 'RedrawWindow', 'GetSysColor', 'InvalidateRect', 'GetWindowPlacement', 'GetWindow', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'IsIconic', 'GetSysColorBrush', 'DestroyMenu', 'GetForegroundWindow', 'GetMessageA', 'FillRect', 'GetClientRect', 'DestroyCursor', 'KillTimer', 'SendMessageA', 'SetWindowLongA', 'MessageBeep', 'SetTimer', 'GetMessagePos', 'PtInRect', 'ScreenToClient', 'SetCursor', 'IsWindow', 'InflateRect', 'GetWindowRect', 'GetDC', 'ReleaseDC', 'GetParent', 'CopyIcon', 'LoadCursorA', 'DrawIcon', 'GetSystemMetrics', 'GetSystemMenu', 'AppendMenuA', 'LoadIconA', 'GetCursorPos', 'ReleaseCapture', 'SetCapture', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FrameRect', 'CopyRect', 'LoadBitmapA', 'RegisterWindowMessageA', 'GetTopWindow', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'OffsetViewportOrgEx', 'SelectObject', 'SetViewportOrgEx', 'DeleteObject', 'GetStockObject', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'BitBlt', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'CreateCompatibleBitmap', 'SetPixel', 'GetPixel', 'StretchBlt', 'CreateCompatibleDC', 'GetTextExtentPoint32A', 'CreateSolidBrush', 'GetObjectA', 'CreateFontIndirectA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCloseKey', 'ShellExecuteA', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetModuleHandleA', 'DefWindowProcA', 'GetUserNameA', 'PropertySheet'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'InterlockedDecrement', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'SysAllocString', 'SysFreeString', 'VariantClear', 'GdipAlloc', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'ExitProcess', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'FreeLibrary', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetProcessHeap', 'CharNextA', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegEnumValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'OpenProcessToken', 'LookupAccountNameA', 'IsValidSid', 'GetUserNameA', 'lstrlenA', 'lstrcmpiA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualProtectEx', 'VirtualProtect', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetFilePointer', 'SetFileAttributesA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GlobalFree', 'GetVersionExA', 'GetTickCount', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetModuleHandleA', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetCurrentProcess', 'FreeResource', 'FreeLibrary', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'DeleteFileA', 'CreateRemoteThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateDirectoryA', 'CopyFileA', 'CloseHandle', 'wvsprintfA', 'TranslateMessage', 'ToAscii', 'SetWindowsHookExA', 'PeekMessageA', 'GetWindowThreadProcessId', 'GetKeyboardState', 'FindWindowA', 'DispatchMessageA', 'CharLowerA', 'CharUpperA', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'PStoreCreateInstance', 'StringFromCLSID', 'RasGetEntryDialParamsA', 'RasEnumEntriesA', 'SHGetSpecialFolderPathA', 'LsaFreeMemory', 'LsaClose', 'LsaRetrievePrivateData', 'LsaOpenPolicy', 'ConvertSidToStringSidA', 'CryptUnprotectData', 'CredEnumerateA', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptGetHashParam', 'CryptReleaseContext', 'CryptAcquireContextA'], ['SetFileAttributesA', 'GetTempFileNameA', 'LoadLibraryA', 'WaitForMultipleObjects', 'CopyFileA', 'GetStringTypeW', 'LCMapStringW', 'IsProcessorFeaturePresent', 'GetShortPathNameA', 'GetEnvironmentVariableA', 'CreateProcessA', 'GetFileAttributesA', 'Sleep', 'SetEvent', 'VirtualProtect', 'GetCurrentProcess', 'GetLastError', 'DuplicateHandle', 'CloseHandle', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetFileType', 'CreateFileA', 'CreateFileW', 'SetStdHandle', 'EnterCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoW', 'DeleteCriticalSection', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'InterlockedDecrement', 'GetProcAddress', 'HeapFree', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'SetEndOfFile', 'HeapAlloc', 'GetProcessHeap', 'MultiByteToWideChar', 'ReadFile', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'LoadLibraryW', 'GetModuleFileNameW', 'WriteConsoleW', 'HeapSize', 'OleInitialize', 'OleUninitialize', 'CryptUIDlgViewContext', 'CryptUIDlgSelectCertificateFromStore', 'CryptUIWizDigitalSign', 'CryptUIWizImport', 'CryptUIWizFreeDigitalSignContext', 'CryptUIDlgViewCertificateA', 'CryptUIWizExport'], ['FindNextVolumeA', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxW', 'GetConsoleAliasW', '_lwrite', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameW', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'GetStringTypeExA', 'EnumSystemLocalesA', 'CallNamedPipeW', 'FindActCtxSectionStringW', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetConsoleAliasExesLengthW', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'GetBinaryTypeW', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['GetCurrentProcess', 'Sleep', 'LoadLibraryA', 'OpenMutexA', 'DeviceIoControl', 'VirtualProtect', 'GetCurrentDirectoryA', 'GetTempPathA', 'CloseHandle', 'CreateFileW', 'SetStdHandle', 'SetEnvironmentVariableA', 'CompareStringW', 'GetTimeFormatA', 'GetDateFormatA', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapValidate', 'IsBadReadPtr', 'EncodePointer', 'GetModuleFileNameW', 'IsProcessorFeaturePresent', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedIncrement', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'RtlUnwind', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'RaiseException', 'FlushFileBuffers', 'WTSOpenServerA', 'WTSCloseServer', 'WTSQueryUserToken', 'WTSLogoffSession'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['malloc', 'memset', 'strcmp', 'strcpy', 'getenv', 'sprintf', 'fopen', 'fwrite', 'fclose', '__argc', '__argv', '_environ', '_XcptFilter', '__set_app_type', '_controlfp', '__getmainargs', 'exit', 'ShellExecuteA', 'SetUnhandledExceptionFilter'], ['SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetConsoleAliasesW', 'GetStdHandle', 'AllocConsole', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'MoveFileA', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'GetLastError', 'SetFilePointer', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CreateFileA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'BeginPath', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['EnterCriticalSection', 'RegCloseKey', 'SHGetFolderPathW', 'WinHttpSetOption', 'CryptUnprotectData', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'CreatePrivateObjectSecurity', 'CreateFontW', 'CreateIcon', 'VariantChangeTypeEx', 'RaiseException'], ['GetLocalTime', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'OutputDebugStringA', 'UnmapViewOfFile', 'GetModuleHandleA', 'VirtualFree', 'VirtualAlloc', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'GlobalSize', 'GetStartupInfoA', 'Process32First', 'WaitForMultipleObjects', 'LocalSize', 'TerminateProcess', 'OpenProcess', 'GetCurrentThreadId', 'GetComputerNameA', 'GetCurrentProcess', 'OpenEventA', 'SetErrorMode', 'GetVersionExA', 'GetWindowsDirectoryA', 'CopyFileA', 'SetFileAttributesA', 'ExpandEnvironmentStringsA', 'CreateFileA', 'WriteFile', 'lstrcmpiA', 'GetTickCount', 'InterlockedExchange', 'TerminateThread', 'CreateThread', 'CreateProcessA', 'lstrcatA', 'MoveFileA', 'SetFilePointer', 'ReadFile', 'GetFileSize', 'LocalAlloc', 'FindFirstFileA', 'LocalReAlloc', 'FindNextFileA', 'LocalFree', 'FindClose', 'GetLogicalDriveStringsA', 'GetVolumeInformationA', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'FreeLibrary', 'lstrlenA', 'GetFileAttributesA', 'CreateDirectoryA', 'GetLastError', 'DeleteFileA', 'Sleep', 'CancelIo', 'SetEvent', 'lstrcpyA', 'ResetEvent', 'WaitForSingleObject', 'CloseHandle', 'CreateEventA', 'GetProcAddress', 'EnterCriticalSection', 'DeleteCriticalSection', 'Process32Next', 'CreateToolhelp32Snapshot', 'LoadLibraryA', 'PeekNamedPipe', 'SHGetSpecialFolderPathA', 'RegSaveKeyA', 'ClearEventLogA', 'RegRestoreKeyA', 'StartServiceA', 'CreateServiceA', 'LockServiceDatabase', 'ChangeServiceConfig2A', 'UnlockServiceDatabase', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'DuplicateTokenEx', 'SetTokenInformation', 'AdjustTokenPrivileges', 'CreateProcessAsUserA', 'RegQueryValueExA', 'InitializeSecurityDescriptor', 'AllocateAndInitializeSid', 'GetLengthSid', 'InitializeAcl', 'AddAccessAllowedAce', 'SetSecurityDescriptorDacl', 'FreeSid', 'OpenSCManagerA', 'OpenServiceA', 'DeleteService', 'CloseServiceHandle', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'OpenEventLogA', 'CloseEventLog', 'AlphaBlend', 'CreateDCA', 'LoadMenuA', 'wsprintfA', 'GetWindowTextA', 'CreateWindowExA', 'GetMessageA', 'DispatchMessageA', 'TranslateMessage', 'PostMessageA', 'OpenDesktopA', 'GetThreadDesktop', 'GetUserObjectInformationA', 'OpenInputDesktop', 'SetThreadDesktop', 'CloseDesktop', 'IsWindowVisible', 'GetWindowThreadProcessId', 'ExitWindowsEx', 'GetDC', 'ReleaseDC', 'GetCursorPos', 'SetRect', 'GetSystemMetrics', 'GetClipboardData', 'OpenClipboard', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'mouse_event', 'SetCursorPos', 'WindowFromPoint', 'FindWindowA', 'GetActiveWindow', 'CallNextHookEx', 'UnhookWindowsHookEx', 'LoadCursorA', 'SendMessageA', 'keybd_event', 'MapVirtualKeyA', 'SetCapture', 'CharNextA', 'ImmReleaseContext', 'ImmGetCompositionStringA', 'ImmGetContext', 'InternetReadFile', '_adjust_fdiv', '_initterm', 'calloc', 'srand', '_access', 'wcstombs', 'atoi', '_beginthreadex', 'strncpy', 'puts', 'strrchr', 'sprintf', '_except_handler3', 'malloc', 'free', '??2@YAPAXI@Z', '__CxxFrameHandler', '_strrev', 'putchar', '_ftol', 'ceil', 'memmove', '??3@YAXPAX@Z', 'rand', 'strstr', 'recv', 'ntohs', 'socket', 'getsockname', 'htons', 'connect', 'WSAIoctl', 'WSACleanup', 'WSAStartup', 'send', 'setsockopt', 'select', 'gethostbyname', 'closesocket', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?_Xran@std@@YAXXZ', '?_Split@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXXZ', '?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_Refcnt@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEAAEPBD@Z', '?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAE_NI_N@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', 'WTSQueryUserToken', 'CreateEnvironmentBlock'], ['GetModuleHandleA', 'ShowWindow', 'RegisterEventSourceA', '_configthreadlocale', '_register_onexit_function', 'SHChangeNotifyRegister', '_time64', '__stdio_common_vfprintf', 'free', '__setusermatherr', 'DSA_Create', '__current_exception_context', 'accept', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', 'srand', '_lock_file'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'GetACP', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'MoveFileA', 'GetVolumeInformationA', 'GetStringTypeExA', 'GetThreadLocale', 'GetShortPathNameA', 'GetFileSize', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'InterlockedExchange', 'RtlUnwind', 'SetEnvironmentVariableA', 'SetCurrentDirectoryA', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'CreateDirectoryA', 'GetDriveTypeA', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'RaiseException', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'TerminateProcess', 'CreateThread', 'ExitThread', 'HeapSize', 'FlushFileBuffers', 'LCMapStringA', 'LCMapStringW', 'CompareStringA', 'CompareStringW', 'VirtualFree', 'IsBadWritePtr', 'GetEnvironmentVariableA', 'HeapDestroy', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetStringTypeA', 'GetStringTypeW', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetProfileStringA', 'GetCurrentProcess', 'DuplicateHandle', 'GetCurrentDirectoryA', 'SizeofResource', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'GlobalFlags', 'MulDiv', 'GlobalSize', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'SetLastError', 'GetDiskFreeSpaceA', 'GetFileTime', 'SetFileTime', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileAttributesA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'GetModuleFileNameA', 'GlobalAlloc', 'lstrcmpA', 'GetCurrentThread', 'GlobalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'GetCurrentThreadId', 'lstrcmpiA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GetModuleHandleA', 'lstrcatA', 'lstrcpyA', 'lstrcpynA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GetVersion', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenW', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'lstrlenA', 'InterlockedDecrement', 'InterlockedIncrement', 'CreateMutexA', 'GetLastError', 'ReleaseMutex', 'CloseHandle', 'CreateProcessA', 'Sleep', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcAddress', 'GetTickCount', 'CopyFileA', 'FindFirstFileA', 'DeleteFileA', 'FindNextFileA', 'FindClose', 'RemoveDirectoryA', 'SetFileAttributesA', 'GetVersionExA', 'GetACP', 'SetUnhandledExceptionFilter', 'FreeLibrary', 'LoadLibraryA', 'FatalAppExitA', 'LoadIconA', 'LoadIconW', 'GetStockObject', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'SelectPalette', 'SetColorAdjustment', 'PolyBezierTo', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontIndirectA', 'SelectObject', 'RestoreDC', 'SaveDC', 'StartDocA', 'DeleteDC', 'DeleteObject', 'GetDeviceCaps', 'CreateDCA', 'CopyMetaFileA', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'PolylineTo', 'CreateDIBitmap', 'PatBlt', 'GetTextExtentPointA', 'BitBlt', 'CreateCompatibleDC', 'GetDCOrgEx', 'GetUserNameA', 'RegOpenKeyA', 'RegQueryValueExA', 'ExtractIconA', 'DragAcceptFiles', 'DragQueryFileA', 'DragFinish', 'SHGetSpecialFolderPathA', 'SHGetFileInfoA', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['ZombifyActCtx', 'GetEnvironmentStringsW', 'GetConsoleAliasesA', 'GetEnvironmentStrings', 'GetPrivateProfileIntA', 'WideCharToMultiByte', 'LoadLibraryW', 'SetVolumeMountPointA', 'LeaveCriticalSection', 'HeapValidate', 'WriteConsoleW', 'GetAtomNameW', 'ReplaceFileA', 'SetLastError', 'GetProcAddress', 'AttachConsole', 'SetFilePointer', 'BeginUpdateResourceW', 'SetStdHandle', 'LoadLibraryA', 'LocalAlloc', 'AddVectoredExceptionHandler', 'WriteProfileSectionW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetConsoleTitleW', 'SetCalendarInfoA', 'LocalFree', 'FindFirstChangeNotificationW', 'VirtualAlloc', 'EnumResourceNamesW', 'CreateFileA', 'GetConsoleOutputCP', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'CloseHandle', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'WriteConsoleA', 'ClientToScreen', 'BackupEventLogA', 'WinHttpSetTimeouts'], ['QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwindEx', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetCurrentProcess', 'ExitProcess', 'TerminateProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'CloseHandle', 'WriteConsoleW'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxW', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'OpenWaitableTimerA', 'GetVolumePathNameA', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeW', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'GetLastError', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'DebugBreak', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'lstrcatW', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'RtlUnwind', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'GetTickCount', 'GetFileTime', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringW', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GetModuleHandleA', 'InterlockedDecrement', 'lstrlenW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomW', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetEnvironmentStrings', 'ExitProcess', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'MessageBeep', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'CharNextW', 'CharUpperW', 'SetPropW', 'GetSysColorBrush', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageW', 'PostQuitMessage', 'InvalidateRect', 'LoadBitmapW', 'GetParent', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSystemMenu', 'AppendMenuW', 'SendMessageW', 'LoadIconW', 'EnableWindow', 'UnregisterClassA', 'ScaleWindowExtEx', 'GetWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'SetWindowExtEx', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'GetViewportExtEx', 'DeleteObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'BitBlt', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetObjectW', 'GetPixel', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SetPixelV', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'UnmapViewOfFile', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LocalFree', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeA', 'GetStdHandle', 'GetShortPathNameA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterClipboardFormatA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyCursor', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SetSecurityInfo', 'SetEntriesInAclA', 'GetSecurityInfo'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'SHGetFolderPathA'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'TerminateProcess', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'EnterCriticalSection', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'InterlockedExchange', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenA', 'LoadLibraryW', 'MoveFileA', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'CopyFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'FindActCtxSectionStringW', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetStringTypeA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'GetOEMCP', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ReadFile', 'ImpersonateSelf'], ['WriteProfileSectionA', 'GetNumaHighestNodeNumber', 'FindFirstVolumeA', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationA', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'FileTimeToDosDateTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'GetTimeZoneInformation', 'TerminateThread', 'WaitForMultipleObjectsEx', 'GetVersionExW', 'VerifyVersionInfoW', 'GetConsoleOutputCP', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasesLengthA', 'GetCompressedFileSizeW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameW', '_hread', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindVolumeClose', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetWaitableTimer', 'SetComputerNameExA', 'FindAtomA', 'ReleaseSemaphore', 'LocalUnlock', 'CallNamedPipeW', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoA', 'TlsGetValue', 'GetProfileSectionW', 'GetCommandLineA', 'InterlockedDecrement', 'CopyFileA', 'AddRefActCtx', 'OutputDebugStringW', 'FormatMessageA', 'SetPriorityClass', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalFix', 'GetVersionExA', 'HeapValidate', 'GetWindowsDirectoryW', 'GetStartupInfoW', 'ConnectNamedPipe', 'GetLastError', 'GetCalendarInfoA', 'DebugBreak', 'GetComputerNameExW', 'SetLastError', 'CopyFileW', 'GetCPInfoExW', 'GetSystemWindowsDirectoryA', 'GetSystemWow64DirectoryW', 'ContinueDebugEvent', 'InterlockedIncrement', 'GetOEMCP', 'GetConsoleAliasA', 'lstrlenA', 'LoadLibraryW', 'ReadConsoleA', 'WriteConsoleA', 'GetPrivateProfileSectionNamesA', 'FileTimeToSystemTime', 'GlobalWire', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoExW', 'SetThreadIdealProcessor', 'EnumDateFormatsExW', 'VerSetConditionMask', 'CreateConsoleScreenBuffer', 'GetConsoleAliasW', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'LocalFileTimeToFileTime', 'CheckRemoteDebuggerPresent', 'GetSystemTimeAdjustment', '_lwrite', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileW', 'GetWriteWatch', 'GetModuleHandleW', 'GetPrivateProfileStringA', 'GetProfileStringW', 'CreateActCtxW', 'GetUserDefaultLangID', 'IsProcessInJob', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingW', 'GetProcessHandleCount', 'SetUnhandledExceptionFilter', 'SetProcessShutdownParameters', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'InitAtomTable', 'CreateFileA', 'InitializeCriticalSection', 'AddAtomW', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'SetConsoleTextAttribute', 'LoadLibraryA', 'UnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'GetModuleHandleA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'GetBitmapBits'], ['MultiByteToWideChar', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetUnhandledExceptionFilter', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LoadLibraryA', 'InitializeCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'RegisterTypeLib', 'UnRegisterTypeLib', 'LoadTypeLib', 'OleUninitialize', 'OleInitialize'], ['CreateMutexA', 'OpenMutexA', 'GetModuleHandleA', 'Process32NextW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetLocaleInfoA', 'OpenProcess', 'GetCurrentProcessId', 'lstrcatW', 'GetTempFileNameW', 'GetTempPathW', 'GetTickCount', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'CopyFileW', 'ResumeThread', 'SetThreadContext', 'WriteProcessMemory', 'VirtualAllocEx', 'ReadProcessMemory', 'GetThreadContext', 'VirtualAlloc', 'CreateProcessW', 'GlobalFree', 'LocalAlloc', 'DuplicateHandle', 'GetCurrentThread', 'GetLongPathNameW', 'lstrcpynA', 'GetModuleFileNameA', 'ExitProcess', 'AllocConsole', 'GetStartupInfoA', 'ExpandEnvironmentStringsA', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'GetLastError', 'LoadLibraryA', 'GetProcAddress', 'CreateFileMappingA', 'MapViewOfFileEx', 'RemoveDirectoryW', 'SetFileAttributesW', 'TerminateThread', 'FindClose', 'GetLogicalDriveStringsA', 'GetFileAttributesW', 'DeleteFileW', 'GetFileSize', 'SetFilePointer', 'GetDriveTypeA', 'lstrlenA', 'FindFirstFileW', 'FindNextFileW', 'CreatePipe', 'CreateProcessA', 'PeekNamedPipe', 'ReadFile', 'TerminateProcess', 'SetEvent', 'HeapCreate', 'HeapFree', 'ExitThread', 'GetLocalTime', 'CreateEventA', 'WaitForSingleObject', 'CreateThread', 'GetModuleFileNameW', 'Sleep', 'CreateDirectoryW', 'CreateFileW', 'WriteFile', 'CloseHandle', 'GetCurrentProcess', 'AppendMenuA', 'RegisterClassExA', 'CreateWindowExA', 'SystemParametersInfoW', 'SendInput', 'mouse_event', 'GetIconInfo', 'DrawIcon', 'EnumWindows', 'GetWindowTextW', 'IsWindowVisible', 'CloseWindow', 'GetWindowThreadProcessId', 'GetKeyboardLayoutNameA', 'MessageBoxW', 'ExitWindowsEx', 'EmptyClipboard', 'CreatePopupMenu', 'ShowWindow', 'SetWindowTextW', 'SetForegroundWindow', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'UnhookWindowsHookEx', 'GetForegroundWindow', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetKeyState', 'CallNextHookEx', 'SetWindowsHookExA', 'GetKeyboardLayout', 'GetMessageA', 'TranslateMessage', 'TrackPopupMenu', 'GetCursorPos', 'SetClipboardData', 'DefWindowProcA', 'DispatchMessageA', 'CreateDCA', 'CreateCompatibleDC', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'DeleteDC', 'DeleteObject', 'SelectObject', 'GetDIBits', 'GetObjectA', 'StretchBlt', 'RegDeleteKeyA', 'RegEnumKeyExA', 'GetUserNameW', 'ChangeServiceConfigW', 'QueryServiceStatus', 'ControlService', 'OpenSCManagerW', 'StartServiceW', 'OpenSCManagerA', 'EnumServicesStatusW', 'OpenServiceW', 'RegOpenKeyExA', 'RegCloseKey', 'RegQueryValueExA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegSetValueExA', 'RegCreateKeyA', 'RegSetValueExW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegEnumKeyExW', 'RegQueryInfoKeyW', 'RegCreateKeyExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CloseServiceHandle', 'QueryServiceConfigW', 'ExtractIconA', 'Shell_NotifyIconA', 'ShellExecuteExA', 'ShellExecuteW', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_iob', 'freopen', 'wcscat', '_itow', 'srand', 'rand', '_wsystem', 'wcscpy', 'wcslen', '_wgetenv', 'toupper', 'sprintf', 'tolower', 'wcscmp', '_wrename', 'exit', 'getenv', 'printf', 'strncmp', 'malloc', 'free', '_EH_prolog', '__CxxFrameHandler', '??3@YAXPAX@Z', '_CxxThrowException', '??0exception@@QAE@ABV0@@Z', 'time', 'localtime', 'strftime', 'atoi', '_ftol', '??2@YAPAXI@Z', 'swprintf', '_itoa', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@IDABV?$allocator@D@1@@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDI@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@PBG@Z', '??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@PBG@Z', '??8std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBG@Z', '?size@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIXZ', '??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '??8std@@YA_NPBGABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@@Z', '?replace@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@IIPBG@Z', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIPBGI@Z', '?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@ABV12@@Z', '??8std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@0@Z', '?find_last_of@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIPBGI@Z', '?find_last_of@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '?is_open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QBE_NXZ', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@D@Z', '?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@IGABV?$allocator@G@1@@Z', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIABV12@I@Z', '?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXID@Z', '?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@PBGIABV?$allocator@G@1@@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@0@Z', '?empty@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBE_NXZ', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIABV12@I@Z', '?length@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIXZ', '?substr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBE?AV12@II@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDII@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@G@Z', '?npos@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@2IB', '?rfind@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '?resize@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEXI@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBDABV10@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@D@Z', '?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??9std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBG@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@IIABV?$allocator@D@1@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@PBD@Z', '??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAADI@Z', '?empty@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE_NXZ', '??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '?length@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '?data@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@PBGABV?$allocator@G@1@@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBGABV10@@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV01@@Z', '?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV12@II@Z', '??0out_of_range@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z', '??1out_of_range@std@@UAE@XZ', '??0out_of_range@std@@QAE@ABV01@@Z', '??0logic_error@std@@QAE@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDABV?$allocator@D@1@@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@G@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@0@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@PBG@Z', '??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z', '?c_str@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDIABV?$allocator@D@1@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXI@Z', '?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV?$allocator@D@1@@Z', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV?$allocator@G@1@@Z', 'PathFileExistsW', 'PathFileExistsA', 'StrToIntA', 'PlaySoundW', 'mciSendStringA', 'waveInStop', 'waveInOpen', 'waveInClose', 'waveInUnprepareHeader', 'waveInPrepareHeader', 'mciSendStringW', 'waveInAddBuffer', 'waveInStart', 'htons', 'gethostbyname', 'closesocket', 'inet_ntoa', 'socket', 'connect', 'recv', 'send', 'WSAStartup', 'URLDownloadToFileW', 'URLOpenBlockingStreamW', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipAlloc', 'GdipSaveImageToStream', 'GdipSaveImageToFile', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipFree', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'CreateDirectoryA', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LocalFileTimeToFileTime', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadReadPtr', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesW', 'GetFileAttributesA', 'GetDriveTypeW', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileW', 'CreateFileA', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'SysAllocString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'GetOpenFileNameW'], ['memset', 'system', 'memcpy', '_wfopen', 'fseek', 'fclose', 'wcsncpy', 'wcslen', 'wcscpy', 'wcscat', 'wcscmp', 'memmove', 'memcmp', '_stricmp', 'sscanf', 'atoi', 'strlen', 'strcpy', 'strcat', 'sprintf', 'malloc', 'free', '_wstat', '_wcsdup', 'strcmp', 'floor', 'ceil', '_CIpow', '_isnan', '_finite', 'fread', 'longjmp', '_setjmp3', 'ftell', 'wcsncmp', '_snwprintf', '_wcsicmp', 'tolower', 'localtime', 'mktime', '_wcsnicmp', '_itow', 'gmtime', 'fabs', 'pow', '??3@YAXPAX@Z', 'wcsstr', 'calloc', '_errno', 'strrchr', 'strchr', 'strncpy', 'memchr', '_lseeki64', 'realloc', 'abort', '_close', '_wopen', '_setmode', 'exit', '_open_osfhandle', '_strdup', '_snprintf', 'setlocale', 'strncmp', 'wctomb', '_get_osfhandle', '_open', 'toupper', 'wcschr', 'mbstowcs', 'frexp', 'modf', 'fopen', 'strerror', 'atof', 'abs', 'fflush', 'fwrite', '__p__iob', 'fprintf', 'getenv', '_stati64', 'time', '_ftime', '_vsnwprintf', 'cos', 'fmod', 'sin', 'GetModuleHandleW', 'HeapCreate', 'HeapDestroy', 'ExitProcess', 'GetDiskFreeSpaceExW', 'GetCurrentProcess', 'GetLastError', 'GetUserDefaultLangID', 'GetSystemInfo', 'ExpandEnvironmentStringsW', 'FormatMessageW', 'LocalFree', 'OutputDebugStringW', 'LoadLibraryW', 'FindResourceW', 'FreeLibrary', 'LoadResource', 'SizeofResource', 'LockResource', 'CreateMutexW', 'CloseHandle', 'BeginUpdateResourceW', 'EndUpdateResourceW', 'GetBinaryTypeW', 'UpdateResourceW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'CreateThread', 'HeapAlloc', 'HeapFree', 'Sleep', 'CreateFileW', 'GetFileSize', 'ReadFile', 'GetProcAddress', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'DuplicateHandle', 'CreatePipe', 'GetStdHandle', 'CreateProcessW', 'GetModuleFileNameW', 'GetProfileStringW', 'SetFilePointer', 'WideCharToMultiByte', 'MultiByteToWideChar', 'SetEndOfFile', 'WriteFile', 'DeleteFileW', 'HeapReAlloc', 'GetVersionExW', 'SetLastError', 'CopyFileW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'SetFileAttributesW', 'RemoveDirectoryW', 'GetDriveTypeW', 'GetFileAttributesW', 'GetTempPathW', 'MulDiv', 'GetLocalTime', 'TlsAlloc', 'TlsSetValue', 'TlsGetValue', 'GlobalFree', 'GlobalAlloc', 'HeapSize', 'TlsFree', 'DeleteCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'VirtualAlloc', 'VirtualFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetFileType', 'PeekNamedPipe', 'GetFileInformationByHandle', 'GetFileAttributesA', 'CreateFileA', 'GetExitCodeProcess', 'GetFullPathNameW', 'UnregisterWait', 'GetCurrentThread', 'RegisterWaitForSingleObject', 'GdipDeleteFont', 'GdipDeleteGraphics', 'GdipDeletePath', 'GdipDeleteMatrix', 'GdipDeletePen', 'GdipDeleteStringFormat', 'GdipFree', 'GdipGetDpiX', 'GdipGetDpiY', 'IsWindowEnabled', 'IsWindowVisible', 'ExitWindowsEx', 'GetActiveWindow', 'SendMessageW', 'GetWindowTextLengthW', 'GetSysColor', 'SetRect', 'GetWindowLongW', 'RedrawWindow', 'GetDlgCtrlID', 'GetWindowTextW', 'ShowWindow', 'SetForegroundWindow', 'SetWindowLongW', 'UpdateLayeredWindow', 'DestroyIcon', 'EnumWindows', 'MessageBoxW', 'PostMessageW', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'EnableWindow', 'SetWindowPos', 'DestroyWindow', 'SystemParametersInfoW', 'SetFocus', 'GetFocus', 'GetParent', 'GetClassNameW', 'SetWindowTextW', 'CallWindowProcW', 'RemovePropW', 'GetWindowRect', 'GetPropW', 'CreateWindowExW', 'SetPropW', 'SetScrollPos', 'GetDC', 'InflateRect', 'ReleaseDC', 'GetWindowDC', 'MapWindowPoints', 'MoveWindow', 'InvalidateRect', 'GetIconInfo', 'UpdateWindow', 'ReleaseCapture', 'BeginPaint', 'DrawStateW', 'EndPaint', 'SetCapture', 'ScreenToClient', 'GetSystemMetrics', 'GetSysColorBrush', 'DrawTextW', 'GetWindow', 'ValidateRect', 'ClientToScreen', 'GetClientRect', 'FillRect', 'DefWindowProcW', 'LoadCursorW', 'RegisterClassExW', 'SetClassLongW', 'EnumPropsExW', 'SetActiveWindow', 'LoadIconW', 'IsZoomed', 'IsIconic', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'GetMessageW', 'TranslateAcceleratorW', 'TranslateMessage', 'DispatchMessageW', 'RegisterClassW', 'AdjustWindowRectEx', 'CreateAcceleratorTableW', 'UnregisterClassW', 'DestroyAcceleratorTable', 'GetMenu', 'SetTimer', 'KillTimer', 'DefFrameProcW', 'EnumChildWindows', 'GetKeyState', 'IsChild', 'RegisterWindowMessageW', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'CharLowerW', 'DrawIconEx', 'StartDocW', 'GetMapMode', 'SetMapMode', 'GetDeviceCaps', 'DPtoLP', 'StartPage', 'EndPage', 'EndDoc', 'SetBkColor', 'CreateDCW', 'DeleteObject', 'GetStockObject', 'CreateFontIndirectW', 'ExcludeClipRect', 'GetObjectType', 'GetObjectW', 'SetTextColor', 'SelectObject', 'GetTextExtentPoint32W', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'SetStretchBltMode', 'StretchBlt', 'CreateSolidBrush', 'GdiGetBatchLimit', 'GdiSetBatchLimit', 'BitBlt', 'CreateDIBSection', 'SetBrushOrgEx', 'CreateBitmap', 'SetPixel', 'GetDIBits', 'CreateFontW', 'SetBkMode', 'SetTextAlign', 'TextOutW', 'GetTextMetricsW', 'GetPixel', 'PrintDlgW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'RegCreateKeyExW', 'RegCloseKey', 'RegSetValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegQueryValueExW', 'RegDeleteValueW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'GetUserNameW', 'CryptAcquireContextW', 'CryptGenRandom', 'CryptReleaseContext', 'InitCommonControlsEx', 'ImageList_Replace', 'ImageList_Add', 'ImageList_ReplaceIcon', 'ImageList_Remove', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoCreateGuid', 'StringFromGUID2', 'RevokeDragDrop', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHCreateDirectory', 'SHBrowseForFolderW', 'ExtractIconW', 'SHGetFileInfoW', 'ShellExecuteExW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW'], ['GetConsoleAliasesA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'LoadLibraryW', 'InterlockedPopEntrySList', 'LeaveCriticalSection', 'lstrcpynW', 'GetModuleFileNameW', 'ReleaseActCtx', 'SetLastError', 'GetLongPathNameA', 'MoveFileW', 'WriteProfileSectionA', 'SetFileAttributesA', 'GetModuleHandleW', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'IsWow64Process', 'GetModuleFileNameA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'VirtualProtect', 'GetShortPathNameW', 'GetFileInformationByHandle', 'SetMailslotInfo', 'LoadLibraryA', 'FreeLibrary', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetLastError', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'GetProcAddress', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'RaiseException', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'MultiByteToWideChar', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'SetStdHandle', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileW', 'CloseHandle', 'GetTextExtentExPointA', 'ClearEventLogA'], ['GlobalUnlock', 'GlobalFree', 'SetUnhandledExceptionFilter', 'Sleep', 'GlobalAlloc', 'GetModuleHandleW', 'GetEnvironmentVariableW', 'IsBadReadPtr', 'GetModuleFileNameW', 'SetEndOfFile', 'DecodePointer', 'HeapReAlloc', 'HeapSize', 'WriteConsoleW', 'CreateFileW', 'SetFilePointerEx', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetStdHandle', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetFileType', 'CloseHandle', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'ReadConsoleW', 'FlushFileBuffers', 'GetProcAddress', 'OleSetContainedObject', 'OleUninitialize', 'OleInitialize', 'CLSIDFromString', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SystemFunction036'], ['HeapFree', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'Sleep', 'GetACP', 'LCMapStringW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetCurrentProcess', 'GetThreadLocale', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'InterlockedDecrement', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'LCMapStringA', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'UnregisterClassA', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'SystemParametersInfoA', 'DestroyMenu', 'UnhookWindowsHookEx', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextA', 'GetWindow', 'SetFocus', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'EnableWindow', 'GetSystemMetrics', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'LoadCursorA', 'GetSysColorBrush', 'AppendMenuA', 'SendMessageA', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'CopyRect', 'FrameRect', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'PostMessageA', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetStockObject', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateBitmap', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['VirtualAlloc', 'HeapReAlloc', 'Sleep', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'RaiseException', 'GetCommandLineA', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'WritePrivateProfileStringA', 'GetModuleHandleW', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'InterlockedDecrement', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'GetModuleFileNameA', 'GetCurrentThreadId', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'CompareStringA', 'lstrcmpW', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GetCurrentProcessId', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrlenA', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'GetTickCount', 'ExitProcess', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'TrackPopupMenu', 'SetForegroundWindow', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'DeferWindowPos', 'DefWindowProcA', 'CallWindowProcA', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetClassNameA', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'WinHelpA', 'GetWindowThreadProcessId', 'GetActiveWindow', 'EqualRect', 'GetKeyState', 'LoadIconA', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'LoadAcceleratorsA', 'SetActiveWindow', 'IsWindowVisible', 'IsIconic', 'InsertMenuItemA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreatePopupMenu', 'GetClassInfoA', 'IntersectRect', 'SetRectEmpty', 'GetMenu', 'GetLastActivePopup', 'BringWindowToTop', 'PostMessageA', 'SetMenu', 'UpdateWindow', 'EnableWindow', 'SendMessageA', 'GetMessagePos', 'GetDesktopWindow', 'TranslateAcceleratorA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetFocus', 'SetWindowPos', 'SetFocus', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'GetSysColorBrush', 'CreateWindowExA', 'GetMenuItemInfoA', 'PtInRect', 'GetWindowRect', 'LoadImageA', 'GetSysColor', 'GetSystemMetrics', 'CopyRect', 'InflateRect', 'DrawEdge', 'DrawFrameControl', 'DrawFocusRect', 'SetRect', 'GetParent', 'GetClientRect', 'OffsetRect', 'SetTimer', 'SetCursor', 'GetCursorPos', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'IsWindow', 'SetWindowTextA', 'GetWindowLongA', 'GetDlgItem', 'GetWindow', 'LoadCursorA', 'KillTimer', 'MessageBoxA', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'CreatePatternBrush', 'OffsetViewportOrgEx', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'Escape', 'SetViewportOrgEx', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'BitBlt', 'CreateFontA', 'DeleteObject', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateCompatibleBitmap', 'SelectObject', 'RoundRect', 'GetTextColor', 'GetBkMode', 'CreateFontIndirectA', 'CreateSolidBrush', 'GetStockObject', 'StretchBlt', 'Polygon', 'CreateCompatibleDC', 'GetObjectA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'DragFinish', 'DragQueryFileA', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GdipDrawImageI', 'GdipDrawLineI', 'GdipDeletePen', 'GdipCreatePen1', 'GdipDrawString', 'GdipDeleteFont', 'GdipCreateFont', 'GdipDeleteFontFamily', 'GdipCreateFontFamilyFromName', 'GdipFillRectangleI', 'GdipDeleteBrush', 'GdipCreateSolidFill', 'GdipCreateLineBrushFromRectI', 'GdipGetImageGraphicsContext', 'GdipCloneImage', 'GdipDisposeImage', 'GdipCreateBitmapFromScan0', 'GdipFree', 'GdipAlloc', 'GdipGetVisibleClipBoundsI', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdiplusStartup', 'SetFilePointer', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'HeapSize', 'GetTickCount', 'QueryPerformanceCounter', 'CreateThread', 'GetCommandLineW', 'GetVersionExA', 'CreateToolhelp32Snapshot', 'GetLastError', 'GetCurrentProcessId', 'Process32First', 'Process32Next', 'CloseHandle', 'ExitProcess', 'CreateMutexA', 'WaitForSingleObject', 'ReleaseMutex', 'SetThreadExecutionState', 'DeviceIoControl', 'FormatMessageW', 'Sleep', 'CreateFileW', 'GetFileInformationByHandle', 'FlushFileBuffers', 'GetSystemTime', 'SystemTimeToFileTime', 'FindFirstFileW', 'SetStdHandle', 'FindClose', 'GetSystemTimeAsFileTime', 'GetFileAttributesExW', 'GetCurrentProcess', 'GetVolumePathNameW', 'GetVolumeNameForVolumeMountPointW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetVolumeInformationW', 'FindFirstVolumeMountPointW', 'FindNextVolumeMountPointW', 'FindVolumeMountPointClose', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetShortPathNameW', 'GetLongPathNameW', 'DosDateTimeToFileTime', 'LocalFileTimeToFileTime', 'ReadFile', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetConsoleMode', 'GetConsoleCP', 'MultiByteToWideChar', 'RtlUnwind', 'HeapCreate', 'HeapDestroy', 'VirtualAlloc', 'VirtualFree', 'InitializeCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetEnvironmentVariableA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'CreateFileA', 'CompareStringA', 'CompareStringW', 'FindNextFileW', 'GetProcAddress', 'GetModuleHandleA', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetTimeZoneInformation', 'DeleteFileW', 'GetCurrentThreadId', 'GetCommandLineA', 'GetProcessHeap', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'WideCharToMultiByte', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'DefWindowProcA', 'EndPaint', 'BeginPaint', 'InvalidateRect', 'PostQuitMessage', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'SetTimer', 'UpdateWindow', 'ShowWindow', 'CreateWindowExW', 'MessageBoxW', 'RegisterClassExA', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'GetStockObject', 'RegCloseKey', 'RegQueryValueExW', 'RegCreateKeyExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CommandLineToArgvW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileType', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['I_RpcFreeBuffer', 'LoadRegTypeLib', 'GetWindowTextA', 'GetCaretBlinkTime', 'CM_Get_First_Log_Conf_Ex', 'PlayEnhMetaFile', 'CombineRgn', 'GetDIBColorTable', 'SHGetFolderPathA', 'CreateStatusWindowW', 'GetKernelObjectSecurity', 'RegOpenKeyA', 'lstrlenW', 'ConvertFiberToThread', 'SetConsoleDisplayMode', 'GetBinaryTypeW', 'GetModuleFileNameW', 'GetModuleHandleW', 'PeekNamedPipe', 'CoSetProxyBlanket', 'CertDeleteCTLFromStore', 'CertAddCRLContextToStore', 'CertVerifyTimeValidity'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'TlsGetValue', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', '_strdup', '_stricoll', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_fpreset', '_fullpath', '_iob', '_isctype', '_msize', '_onexit', '_pctype', '_setmode', 'abort', 'atexit', 'calloc', 'fwrite', 'malloc', 'mbstowcs', 'memcpy', 'memmove', 'puts', 'setlocale', 'signal', 'strcoll', 'strlen', 'tolower', 'vfprintf', 'wcstombs', 'free', 'realloc'], ['SetDefaultCommConfigA', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetConsoleAliasExesA', 'GetStringTypeA', 'GetDriveTypeW', 'DebugActiveProcessStop', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'SetDllDirectoryW', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentActCtx', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleTitleA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadProcessMemory', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'VerifyVersionInfoA', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetCompressedFileSizeA', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetFileSize', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetNamedPipeHandleStateW', 'GetConsoleAliasesW', 'GlobalUnfix', 'ReleaseActCtx', 'GetStartupInfoA', 'FillConsoleOutputCharacterW', 'GetLastError', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'DisableThreadLibraryCalls', 'BuildCommDCBW', 'ResetEvent', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'ProcessIdToSessionId', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'CreateFileA', 'GetOverlappedResult', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetCommandLineA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'DeleteFileA', 'ImpersonateSelf', 'IsTokenUntrusted'], ['LocalFree', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'lstrlenA', 'MessageBoxA', 'RevertToSelf'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ChooseColorA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'MulDiv'], ['GetLastError', 'GetFileAttributesW', 'VirtualAlloc', 'lstrcpyW', 'lstrcatW', 'VirtualFree', 'CreateFileW', 'WriteFile', 'CloseHandle', 'ExpandEnvironmentStringsW', 'CreateMutexW', 'CreateThread', 'WaitForSingleObject', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapSize', 'LCMapStringW', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'WideCharToMultiByte', 'HeapAlloc', 'EncodePointer', 'DecodePointer', 'RaiseException', 'HeapFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapReAlloc', 'WriteConsoleW', 'WinHttpReadData', 'WinHttpQueryHeaders', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpSetOption', 'ShellExecuteW'], ['FreeLibrary', 'InterlockedIncrement', 'GetCurrentProcess', 'CreateJobObjectW', 'GetModuleHandleW', 'GetCurrencyFormatEx', 'LoadLibraryW', 'GetCalendarInfoW', 'GetProcessHandleCount', 'lstrcpynA', 'SetLastError', 'GetProcAddress', 'LoadLibraryA', 'CloseHandle', 'WriteFileEx', 'lstrcpyW', 'WriteConsoleW', 'HeapSize', 'GetProcessHeap', 'GetStringTypeA', 'FreeResource', 'FreeLibraryAndExitThread', 'EnumCalendarInfoA', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'HeapCreate', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'RtlUnwind', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringW', 'GetStringTypeW', 'Sleep', 'ReadFile', 'CreateFileA', 'IsProcessorFeaturePresent', 'HeapAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'SetEndOfFile', 'CreateFileW', 'GetMenuDefaultItem', 'LoadBitmapA', 'GetNumberOfEventLogRecords', 'GetEventLogInformation', 'ClearEventLogW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyA', 'RegEnumKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'IsValidSid', 'GetUserNameA', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'OpenProcess', 'LocalFree', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FormatMessageA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA', 'CharUpperBuffA', 'CharToOemA', 'Sleep', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'socket', 'send', 'recv', 'inet_ntoa', 'htons', 'connect', 'closesocket', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CryptUnprotectData'], ['LoadLibraryA', 'WriteProfileSectionA', 'GetNumaProcessorNode', 'FindFirstVolumeA', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationA', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesW', 'EnumResourceNamesA', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'TlsGetValue', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'ReleaseActCtx', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedIncrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'InterlockedPushEntrySList', 'TryEnterCriticalSection', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExA', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'LockFile', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'FindAtomW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedDecrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'CreateFileA', 'OemToCharW', 'WinHttpReadData'], ['sprintf', 'sscanf', 'free', 'malloc', '??2@YAPAXI@Z', '??3@YAXPAX@Z', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetVersionExW', 'DisableThreadLibraryCalls', 'lstrlenW', 'MultiByteToWideChar', 'lstrlenA', 'GetModuleFileNameA', 'lstrcpynW', 'InterlockedIncrement', 'InterlockedDecrement', 'GetSystemTimeAsFileTime', 'lstrcmpW', 'FreeLibrary', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'GetLastError', 'GetModuleHandleA', 'InitializeCriticalSection', 'MulDiv', 'IsBadReadPtr', 'IsBadWritePtr', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateCompatibleDC', 'DeleteDC', 'CreateFontIndirectA', 'SetBkMode', 'DeleteObject', 'CreateDIBSection', 'SelectObject', 'ExtTextOutA', 'SetBkColor', 'GetTextMetricsA', 'GetSystemPaletteEntries', 'GetDeviceCaps', 'GetTextColor', 'SetTextColor', 'KillTimer', 'IsRectEmpty', 'ReleaseDC', 'GetDC', 'UnregisterClassA', 'SendMessageTimeoutA', 'DefWindowProcA', 'ShowWindow', 'CreateWindowExA', 'RegisterClassA', 'CheckDlgButton', 'SetWindowTextA', 'SendMessageA', 'GetDlgItem', 'IsDlgButtonChecked', 'MessageBeep', 'GetWindowTextA', 'wsprintfW', 'GetWindowLongW', 'SetWindowLongW', 'CreateDialogParamW', 'MoveWindow', 'InvalidateRect', 'DestroyWindow', 'DefWindowProcW', 'LoadStringW', 'GetWindowRect', 'GetDesktopWindow', 'SetTimer', 'SetRect', 'RegDeleteKeyW', 'RegCloseKey', 'RegOpenKeyExW', 'RegCreateKeyW', 'RegSetValueW', 'RegSetValueExW', 'RegEnumKeyExW', 'CoCreateInstance', 'CoUninitialize', 'StringFromGUID2', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoFreeUnusedLibraries', 'CoInitialize'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetAce', 'ImageList_Remove', 'GetSaveFileNameW', 'LineTo', 'WNetGetConnectionW', 'CoInitialize', 'VariantInit', 'EnumProcesses', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'recv'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetModuleHandleA', 'IsChild', 'RegOpenKeyExA', 'DllGetVersion', '_CorExeMain', 'ShellAboutW'], ['CreateProcessA', 'CreateRemoteThread', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'WriteProcessMemory', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_snprintf', '_unlock', 'abort', 'calloc', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['CreateFileW', 'ReleaseSemaphore', 'OpenMutexW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'InterlockedIncrement', 'EnterCriticalSection', 'InterlockedDecrement', 'ResumeThread', 'CreateEventW', 'WaitForSingleObject', 'WaitForMultipleObjects', 'SetEvent', 'OutputDebugStringW', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetCurrentThreadId', 'LeaveCriticalSection', 'CloseHandle', 'ReleaseMutex', 'LoadLibraryW', 'GetLastError', 'CopyFileW', 'Sleep', 'GetSystemDirectoryW', 'DeleteFileW', 'CreateSemaphoreW', 'DeviceIoControl', 'HeapFree', 'HeapAlloc', 'GetFileAttributesW', 'ExitThread', 'CreateThread', 'GetCommandLineA', 'GetVersionExA', 'GetProcessHeap', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'MultiByteToWideChar', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'ReadFile', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'QueryServiceStatus', 'StartServiceW', 'OpenServiceW', 'OpenSCManagerW', 'DeleteService', 'CloseServiceHandle', 'QueryServiceConfigW', 'CreateServiceW', 'ControlService', 'ChangeServiceConfigW', 'GetAdaptersInfo'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharLowerA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetKBCodePage', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteExA'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SuspendThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatusEx', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateWaitableTimerExW', 'CreateThread', 'CreateIoCompletionPort', 'CreateFileA', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA', 'NtFlushInstructionCache', 'FileProtocolHandlerA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'wglDeleteContext', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['MessageBoxW', 'GetSystemMetrics', 'GetSysColorBrush', 'FindWindowA', 'FreeLibrary', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'VirtualAlloc', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetLastError', 'GetCurrentProcessId', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'WriteConsoleW', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'SetMailslotInfo', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'InitializeCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetBinaryTypeW', 'SetFilePointer', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'VirtualProtect', 'InterlockedPushEntrySList', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['LoadLibraryA', 'EnterCriticalSection', 'LeaveCriticalSection', 'LocalAlloc', 'lstrlenA', 'GetProcAddress'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'GetThreadLocale', 'GetStartupInfoA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'WriteFile', 'WinExec', 'SetFilePointer', 'SetFileAttributesA', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ReleaseMutex', 'ReadFile', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetShortPathNameA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocalTime', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetDriveTypeA', 'GetCommandLineA', 'FreeLibrary', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'CreateMutexA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'StretchDIBits', 'SetDIBits', 'SelectObject', 'GetObjectA', 'GetDIBits', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'ReleaseDC', 'GetSysColor', 'GetIconInfo', 'GetDC', 'FillRect', 'DestroyIcon', 'CopyImage', 'CharLowerBuffA', 'ShellExecuteA', 'ExtractIconA'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'GetSystemWow64DirectoryW', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA', 'CharUpperA'], ['SysFreeString', 'RegQueryValueExW', 'MessageBoxA', 'GetVersion', 'GetProcAddress', 'SetClassLongW', 'UnrealizeObject', 'VerQueryValueW', 'GetVersionExW', 'GetVersion', 'RegSetValueExW', 'Sleep', 'SafeArrayPtrOfIndex', 'GetErrorInfo', 'CreateStreamOnHGlobal', 'InitializeFlatSB', 'EnumDisplayMonitors', 'memset', 'ShellExecuteW', 'InternetGetConnectedState', 'CoInternetCreateZoneManager', 'SHGetSpecialFolderLocation', 'QueryServiceStatus', 'send', '_gcvt', 'Netbios', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetTempPathA', 'WinExec', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'GetProcessHeap', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'HeapReAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapFree', 'CloseHandle', 'HeapAlloc', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'ReadFile', 'ReadConsoleW', 'SetEndOfFile', 'DefWindowProcW', 'DestroyWindow', 'CreateWindowExW', 'EndDialog', 'RegisterClassExW', 'LoadStringW', 'ShowWindow', 'LoadIconW', 'LoadCursorW', 'PostQuitMessage', 'DialogBoxParamW', 'UpdateWindow', 'BeginPaint', 'EndPaint'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'memcpy', 'realloc', 'sprintf', 'strchr', 'strlen', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationA', 'ShellExecuteA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetLastInputInfo', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['LsaClose', 'atof', 'getenv', '_lock_file', 'free', '_configthreadlocale', 'nan', 'exit', '_open', 'strlen', '_time64', 'rand', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', '_Thrd_id', 'ShowWindow', 'strstr', 'htons'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'BackupWrite', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'InterlockedIncrement', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['CreateFileW', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'RaiseException', 'GetModuleFileNameA', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'WriteFile', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetTimeZoneInformation', 'GetStringTypeW', 'GetCommandLineW', 'GetCommandLineA', 'GetFileType', 'GetStdHandle', 'GetProcessHeap', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCPInfo', 'SetFilePointerEx', 'WideCharToMultiByte', 'GetTempPathA', 'LoadLibraryA', 'GetEnvironmentVariableA', 'OpenMutexA', 'lstrcmpiA', 'Sleep', 'ExitProcess', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'GetACP', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'IsValidCodePage', 'GetOEMCP', 'VirtualProtect', 'DeleteDC', 'DeleteObject', 'IntersectClipRect', 'LineTo', 'SetBkMode', 'SetMapMode', 'GetObjectA', 'MoveToEx', 'DPtoLP', 'CreateDCA', 'CreatePen', 'CoTaskMemAlloc', 'CoRevokeClassObject', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'InternetOpenA', 'InternetCanonicalizeUrlA', 'InternetCrackUrlA', 'InternetConnectA', 'InternetCloseHandle', 'HttpQueryInfoA', 'HttpSendRequestA', 'HttpOpenRequestA', 'InternetGetLastResponseInfoA', 'InternetSetOptionExA', 'InternetQueryDataAvailable', 'InternetWriteFile', 'InternetReadFile', 'InternetOpenUrlA', 'PathIsRootA', 'PathIsURLA', 'PathStripToRootA', 'PathCanonicalizeA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'AddPrinterConnectionA', 'DeletePrinterConnectionA', 'ChooseFontA', 'ReplaceTextA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'CommDlgExtendedError', 'ImageList_DragEnter', 'ImageList_ReplaceIcon', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'SystemFunction036'], ['AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__doserrno', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_initterm', '_lseeki64', '_onexit', '_read', '_setjmp', '_strdup', '_strnicmp', '_ultoa', '_write', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strtoul', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm'], ['freeaddrinfo', 'GlobalUnlock', 'OpenClipboard', 'RegCloseKey', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['ImmGetDescriptionW', 'ImmIsUIMessageA', 'ImmIsUIMessageW', 'ImmRegisterWordW', 'ImmGetRegisterWordStyleA', 'ImmInstallIMEW', 'ICInstall', 'ICRemove', 'ICCompressorChoose', 'DrawDibChangePalette', 'DrawDibDraw', 'DrawDibProfileDisplay', 'MCIWndCreateW'], ['SetServiceStatus', 'RegisterServiceCtrlHandlerW', 'StartServiceCtrlDispatcherW', 'RegCloseKey', 'RegSetValueExA', 'RegOpenKeyExA', 'StartServiceW', 'OpenServiceW', 'CloseServiceHandle', 'OpenSCManagerA', 'RegCreateKeyExA', 'FreeSid', 'LookupAccountSidW', 'AllocateAndInitializeSid', 'GetUserNameW', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'OpenProcessToken', 'DuplicateTokenEx', 'OpenThreadToken', 'AccessCheck', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'InitializeSecurityDescriptor', 'AddAccessAllowedAce', 'InitializeAcl', 'RegEnumKeyExA', 'RegQueryValueExA', '??2@YAPAXI@Z', '_strlwr', 'wcsncpy', 'strchr', 'memset', '_controlfp', 'free', 'calloc', 'malloc', '_strnicmp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', 'strcmp', '_snwprintf', '_wcsicmp', 'wcslen', 'wcscpy', 'memcmp', '_local_unwind2', 'strncat', 'tolower', '??3@YAXPAX@Z', 'time', 'gmtime', 'strrchr', 'strncmp', '_snprintf', 'memcpy', 'memmove', 'difftime', 'strstr', 'strncpy', 'DestroyWindow', 'CharNextA', 'CreateAcceleratorTableW', 'CreateWindowExW', '_stricmp', '_splitpath', 'strlen', 'strcpy', 'TlsGetValue', 'TlsAlloc', 'WaitForSingleObjectEx', 'GetExitCodeThread', 'GetVersionExW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlUnwind', 'OpenProcess', 'TerminateProcess', 'LoadLibraryW', 'VirtualLock', 'VirtualUnlock', 'VirtualFree', 'ReleaseMutex', 'GetTempPathW', 'GetTempFileNameW', 'CreateFileW', 'DeleteFileW', 'LoadLibraryExA', 'OpenMutexW', 'CreateMutexW', 'UnmapViewOfFile', 'SetLastError', 'GetModuleHandleA', 'GetCurrentThread', 'GetCurrentProcess', 'GetCurrentProcessId', 'SetFileAttributesA', 'SetFileTime', 'GetFileAttributesA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FindResourceA', 'SizeofResource', 'LoadResource', 'LockResource', 'MoveFileExA', 'GetWindowsDirectoryA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'CloseHandle', 'WriteFile', 'LocalAlloc', 'GetSystemDirectoryA', 'GetVersionExA', 'CreateDirectoryA', 'GetModuleFileNameA', 'GetTempPathA', 'IsBadReadPtr', 'MultiByteToWideChar', 'LocalFree', 'GetSystemTime', 'GetStartupInfoA', 'CreateProcessA', 'LoadLibraryA', 'GetLastError', 'FreeLibrary', 'WaitForSingleObject', 'DeleteFileA', 'Sleep', 'ExitProcess', 'GetVersion', 'GetProcAddress', 'VirtualAlloc', 'ReadProcessMemory'], ['GetCurrentDirectoryA', 'WaitForSingleObject', 'GetCurrentDirectoryW', 'SetEndOfFile', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'GetCPInfo', 'CreateProcessA', 'IsBadCodePtr', 'IsBadReadPtr', 'SetUnhandledExceptionFilter', 'FlushFileBuffers', 'SetStdHandle', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'GetProcAddress', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'HeapFree', 'HeapSize', 'GetLastError', 'SetFileTime', 'LocalFileTimeToFileTime', 'GetFullPathNameW', 'GetFullPathNameA', 'GetTempPathW', 'GetTempPathA', 'GetModuleFileNameW', 'DeleteFileW', 'DeleteFileA', 'SetFilePointer', 'GetFileAttributesW', 'CreateDirectoryW', 'SetCurrentDirectoryW', 'SetCurrentDirectoryA', 'SetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryA', 'SetFileAttributesA', 'GetFileAttributesA', 'CreateFileA', 'Sleep', 'GetTickCount', 'GetACP', 'GetOEMCP', 'GetComputerNameW', 'FormatMessageA', 'GetModuleFileNameA', 'CloseHandle', 'ReadFile', 'WriteFile', 'GetFileSize', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'GetLocalTime', 'GetVersionExA', 'CreateFileW', 'GetCurrentThreadId', 'RtlUnwind', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'GetTimeZoneInformation', 'HeapReAlloc', 'HeapAlloc', 'GetExitCodeProcess', 'PostMessageA', 'SetTimer', 'GetDlgItemTextA', 'LoadStringA', 'DefWindowProcA', 'DestroyWindow', 'BeginPaint', 'EndPaint', 'GetDlgItemTextW', 'SetWindowTextW', 'MoveWindow', 'SetDlgItemTextW', 'EnableWindow', 'EndDialog', 'PostQuitMessage', 'MessageBoxW', 'GetDlgItem', 'SendMessageA', 'GetDesktopWindow', 'GetWindowRect', 'CopyRect', 'OffsetRect', 'SetWindowPos', 'CreateWindowExW', 'DialogBoxParamW', 'LoadCursorA', 'RegisterClassExW', 'LoadStringW', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'MessageBoxA', 'SetDlgItemTextA', 'ShellExecuteExW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'CryptAcquireContextA', 'CryptReleaseContext', 'CryptGenRandom', 'GetUserNameA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ChooseFontA'], ['GetModuleHandleA', 'WSACleanup', 'GetFileVersionInfoW', 'timeGetTime', 'ImageList_ReplaceIcon', 'WNetUseConnectionW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'DestroyEnvironmentBlock', 'IsThemeActive', 'AdjustWindowRectEx', 'StrokePath', 'GetOpenFileNameW', 'GetAce', 'DragQueryPoint', 'CoTaskMemAlloc', 'LoadTypeLibEx'], ['GetSystemWow64DirectoryA', 'GetLastError', 'WinExec', 'CloseHandle', 'GetSystemInfo', 'Sleep', 'CreateProcessA', 'WriteFile', 'CreateFileA', 'DeleteFileA', 'SizeofResource', 'LoadResource', 'FindResourceA', 'CreateDirectoryA', 'GetVersionExA', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'HeapAlloc', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'OpenSCManagerA', 'StartServiceA', 'CreateServiceA', 'DeleteService', 'CloseServiceHandle', 'OpenServiceA', 'ControlService'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CopyFileExA', 'GetShortPathNameA', 'OpenEventA', 'MoveFileA', 'FindFirstFileA', 'ReplaceFileA', 'HeapFree', 'GetCommandLineW', 'GetConsoleOutputCP', 'GetCPInfo', 'GetSystemDefaultUILanguage', 'OutputDebugStringA', 'LCMapStringA', 'LocalHandle', 'FindFirstVolumeA', 'FindResourceA', 'lstrlenA', 'CreateFileW', 'FreeLibraryAndExitThread', 'lstrcmpA', 'FreeEnvironmentStringsW', 'HeapWalk', 'OpenSemaphoreA', 'lstrcatA', 'GetModuleHandleA', 'GetLocaleInfoA', 'HeapSize', 'GetCommandLineA', 'IsValidCodePage', 'EnumSystemLocalesA', 'Sleep', 'GetConsoleMode', 'CopyFileA', 'GetLastError', 'GetStringTypeExA', 'LoadLibraryA', 'SetVolumeLabelA', 'GetVersionExA', 'PulseEvent', 'DeleteFileA', 'lstrcpyA', 'HeapReAlloc', 'CloseHandle', 'AddAtomA', 'HeapAlloc', 'SetFileAttributesA', 'SetStdHandle', 'WriteConsoleW', 'FindAtomA', 'GetCalendarInfoA', 'GetProcAddress', 'SetFilePointerEx', 'ExitProcess', 'FindNextVolumeA', 'GetProcessHeap', 'EnumTimeFormatsA', 'WideCharToMultiByte', 'GetFileType', 'GetSystemTime', 'GetTempFileNameA', 'CreateEventA', 'GetStringTypeW', 'GetTickCount', 'GetEnvironmentStringsW', 'AllocConsole', 'IsDebuggerPresent', 'FlushFileBuffers'], ['VirtualAllocEx', 'GetModuleHandleW', 'GetModuleHandleA', 'GetStartupInfoA', 'GlobalSize', 'GetConsoleWindow', 'EnumSystemCodePagesW', 'FlushInstructionCache', 'FindAtomA', 'FindFirstChangeNotificationW', 'SetComputerNameW', 'DeleteVolumeMountPointA', 'CreateTimerQueue', 'WriteProcessMemory', 'LoadLibraryExW', 'SetCurrentDirectoryA', 'CreateJobObjectW', 'IsDBCSLeadByteEx', 'LoadResource', 'LockResource', 'LoadLibraryW', 'lstrcatW', 'GetPrivateProfileStringW', 'FindResourceW', 'WritePrivateProfileStringW', 'GetACP', 'FreeLibrary', 'GetCurrentThreadId', 'WaitForMultipleObjects', 'GetLastError', 'GetComputerNameW', 'WaitForSingleObject', 'OutputDebugStringW', 'WideCharToMultiByte', 'GetStringTypeW', 'lstrlenW', 'lstrcmpiW', 'lstrcpyW', 'GetProcAddress', 'lstrcmpW', 'HeapFree', 'GetProcessHeap', 'GetDateFormatW', 'GetTimeFormatW', 'CreateThread', 'GetTickCount', 'SetFileAttributesW', 'CopyFileW', 'GetFileTime', 'FileTimeToSystemTime', 'GetSystemTime', 'CreateDirectoryW', 'GetFileAttributesExW', 'MultiByteToWideChar', 'GetCurrentThread', 'GetCurrentProcess', 'LocalAlloc', 'LocalFree', 'SetLastError', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'TerminateProcess', 'Process32NextW', 'OpenProcess', 'QueryDosDeviceW', 'GetVersionExW', 'GetCurrentProcessId', 'GetDiskFreeSpaceW', 'HeapAlloc', 'GetDriveTypeA', 'GetLogicalDriveStringsW', 'GetVolumeInformationW', 'GetSystemDirectoryW', 'GetDriveTypeW', 'DeviceIoControl', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'Sleep', 'DeleteFileW', 'ExpandEnvironmentStringsW', 'SetEndOfFile', 'CompareStringW', 'CompareStringA', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'GetConsoleOutputCP', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'EnumSystemLocalesA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'SetHandleCount', 'HeapCreate', 'GetOEMCP', 'GetTimeZoneInformation', 'ExitThread', 'GlobalUnlock', 'GlobalLock', 'FileTimeToLocalFileTime', 'GetDiskFreeSpaceExW', 'GetFullPathNameW', 'MoveFileW', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'HeapReAlloc', 'LCMapStringW', 'LCMapStringA', 'GetFullPathNameA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'GetDateFormatA', 'GetTimeFormatA', 'GetTempPathW', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetSystemDefaultUILanguage', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateFileW', 'CloseHandle', 'CreateDirectoryA', 'CreateEventA', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'FreeConsole', 'ReadConsoleOutputCharacterA', 'GetConsoleScreenBufferInfo', 'GetStdHandle', 'WriteConsoleA', 'WriteConsoleW', 'FillConsoleOutputCharacterW', 'SetConsoleCursorPosition', 'MulDiv', 'GetCommandLineW', 'GlobalAlloc', 'HeapSize', 'GlobalFree', 'GetFileAttributesW', 'GetFileSize', 'GetTempFileNameW', 'GetFileType', 'SetCurrentDirectoryW', 'GetWindowsDirectoryW', 'SetErrorMode', 'FormatMessageW', 'ReadFile', 'WriteFile', 'SetEvent', 'CreatePipe', 'PeekNamedPipe', 'SetNamedPipeHandleState', 'GetExitCodeProcess', 'CreateEventW', 'ResumeThread', 'CreateProcessW', 'DuplicateHandle', 'CreateMutexW', 'GetEnvironmentVariableW', 'GetCPInfo', 'IsValidCodePage', 'SizeofResource', 'GetModuleFileNameW', 'ReleaseMutex', 'ReleaseSemaphore', 'TlsSetValue', 'ExitProcess', 'SetThreadPriority', 'TerminateThread', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'GetExitCodeThread', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'GetSystemTimeAsFileTime', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'RaiseException', 'IsBadReadPtr', 'IsBadStringPtrA', 'VirtualFree', 'VirtualAlloc', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetCommandLineA', 'UnhandledExceptionFilter', 'RtlUnwind', 'lstrlenA', 'lstrcpyA', 'lstrcmpiA', 'lstrcmpA', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualProtect', 'UnmapViewOfFile', 'ReadProcessMemory', 'OpenMutexW', 'OpenMutexA', 'OpenFileMappingW', 'OpenFileMappingA', 'OpenEventW', 'OpenEventA', 'MapViewOfFile', 'LoadLibraryExA', 'LoadLibraryA', 'IsBadWritePtr', 'GetVersionExA', 'GetThreadContext', 'GetSystemDirectoryA', 'GetModuleFileNameA', 'GetFileAttributesA', 'GetCurrentDirectoryW', 'GetCurrentDirectoryA', 'FormatMessageA', 'CreateSemaphoreA', 'CreateProcessA', 'CreateMutexA', 'CreateFileMappingW', 'CreateFileMappingA', 'CreateFileA', 'GetDesktopWindow', 'GetClipboardOwner', 'GetThreadDesktop', 'GetCaretBlinkTime', 'DestroyWindow', 'GetKeyState', 'IsIconic', 'GetTopWindow', 'GetSysColor', 'GetListBoxInfo', 'IsWindowVisible', 'RegisterShellHookWindow', 'IsHungAppWindow', 'SetWindowsHookExW', 'GetClipboardData', 'SendDlgItemMessageA', 'TranslateAcceleratorW', 'DdeQueryStringW', 'CountClipboardFormats', 'GetClientRect', 'CallMsgFilterA', 'MapVirtualKeyA', 'InvalidateRect', 'SetShellWindow', 'TranslateMessage', 'DrawStateA', 'CallMsgFilterW', 'SubtractRect', 'DdeConnect', 'UserHandleGrantAccess', 'SetUserObjectSecurity', 'MessageBoxIndirectA', 'GetClipboardSequenceNumber', 'FlashWindow', 'RegisterDeviceNotificationA', 'SetMessageQueue', 'GetClassInfoExA', 'GetClassNameA', 'GetWindowModuleFileNameA', 'MapDialogRect', 'DrawCaption', 'FrameRect', 'BeginPaint', 'MessageBeep', 'wsprintfW', 'GetMessageTime', 'IsWindowEnabled', 'OemToCharA', 'IsCharAlphaW', 'CharUpperA', 'SetTimer', 'KillTimer', 'EndPaint', 'CharUpperBuffW', 'SendMessageW', 'GetSystemMetrics', 'ShowWindow', 'LoadIconW', 'PostMessageW', 'CallNextHookEx', 'UnhookWindowsHookEx', 'WinHelpW', 'RegisterWindowMessageW', 'CharToOemBuffA', 'OemToCharBuffA', 'CharNextExA', 'CharToOemW', 'LoadStringW', 'GetTextAlign', 'GetDCPenColor', 'CloseMetaFile', 'CreateMetaFileA', 'FillPath', 'GetFontLanguageInfo', 'GetSystemPaletteUse', 'GetLayout', 'AngleArc', 'TranslateCharsetInfo', 'GetDeviceCaps', 'SelectObject', 'SetMapMode', 'DeleteObject', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'StretchBlt', 'GetObjectA', 'GetStockObject', 'BitBlt', 'SetWindowExtEx', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'RegOpenKeyA', 'RegQueryValueExA', 'SHGetIconOverlayIndexA', 'ExtractAssociatedIconExW', 'SHGetSpecialFolderPathA', 'StrStrW', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['LoadLibraryA', 'GetModuleHandleA', 'InterlockedCompareExchange', 'OpenWaitableTimerA', 'CreateEventA', 'ReadConsoleInputW', 'WaitNamedPipeA', 'SetVolumeMountPointA', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesA', 'GetModuleFileNameW', 'IsBadCodePtr', 'LoadLibraryW', 'DeleteFileW', 'SearchPathA', 'VirtualAlloc', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasA', 'GetShortPathNameA', 'GetPrivateProfileStringW', 'PeekConsoleInputW', 'GlobalGetAtomNameA', 'GetProcAddress', 'GetUserDefaultLangID', 'GetConsoleAliasW', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameA', 'lstrcpynA', 'AddAtomW', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameA', 'FoldStringW', 'ResetEvent', 'GlobalWire', 'GetComputerNameA', 'GetVersionExW', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'SetCalendarInfoW', 'SetComputerNameA', 'GetFileAttributesA', 'GetVolumePathNameW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap'], ['GetComputerNameW', 'WaitNamedPipeW', 'InitializeCriticalSection', 'GlobalAlloc', 'DnsHostnameToComputerNameW', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'InterlockedIncrement', 'LoadLibraryA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'LoadLibraryExA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetStringTypeA', 'UpdateResourceA', 'GetLocaleInfoA', 'GetConsoleAliasesLengthW', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'CloseEventLog'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetModuleHandleA', 'DefWindowProcA', 'RegCloseKey', 'SHChangeNotifyRegister', '_CorExeMain', 'InitCommonControlsEx'], ['malloc', 'memset', '_get_pgmptr', 'getenv', 'sprintf', '__argc', '__argv', '_environ', '_XcptFilter', '__set_app_type', '_controlfp', '__getmainargs', 'exit', 'Sleep', 'CreateProcessA', 'SetUnhandledExceptionFilter'], ['GetMailslotInfo', 'GetModuleFileNameW', 'GetTimeZoneInformation', 'lstrcatA', 'MultiByteToWideChar', 'lstrlenW', 'DisconnectNamedPipe', 'CreateJobObjectA', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'WriteProfileSectionW', 'ConvertDefaultLocale', 'FreeEnvironmentStringsW', 'RequestWakeupLatency', 'OutputDebugStringA', '_lopen', 'TransactNamedPipe', 'GetNumaProcessorNode', 'lstrcpyA', 'CloseHandle', 'CreateFileW', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'OutputDebugStringW', 'LoadLibraryExW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'GetOEMCP', 'IsValidCodePage', 'GetComputerNameExA', 'GetVersionExW', 'EnumResourceTypesA', 'CreateActCtxW', 'GetCompressedFileSizeW', 'EnumCalendarInfoExW', 'GetNumaAvailableMemoryNode', 'TerminateJobObject', 'LoadResource', 'GetACP', 'GetEnvironmentStringsW', 'TlsFree', 'lstrlenA', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WideCharToMultiByte', 'GetStringTypeW', 'GetLastError', 'HeapFree', 'GetCommandLineW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'GetCPInfo', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'GetStartupInfoW', 'GetModuleHandleW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetProcessHeap', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'WriteFile', 'QueryPerformanceCounter', 'IsCharAlphaNumericA', 'GetKeyboardLayoutList', 'GetUserObjectInformationW', 'CreateDesktopW', 'LoadMenuIndirectA', 'CharUpperBuffW', 'ImpersonateDdeClientWindow', 'SetSystemCursor', 'LoadCursorW', 'GetClipboardFormatNameA', 'GetGUIThreadInfo', 'SetPropA', 'CharUpperBuffA', 'PeekMessageA', 'AnimatePalette', 'GetEnhMetaFileA', 'CreateDIBSection', 'EnumFontFamiliesExW', 'TextOutW', 'CloseEnhMetaFile', 'GdiComment', 'GetMiterLimit', 'DeviceCapabilitiesW', 'ReportEventA', 'CoInitialize'], ['FindNextFileA', 'ExpandEnvironmentStringsA', 'GetLongPathNameW', 'CopyFileW', 'GetLocaleInfoA', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'VirtualProtect', 'SetLastError', 'VirtualFree', 'VirtualAlloc', 'GetNativeSystemInfo', 'HeapAlloc', 'GetProcessHeap', 'FreeLibrary', 'IsBadReadPtr', 'GetTempPathW', 'OpenProcess', 'OpenMutexA', 'lstrcatW', 'GetCurrentProcessId', 'GetTempFileNameW', 'GetSystemDirectoryA', 'GlobalAlloc', 'GlobalLock', 'GetTickCount', 'GlobalUnlock', 'WriteProcessMemory', 'ResumeThread', 'GetThreadContext', 'ReadProcessMemory', 'CreateProcessW', 'SetThreadContext', 'LocalAlloc', 'GlobalFree', 'MulDiv', 'SizeofResource', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'GetStdHandle', 'SetFilePointer', 'FindResourceA', 'LockResource', 'LoadResource', 'LocalFree', 'SetConsoleOutputCP', 'FormatMessageA', 'AllocConsole', 'FindFirstFileA', 'lstrcpynA', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'HeapSize', 'WriteConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindFirstFileExA', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'GetTimeZoneInformation', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'HeapReAlloc', 'GetACP', 'GetModuleHandleExW', 'MoveFileExW', 'RtlUnwind', 'RaiseException', 'LoadLibraryExW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'GetFileSize', 'TerminateThread', 'GetLastError', 'GetModuleHandleA', 'RemoveDirectoryW', 'MoveFileW', 'SetFilePointerEx', 'GetLogicalDriveStringsA', 'DeleteFileW', 'CreateDirectoryW', 'DeleteFileA', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'lstrlenA', 'GetDriveTypeA', 'FindNextFileW', 'GetFileSizeEx', 'FindFirstFileW', 'GetModuleHandleW', 'ExitProcess', 'CreateMutexA', 'GetCurrentProcess', 'GetProcAddress', 'LoadLibraryA', 'CreateProcessA', 'PeekNamedPipe', 'CreatePipe', 'TerminateProcess', 'ReadFile', 'HeapFree', 'HeapCreate', 'CreateEventA', 'GetLocalTime', 'CreateThread', 'SetEvent', 'CreateEventW', 'WaitForSingleObject', 'Sleep', 'GetModuleFileNameW', 'CloseHandle', 'ExitThread', 'CreateFileW', 'WriteFile', 'GetModuleFileNameA', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'DecodePointer', 'EncodePointer', 'WideCharToMultiByte', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEndOfFile', 'GetWindowTextW', 'wsprintfW', 'GetClipboardData', 'UnhookWindowsHookEx', 'GetForegroundWindow', 'ToUnicodeEx', 'GetKeyboardLayout', 'SetWindowsHookExA', 'CloseClipboard', 'OpenClipboard', 'GetKeyboardState', 'CallNextHookEx', 'GetKeyboardLayoutNameA', 'GetKeyState', 'GetWindowTextLengthW', 'GetWindowThreadProcessId', 'GetMessageA', 'SetClipboardData', 'EnumWindows', 'ExitWindowsEx', 'EmptyClipboard', 'ShowWindow', 'SetWindowTextW', 'MessageBoxW', 'IsWindowVisible', 'CloseWindow', 'SendInput', 'EnumDisplaySettingsW', 'mouse_event', 'CreatePopupMenu', 'DispatchMessageA', 'TranslateMessage', 'TrackPopupMenu', 'DefWindowProcA', 'CreateWindowExA', 'GetIconInfo', 'GetSystemMetrics', 'AppendMenuA', 'RegisterClassExA', 'GetCursorPos', 'SetForegroundWindow', 'DrawIcon', 'SystemParametersInfoW', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'DeleteObject', 'CreateDCA', 'GetObjectA', 'BitBlt', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameW', 'RegEnumKeyExA', 'QueryServiceStatus', 'CloseServiceHandle', 'OpenSCManagerW', 'OpenSCManagerA', 'ControlService', 'StartServiceW', 'QueryServiceConfigW', 'ChangeServiceConfigW', 'OpenServiceW', 'EnumServicesStatusW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCreateKeyA', 'RegCloseKey', 'RegQueryInfoKeyW', 'RegQueryValueExA', 'RegCreateKeyExW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegSetValueExA', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegQueryValueExW', 'RegDeleteKeyA', 'ShellExecuteExA', 'Shell_NotifyIconA', 'ExtractIconA', 'ShellExecuteW', 'CoInitializeEx', 'CoUninitialize', 'CoGetObject', 'PathFileExistsW', 'PathFileExistsA', 'StrToIntA', 'waveInUnprepareHeader', 'waveInOpen', 'waveInStart', 'waveInAddBuffer', 'PlaySoundW', 'mciSendStringA', 'mciSendStringW', 'waveInClose', 'waveInStop', 'waveInPrepareHeader', 'gethostbyname', 'send', 'WSAStartup', 'closesocket', 'inet_ntoa', 'htons', 'htonl', 'getservbyname', 'ntohs', 'getservbyport', 'gethostbyaddr', 'inet_addr', 'WSASetLastError', 'WSAGetLastError', 'recv', 'connect', 'socket', 'URLOpenBlockingStreamW', 'URLDownloadToFileW', 'GdipSaveImageToStream', 'GdipGetImageEncodersSize', 'GdipFree', 'GdipDisposeImage', 'GdipAlloc', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipLoadImageFromStream', 'InternetOpenUrlW', 'InternetOpenW', 'InternetCloseHandle', 'InternetReadFile'], ['CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'OpenEventA', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetProcessHeap', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'IsValidCodePage', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'HeapReAlloc', 'HeapSize', 'HeapAlloc', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'SetHandleCount', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetSystemInfo', 'OutputDebugStringW', 'GetFileType', 'WriteConsoleW', 'OutputDebugStringA', 'GetStdHandle', 'DebugBreak', 'ExitProcess', 'GetModuleFileNameA', 'RaiseException', 'RtlUnwind', 'IsBadReadPtr', 'HeapValidate', 'GetStartupInfoA', 'GetCommandLineA', 'SetEndOfFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetCurrentProcess', 'InterlockedIncrement', 'InterlockedExchange', 'GetCurrentThread', 'GlobalFlags', 'lstrlenA', 'lstrcmpA', 'FormatMessageW', 'GetModuleHandleA', 'SetEvent', 'CloseHandle', 'CompareStringW', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpW', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExA', 'WideCharToMultiByte', 'GetCurrentProcessId', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'GlobalUnlock', 'TlsAlloc', 'LocalAlloc', 'LocalFree', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'FreeLibrary', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'MultiByteToWideChar', 'lstrlenW', 'GetModuleHandleW', 'GetProcAddress', 'GetAtomNameW', 'GlobalGetAtomNameW', 'GetLastError', 'SetLastError', 'CreateDirectoryW', 'GlobalLock', 'VirtualFree', 'GlobalAlloc', 'GetSystemDirectoryW', 'GetLocaleInfoW', 'Sleep', 'CopyFileW', 'GetModuleFileNameW', 'VirtualAlloc', 'GlobalFree', 'ResetEvent', 'CreatePipe', 'VirtualProtect', 'SetUnhandledExceptionFilter', 'IntersectClipRect', 'SetBkMode', 'LineTo', 'DeleteObject', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'RestoreDC', 'SaveDC', 'DeleteDC', 'Escape', 'GetTextExtentPoint32W', 'TextOutW', 'GetPixel', 'BitBlt', 'RectVisible', 'PtVisible', 'SelectObject', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBitmap', 'CreateFontIndirectW', 'CreatePatternBrush', 'CreateSolidBrush', 'ExtTextOutW', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'GetObjectW', 'GetStockObject', 'GetObjectType', 'ScreenToClient', 'AdjustWindowRectEx', 'SetFocus', 'SetActiveWindow', 'GetFocus', 'DispatchMessageW', 'GetSysColor', 'GetClientRect', 'LoadIconW', 'RegisterClassW', 'RemoveMenu', 'GetClassInfoExW', 'CreateWindowExW', 'RegisterWindowMessageW', 'GetSysColorBrush', 'LoadBitmapW', 'FillRect', 'DrawTextExW', 'GrayStringW', 'CreatePopupMenu', 'IsMenu', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'GetSubMenu', 'InsertMenuItemW', 'ModifyMenuW', 'SetMenuItemBitmaps', 'LoadMenuW', 'ClientToScreen', 'GetDC', 'ReleaseDC', 'GetWindowDC', 'GetActiveWindow', 'GetDesktopWindow', 'GetMenuCheckMarkDimensions', 'BringWindowToTop', 'UpdateWindow', 'IsWindowVisible', 'ShowOwnedPopups', 'EqualRect', 'SetForegroundWindow', 'GetForegroundWindow', 'LoadCursorW', 'SetWindowTextW', 'ShowWindow', 'SetRectEmpty', 'SetCursor', 'ReleaseCapture', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'ReuseDDElParam', 'UnpackDDElParam', 'GetClipboardFormatNameA', 'GetClipboardFormatNameW', 'SystemParametersInfoW', 'PtInRect', 'InflateRect', 'GetWindow', 'GetCapture', 'WinHelpW', 'MapWindowPoints', 'DestroyMenu', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'TrackPopupMenu', 'GetSystemMenu', 'PostMessageW', 'DrawTextW', 'KillTimer', 'GetMenuItemInfoW', 'BeginPaint', 'LockWindowUpdate', 'CreateDialogIndirectParamW', 'InvalidateRect', 'GetMessageTime', 'ValidateRect', 'GetTopWindow', 'GetDlgItem', 'GetWindowTextW', 'GetKeyState', 'DestroyWindow', 'GetDlgCtrlID', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'CallWindowProcW', 'RemovePropW', 'DefWindowProcW', 'SetMenu', 'GetMenu', 'GetMessagePos', 'SetWindowLongW', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'MessageBoxW', 'GetWindowLongW', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'GetWindowThreadProcessId', 'TabbedTextOutW', 'SendMessageW', 'IsWindow', 'UnhookWindowsHookEx', 'PeekMessageW', 'PostQuitMessage', 'GetSystemMetrics', 'OpenClipboard', 'GetClassInfoW', 'StringFromCLSID', 'OleInitialize', 'OleCreate', 'CoTaskMemFree', 'VariantInit', 'VariantChangeType', 'VariantClear', 'CreateStdAccessibleObject', 'LresultFromObject', 'DragFinish', 'DragQueryFileW', 'OpenThreadToken', 'RevertToSelf', 'SetThreadToken', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'CopyFileA', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexA', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA', 'CharUpperA'], ['VariantClear', 'SysAllocString', 'SendMessageA', 'SetTimer', 'DialogBoxParamW', 'DialogBoxParamA', 'SetWindowLongA', 'GetWindowLongA', 'SetWindowTextW', 'LoadIconA', 'LoadStringW', 'LoadStringA', 'CharUpperW', 'CharUpperA', 'DestroyWindow', 'EndDialog', 'PostMessageA', 'ShowWindow', 'MessageBoxW', 'GetDlgItem', 'KillTimer', 'SetWindowTextA', 'ShellExecuteExA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'IsBadCodePtr', 'IsBadReadPtr', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'HeapSize', 'GetCurrentProcess', 'TerminateProcess', 'IsBadWritePtr', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'ExitProcess', 'GetVersion', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleA', 'WaitForSingleObject', 'CloseHandle', 'CreateProcessA', 'SetCurrentDirectoryA', 'GetCommandLineW', 'GetVersionExA', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetLastError', 'LoadLibraryA', 'AreFileApisANSI', 'GetModuleFileNameA', 'GetModuleFileNameW', 'LocalFree', 'FormatMessageA', 'FormatMessageW', 'GetWindowsDirectoryA', 'SetFileTime', 'CreateFileW', 'SetLastError', 'SetFileAttributesA', 'RemoveDirectoryA', 'SetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryA', 'CreateDirectoryW', 'DeleteFileA', 'DeleteFileW', 'lstrlenA', 'GetFullPathNameA', 'GetFullPathNameW', 'GetCurrentDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'FindClose', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'CreateFileA', 'GetFileSize', 'SetFilePointer', 'ReadFile', 'WriteFile', 'SetEndOfFile', 'GetStdHandle', 'WaitForMultipleObjects', 'Sleep', 'VirtualAlloc', 'VirtualFree', 'CreateEventA', 'SetEvent', 'ResetEvent', 'InitializeCriticalSection', 'RtlUnwind', 'RaiseException', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'CreateThread', 'GetCurrentThreadId', 'TlsSetValue', 'TlsGetValue', 'ExitThread'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'WNetGetConnectionA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetConsoleAliasExesW', 'EnumTimeFormatsW', 'GetUserDefaultLangID', 'GetCommandLineA', 'GetDriveTypeA', 'InitializeCriticalSection', 'GlobalAlloc', 'IsValidLocale', 'TerminateThread', 'GetThreadSelectorEntry', 'GetCalendarInfoW', 'FormatMessageW', 'GetSystemTimeAdjustment', 'GetVersionExW', 'SetConsoleCP', 'WritePrivateProfileStructW', 'CreateSemaphoreA', 'GetFileAttributesW', 'SetMessageWaitingIndicator', 'IsBadWritePtr', 'GetAtomNameW', 'GetCompressedFileSizeA', 'GetTimeZoneInformation', 'lstrlenW', 'GetFileSizeEx', 'SetThreadLocale', 'FindFirstFileA', 'InterlockedFlushSList', 'GetCurrentDirectoryW', 'BindIoCompletionCallback', 'ReadConsoleOutputCharacterA', 'GetLongPathNameA', 'HeapSize', 'DefineDosDeviceW', 'IsValidCodePage', 'GetFirmwareEnvironmentVariableW', 'EnumSystemCodePagesW', 'SetComputerNameA', 'SetFileTime', 'SetFileAttributesA', 'PrepareTape', 'GetProcessVersion', 'LoadLibraryA', 'OpenMutexA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'OpenEventA', 'HeapLock', 'GetCommMask', 'AddAtomA', 'GetThreadPriority', 'CreateIoCompletionPort', 'WaitCommEvent', 'GetModuleHandleA', 'UpdateResourceW', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'OutputDebugStringA', 'DuplicateHandle', 'SetProcessShutdownParameters', 'CloseHandle', 'MoveFileWithProgressW', 'GetFileInformationByHandle', 'FindNextVolumeA', 'WriteProcessMemory', 'lstrcpyW', 'CreateFileW', 'ReadConsoleW', 'ReadFile', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'OutputDebugStringW', 'FormatMessageA', 'GetPrivateProfileStringW', 'IsBadReadPtr', 'GetCommProperties', 'SleepEx', 'OpenSemaphoreA', 'QueryDosDeviceA', 'OpenJobObjectA', 'InterlockedIncrement', 'WriteConsoleOutputCharacterA', 'GetCPInfo', 'TlsGetValue', 'WritePrivateProfileStructA', 'lstrlenA', 'GetCommModemStatus', 'CreateTimerQueue', 'GetFullPathNameA', 'GetVolumeNameForVolumeMountPointA', 'SetTimerQueueTimer', 'GetFullPathNameW', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLastError', 'HeapFree', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'LCMapStringW', 'GetLocaleInfoW', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetProcessHeap', 'ExitProcess', 'GetModuleHandleExW', 'GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameA', 'WriteFile', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetACP', 'GetOEMCP', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'LoadLibraryExW', 'GetMenuItemInfoW', 'GetMonitorInfoA', 'SetScrollPos', 'DefDlgProcA', 'GetMonitorInfoW', 'mouse_event', 'GetIconInfo', 'QueryServiceConfigW', 'ConvertToAutoInheritPrivateObjectSecurity', 'SetSecurityDescriptorSacl', 'RegisterServiceCtrlHandlerW', 'GetSidLengthRequired', 'RegOpenKeyExW', 'RegConnectRegistryW', 'CreatePrivateObjectSecurity', 'NotifyChangeEventLog', 'StartServiceA', 'RegSaveKeyW', 'ObjectDeleteAuditAlarmW', 'RegDeleteKeyA', 'CreateServiceA', 'RegQueryValueExA', 'AccessCheckByTypeResultListAndAuditAlarmA', 'EnumServicesStatusA', 'RegisterEventSourceA', 'InitiateSystemShutdownW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', 'strcpy', 'wsprintfA'], ['GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleW', 'GetNumberOfConsoleInputEvents', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcessHeap', 'GetProcessTimes', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetThreadLocale', 'GetTickCount', 'GetTimeFormatA', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalFree', 'GlobalGetAtomNameW', 'GlobalHandle', 'GlobalLock', 'GlobalMemoryStatusEx', 'GlobalReAlloc', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsBadReadPtr', 'IsBadWritePtr', 'IsDebuggerPresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'GetLocaleInfoW', 'LocalFree', 'LocalReAlloc', 'LockFile', 'LockResource', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'PeekNamedPipe', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'ResumeThread', 'RtlUnwind', 'SetCommBreak', 'SetConsoleCtrlHandler', 'SetConsoleDisplayMode', 'SetDefaultCommConfigA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetFilePointerEx', 'SetFileTime', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'SizeofResource', 'Sleep', 'SuspendThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnlockFile', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleOutputCharacterW', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', 'WriteProcessMemory', 'lstrcmpA', 'lstrcmpW', 'lstrcmpiW', 'lstrlenA', 'lstrlenW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileType', 'GetFileTime', 'GetFileSizeEx', 'GetFileSize', 'GetFileAttributesW', 'GetFileAttributesExW', 'GetExitCodeProcess', 'GetEnvironmentStringsW', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetComputerNameW', 'GetCommandLineW', 'GetCPInfo', 'GetBinaryTypeW', 'GetAtomNameW', 'GetACP', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FlushInstructionCache', 'FlushFileBuffers', 'FindResourceW', 'FindResourceExW', 'FindFirstFileW', 'FindClose', 'FindAtomW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FatalAppExitA', 'ExpandEnvironmentStringsW', 'ExitThread', 'ExitProcess', 'EnumSystemLocalesA', 'EnumSystemLanguageGroupsA', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DuplicateHandle', 'DisableThreadLibraryCalls', 'DeviceIoControl', 'DeleteFileW', 'DeleteCriticalSection', 'DeleteAtom', 'CreateToolhelp32Snapshot', 'CreateThread', 'CreateProcessW', 'CreatePipe', 'CreateMutexW', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateDirectoryA', 'CopyFileW', 'ConvertDefaultLocale', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'CallNamedPipeA', 'AddAtomW', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'LocalFileTimeToFileTime', 'VirtualAlloc', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadIconW', 'LoadMenuIndirectW', 'LoadMenuW', 'LoadStringW', 'LockWindowUpdate', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBoxW', 'ModifyMenuW', 'MoveWindow', 'OffsetRect', 'PaintDesktop', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RealChildWindowFromPoint', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ReplyMessage', 'ReuseDDElParam', 'ScreenToClient', 'ScrollWindow', 'ScrollWindowEx', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageA', 'SendMessageTimeoutA', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetCursor', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetParent', 'SetPropW', 'SetRect', 'SetRectEmpty', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookA', 'SetWindowsHookExW', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TrackPopupMenuEx', 'TranslateAcceleratorW', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnpackDDElParam', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WaitMessage', 'WinHelpW', 'WindowFromPoint', 'wsprintfW', 'KillTimer', 'IsWindowVisible', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDlgButtonChecked', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuW', 'InsertMenuItemW', 'InsertMenuItemA', 'InflateRect', 'IMPQueryIMEW', 'GrayStringW', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowTextLengthW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetWindow', 'GetUserObjectInformationA', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetNextDlgTabItem', 'GetMessageW', 'GetMessageTime', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenuBarInfo', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetGuiResources', 'GetFocus', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetDialogBaseUnits', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClipboardFormatNameA', 'GetClientRect', 'GetClassNameW', 'GetClassNameA', 'GetClassLongW', 'GetClassInfoW', 'GetClassInfoExW', 'GetCapture', 'FlashWindowEx', 'FlashWindow', 'FillRect', 'EqualRect', 'EnumDisplaySettingsExW', 'EndPaint', 'EndDialog', 'EndDeferWindowPos', 'EnableWindow', 'EnableMenuItem', 'DrawTextW', 'DrawTextExW', 'DlgDirListComboBoxA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyAcceleratorTable', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcW', 'DdeReconnect', 'DdeQueryStringW', 'CreateWindowExW', 'CreatePopupMenu', 'CreateMDIWindowA', 'CreateDialogIndirectParamW', 'CopyRect', 'CloseDesktop', 'ClientToScreen', 'CheckRadioButton', 'CheckMenuItem', 'CheckDlgButton', 'CharUpperW', 'ChangeDisplaySettingsExW', 'CascadeChildWindows', 'CallWindowProcW', 'CallNextHookEx', 'BringWindowToTop', 'BlockInput', 'BeginPaint', 'BeginDeferWindowPos', 'AppendMenuW', 'LoadCursorW', 'GetParent', 'IsCharAlphaNumericA', 'InSendMessage', 'CloseWindowStation', 'IsWindowEnabled', 'CreateMenu', 'DestroyCursor', 'GetDlgCtrlID', 'GetListBoxInfo', 'GetAsyncKeyState', 'IsGUIThread', 'GetOpenClipboardWindow', 'IsClipboardFormatAvailable', 'GetMessagePos', 'EnumClipboardFormats', 'GetActiveWindow', 'GetForegroundWindow', 'AdjustWindowRectEx', 'GetDCEx', 'bInitSystemAndFontsDirectoriesW', 'StretchBlt', 'SetWinMetaFileBits', 'SelectObject', 'STROBJ_bEnum', 'ModifyWorldTransform', 'HT_Get8BPPFormatPalette', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetRandomRgn', 'GetPixel', 'GetNearestColor', 'GetGlyphIndicesA', 'GetEnhMetaFileDescriptionA', 'GetDIBColorTable', 'GetCurrentObject', 'GetCharWidthI', 'GetCharWidth32W', 'GetBrushOrgEx', 'GdiPrinterThunk', 'GdiPlayJournal', 'GdiGetDC', 'GdiEntry10', 'GdiConsoleTextOut', 'FONTOBJ_vGetInfo', 'EnumFontFamiliesW', 'EnumFontFamiliesA', 'EngUnlockSurface', 'EngQueryEMFInfo', 'EngGradientFill', 'CreateMetaFileW', 'CreateColorSpaceW', 'CreateColorSpaceA', 'CreateBitmap', 'CloseFigure', 'CLIPOBJ_cEnumStart', 'CloseEnhMetaFile', 'GetEnhMetaFileA', 'GetSystemPaletteUse', 'UnrealizeObject', 'CreatePatternBrush', 'AbortDoc', 'GetTextCharacterExtra', 'GetBkColor', 'SaveDC', 'GdiFlush', 'EndPage', 'AddFontResourceW', 'GetFileTitleW', 'GetTokenInformation', 'GetLengthSid', 'LookupAccountSidW', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyExW', 'RegCreateKeyW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyExW', 'RegEnumKeyW', 'RegOpenKeyExW', 'RegOpenKeyW', 'RegQueryValueExA', 'RegQueryValueExW', 'RegQueryValueW', 'RegSetValueExW', 'RegSetValueW', 'SetTokenInformation', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'ConvertStringSidToSidW', 'RegOpenKeyA', 'Shell_NotifyIconA', 'ShellHookProc', 'ShellExecuteW', 'ShellExecuteExW', 'ShellExecuteEx', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHIsFileAvailableOffline', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderPathA', 'SHGetPathFromIDList', 'SHGetMalloc', 'SHGetInstanceExplorer', 'SHGetIconOverlayIndexW', 'SHGetFolderPathW', 'SHGetFolderLocation', 'SHGetFileInfoW', 'SHGetDiskFreeSpaceExA', 'SHGetDiskFreeSpaceA', 'SHGetDesktopFolder', 'SHGetDataFromIDListA', 'SHEmptyRecycleBinW', 'SHCreateDirectoryExW', 'SHCreateDirectoryExA', 'SHBrowseForFolderW', 'SHBrowseForFolderA', 'ExtractIconW', 'ExtractAssociatedIconExA', 'ExtractAssociatedIconA', 'DragQueryPoint', 'DragQueryFileW', 'DragQueryFileAorW', 'DragQueryFile', 'DragFinish', 'DragAcceptFiles', 'WriteFmtUserTypeStg', 'StringFromGUID2', 'StringFromCLSID', 'SetConvertStg', 'ReleaseStgMedium', 'ReadFmtUserTypeStg', 'ReadClassStg', 'OleRegGetUserType', 'OleDuplicateData', 'CreateBindCtx', 'CoUninitialize', 'CoTreatAsClass', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitializeSecurity', 'CoInitializeEx', 'CoInitialize', 'CoDisconnectObject', 'CoCreateInstance', 'CLSIDFromString', 'WriteClassStg', 'PathAddBackslashW', 'PathAppendW', 'PathFileExistsW', 'PathFindExtensionW', 'PathFindFileNameW', 'PathIsUNCW', 'PathRemoveExtensionW', 'PathRemoveFileSpecW', 'PathStripToRootW', 'SHGetValueW', 'StrChrIA', 'StrChrIW', 'StrCmpIW', 'StrCmpNA', 'StrCmpNIA', 'StrCmpNIW', 'StrRChrA', 'StrRChrIA', 'StrStrIW'], ['SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'GetFileAttributesExA', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'WriteFile', 'LoadLibraryW', 'GetProcessHandleCount', 'SetConsoleMode', 'GetModuleFileNameW', 'GetBinaryTypeW', 'SetConsoleTitleA', 'CreateJobObjectA', 'InterlockedExchange', 'GetCurrentProcess', 'GetLastError', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'GetPrivateProfileStringA', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'GetShortPathNameW', 'SetFileAttributesW', 'lstrcpynA', 'FreeLibrary', 'GetCPInfoExW', 'GetConsoleAliasesLengthW', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['GetACP', 'GetExitCodeProcess', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'HeapDestroy', 'ReadFile', 'CreateProcessW', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LoadLibraryA', 'ResetEvent', 'GetVersion', 'RaiseException', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'GetSystemDirectoryW', 'DeleteFileW', 'GetLocalTime', 'GetEnvironmentVariableW', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'GetUserDefaultLangID', 'RemoveDirectoryW', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'InitCommonControls', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CreateWindowExW', 'TranslateMessage', 'CharLowerBuffW', 'CallWindowProcW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'SetWindowLongW', 'MessageBoxW', 'DestroyWindow', 'CharUpperBuffW', 'CharNextW', 'MsgWaitForMultipleObjects', 'LoadStringW', 'ExitWindowsEx', 'DispatchMessageW', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegCloseKey', 'OpenProcessToken', 'RegOpenKeyExW'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'GetVersionExA', 'FreeResource', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetModuleHandleA', 'GetPrivateProfileIntA', 'WriteProfileStringW', 'GetLastError', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA'], ['QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'DisableThreadLibraryCalls', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameW', '__stdio_common_vfprintf', 'InitCommonControlsEx', 'free', 'srand', '_register_onexit_function', '_lock_file', '__current_exception_context', '__setusermatherr', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '_time64', '_configthreadlocale', 'accept', 'PathMakeUniqueName'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['InitializeCriticalSectionEx', 'lstrlenA', 'lstrcatA', 'GetModuleHandleA', 'SetCurrentDirectoryA', 'Sleep', 'GetModuleHandleExA', 'GetFileAttributesA', 'GetBinaryTypeA', 'QueryFullProcessImageNameA', 'GetSystemDirectoryA', 'GlobalAlloc', 'lstrcpyA', 'SetFileAttributesA', 'VerSetConditionMask', 'WideCharToMultiByte', 'VerifyVersionInfoW', 'GetSystemTimeAsFileTime', 'HeapFree', 'HeapAlloc', 'GetProcAddress', 'lstrcpynA', 'GetProcessHeap', 'AreFileApisANSI', 'TryEnterCriticalSection', 'HeapCreate', 'EnterCriticalSection', 'GetFullPathNameW', 'GetDiskFreeSpaceW', 'OutputDebugStringA', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetFullPathNameA', 'SetEndOfFile', 'FindClose', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'GetFileAttributesW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'MultiByteToWideChar', 'GetTempPathA', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesExW', 'OutputDebugStringW', 'FlushViewOfFile', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'GetSystemInfo', 'LoadLibraryW', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'LocalFree', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'SystemTimeToFileTime', 'FreeLibrary', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'WriteConsoleW', 'CloseHandle', 'CreateFileA', 'GetLastError', 'CreateFileW', 'SetFilePointer', 'WriteFile', 'UnlockFileEx', 'ReadFile', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'InitializeSListHead', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStartupInfoW', 'CreateDirectoryW', 'FindFirstFileExW', 'FindNextFileW', 'SetFilePointerEx', 'GetFileInformationByHandleEx', 'QueryPerformanceFrequency', 'LCMapStringEx', 'EncodePointer', 'DecodePointer', 'GetCPInfo', 'GetStringTypeW', 'SetLastError', 'GetCurrentThread', 'GetThreadTimes', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetFileType', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'GetStdHandle', 'GetConsoleMode', 'ReadConsoleW', 'GetConsoleOutputCP', 'SetStdHandle', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileSizeEx', 'GetTimeZoneInformation', 'IsValidCodePage', 'GetACP', 'RtlUnwind', 'CharNextA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'OpenProcessToken', 'RegOpenKeyExA', 'GetTokenInformation', 'CryptReleaseContext', 'ShellExecuteA', 'CoCreateInstance', 'CoInitializeEx', 'CoUninitialize', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'CreateEventA', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Thread32First', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'WriteProcessMemory', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'GetCurrentThread', 'SetThreadAffinityMask', 'Sleep', 'LoadLibraryA', 'FreeLibrary', 'GetTickCount', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GlobalFree', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleW', 'LoadResource', 'MultiByteToWideChar', 'FindResourceExW', 'FindResourceExA', 'WideCharToMultiByte', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'CreateFileW', 'LoadLibraryW', 'GetLastError', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'HeapReAlloc', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'HeapFree', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'EncodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'DecodePointer', 'HeapAlloc', 'RtlUnwindEx', 'LCMapStringW', 'GetStringTypeW', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'HeapSize', 'WriteFile', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'CharUpperBuffW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['QueryPerformanceCounter', 'GetStringTypeW', 'GetCPInfo', 'GetACP', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetTimeZoneInformation', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'WriteConsoleW', 'SetEnvironmentVariableA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetFileType', 'SetStdHandle', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'GetSystemTimeAsFileTime', 'ExitProcess', 'HeapQueryInformation', 'HeapSize', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'EncodePointer', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'FindResourceExW', 'SearchPathW', 'GetProfileIntW', 'GetTickCount', 'GetNumberFormatW', 'GetWindowsDirectoryW', 'GetTempFileNameW', 'GetCurrentDirectoryW', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'lstrcpyW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'InterlockedExchange', 'HeapCreate', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileW', 'lstrcmpiW', 'GlobalFlags', 'FreeResource', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryW', 'lstrcmpW', 'FileTimeToSystemTime', 'lstrlenA', 'lstrcmpA', 'GlobalGetAtomNameW', 'CompareStringW', 'InterlockedIncrement', 'GetProcAddress', 'WaitForSingleObject', 'GetCurrentThreadId', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'MultiByteToWideChar', 'CopyFileW', 'GlobalSize', 'FormatMessageW', 'MulDiv', 'lstrlenW', 'WideCharToMultiByte', 'GetCurrentProcessId', 'FreeLibrary', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedDecrement', 'ActivateActCtx', 'ReleaseActCtx', 'DeactivateActCtx', 'TlsFree', 'GlobalFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalAlloc', 'GlobalHandle', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalLock', 'TlsGetValue', 'LeaveCriticalSection', 'LocalFree', 'LocalAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFullPathNameW', 'FreeEnvironmentStringsW', 'GetLastError', 'SetLastError', 'GetOEMCP', 'VirtualProtect', 'EnterCriticalSection', 'GetTempPathW', 'GetModuleFileNameW', 'Sleep', 'GetSystemDirectoryW', 'InitializeCriticalSection', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'LoadLibraryA', 'SetPixelV', 'GetTextFaceW', 'SetPaletteEntries', 'ExtFloodFill', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'PtInRegion', 'GetViewportOrgEx', 'GetWindowOrgEx', 'LPtoDP', 'EnumFontFamiliesExW', 'Rectangle', 'SetPixel', 'StretchBlt', 'SetDIBColorTable', 'GetRgnBox', 'OffsetRgn', 'GetSystemPaletteEntries', 'RealizePalette', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'CreatePalette', 'Polygon', 'Ellipse', 'Polyline', 'CreateEllipticRgn', 'GetTextColor', 'GetBkColor', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'CreateDIBSection', 'DPtoLP', 'PatBlt', 'CombineRgn', 'SetRectRgn', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'GetTextMetricsW', 'CreateRectRgnIndirect', 'CreateCompatibleBitmap', 'CreateDIBitmap', 'CreateHatchBrush', 'CreateSolidBrush', 'CreatePen', 'Escape', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'RectVisible', 'PtVisible', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32W', 'ExtTextOutW', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'CreateBitmap', 'CreateDCW', 'CopyMetaFileW', 'GetDeviceCaps', 'TextOutW', 'RemovePropW', 'GetPropW', 'SetPropW', 'GetClassNameW', 'GetClassLongW', 'GetCapture', 'IsChild', 'WinHelpW', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'LoadIconW', 'RegisterWindowMessageW', 'CheckDlgButton', 'IsDialogMessageW', 'SetWindowTextW', 'MoveWindow', 'ShowWindow', 'ClientToScreen', 'RealChildWindowFromPoint', 'GetDesktopWindow', 'DestroyIcon', 'CharUpperW', 'InflateRect', 'GetMenuItemInfoW', 'DestroyMenu', 'SystemParametersInfoW', 'FillRect', 'TabbedTextOutW', 'DrawTextExW', 'GrayStringW', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'PostQuitMessage', 'CopyImage', 'SetRectEmpty', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'IsIconic', 'InvalidateRect', 'IntersectRect', 'SetCursor', 'ShowOwnedPopups', 'DeleteMenu', 'SetTimer', 'KillTimer', 'IsRectEmpty', 'OffsetRect', 'IsZoomed', 'SetWindowRgn', 'SetParent', 'DestroyAcceleratorTable', 'CreatePopupMenu', 'WindowFromPoint', 'NotifyWinEvent', 'GetAsyncKeyState', 'SetClassLongW', 'LoadMenuW', 'GetSystemMenu', 'SetCapture', 'ReleaseCapture', 'MessageBeep', 'DrawStateW', 'DrawIconEx', 'DrawEdge', 'DrawFrameControl', 'DrawFocusRect', 'CopyAcceleratorTableW', 'ToUnicodeEx', 'MapVirtualKeyW', 'GetKeyboardLayout', 'GetKeyboardState', 'LoadAcceleratorsW', 'CreateAcceleratorTableW', 'SetRect', 'GetScrollPos', 'BringWindowToTop', 'LockWindowUpdate', 'GetMenuDefaultItem', 'IsWindow', 'HideCaret', 'EnableScrollBar', 'GetNextDlgTabItem', 'GetIconInfo', 'LoadImageW', 'GetNextDlgGroupItem', 'EndDialog', 'CreateDialogIndirectParamW', 'TranslateAcceleratorW', 'InsertMenuItemW', 'ReuseDDElParam', 'UnpackDDElParam', 'DefFrameProcW', 'DefMDIChildProcW', 'DrawMenuBar', 'TranslateMDISysAccel', 'MonitorFromPoint', 'UnionRect', 'UpdateLayeredWindow', 'IsMenu', 'CreateMenu', 'PostThreadMessageW', 'WaitMessage', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'FrameRect', 'GetUpdateRect', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'RegisterClipboardFormatW', 'CopyIcon', 'CharUpperBuffW', 'GetDoubleClickTime', 'IsCharLowerW', 'GetKeyNameTextW', 'MapVirtualKeyExW', 'SubtractRect', 'MapDialogRect', 'DrawIcon', 'DestroyCursor', 'GetWindowRgn', 'SetWindowPlacement', 'DefWindowProcW', 'ReleaseDC', 'GetWindowLongW', 'GetClassInfoExW', 'SetForegroundWindow', 'ShowScrollBar', 'RedrawWindow', 'UpdateWindow', 'ValidateRect', 'GetMenuState', 'GetMenuStringW', 'AppendMenuW', 'GetMenuItemID', 'InsertMenuW', 'GetMenuItemCount', 'GetSubMenu', 'SetFocus', 'GetForegroundWindow', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoW', 'MapWindowPoints', 'ScrollWindow', 'GetClientRect', 'PostMessageW', 'CreateWindowExW', 'EnumWindows', 'CallNextHookEx', 'DrawTextW', 'GetClassInfoW', 'RegisterClassW', 'UnhookWindowsHookEx', 'MessageBoxW', 'EnableWindow', 'IsWindowEnabled', 'GetLastActivePopup', 'GetParent', 'SendMessageW', 'GetWindowThreadProcessId', 'RemoveMenu', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'InvertRect', 'SetScrollPos', 'AdjustWindowRectEx', 'GetWindowRect', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'GetCursorPos', 'GetWindowPlacement', 'GetDlgCtrlID', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'SetWindowPos', 'CopyRect', 'PtInRect', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'EnableMenuItem', 'CheckMenuItem', 'GetWindowTextLengthW', 'GetWindowTextW', 'LoadCursorW', 'GetSystemMetrics', 'GetDC', 'GetSysColor', 'GetSysColorBrush', 'SetWindowsHookExW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'SetCursorPos', 'PeekMessageW', 'PropertySheetW', 'CreateStatusWindowW', 'CreatePropertySheetPageW', 'ImageList_GetIconSize', 'GetFileTitleW', 'GetSaveFileNameW', 'ReplaceTextW', 'GetOpenFileNameW', 'VariantClear', 'VariantChangeType', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysStringLen', 'SysAllocStringLen', 'VarBstrFromDate', 'VariantInit', 'SysAllocString', 'SysFreeString', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'LresultFromObject', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'SHAppBarMessage', 'SHGetFileInfoW', 'SHGetDesktopFolder', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderW', 'DragQueryFileW', 'DragFinish', 'ShellExecuteW', 'DoDragDrop', 'CreateStreamOnHGlobal', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'OleGetClipboard', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'CoInitializeEx', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'PathRemoveFileSpecW', 'PathFindExtensionW', 'PathIsUNCW', 'PathStripToRootW', 'PathFindFileNameW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegDeleteValueW', 'RegCloseKey', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegQueryValueExW', 'TransparentBlt', 'AlphaBlend', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext'], ['SetVolumeLabelA', 'SetupComm', 'SetPriorityClass', 'IsBadStringPtrW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetNumaProcessorNode', 'GetDefaultCommConfigW', 'GetProcessIoCounters', 'SetConsoleScreenBufferSize', 'FlushViewOfFile', 'FindFirstFileExW', 'ConnectNamedPipe', 'GetTickCount', 'GetWindowsDirectoryA', 'WideCharToMultiByte', 'GetThreadSelectorEntry', '_hread', 'SizeofResource', 'GetMailslotInfo', 'GetEnvironmentVariableA', 'CompareStringW', 'HeapReAlloc', 'GetProcAddress', 'GetLongPathNameA', 'EnumDateFormatsExA', 'EnumSystemCodePagesW', 'SetFileApisToOEM', 'GetAtomNameA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'GetExitCodeThread', 'GetModuleFileNameA', 'CreateIoCompletionPort', '_lread', 'VirtualProtect', 'SetCalendarInfoA', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'ResetWriteWatch', 'FindNextVolumeA', 'GetLastError', 'GetFullPathNameW', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'CloseHandle', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'HeapSize', 'GetCaretPos', 'RegisterEventSourceW'], ['RtlUnwindEx', 'RtlPcToFileHeader', 'RtlCaptureContext', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlUnwind', 'LoadLibraryExW', 'CreateFileW', 'HeapSize', 'GetTimeZoneInformation', 'LoadLibraryA', 'GetProcAddress', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'FormatMessageA', 'EncodePointer', 'DecodePointer', 'LocalFree', 'GetLocaleInfoEx', 'InitializeCriticalSectionEx', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'HeapReAlloc', 'ReadConsoleW', 'SetFilePointerEx', 'GetFileSizeEx', 'RaiseException', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'WriteConsoleW', 'GetCurrentProcess', 'TerminateProcess', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetTempPathW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetProcessHeap', 'GetFileType', 'SetConsoleCtrlHandler', 'OutputDebugStringW', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'GetModuleHandleA', 'RegOpenKeyExA', 'RegEnumKeyA', 'FreeSid', 'WriteFile', 'Sleep', 'LocalFree', 'LoadLibraryExW', 'LoadLibraryA', 'GlobalUnlock', 'GlobalLock', 'GetTickCount', 'GetSystemInfo', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetFileAttributesW', 'GetCurrentProcessId', 'GetCurrentProcess', 'FreeLibrary', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'DeleteFileW', 'CreateDirectoryW', 'CopyFileW', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'ReleaseDC', 'GetSystemMetrics', 'GetDC', 'CharToOemBuffA', 'OleInitialize', 'CoCreateInstance'], ['htons', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'bind', 'WSAIoctl', 'closesocket', 'WSASend', 'shutdown', 'listen', 'WSASocketW', 'getpeername', 'getsockname', 'socket', 'WSARecv', 'getsockopt', 'ioctlsocket', 'setsockopt', 'FreeAddrInfoW', 'GetAddrInfoW', 'gethostname', 'htonl', 'WSAGetLastError', 'ntohs', 'GetProcessMemoryInfo', 'GetAdaptersAddresses', 'GetConsoleCP', 'SetStdHandle', 'GetFileAttributesExW', 'ExitProcess', 'GetCommandLineW', 'GetCommandLineA', 'SetFileAttributesW', 'ExitThread', 'GetModuleHandleExW', 'GetDriveTypeW', 'RaiseException', 'RtlPcToFileHeader', 'SetConsoleTitleA', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'CreateMutexW', 'GetLastError', 'CloseHandle', 'MultiByteToWideChar', 'SetPriorityClass', 'GetCurrentProcess', 'SetThreadPriority', 'GetCurrentThread', 'GetProcAddress', 'GetModuleHandleW', 'FreeConsole', 'GetConsoleWindow', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetLargePageMinimum', 'LocalAlloc', 'LocalFree', 'FlushInstructionCache', 'GetFileType', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'PostQueuedCompletionStatus', 'QueueUserWorkItem', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'WideCharToMultiByte', 'SetConsoleCursorPosition', 'CreateDirectoryW', 'ReadFile', 'GetFileInformationByHandleEx', 'FindFirstFileW', 'GetFileSizeEx', 'SetLastError', 'FindNextFileW', 'WriteFile', 'GetDiskFreeSpaceW', 'DeviceIoControl', 'RemoveDirectoryW', 'GetFinalPathNameByHandleW', 'SetFileTime', 'ReOpenFile', 'CreateHardLinkW', 'FindClose', 'GetFileAttributesW', 'UnmapViewOfFile', 'GetFileInformationByHandle', 'FlushViewOfFile', 'GetSystemInfo', 'SetFilePointerEx', 'CreateFileMappingA', 'MoveFileExW', 'CopyFileW', 'CreateSymbolicLinkW', 'GetSystemTimeAsFileTime', 'MapViewOfFile', 'SystemTimeToTzSpecificLocalTime', 'GetLongPathNameW', 'GetShortPathNameW', 'GetCurrentDirectoryW', 'ReadDirectoryChangesW', 'CreateIoCompletionPort', 'VerifyVersionInfoA', 'EnterCriticalSection', 'GetModuleFileNameW', 'SetEnvironmentVariableW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetVersionExW', 'FreeEnvironmentStringsW', 'FileTimeToSystemTime', 'QueryPerformanceFrequency', 'VerSetConditionMask', 'GetCurrentProcessId', 'GlobalMemoryStatusEx', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'SetConsoleCtrlHandler', 'Sleep', 'CancelIo', 'SetHandleInformation', 'CreateEventA', 'RtlUnwind', 'SetErrorMode', 'GetQueuedCompletionStatus', 'GetQueuedCompletionStatusEx', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'WaitForSingleObject', 'CancelSynchronousIo', 'GetNamedPipeHandleStateA', 'CancelIoEx', 'SwitchToThread', 'DeleteCriticalSection', 'ConnectNamedPipe', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'SleepConditionVariableCS', 'TryEnterCriticalSection', 'TlsSetValue', 'ReleaseSemaphore', 'WakeConditionVariable', 'InitializeConditionVariable', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'GetNativeSystemInfo', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'GetModuleHandleA', 'LoadLibraryA', 'FormatMessageA', 'DebugBreak', 'GetStartupInfoW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'RtlUnwindEx', 'LoadLibraryW', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'LoadLibraryExW', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetTimeZoneInformation', 'HeapSize', 'GetFullPathNameW', 'SetEndOfFile', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetProcessHeap', 'FlushFileBuffers', 'SetFileCompletionNotificationModes', 'GetCurrentThreadId', 'WaitForSingleObjectEx', 'GetExitCodeThread', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetTickCount', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'ResetEvent', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateTimerQueue', 'SignalObjectAndWait', 'CreateThread', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'GetMessageA', 'TranslateMessage', 'ShowWindow', 'GetSystemMetrics', 'DispatchMessageA', 'MapVirtualKeyW', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['DecodePointer', 'DeleteCriticalSection', 'GetTickCount', 'AcquireSRWLockExclusive', 'AssignProcessToJobObject', 'CompareStringW', 'ConnectNamedPipe', 'CreateDirectoryW', 'CreateEventW', 'CreateFileMappingW', 'CreateFileW', 'CreateIoCompletionPort', 'CreateJobObjectW', 'CreateMutexW', 'CreateNamedPipeW', 'CreateProcessW', 'CreateRemoteThread', 'CreateSemaphoreW', 'DebugBreak', 'DeleteFileW', 'DisconnectNamedPipe', 'DuplicateHandle', 'EncodePointer', 'EnterCriticalSection', 'EnumSystemLocalesEx', 'EnumSystemLocalesW', 'ExitProcess', 'ExpandEnvironmentStringsW', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetComputerNameExW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDateFormatW', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetExitCodeProcess', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileInformationByHandleEx', 'GetFileSizeEx', 'GetFileType', 'GetFullPathNameW', 'GetLocalTime', 'GetLocaleInfoW', 'GetLongPathNameW', 'CreateThread', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetNativeSystemInfo', 'GetOEMCP', 'GetProcAddress', 'GetProcessHandleCount', 'GetProcessHeaps', 'GetProcessId', 'GetProcessTimes', 'GetQueuedCompletionStatus', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemDefaultLCID', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetThreadContext', 'GetThreadId', 'GetThreadLocale', 'GetThreadPriority', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultLangID', 'GetUserDefaultLocaleName', 'GetModuleFileNameA', 'SizeofResource', 'VirtualProtect', 'SetLastError', 'VirtualAlloc', 'LoadLibraryExA', 'LeaveCriticalSection', 'FindResourceA', 'Sleep', 'IsDBCSLeadByte', 'LoadResource', 'WideCharToMultiByte', 'lstrcmpiA', 'GetConsoleOutputCP', 'SetFilePointerEx', 'SetStdHandle', 'IsValidCodePage', 'HeapReAlloc', 'HeapSize', 'LCMapStringW', 'WriteFile', 'VirtualQuery', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'CloseHandle', 'GetLastError', 'MultiByteToWideChar', 'GetCurrentThreadId', 'InitializeCriticalSectionEx', 'GetModuleFileNameW', 'RtlUnwind', 'QueryPerformanceCounter', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeSListHead', 'GetProcessHeap', 'HeapFree', 'IsDebuggerPresent', 'OutputDebugStringW', 'HeapAlloc', 'WriteConsoleW', 'CharNextA', 'MessageBoxA', 'RegQueryInfoKeyW', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegCloseKey', 'CoCreateInstance', 'CoTaskMemFree', 'CoTaskMemRealloc', 'CoTaskMemAlloc', 'VarUI4FromStr'], ['GetCommState', 'WaitNamedPipeA', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'GetStringTypeExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'SetStdHandle', 'SearchPathA', 'MoveFileExW', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'CommConfigDialogW', 'DeleteFileA', 'VerSetConditionMask', 'InterlockedIncrement', 'FindResourceExW', 'DeleteVolumeMountPointA', 'LoadLibraryA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'GetTextExtentExPointW', 'GetCharacterPlacementA', 'MapGenericMask', 'GetEventLogInformation', 'OleQueryLinkFromData'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'GetUserNameA', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'FreeSid', 'EqualSid', 'AllocateAndInitializeSid', 'CryptGenRandom', 'CryptReleaseContext', 'CryptAcquireContextW', 'MessageBoxA', 'CharNextW', 'LoadStringW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsDBCSLeadByteEx', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetConsoleCP', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetFileType', 'GetFileSize', 'CreateFileW', 'GetStdHandle', 'CloseHandle', 'LoadLibraryA', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQueryEx', 'VirtualProtect', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SuspendThread', 'SizeofResource', 'SetThreadPriority', 'SetLastError', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OpenMutexW', 'MoveFileExW', 'LockResource', 'LoadResource', 'LoadLibraryW', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetUserDefaultLangID', 'GetUserDefaultLCID', 'GetThreadTimes', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemTimes', 'GetSystemDefaultLangID', 'GetSystemDefaultLCID', 'GetProcessTimes', 'GetLocalTime', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfoExW', 'GetCPInfo', 'FreeResource', 'InterlockedCompareExchange', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'ExpandEnvironmentStringsW', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'DeleteFileW', 'CreateProcessW', 'CreateMutexW', 'CreateEventW', 'CoUninitialize', 'CoInitialize', 'SHGetSpecialFolderPathW', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'inet_ntoa', 'NetShareEnum', 'NetApiBufferFree'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'BackupWrite', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'InterlockedIncrement', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['CreateFileA', 'DeleteFileA', 'LockFile', 'UnlockFile', 'WriteFile', 'CloseHandle', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'GetModuleFileNameA', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'ConvertThreadToFiber', 'CreateFileMappingA', 'GetCurrentActCtx'], ['lstrlenA', 'UnmapViewOfFile', 'WriteConsoleOutputCharacterA', 'BuildCommDCBAndTimeoutsA', 'LoadResource', 'HeapAlloc', '_lwrite', 'GetQueuedCompletionStatus', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'FindFirstFileExW', 'ConnectNamedPipe', 'GetTickCount', 'GetPriorityClass', 'GlobalAlloc', 'LoadLibraryW', '_hread', 'GetSystemWindowsDirectoryA', 'SetupComm', 'GetModuleFileNameW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'DisconnectNamedPipe', 'GetLastError', 'GetLongPathNameW', 'GetProcAddress', 'GetNumaHighestNodeNumber', 'GetAtomNameA', 'ProcessIdToSessionId', 'FindFirstVolumeMountPointW', 'SetProcessWorkingSetSize', 'GetCurrentProcessId', 'ResetWriteWatch', 'OpenFileMappingA', 'FindNextVolumeA', 'CloseHandle', 'WriteConsoleW', 'GetEnvironmentVariableW', 'GetMailslotInfo', 'GetFullPathNameA', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'SetFilePointer', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'CreateFileW', 'GetCaretPos', 'RegQueryValueExA', 'RegEnumKeyA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', '_dup'], ['CryptDecrypt', 'CryptImportKey', 'CryptAcquireContextA', 'memcpy', '_wcslwr', 'wcsrchr', 'memset', 'RtlUnwind', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetSystemTimeAsFileTime', 'ExpandEnvironmentStringsW', 'CreateThread', 'GetLastError', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualProtect', 'GetProcAddress', 'ReadFile', 'GetFileSize', 'CreateFileW', 'LoadLibraryW', 'Sleep', 'free', 'malloc', '_XcptFilter', '_initterm', '_amsg_exit', '_adjust_fdiv'], ['SetEvent', 'MultiByteToWideChar', 'FreeConsole', 'GetModuleHandleA', 'GetProcAddress', 'GetFileInformationByHandle', 'GetVersion', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetNextDlgTabItem', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['GetCommandLineW', 'GetCPInfo', 'CreateProcessW', 'HeapAlloc', 'GetCurrentProcess', 'SetEvent', 'GetProcessHeap', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetSystemPowerState', 'LocalAlloc', 'RemoveDirectoryW', 'VirtualProtect', 'LocalFree', 'SetFileAttributesW', 'CreateThread', 'CreateFileW', 'HeapSize', 'SetEndOfFile', 'LCMapStringW', 'IsProcessorFeaturePresent', 'WriteConsoleW', 'GetModuleFileNameW', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'EncodePointer', 'RtlUnwind', 'MultiByteToWideChar', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'GetProcAddress', 'SetFilePointer', 'HeapFree', 'CloseHandle', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'ReadFile', 'GetStringTypeW', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'UnhookWinEvent', 'SetWinEventHook', 'CoUninitialize', 'CoSuspendClassObjects', 'CoInitialize', 'OleCreate', 'StgCreateDocfile', 'GetOleaccVersionInfo', 'WindowFromAccessibleObject', 'AccessibleObjectFromEvent'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'SetDllDirectoryW', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'CopyFileA', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperW'], ['ReportEventA', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'CoInitialize', 'ShellExecuteW', 'MessageBoxA'], ['GetLocalTime', 'GetTickCount', 'GetTimeZoneInformation', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'GetVolumeInformationA', 'GetVersion', 'GetFullPathNameA', 'SetCurrentDirectoryA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'lstrlenA', 'IsBadWritePtr', 'lstrcpyA', 'GetDriveTypeA', 'GetLastError', 'SetLastError', 'GetEnvironmentVariableA', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetDiskFreeSpaceA', 'SetErrorMode', 'MoveFileA', 'SetFileAttributesA', 'CloseHandle', 'SetFileTime', 'CreateFileA', 'GetFileAttributesA', 'SystemTimeToFileTime', 'ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetCurrentProcessId', 'InterlockedExchange', 'Sleep', 'GetCurrentThreadId', 'InterlockedCompareExchange', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DisableThreadLibraryCalls', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'CoInitialize', 'CoUninitialize', 'SHGetDesktopFolder', 'SHFileOperationA', 'SHGetMalloc', 'GetDesktopWindow', 'CharLowerBuffA', 'CharUpperBuffA'], ['GetPrivateProfileSectionNamesW', 'CreateTimerQueue', 'CreateMutexW', 'SearchPathW', 'lstrcmpA', 'EnumCalendarInfoA', 'GetModuleHandleExA', 'GetStringTypeA', 'SetLocalTime', 'BuildCommDCBAndTimeoutsA', 'CallNamedPipeA', 'LocalCompact', 'EnumCalendarInfoW', 'VerSetConditionMask', 'SetDefaultCommConfigW', 'InterlockedCompareExchange', 'WriteConsoleInputA', 'BackupSeek', '_lclose', 'GetWindowsDirectoryA', 'FindActCtxSectionStringA', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GlobalAlloc', 'GetFirmwareEnvironmentVariableA', 'LoadLibraryW', 'GetFileAttributesA', 'GetComputerNameExA', 'TransactNamedPipe', 'PulseEvent', 'GetSystemDirectoryA', 'CompareStringW', 'GetDevicePowerState', 'DeactivateActCtx', 'GetConsoleOutputCP', 'SetLastError', 'GetProcAddress', 'RemoveDirectoryA', 'ResetEvent', 'OpenWaitableTimerA', 'OpenMutexA', 'CreateFileMappingA', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'WriteProfileSectionW', 'AddAtomA', 'WaitForMultipleObjects', 'EnumResourceTypesW', 'FindNextFileA', 'GetModuleHandleA', 'SetLocaleInfoW', 'WaitForDebugEvent', 'GetCurrentThreadId', 'DeleteFileW', 'CopyFileExA', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetConsoleAliasW', 'LocalUnlock', 'GetLastError', 'DeleteFileA', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'InterlockedDecrement', 'GetCurrentThread', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapFree', 'FatalAppExitA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'GetLocaleInfoW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetFilePointer', 'IsProcessorFeaturePresent', 'HeapSize', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle', 'CreateFileW', 'GetUserDefaultLCID', 'IsValidLocale', 'LoadMenuA', 'ReportEventW'], ['ScriptGetFontAlternateGlyphs', 'ScriptItemizeOpenType', 'ScriptPlaceOpenType', 'ScriptCacheGetHeight', 'ScriptShape', 'ScriptFreeCache', 'RasGetProjectionInfoW', 'RasDeleteSubEntryW', 'RasGetEapUserIdentityA', 'RasSetEapUserDataA', 'RasGetCredentialsA', 'RasDeleteEntryA', 'RasGetCountryInfoW', 'RasSetEntryDialParamsA', 'RasEditPhonebookEntryW', 'RasDialA', 'ExitProcess', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetProcessHeap', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SuspendThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatus', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateThread', 'CreateIoCompletionPort', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', '_iob'], ['CreateThread', 'GetModuleFileNameA', 'LoadLibraryA', 'lstrcmpiA', 'PathFindFileNameA', 'CallNextHookEx'], ['InterlockedCompareExchange', 'SetComputerNameW', 'SetEvent', 'SetTapeParameters', 'GetModuleHandleW', 'GetConsoleAliasesA', 'GetNumberFormatA', 'ReadConsoleW', 'FatalAppExitW', 'GetCalendarInfoW', 'GetSystemWindowsDirectoryA', 'HeapCreate', 'FindNextVolumeW', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'CancelWaitableTimer', 'ReadFileEx', 'GetTempFileNameA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'IsSystemResumeAutomatic', 'BeginUpdateResourceA', 'QueryDosDeviceW', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'GetConsoleCursorInfo', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'EnumCalendarInfoExA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'LCMapStringW', 'WideCharToMultiByte', 'GetLogicalDriveStringsW', 'SetThreadContext', 'WriteConsoleOutputW', 'GetDefaultCommConfigW', 'TlsGetValue', 'GetConsoleAliasesLengthW', 'CreateJobSet', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'GetParent', 'DdeQueryStringW', 'GetClassInfoExW', 'CreateAcceleratorTableA', 'ChangeMenuW', 'GetCharABCWidthsI', 'GetCharABCWidthsFloatW', 'EnumFontsA', 'GetCharWidthW', 'BackupEventLogA'], ['GetModuleHandleA', 'ShowWindow', 'RegQueryValueA', 'exit', 'memset', 'CreateStatusWindowA', 'free', 'ShellAboutA', '__setusermatherr', '??1_Lockit@std@@QAE@XZ', 'fputc', '_configthreadlocale', '_time64', '_lock_file', 'rand', 'accept'], ['LocalAlloc', 'EncodePointer', 'DecodePointer', 'GetLastError', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetProcessHeap', 'GetFileType', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'HeapSize', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringW', 'RtlUnwind', 'GetStringTypeW', 'RaiseException', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['_mbsstr', 'memset', '_mbsnbcpy'], ['SetLocaleInfoA', 'EnumCalendarInfoA', 'VirtualQuery', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'ReplaceFileW', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReleaseSemaphore', 'SetCurrentDirectoryA', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetupComm', 'CreateMutexW', 'GetConsoleAliasesW', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'SetCaretPos', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'LoadLibraryW', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'GetVersionExW', 'DnsHostnameToComputerNameW', 'GetAtomNameW', 'GetStringTypeExA', 'LCMapStringA', 'InterlockedExchange', 'UpdateResourceA', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetFileTime', 'SetFileAttributesW', 'DeleteFileA', 'SwitchToThread', 'VirtualQuery', 'GetLocaleInfoA', 'CreateFileA', 'GetStartupInfoW', 'HeapAlloc', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetModuleHandleA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RaiseException', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetCharWidthFloatW', 'WinHttpCheckPlatform', 'AlphaBlend'], ['RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'MessageBoxA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'VirtualQuery', 'GetStartupInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary'], ['CompareStringW', 'GetModuleFileNameA', 'LoadLibraryW', 'GetCurrentThread', 'QueryDosDeviceA', 'CreateFileW', 'FileTimeToSystemTime', 'ReadProcessMemory', 'GetModuleHandleA', 'OpenMutexW', 'VirtualAlloc', 'GetEnvironmentVariableA', 'SetSystemTime', 'GetTempPathW', 'SetSetupSave', 'ComPlusMigrate', 'DowngradeAPL', 'SetSetupOpen', 'CoRegCleanup', 'CreateServiceW', 'RegCloseKey', 'RegLoadKeyA', 'CryptSignHashA', 'CreateServiceW', 'RegOpenKeyA', 'LogonUserW', 'IsTextUnicode', 'RegCreateKeyExA', 'OpenEventLogW', 'StartServiceW', 'RegRestoreKeyW', 'RegUnLoadKeyA', 'IsValidSid'], ['CloseHandle', 'WaitForSingleObject', 'Sleep', 'CreateDirectoryA', 'GetTempPathA', 'GetModuleFileNameA', 'GetTickCount', 'LCMapStringA', 'SetEndOfFile', 'LoadLibraryA', 'GetOEMCP', 'GetLastError', 'DeleteFileA', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'HeapFree', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'WriteFile', 'ReadFile', 'GetProcAddress', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'MultiByteToWideChar', 'GetStringTypeA', 'GetStringTypeW', 'CreateFileA', 'GetCPInfo', 'GetACP', 'LCMapStringW', 'ShellExecuteExA', 'timeGetTime'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StrokePath', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'ReadConsoleW', 'InitializeCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'GetBinaryTypeW', 'ReplaceFileA', 'GetStdHandle', 'SetFilePointer', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetLastError', 'UnregisterWait', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['CreateFileW', 'GetFileAttributesW', 'GetVersionExW', 'ResumeThread', 'GetModuleHandleA', 'CreateEventW', 'MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'CopyFileA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'SetEvent', 'TerminateThread', 'DeleteFileW', 'CloseHandle', 'LoadLibraryW', 'CreateThread', 'GetOverlappedResult', 'VirtualProtectEx', 'GetWindowsDirectoryW', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetFileSize', 'DeleteCriticalSection', 'ExitProcess', 'GetCurrentProcessId', 'CreateProcessW', 'GetModuleHandleW', 'CreateRemoteThread', 'CreateProcessA', 'CreateEventA', 'ConnectNamedPipe', 'GetComputerNameA', 'LocalAlloc', 'FreeLibrary', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetTempPathW', 'GetTickCount', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindClose', 'WaitForSingleObject', 'InitializeCriticalSection', 'CreatePipe', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'CreateNamedPipeW', 'GetModuleFileNameW', 'TerminateProcess', 'InterlockedDecrement', 'ReadFile', 'WriteFile', 'GetCurrentProcess', 'GetCommandLineW', 'EnterCriticalSection', 'SetHandleInformation', 'WriteProcessMemory', 'CancelIo', 'DecodePointer', 'SetEndOfFile', 'HeapSize', 'WriteConsoleW', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'ReadConsoleW', 'SetFilePointerEx', 'LCMapStringW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileW', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'WideCharToMultiByte', 'EncodePointer', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleHandleExW', 'GetACP', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FindFirstFileExW', 'wsprintfW', 'LookupPrivilegeNameW', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CryptAcquireContextW', 'CryptGenRandom', 'CopySid', 'IsValidSid', 'LogonUserA', 'OpenProcessToken', 'ConvertSidToStringSidW', 'GetLengthSid', 'LookupAccountSidW', 'GetTokenInformation', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'CoCreateGuid', 'CoTaskMemFree', 'CoSetProxyBlanket', 'CoInitializeSecurity', 'CoInitializeEx', 'CoCreateInstance', 'CoUninitialize', 'SysFreeString', 'SysAllocString', 'SysStringLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'VariantClear', 'SafeArrayCreate', 'GetIpNetTable', 'ntohl', 'WSAStartup', 'FreeAddrInfoW', 'htonl', 'getnameinfo', 'WSACleanup', 'GetAddrInfoW', 'CredUIParseUserNameW', 'NetApiBufferFree', 'NetGetDCName'], ['GlobalAlloc', 'SetFilePointer', 'ReadFile', 'GlobalFree', 'WriteFile', 'GetFileSize', 'FindClose', 'FindNextFileA', 'DeleteFileA', 'SetFileAttributesA', 'CloseHandle', 'SetFileTime', 'GetFileTime', 'CreateFileA', 'FindFirstFileA', 'GetDriveTypeA', 'FreeLibrary', 'ReleaseMutex', 'ResumeThread', 'SetThreadPriority', 'GetLastError', 'WaitForSingleObject', 'CreateMutexA', 'CreateThread', 'GetCommandLineA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'GetStringTypeW', 'FlushFileBuffers', 'RtlUnwind', 'GetVersion', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'SetStdHandle', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'MessageBoxA'], ['memcpy', 'ProcessGroupPolicyCompleted', 'GetVersion', 'GetNativeSystemInfo', 'GetUserDefaultLCID', 'RegisterShellHookWindow', 'MprConfigInterfaceCreate', 'RegRestoreKeyA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'sndPlaySoundA'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxW', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['SetupDiSetSelectedDriverW', 'CM_Get_Device_Interface_List_ExW', 'CM_Get_Resource_Conflict_DetailsW', 'ShowWindowAsync', 'RegisterClassExA', 'CloseClipboard', 'wsprintfW', 'WindowFromPoint', 'DefFrameProcW', 'GetKeyboardState', 'GetClipCursor', 'ChildWindowFromPoint', 'WaitMessage', 'ExcludeUpdateRgn', 'GetMenuItemID', 'GetScrollBarInfo', 'DestroyWindow', 'EqualRect', 'StrFormatByteSizeW', 'PathGetCharTypeW', 'PathGetCharTypeA', 'GetExpandedNameW', 'InstallColorProfileW', 'LookupAccountNameA', 'BackupEventLogA', 'CryptContextAddRef', 'ChangeServiceConfigW', 'EqualDomainSid', 'ImpersonateAnonymousToken', 'CryptDestroyKey', 'FreeEncryptionCertificateHashList', 'CryptMsgDuplicate', 'CryptGetOIDFunctionValue', 'CertAddSerializedElementToStore', 'GetTextExtentPoint32W', 'SetStretchBltMode', 'CreatePalette', 'CreateEllipticRgn', 'GetWorldTransform', 'PlaySoundW', 'midiOutClose', 'waveOutGetID', 'RpcAsyncAbortCall', 'IUnknown_QueryInterface_Proxy', 'CryptCATGetCatAttrInfo', 'VariantTimeToSystemTime', 'SafeArrayCreateVectorEx', 'DsListSitesW', 'GetIpAddrTable', 'InternetCloseHandle', 'GetProfileIntA', 'WaitForSingleObjectEx', 'HeapAlloc', 'GetCommModemStatus', 'GetCurrentThreadId', 'VerifyVersionInfoA', 'FatalAppExitA', 'CloseHandle', 'GetModuleHandleW', 'OutputDebugStringA', 'SetHandleInformation', 'GetCurrentProcessorNumber', 'LocalUnlock', 'SetErrorMode', 'SetEndOfFile', 'GetConsoleWindow', 'FlushConsoleInputBuffer', 'FreeEnvironmentStringsA', 'bsearch', 'memset', 'RasGetCredentialsW', 'OleDoAutoConvert', 'CoFreeLibrary', 'ReadPwrScheme'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExW', 'fputc', 'free', 'memset', '_lock_file', 'SHChangeNotifyRegister', 'accept', 'PropertySheet', '__setusermatherr', 'rand', '??1_Lockit@std@@QAE@XZ', '_configthreadlocale', 'exit', '_time64'], ['GetNamedPipeHandleStateW', 'CreateNamedPipeA', 'CallNamedPipeW', 'TerminateThread', 'GetExitCodeProcess', 'GetVersionExW', 'VerifyVersionInfoW', 'SetConsoleCP', 'GetConsoleAliasesLengthA', 'VerLanguageNameW', 'FindFirstFileExA', 'VerifyVersionInfoA', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'SetVolumeMountPointW', 'GetLongPathNameA', 'CopyFileA', 'TlsGetValue', 'SetConsoleCursorInfo', 'TzSpecificLocalTimeToSystemTime', 'SetProcessShutdownParameters', 'ReleaseMutex', 'BuildCommDCBAndTimeoutsA', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'SleepEx', 'TlsSetValue', 'MoveFileA', 'GetCommandLineW', 'InterlockedDecrement', 'DeleteFileA', 'CreateActCtxA', 'SetFileAttributesA', 'GetPrivateProfileIntW', 'GetProcessHeap', 'CreateNamedPipeW', 'ReadConsoleOutputCharacterA', 'GetStartupInfoA', 'GetDiskFreeSpaceExW', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'GetProfileStringA', 'GetCalendarInfoW', 'GetTickCount', 'GetStringTypeW', 'DebugBreak', 'FindFirstFileA', 'lstrcmpA', 'WriteFile', 'GetConsoleMode', 'WriteProfileStringW', 'lstrcatW', 'SetFirmwareEnvironmentVariableA', 'InterlockedExchange', 'SetCriticalSectionSpinCount', 'DefineDosDeviceW', 'WriteConsoleW', 'InterlockedIncrement', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileStructA', 'TryEnterCriticalSection', 'GetPrivateProfileStructW', 'GetFileAttributesExW', 'HeapWalk', 'CreateIoCompletionPort', 'PeekConsoleInputA', 'GetNumberFormatW', 'FindResourceExW', 'SetLocalTime', 'GetQueuedCompletionStatus', 'CreateSemaphoreA', 'GetThreadLocale', 'SetFileShortNameA', 'lstrcpyW', 'ReplaceFileA', 'MoveFileExA', 'GetConsoleCP', 'GetVolumePathNameA', 'FlushConsoleInputBuffer', 'SearchPathA', 'FreeConsole', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputA', 'LocalShrink', 'GetCommState', 'EnumSystemLocalesW', 'ProcessIdToSessionId', 'SetMessageWaitingIndicator', 'DeleteTimerQueueTimer', 'GetWriteWatch', 'OpenSemaphoreW', 'GetConsoleScreenBufferInfo', 'ClearCommBreak', 'TlsAlloc', 'GetSystemTimeAdjustment', 'GetComputerNameW', 'HeapValidate', 'GetLastError', 'WaitForMultipleObjectsEx', 'SignalObjectAndWait', 'GetSystemPowerStatus', 'VirtualLock', 'SetWaitableTimer', 'ChangeTimerQueueTimer', 'GetProcessHandleCount', 'FatalAppExitA', 'lstrcpynW', 'SetNamedPipeHandleState', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeW', 'FindNextVolumeMountPointA', 'GetFullPathNameA', 'WriteProfileStringA', 'GlobalAddAtomW', 'LeaveCriticalSection', 'SetCurrentDirectoryW', 'LockFile', 'OpenMutexW', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'IsBadReadPtr', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'HeapSetInformation', 'GetStartupInfoW', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'HeapAlloc', 'GetModuleFileNameA', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'HeapCreate', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'LoadLibraryW', 'GetLocaleInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetLocaleInfoA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'OutputDebugStringA', 'OutputDebugStringW', 'SetFilePointer', 'SetStdHandle', 'CreateFileW', 'CloseHandle', 'FlushFileBuffers'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'BackupWrite', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'InterlockedIncrement', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'SetEndOfFile', 'GetCurrentProcess', 'GetModuleHandleA', 'InterlockedExchange', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'ExitProcess', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'GetTickCount', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetProcessHeap', 'GlobalFlags', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'LoadLibraryW', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'lstrlenA', 'lstrcmpA', 'InterlockedIncrement', 'GetCurrentThreadId', 'CloseHandle', 'MultiByteToWideChar', 'FormatMessageW', 'lstrlenW', 'WideCharToMultiByte', 'GetCurrentProcessId', 'FreeLibrary', 'LoadResource', 'SizeofResource', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetProcAddress', 'TlsFree', 'GlobalFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalAlloc', 'GlobalHandle', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalLock', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalFree', 'GetLastError', 'SetLastError', 'FindResourceW', 'CreateProcessW', 'QueryPerformanceCounter', 'GetModuleHandleW', 'GetDateFormatW', 'OpenProcess', 'Sleep', 'GetVersionExW', 'CreateFileW', 'LocalAlloc', 'LockResource', 'VirtualProtect', 'GetWindowsDirectoryW', 'GetSystemTime', 'SetFileAttributesW', 'GetVolumeInformationW', 'GetStockObject', 'DeleteDC', 'SetAbortProc', 'SetRectRgn', 'CombineRgn', 'EndDoc', 'AbortDoc', 'GetTextMetricsW', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'DeleteObject', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetDeviceCaps', 'SystemParametersInfoA', 'SetWindowPos', 'SetWindowLongW', 'GetMenu', 'CallWindowProcW', 'DefWindowProcW', 'GetDlgCtrlID', 'PtInRect', 'CopyRect', 'AdjustWindowRectEx', 'RegisterClassW', 'GetClassInfoW', 'GetClassInfoExW', 'CreateWindowExW', 'PostMessageW', 'GetClientRect', 'SetMenu', 'MapWindowPoints', 'GetMessagePos', 'GetMessageTime', 'GetTopWindow', 'GetDlgItem', 'GetForegroundWindow', 'IsWindow', 'RemovePropW', 'GetPropW', 'SetPropW', 'GetClassNameW', 'GetClassLongW', 'GetCapture', 'WinHelpW', 'LoadIconW', 'RegisterWindowMessageW', 'GetWindowTextW', 'IsIconic', 'SetWindowTextW', 'ClientToScreen', 'DestroyMenu', 'TabbedTextOutW', 'DrawTextW', 'DrawTextExW', 'GrayStringW', 'PostQuitMessage', 'LoadCursorW', 'GetSystemMetrics', 'GetWindowPlacement', 'ReleaseDC', 'GetWindowRect', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'EnableMenuItem', 'CheckMenuItem', 'GetSysColor', 'GetSysColorBrush', 'SetWindowsHookExW', 'CallNextHookEx', 'DispatchMessageW', 'GetKeyState', 'PeekMessageW', 'ValidateRect', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetWindowThreadProcessId', 'GetParent', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxW', 'UnhookWindowsHookEx', 'DestroyWindow', 'SetForegroundWindow', 'IsClipboardFormatAvailable', 'SendDlgItemMessageW', 'CheckRadioButton', 'SendMessageW', 'SetClipboardData', 'GetDC', 'GetSaveFileNameW', 'ChooseColorW', 'GetOpenFileNameW', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoInitialize', 'CoUninitialize', 'VariantChangeType', 'VariantClear', 'VariantInit', 'RegSetValueExW', 'RegCloseKey', 'RegisterServiceCtrlHandlerW', 'RegOpenKeyExW', 'FreeSid', 'SetEntriesInAclW', 'AllocateAndInitializeSid', 'QueryServiceStatus', 'LookupPrivilegeValueW', 'RegDeleteKeyW', 'InitializeSecurityDescriptor', 'RegOpenKeyW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegEnumKeyW', 'GetTokenInformation', 'OpenServiceW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'OpenThreadToken', 'DeleteService', 'OpenProcessToken', 'CreateStdAccessibleObject', 'LresultFromObject'], ['CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'Sleep', 'lstrlenW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'CreateMutexW', 'WaitForSingleObject', 'LoadLibraryA', 'GetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow', 'MoveToEx', 'GetMetaRgn', 'GdiGetBatchLimit'], ['GetTickCount', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'GetModuleHandleA', 'lstrlenW', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GlobalAddAtomW', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'WriteConsoleA', 'GetLastError', 'SizeofResource', 'LoadResource', 'FindResourceW', 'FreeEnvironmentStringsA', 'ExitProcess', 'MessageBeep', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'SetCapture', 'GetSysColorBrush', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'GetNextDlgGroupItem', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'DestroyMenu', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindow', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'CharNextW', 'CharUpperW', 'SetForegroundWindow', 'ReleaseCapture', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'SetCursor', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'GetParent', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageW', 'PostQuitMessage', 'SetTimer', 'LoadCursorW', 'LoadBitmapW', 'UpdateWindow', 'GetSystemMenu', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadIconW', 'AppendMenuW', 'ShowWindow', 'GetSystemMetrics', 'SendMessageW', 'EnableWindow', 'DefWindowProcW', 'UnregisterClassA', 'ExtSelectClipRgn', 'ExtTextOutW', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'TextOutW', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'CreateFontW', 'GetViewportExtEx', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'BitBlt', 'CreateCompatibleDC', 'GetObjectW', 'Escape', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'SysFreeString'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'WriteFile', 'VirtualQuery', 'TerminateThread', 'TerminateProcess', 'PrepareTape', 'OpenFile', 'LocalSize', 'LoadLibraryA', 'IsBadHugeWritePtr', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentProcess', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FindResourceA', 'EnumCalendarInfoA', 'AreFileApisANSI', 'TranslateAcceleratorA', 'SetDoubleClickTime', 'SendDlgItemMessageW', 'OemToCharBuffW', 'MessageBoxIndirectW', 'MessageBoxA', 'LoadStringA', 'LoadCursorFromFileW', 'GetSystemMetrics', 'GetKeyNameTextW', 'CheckMenuRadioItem', 'CharNextA', 'CharToOemA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'SendMessageA', '_except_handler4_common', '__p___argv', '_libm_sse2_sqrt_precise', '_callnewh', '__p__commode', '_configthreadlocale', 'VariantChangeTypeEx', 'RaiseException'], ['GetCommState', 'WaitNamedPipeA', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'LoadLibraryA', 'MoveFileExW', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'CommConfigDialogW', 'DeleteFileA', 'VerSetConditionMask', 'InterlockedIncrement', 'FindResourceExW', 'DeleteVolumeMountPointA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'GetTextExtentExPointW', 'GetCharacterPlacementA', 'MapGenericMask', 'GetEventLogInformation', 'OleQueryLinkFromData'], ['GetModuleHandleA', 'Sleep', 'GetTempPathA', 'GetWindowsDirectoryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapAlloc', 'HeapValidate', 'VirtualProtect', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'WriteFile', 'OutputDebugStringA', 'OutputDebugStringW', 'WriteConsoleW', 'CloseHandle', 'WaitForSingleObjectEx', 'CreateThread', 'GetStringTypeW', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'EncodePointer', 'DecodePointer', 'CreateFileW', 'GetSystemInfo', 'GetModuleFileNameA', 'SystemFunction036'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'SetDllDirectoryW', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'GetSystemWow64DirectoryW', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperW'], ['GetModuleHandleW', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InitializeSListHead', 'GetCurrentThreadId', 'ReadConsoleW', 'GetTimeZoneInformation', 'FreeLibraryAndExitThread', 'IsDebuggerPresent', 'ExitThread', 'QueryPerformanceFrequency', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'lstrlenA', 'GetCurrentProcess', 'ReadFile', 'VirtualQuery', 'GetProcessHeap', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'SetLastError', 'GlobalAlloc', 'GlobalFree', 'CloseHandle', 'Sleep', 'lstrlenW', 'GetVersionExW', 'LoadLibraryW', 'GetProcAddress', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'FindFirstFileA', 'FindNextFileA', 'CopyFileA', 'GetFileAttributesA', 'CreateFileA', 'SystemTimeToFileTime', 'GetSystemTime', 'GetFileTime', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'GetFileSize', 'lstrcatA', 'VirtualAlloc', 'lstrcpyA', 'EncodePointer', 'RaiseException', 'InterlockedFlushSList', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStringTypeW', 'GetACP', 'CompareStringW', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'GetStdHandle', 'GetFileType', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'OutputDebugStringA', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW', 'GetVersionExA', 'AreFileApisANSI', 'TryEnterCriticalSection', 'HeapCreate', 'GetFullPathNameW', 'InterlockedCompareExchange', 'GetDiskFreeSpaceW', 'LockFile', 'GetFullPathNameA', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'GetFileAttributesW', 'UnmapViewOfFile', 'HeapValidate', 'GetTempPathA', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesExW', 'FlushViewOfFile', 'DeleteFileA', 'DeleteFileW', 'GetSystemInfo', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'CreateFileMappingA', 'LockFileEx', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'GetTickCount', 'VirtualFree', 'HeapFree', 'GetLastError', 'WTSGetActiveConsoleSessionId', 'ExpandEnvironmentStringsA', 'DeleteCriticalSection', 'CreateThread', 'WaitForSingleObject', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'LocalFree', 'CryptGenRandom', 'AdjustTokenPrivileges', 'RegDisablePredefinedCacheEx', 'LookupPrivilegeValueA', 'GetUserNameA', 'ImpersonateLoggedOnUser', 'OpenProcessToken', 'ConvertSidToStringSidW', 'GetTokenInformation', 'CryptReleaseContext', 'RegQueryValueExW', 'RegEnumValueW', 'CryptGetHashParam', 'RegOpenKeyExW', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CredFree', 'CredEnumerateW', 'CryptAcquireContextW', 'CryptAcquireContextA', 'RegOpenKeyExA', 'DuplicateToken', 'RevertToSelf', 'RegEnumKeyA', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'ExpandEnvironmentStringsForUserA', 'GetProfilesDirectoryA', 'StrCatW', 'wnsprintfW', 'StrChrW', 'StrCpyNW', 'StrChrA', 'wnsprintfA', 'StrStrA', 'StrCmpW', 'CryptUnprotectData', 'strncat', 'strncpy', '_alldiv', '_aulldiv', 'strrchr', 'memcmp', 'memcpy', 'strstr', 'memchr', 'memmove', 'strchr', '_wcsicmp', 'memset', 'strncmp', '_wcslwr', 'WTSQueryUserToken', 'FindCloseUrlCache', 'FindNextUrlCacheEntryW', 'FindFirstUrlCacheEntryW', 'wsprintfA', 'SHGetSpecialFolderPathA', 'send', 'closesocket', 'WSAGetLastError', 'recv'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetEnvironmentVariableA', 'WaitForSingleObject', 'GetModuleHandleA', 'GetLocaleInfoA', 'Sleep', 'RemoveDirectoryTransactedA', 'GetUserDefaultLCID', 'CreateThread', 'GetLastError', 'DeleteFileA', 'HeapAlloc', 'lstrcpynA', 'lstrcmpiW', 'GetModuleFileNameA', 'GetCurrentProcess', 'GetSystemPowerStatus', 'CreateMutexA', 'OpenProcess', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'GetSystemWow64DirectoryW', 'GetTimeZoneInformation', 'OpenMutexA', 'Process32NextW', 'GlobalAlloc', 'lstrlenA', 'Process32FirstW', 'GlobalFree', 'GetSystemInfo', 'GetLogicalDriveStringsA', 'GlobalMemoryStatusEx', 'WideCharToMultiByte', 'CreateProcessA', 'GetTempFileNameA', 'GetComputerNameA', 'UnmapViewOfFile', 'GetFileInformationByHandle', 'FileTimeToSystemTime', 'GetLocalTime', 'CreateFileMappingA', 'CreateFileA', 'GetTickCount', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'HeapReAlloc', 'OutputDebugStringW', 'GetFileSize', 'CloseHandle', 'CopyFileTransactedA', 'lstrcpyW', 'lstrcatW', 'GetVersionExW', 'CreateDirectoryA', 'SystemTimeToFileTime', 'lstrcpyA', 'GetFileAttributesA', 'LocalFileTimeToFileTime', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'lstrcmpA', 'SetFilePointer', 'SetFileTime', 'WriteFile', 'ReadFile', 'LocalFree', 'FindClose', 'GetDriveTypeA', 'lstrlenW', 'CreateDirectoryTransactedA', 'FreeLibrary', 'GetProcessHeap', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'SetEnvironmentVariableW', 'ReadConsoleW', 'EnumSystemLocalesW', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'GetFileSizeEx', 'HeapSize', 'GetCommandLineW', 'GetCommandLineA', 'WriteConsoleW', 'GetModuleFileNameW', 'GetFileType', 'GetStdHandle', 'GetModuleHandleExW', 'ExitProcess', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'DeleteFileTransactedA', 'MapViewOfFile', 'HeapFree', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleHandleW', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'GetStringTypeW', 'FormatMessageA', 'SetCurrentDirectoryW', 'CreateDirectoryW', 'CreateFileW', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'DeviceIoControl', 'CopyFileW', 'CreateHardLinkW', 'GetFileInformationByHandleEx', 'CreateSymbolicLinkW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'EnumDisplayDevicesA', 'GetSystemMetrics', 'GetWindowRect', 'GetWindowDC', 'wsprintfW', 'GetDesktopWindow', 'wsprintfA', 'RestoreDC', 'BitBlt', 'SaveDC', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'GetDeviceCaps', 'DeleteDC', 'DeleteObject', 'GetTokenInformation', 'CryptGetHashParam', 'CryptDestroyHash', 'RegQueryValueExA', 'GetUserNameA', 'CreateProcessWithTokenW', 'OpenProcessToken', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'DuplicateTokenEx', 'RegQueryValueExW', 'CryptReleaseContext', 'RegCloseKey', 'RegEnumKeyExW', 'RegOpenKeyExW', 'CryptAcquireContextA', 'CredEnumerateW', 'CredFree', 'CryptCreateHash', 'CryptHashData', 'ShellExecuteA', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoUninitialize', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'CreateTransaction', 'CommitTransaction', 'RollbackTransaction', 'WinHttpSetTimeouts', 'WinHttpQueryDataAvailable', 'WinHttpSendRequest', 'WinHttpCloseHandle', 'WinHttpReadData', 'WinHttpSetOption', 'WinHttpReceiveResponse', 'WinHttpOpen', 'WinHttpConnect', 'WinHttpOpenRequest', 'PathCombineW', 'StrCmpNW', 'StrToIntA', 'StrStrIW', 'CryptStringToBinaryA', 'CryptUnprotectData', 'GetUserProfileDirectoryA', 'BCryptDestroyKey', 'BCryptDecrypt', 'BCryptOpenAlgorithmProvider', 'BCryptCloseAlgorithmProvider', 'BCryptGenerateSymmetricKey', 'BCryptSetProperty', 'GdiplusStartup', 'GdiplusShutdown', 'GdipGetImageEncoders', 'GdipCloneImage', 'GdipAlloc', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipFree', 'GdipSaveImageToFile', 'GdipGetImageEncodersSize'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleTitleA', 'CreateRemoteThread', 'LoadLibraryW', 'GetLocaleInfoW', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'GetVersionExW', 'GetAtomNameW', 'GetStringTypeExA', 'LCMapStringA', 'InterlockedExchange', 'UpdateResourceA', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetFileTime', 'SetFileAttributesW', 'DeleteFileA', 'SwitchToThread', 'VirtualQuery', 'GetConsoleAliasesLengthW', 'CreateFileA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'ExitProcess', 'GetStartupInfoW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'CloseHandle', 'WriteFile', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'RaiseException', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration', 'AlphaBlend'], ['SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'SetProcessPriorityBoost', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'InitAtomTable', 'GetFileAttributesW', 'CreateFileW', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'SetFileApisToANSI', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'WriteConsoleW', 'CloseHandle', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'DeleteFileA', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'DefDlgProcW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'CopyFileA', 'SetFileAttributesA', 'CreateDirectoryA', 'Process32First', 'CreateMutexA', 'WaitForSingleObject', 'CreateToolhelp32Snapshot', 'Process32Next', 'GetModuleFileNameA', 'MultiByteToWideChar', 'CreateFileW', 'DecodePointer', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCommandLineW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceFrequency', 'CloseHandle', 'WaitForSingleObjectEx', 'Sleep', 'GetExitCodeThread', 'InitializeCriticalSectionEx', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'WriteConsoleW', 'EmptyClipboard', 'CloseClipboard', 'GetClipboardData', 'SetClipboardData', 'IsClipboardFormatAvailable', 'LoadStringA', 'GetKeyState', 'OpenClipboard', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'IsValidURL', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'EnumResourceTypesA', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'SetConsoleCursorPosition', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedDecrement', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'WriteProfileSectionA', 'RemoveDirectoryA', 'SetStdHandle', 'LocalAlloc', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'FoldStringA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'QueryPerformanceFrequency', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'DeleteFileW', 'GetConsoleProcessList', 'DebugBreak', 'GetCommState', 'InterlockedFlushSList', 'VerSetConditionMask', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'RaiseException', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['Rectangle', 'GetDCBrushColor', 'GetViewportExtEx', 'CoGetApartmentType', 'CoGetObjectContext', 'CreateFileW', 'HeapSize', 'ReadConsoleW', 'GetModuleHandleA', 'FreeConsole', 'GetModuleHandleW', 'RaiseException', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'MultiByteToWideChar', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableSRW', 'InitOnceComplete', 'InitOnceBeginInitialize', 'GetStringTypeW', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'TryAcquireSRWLockExclusive', 'WideCharToMultiByte', 'CloseHandle', 'WaitForSingleObjectEx', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetSystemTimeAsFileTime', 'GetProcAddress', 'GetCPInfo', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'InitializeSListHead', 'SetStdHandle', 'RtlUnwind', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'WriteConsoleW'], ['SetCurrentDirectoryA', 'FindFirstFileA', 'FindNextFileA', 'GetFileAttributesA', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetModuleFileNameA', 'GetModuleHandleExA', 'GetProcAddress', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'LoadLibraryA', 'GetComputerNameA'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'ShellExecuteA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['CreateThread', 'ExitProcess', 'GetComputerNameA', 'GetModuleFileNameA', 'GetModuleHandleW', 'GetProcAddress', 'SetErrorMode', 'Sleep', 'VirtualAllocExNuma', 'PathFindFileNameA', 'malloc', 'free', 'memset', 'strcmp', '_strcmpi', 'strcpy'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetPrivateProfileIntA', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'ReadConsoleOutputW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'GlobalWire', 'WriteConsoleInputW', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'SetVolumeMountPointA', 'EnumCalendarInfoA', 'SetProcessPriorityBoost', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesA', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'GetPrivateProfileIntW', 'DeleteAtom', 'WriteConsoleOutputCharacterW', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'GetACP', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW', 'GetCharWidth32A'], ['InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateMutexW', 'WaitForSingleObject', 'InterlockedCompareExchange', 'ReleaseMutex', 'CloseHandle', 'GetLastError', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'DeleteFileA', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'RtlUnwind', 'MultiByteToWideChar', 'ReadFile', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'SetFilePointer', 'RaiseException', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'LoadLibraryA', 'GetModuleHandleA', 'GetTimeZoneInformation', 'SetEndOfFile', 'GetProcessHeap', 'HeapSize', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA'], ['CryptGenKey', 'CryptBinaryToStringA', 'GetIpNetTable', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'NetShareEnum', 'RmGetList', 'ShellExecuteW', 'ShowWindow', 'closesocket'], ['GetSysColorBrush', 'MessageBeep', 'MessageBoxW', 'MessageBoxA', 'GetSystemMetrics', 'SendNotifyMessageA', 'TlsGetValue', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetLastError', 'GetCurrentProcessId', 'GetCurrentThreadId', 'VirtualAlloc', 'GetModuleHandleA', 'GetProcAddress', 'MultiByteToWideChar', 'FreeConsole', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetEnvironmentStringsW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'WriteConsoleW', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP'], ['PostQuitMessage', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'DestroyMenu', 'RegisterWindowMessageA', 'LoadIconA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetForegroundWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'GetClientRect', 'GetMenu', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetFocus', 'ClientToScreen', 'GetWindow', 'GetDlgCtrlID', 'GetWindowRect', 'GetClassNameA', 'PtInRect', 'GetWindowTextA', 'SetWindowTextA', 'UnregisterClassA', 'SetWindowsHookExA', 'CallNextHookEx', 'DispatchMessageA', 'GetKeyState', 'PeekMessageA', 'ValidateRect', 'LoadCursorA', 'GetSystemMetrics', 'GetDC', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'UnhookWindowsHookEx', 'GetWindowThreadProcessId', 'SendMessageA', 'GetParent', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'VariantInit', 'VariantClear', 'VariantChangeType', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'GetVersion', 'CloseHandle', 'GetCurrentThreadId', 'CompareStringA', 'GetCurrentDirectoryA', 'VirtualProtect', 'GetModuleFileNameA', 'GetDiskFreeSpaceA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'CreateProcessA', 'GetStdHandle', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'ExitProcess', 'HeapSize', 'Sleep', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetProcessHeap', 'GetCommandLineA', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'HeapFree', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'GetOEMCP', 'GetCPInfo', 'GetLocaleInfoA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'GetThreadLocale', 'GlobalGetAtomNameA', 'GlobalFlags', 'lstrcmpA', 'InterlockedIncrement', 'FreeLibrary', 'InterlockedDecrement', 'GetModuleHandleA', 'GetProcAddress', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetCurrentProcessId', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'QueryPerformanceCounter', 'SetLastError', 'WideCharToMultiByte', 'lstrlenA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetStockObject', 'GetDeviceCaps', 'DeleteObject', 'CreateBitmap', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'ExtTextOutA', 'SaveDC', 'RestoreDC', 'SetMapMode', 'PtVisible', 'RectVisible', 'TextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'LresultFromObject', 'CreateStdAccessibleObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePatternBrush', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'wglGetCurrentDC', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyAcceleratorTable', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableA', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateILockBytesOnHGlobal', 'GetHGlobalFromILockBytes', 'OleGetIconOfClass', 'OleDraw', 'OleSetMenuDescriptor', 'OleSetContainedObject', 'OleSave', 'OleLoad', 'OleUninitialize', 'OleInitialize', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetAce', 'ImageList_Remove', 'GetOpenFileNameW', 'LineTo', 'IcmpSendEcho', 'WNetUseConnectionW', 'CoGetObject', 'VariantInit', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'connect'], ['GetModuleHandleA', 'ReleaseDC', 'GetUserNameW', '_CorExeMain', 'ImageList_SetBkColor', 'SHGetIconOverlayIndexA'], ['GetDefaultCommConfigW', 'UpdateResourceA', 'InterlockedIncrement', 'GetComputerNameW', 'WaitNamedPipeW', 'GlobalAlloc', 'LeaveCriticalSection', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'RaiseException', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'EnterCriticalSection', 'GetStringTypeA', 'LoadLibraryA', 'DnsHostnameToComputerNameA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'LoadLibraryExA', 'CreateMailslotA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetConsoleAliasesLengthW', 'GetLocaleInfoA', 'SetThreadContext', 'GetComputerNameA', 'GetVolumeNameForVolumeMountPointA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'RegQueryValueExA', 'CloseEventLog'], ['MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'GetMailslotInfo', 'lstrlenW', 'GetConsoleAliasesW', 'GetStdHandle', 'GetCPInfoExW', 'SetConsoleTextAttribute', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'InterlockedPushEntrySList', 'AllocConsole', 'GetLastError', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ClientToScreen', 'ClearEventLogW'], ['SHGetDiskFreeSpaceA', '_CorExeMain', 'RegQueryValueA', 'UpdateWindow', 'GetModuleHandleA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'ShellExecuteA', 'sndPlaySoundA', 'LresultFromObject'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetModuleHandleA', 'WSASend', 'RegOpenKeyExW', 'QueryContextAttributesW', 'CertDuplicateStore', 'NtCreateFile', 'CommandLineToArgvW', 'PdhGetFormattedCounterValue', 'CoInitializeSecurity', 'SysFreeString', 'GetIfTable2', 'CallNtPowerInformation', 'NetApiBufferFree', 'BCryptGenRandom', 'GetModuleFileNameExW'], ['GetDefaultCommConfigW', 'InterlockedIncrement', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'SetFileTime', 'GetLocaleInfoW', 'SwitchToFiber', 'FreeConsole', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'WriteConsoleW', 'CreateActCtxA', 'GetTempPathW', 'LCMapStringA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetCPInfoExW', 'GetLongPathNameW', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'AllocConsole', 'WriteProfileSectionA', 'GetFirmwareEnvironmentVariableW', 'EnterCriticalSection', 'SetFileAttributesA', 'FindClose', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'MoveFileA', 'BeginUpdateResourceA', 'GlobalGetAtomNameW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'SetConsoleTitleW', 'LoadLibraryExA', 'GetStringTypeW', 'GetConsoleTitleW', 'GetFileTime', 'PeekConsoleInputA', 'SetCalendarInfoA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'GetVolumeNameForVolumeMountPointA', 'GetLocaleInfoA', 'GetSystemDefaultLangID', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration'], ['WSACleanup', 'recv', 'socket', 'getservbyname', 'WSASetLastError', 'WSAAsyncSelect', 'closesocket', 'gethostbyaddr', 'gethostbyname', 'send', 'getservbyport', 'gethostname', 'inet_ntoa', 'connect', 'inet_addr', 'WSAStartup', 'ioctlsocket', 'htonl', 'WSAGetLastError', 'htons', 'ntohs', 'shutdown', 'waveOutGetVolume', 'mixerGetLineInfoW', 'mixerSetControlDetails', 'mixerGetControlDetailsW', 'mixerGetLineControlsW', 'mixerGetDevCapsW', 'waveOutSetVolume', 'mixerClose', 'mixerOpen', 'mciSendStringW', 'joyGetDevCapsW', 'joyGetPosEx', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'ImageList_GetIconSize', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'ImageList_ReplaceIcon', 'CreateStatusWindowW', 'InitCommonControlsEx', 'GetModuleBaseNameW', 'GetModuleFileNameExW', 'InternetReadFile', 'InternetOpenUrlW', 'InternetCloseHandle', 'InternetReadFileExA', 'InternetOpenW', 'GlobalUnlock', 'GetEnvironmentVariableW', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemDirectoryA', 'GetProcAddress', 'LoadLibraryA', 'GetCurrentThreadId', 'lstrcmpiW', 'GetStringTypeExW', 'CreateThread', 'SetThreadPriority', 'GetExitCodeThread', 'CloseHandle', 'CreateMutexW', 'GetLastError', 'LoadLibraryW', 'GetModuleHandleW', 'GetVersionExW', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetFileAttributesW', 'GetFullPathNameW', 'GetSystemTimeAsFileTime', 'GetShortPathNameW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'FileTimeToLocalFileTime', 'SetEnvironmentVariableW', 'Beep', 'MoveFileW', 'OutputDebugStringW', 'CreateProcessW', 'MultiByteToWideChar', 'GetExitCodeProcess', 'WriteProcessMemory', 'ReadProcessMemory', 'GetCurrentProcessId', 'OpenProcess', 'TerminateProcess', 'SetPriorityClass', 'SetLastError', 'GetLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'GlobalFree', 'SetVolumeLabelW', 'CreateFileW', 'DeviceIoControl', 'GetDriveTypeW', 'GetVolumeInformationW', 'GetDiskFreeSpaceW', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'ReadFile', 'WriteFile', 'DeleteFileW', 'CopyFileW', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'SetFileTime', 'GetFileSizeEx', 'GetSystemTime', 'GetSystemDefaultUILanguage', 'GetComputerNameW', 'GetSystemWindowsDirectoryW', 'GetTempPathW', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualProtect', 'QueryDosDeviceW', 'CompareStringW', 'RemoveDirectoryW', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'FormatMessageW', 'GetPrivateProfileStringW', 'GetPrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'WritePrivateProfileStringW', 'WritePrivateProfileSectionW', 'SetEndOfFile', 'GetACP', 'GetFileType', 'GetStdHandle', 'SetFilePointerEx', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetFileSize', 'VirtualAllocEx', 'VirtualFreeEx', 'EnumResourceNamesW', 'LoadLibraryExW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'SetErrorMode', 'InitializeCriticalSection', 'GetCPInfo', 'SetCurrentDirectoryW', 'Sleep', 'GetTickCount', 'MulDiv', 'ExitProcess', 'HeapSize', 'HeapQueryInformation', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStringTypeW', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'SetHandleCount', 'IsProcessorFeaturePresent', 'LCMapStringW', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'SetFilePointer', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'GetDiskFreeSpaceExW', 'VirtualQuery', 'SetLayeredWindowAttributes', 'InvalidateRect', 'EnableWindow', 'GetWindowTextLengthW', 'EnumWindows', 'IsZoomed', 'IsIconic', 'EnumDisplayMonitors', 'GetMonitorInfoW', 'RegisterWindowMessageW', 'GetSysColor', 'GetSysColorBrush', 'DrawIconEx', 'FillRect', 'DefWindowProcW', 'SetForegroundWindow', 'DialogBoxParamW', 'SendDlgItemMessageW', 'GetDlgItem', 'SetDlgItemTextW', 'MessageBeep', 'ClientToScreen', 'GetCursorInfo', 'GetLastInputInfo', 'GetSystemMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetMenuStringW', 'ExitWindowsEx', 'SetMenu', 'FlashWindow', 'GetPropW', 'SetPropW', 'RemovePropW', 'MapWindowPoints', 'RedrawWindow', 'SetParent', 'GetClassInfoExW', 'DefDlgProcW', 'GetAncestor', 'UpdateWindow', 'GetMessagePos', 'GetClassLongW', 'CallWindowProcW', 'CheckRadioButton', 'IntersectRect', 'GetUpdateRect', 'PtInRect', 'CreateDialogIndirectParamW', 'CreateAcceleratorTableW', 'DestroyAcceleratorTable', 'InsertMenuItemW', 'SetMenuDefaultItem', 'RemoveMenu', 'SetMenuItemInfoW', 'IsMenu', 'GetMenuItemInfoW', 'CreateMenu', 'CreatePopupMenu', 'SetMenuInfo', 'AppendMenuW', 'DestroyMenu', 'TrackPopupMenuEx', 'GetDesktopWindow', 'CopyImage', 'SetWindowPos', 'CreateIconFromResourceEx', 'EnumClipboardFormats', 'GetWindow', 'BringWindowToTop', 'GetTopWindow', 'GetQueueStatus', 'CheckMenuItem', 'LoadImageW', 'IsWindowVisible', 'ChangeClipboardChain', 'SetClipboardViewer', 'LoadAcceleratorsW', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'DestroyIcon', 'DestroyWindow', 'IsCharAlphaW', 'MapVirtualKeyW', 'VkKeyScanExW', 'MapVirtualKeyExW', 'GetKeyboardLayoutNameW', 'ActivateKeyboardLayout', 'GetGUIThreadInfo', 'GetWindowTextW', 'mouse_event', 'WindowFromPoint', 'GetSystemMetrics', 'keybd_event', 'SetKeyboardState', 'GetKeyboardState', 'GetCursorPos', 'GetAsyncKeyState', 'AttachThreadInput', 'SendInput', 'UnregisterHotKey', 'PostQuitMessage', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PostThreadMessageW', 'IsCharAlphaNumericW', 'IsCharUpperW', 'IsCharLowerW', 'ToUnicodeEx', 'GetKeyboardLayout', 'CallNextHookEx', 'CharLowerW', 'ReleaseDC', 'GetDC', 'MessageBoxW', 'OpenClipboard', 'GetClipboardData', 'GetClipboardFormatNameW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostMessageW', 'FindWindowW', 'EndDialog', 'IsWindow', 'DispatchMessageW', 'TranslateMessage', 'ShowWindow', 'CountClipboardFormats', 'SetWindowRgn', 'SetFocus', 'SetActiveWindow', 'EnumChildWindows', 'MoveWindow', 'GetWindowRect', 'GetClientRect', 'SystemParametersInfoW', 'AdjustWindowRectEx', 'DrawTextW', 'SetRect', 'GetIconInfo', 'CreateIconIndirect', 'SetWindowTextW', 'SetWindowLongW', 'ScreenToClient', 'IsDialogMessageW', 'SendMessageW', 'IsWindowEnabled', 'GetWindowLongW', 'GetKeyState', 'TranslateAcceleratorW', 'KillTimer', 'PeekMessageW', 'GetFocus', 'GetClassNameW', 'GetWindowThreadProcessId', 'GetForegroundWindow', 'GetMessageW', 'SetTimer', 'GetParent', 'GetDlgCtrlID', 'CharUpperW', 'IsClipboardFormatAvailable', 'BlockInput', 'GetMenu', 'RegisterHotKey', 'GdiFlush', 'CreateDIBSection', 'EnumFontFamiliesExW', 'SetBrushOrgEx', 'SetBkColor', 'GetPixel', 'BitBlt', 'CreatePatternBrush', 'SetBkMode', 'GetCharABCWidthsW', 'GetClipBox', 'FillRgn', 'GetClipRgn', 'ExcludeClipRect', 'GetDeviceCaps', 'DeleteObject', 'CreateFontW', 'CreateSolidBrush', 'CreateCompatibleBitmap', 'GetSystemPaletteEntries', 'GetDIBits', 'CreateCompatibleDC', 'CreatePolygonRgn', 'CreateRectRgn', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'DeleteDC', 'GetObjectW', 'GetTextMetricsW', 'GetTextFaceW', 'SelectObject', 'GetStockObject', 'CreateDCW', 'SetTextColor', 'CommDlgExtendedError', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetUserNameW', 'LockServiceDatabase', 'OpenSCManagerW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'CloseServiceHandle', 'RegConnectRegistryW', 'UnlockServiceDatabase', 'DragQueryPoint', 'SHEmptyRecycleBinW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderPathW', 'ShellExecuteExW', 'Shell_NotifyIconW', 'DragFinish', 'DragQueryFileW', 'ExtractIconW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CLSIDFromString', 'CLSIDFromProgID', 'CoGetObject', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'OleLoadPicture', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayAccessData', 'SafeArrayUnlock', 'SafeArrayPtrOfIndex', 'SafeArrayLock', 'SafeArrayDestroy', 'GetActiveObject', 'SysStringLen', 'SysFreeString', 'SafeArrayCreate', 'VariantClear', 'VariantChangeType', 'SysAllocString', 'SafeArrayCopy', 'VariantCopyInd', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim'], ['GetModuleHandleA', 'CreateFileA', 'FindActCtxSectionStringA', 'WriteConsoleInputW', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'FindFirstVolumeMountPointW', 'CreateDirectoryExW', 'LocalFlags', 'WaitForSingleObject', 'WriteConsoleInputA', 'VerifyVersionInfoW', 'GetVersionExA', 'GetCurrentProcessId', 'OpenEventW', 'CreateFileMappingW', 'GetLocaleInfoA', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'ChangeTimerQueueTimer', 'GetConsoleTitleW', 'CopyFileA', 'FindResourceW', 'SetPriorityClass', 'SetLastError', 'GetProfileSectionA', 'WriteProfileStringA', 'GetConsoleAliasA', 'WritePrivateProfileSectionA', 'GetConsoleAliasesLengthA', 'FindResourceA', 'SetVolumeMountPointA', 'GetModuleHandleW', 'HeapAlloc', 'GetThreadLocale', 'CreateNamedPipeW', 'EnumResourceLanguagesA', 'TransactNamedPipe', '_hwrite', 'EnumDateFormatsA', 'DeleteVolumeMountPointW', 'AddRefActCtx', 'WritePrivateProfileStringA', 'GetSystemDirectoryA', 'GetStringTypeW', 'GetLongPathNameA', 'FindNextFileW', 'EnumCalendarInfoW', 'ZombifyActCtx', 'SetCriticalSectionSpinCount', 'CloseHandle', 'WriteConsoleW', 'HeapReAlloc', 'RaiseException', 'RtlUnwind', 'GetLastError', 'HeapFree', 'DeleteFileA', 'MoveFileA', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'IsProcessorFeaturePresent', 'DecodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapCreate', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapSize', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LoadLibraryW', 'CreateFileW', 'GetMessageTime', 'GetMenuBarInfo'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '_CorExeMain', 'VariantChangeTypeEx', 'RaiseException'], ['RtlInitializeCriticalSection', 'wcstombs', 'wcsncmp', 'NtOpenProcess', 'strrchr', 'RtlGetNtVersionNumbers', 'CsrGetProcessId', 'NtDelayExecution', 'wcsstr', 'wcsrchr', 'NtSetInformationThread', '_wcslwr', 'NtQueryInformationProcess', 'RtlGetCurrentPeb', 'swprintf', 'wcsncpy', 'NtYieldExecution', 'NtTerminateProcess', 'RtlCreateHeap', 'mbstowcs', 'sprintf', '_stricmp', 'memset', '_chkstk', 'memcpy', '_allrem', 'RtlUnwind', 'ExpandEnvironmentStringsW', 'CreateThread', 'DeleteFileA', 'SetFileAttributesW', 'ResumeThread', 'DeleteFileW', 'GetWindowsDirectoryW', 'CloseHandle', 'OutputDebugStringA', 'GetCurrentThreadId', 'GetShortPathNameW', 'FindNextFileW', 'GetModuleHandleA', 'GetModuleFileNameA', 'WaitForMultipleObjects', 'DeviceIoControl', 'CreateFileMappingA', 'LoadLibraryA', 'GetFullPathNameW', 'ExitProcess', 'GetCommandLineW', 'GetComputerNameA', 'CreateFileA', 'GetFileSize', 'FindFirstFileW', 'SetFilePointer', 'GetLocaleInfoA', 'MapViewOfFile', 'UnmapViewOfFile', 'GetDriveTypeW', 'FreeLibrary', 'HeapAlloc', 'InterlockedIncrement', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentProcess', 'GetLogicalDriveStringsW', 'HeapFree', 'WaitForSingleObject', 'GetSystemDefaultLCID', 'OutputDebugStringW', 'GetTickCount', 'GetProcessHeap', 'GetLocalTime', 'GlobalAlloc', 'GetSystemDirectoryW', 'TerminateThread', 'Sleep', 'CopyFileW', 'LeaveCriticalSection', 'GetFileAttributesW', 'CreateProcessA', 'ReadFile', 'CreateFileW', 'ExitThread', 'SetThreadPriority', 'FlushFileBuffers', 'GetTempPathW', 'GetFileSizeEx', 'GetLastError', 'GetProcAddress', 'SetVolumeLabelW', 'MoveFileW', 'EnterCriticalSection', 'GlobalFree', 'FindClose', 'WriteFile'], ['GetModuleFileNameA', 'GetLongPathNameA', 'CreateMutexA', 'OpenMutexA', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetLocaleInfoA', 'Process32NextW', 'Process32FirstW', 'lstrlenA', 'GetDriveTypeA', 'CreateProcessA', 'GetTickCount', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'WinExec', 'GetCurrentProcessId', 'CreateDirectoryW', 'CopyFileA', 'GetFileAttributesW', 'GetLogicalDriveStringsA', 'GetCurrentProcess', 'ResumeThread', 'SetThreadContext', 'WriteProcessMemory', 'VirtualAllocEx', 'ReadProcessMemory', 'GetThreadContext', 'VirtualAlloc', 'GlobalFree', 'LocalAlloc', 'TerminateProcess', 'ReadFile', 'PeekNamedPipe', 'GetStdHandle', 'CreatePipe', 'OpenProcess', 'DuplicateHandle', 'GetCurrentThread', 'lstrcpynA', 'ExitProcess', 'AllocConsole', 'GetStartupInfoA', 'ExpandEnvironmentStringsA', 'FindFirstFileA', 'FindNextFileA', 'GetLastError', 'LoadLibraryA', 'GetProcAddress', 'CreateFileMappingA', 'MapViewOfFileEx', 'DeleteFileA', 'RemoveDirectoryA', 'CloseHandle', 'GetFileAttributesA', 'SetFileAttributesA', 'SetEvent', 'TerminateThread', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'GetLocalTime', 'CreateEventA', 'WaitForSingleObject', 'CreateDirectoryA', 'ExitThread', 'Sleep', 'GetModuleHandleA', 'DeleteFileW', 'CreateThread', 'GetWindowTextLengthA', 'GetForegroundWindow', 'UnhookWindowsHookEx', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'ExitWindowsEx', 'MessageBoxA', 'GetKeyboardLayoutNameA', 'GetWindowThreadProcessId', 'ShowWindow', 'CloseWindow', 'GetWindowTextA', 'GetWindowTextW', 'EnumWindows', 'SendInput', 'CreateWindowExA', 'RegisterClassExA', 'AppendMenuA', 'CreatePopupMenu', 'TrackPopupMenu', 'SetForegroundWindow', 'GetCursorPos', 'DefWindowProcA', 'GetKeyState', 'CallNextHookEx', 'SetWindowsHookExA', 'GetMessageA', 'TranslateMessage', 'GetKeyboardLayout', 'FindWindowA', 'DispatchMessageA', 'IsWindowVisible', 'CreateDCA', 'CreateCompatibleDC', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'GetObjectA', 'GetDIBits', 'DeleteObject', 'DeleteDC', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'RegQueryInfoKeyA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegDeleteValueA', 'RegCreateKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegCloseKey', 'RegQueryValueExA', 'GetUserNameW', 'ShellExecuteA', 'ExtractIconA', 'Shell_NotifyIconA', 'ShellExecuteExA', 'ShellExecuteW', '?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@@Z', '?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@IIPBD@Z', '??8std@@YA_NPBDABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV?$allocator@G@1@@Z', '?find_last_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIDI@Z', '??9std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBG@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@G@Z', '?substr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBE?AV12@II@Z', '?rfind@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '?npos@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@2IB', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDII@Z', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIABV12@I@Z', '?find_last_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDI@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBGABV10@@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@D@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@DABV10@@Z', '?rfind@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIDI@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIDI@Z', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?length@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIXZ', '??Bios_base@std@@QBEPAXXZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDI@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@IDABV?$allocator@D@1@@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@0@Z', '??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '?is_open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QBE_NXZ', '?data@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '??0logic_error@std@@QAE@ABV01@@Z', '??0out_of_range@std@@QAE@ABV01@@Z', '??1out_of_range@std@@UAE@XZ', '??0out_of_range@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDABV?$allocator@D@1@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV?$allocator@D@1@@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXI@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBDABV10@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDIABV?$allocator@D@1@@Z', '??_D?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?write@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@PBDH@Z', '?seekp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@JW4seekdir@ios_base@2@@Z', '??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@PBD@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@D@Z', '?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV12@II@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?length@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '?empty@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE_NXZ', '??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAADI@Z', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIABV12@I@Z', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV01@@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@0@Z', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@PBGABV?$allocator@G@1@@Z', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '?c_str@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@PBG@Z', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@G@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADH@Z', '?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@JW4seekdir@ios_base@2@@Z', '?tellg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@XZ', '?is_open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QBE_NXZ', '??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '_wrename', '_controlfp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '??1type_info@@UAE@XZ', '_iob', 'freopen', 'srand', 'rand', 'mbstowcs', 'realloc', '_itoa', 'sprintf', 'getenv', 'toupper', 'tolower', 'wcscmp', 'printf', 'strncmp', 'malloc', 'free', '_EH_prolog', '__CxxFrameHandler', 'time', 'localtime', 'strftime', 'puts', 'atoi', '_ftol', '??2@YAPAXI@Z', '_except_handler3', 'exit', '??0exception@@QAE@ABV0@@Z', '_CxxThrowException', 'waveInOpen', 'waveInStop', 'waveInClose', 'waveInAddBuffer', 'waveInPrepareHeader', 'waveInUnprepareHeader', 'waveInStart', 'PathFileExistsA', 'htons', 'gethostbyname', 'closesocket', 'socket', 'send', 'WSAGetLastError', 'connect', 'recv', 'WSAStartup', 'URLDownloadToFileA', 'GdipLoadImageFromStreamICM', 'GdipDisposeImage', 'GdipCloneImage', 'GdipAlloc', 'GdipSaveImageToStream', 'GdipSaveImageToFile', 'GdipLoadImageFromStream', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipFree', 'GdipGetImageEncodersSize', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['GetModuleHandleA', 'EmptyClipboard', 'RegOpenKeyExW', 'ImageList_SetBkColor', 'InternetCloseHandle', 'SHGetSpecialFolderPathA', 'IsValidURL'], ['GetVolumeNameForVolumeMountPointA', 'GetFullPathNameA', 'GetEnvironmentVariableW', 'HeapReAlloc', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'EnumDateFormatsExW', 'ClearCommError', 'GetQueuedCompletionStatus', 'SetConsoleTextAttribute', 'FindFirstFileExW', 'GetTickCount', 'GetProcessTimes', 'GlobalAlloc', 'SizeofResource', 'GetWriteWatch', 'SetConsoleCursorPosition', 'GetAtomNameW', 'GetModuleFileNameW', 'MultiByteToWideChar', 'IsBadStringPtrA', 'GetLastError', 'SetVolumeLabelW', 'EnumSystemCodePagesW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'SetFileApisToANSI', 'GetDefaultCommConfigA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'VirtualProtect', 'CompareStringA', 'SetCalendarInfoA', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'FindNextVolumeA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'WideCharToMultiByte', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCaretPos'], ['GetMetaRgn', 'MoveToEx', 'GdiGetBatchLimit', 'GetBitmapDimensionEx', 'VirtualProtect', 'FreeConsole', 'RaiseException', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableCS', 'SleepConditionVariableSRW', 'InitOnceBeginInitialize', 'InitOnceComplete', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'CloseHandle', 'WaitForSingleObjectEx', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetCurrentProcess', 'TerminateProcess', 'GetCurrentProcessId', 'InitializeSListHead', 'WriteConsoleW', 'RtlUnwind', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'DecodePointer'], ['ImmGetIMEFileNameA', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmSetOpenStatus', 'ImmGetCandidateWindow', 'ImmGetDefaultIMEWnd', 'RasDeleteSubEntryA', 'RasGetEapUserDataW', 'RasGetSubEntryPropertiesA', 'RasGetCredentialsW', 'RasGetCredentialsA', 'RasEnumDevicesW', 'RasEditPhonebookEntryW', 'RasGetProjectionInfoA', 'RasGetConnectStatusW', 'RasEnumConnectionsA', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile'], ['VarUI2FromStr', 'DrawFrameControl', 'GetWindowTextA', 'SHDeleteValueA', 'RpcBindingFromStringBindingA', 'NdrSimpleTypeUnmarshall', 'NotifyRouteChange', 'GetNumberOfEventLogRecords', 'RegOpenKeyA', 'GetServiceKeyNameA', 'SaferIdentifyLevel', 'GetBinaryTypeW', 'ReadConsoleOutputW', 'SetLocaleInfoW', 'GetModuleHandleW', 'GetModuleFileNameW', 'SetConsoleDisplayMode', 'ConvertFiberToThread', 'lstrlenW', 'WriteConsoleOutputAttribute'], ['OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'GetVersionExA', 'FreeResource', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigA', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'ReadConsoleInputA', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'LoadLibraryA', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleA', 'GetNamedPipeHandleStateW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'SetCalendarInfoA', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'FlushConsoleInputBuffer', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'CopyFileW', 'GetOEMCP', 'GlobalFindAtomW', 'lstrcatA', 'GetPrivateProfileStringA', 'SetMailslotInfo', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'FreeEnvironmentStringsA', 'GetFileInformationByHandle', 'EnumCalendarInfoExW', 'EnumDateFormatsW', 'VerSetConditionMask', 'GetConsoleCP', 'GetQueuedCompletionStatus', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetPrivateProfileIntA', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetModuleHandleW', 'ExitProcess', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetModuleFileNameA', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA'], ['PathFindFileNameA', 'LockResource', 'lstrlenA', 'CloseHandle', 'CreateFileA', 'ExitProcess', 'FindResourceA', 'FreeResource', 'GetCommandLineA', 'GetEnvironmentVariableA', 'GetFileSize', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetSystemDirectoryA', 'GetTempPathA', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'HeapAlloc', 'HeapFree', 'LoadLibraryA', 'LoadResource', 'lstrcpynA', 'RtlMoveMemory', 'SetFileAttributesA', 'SizeofResource', 'WriteFile', 'lstrcatA', 'lstrcpyA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'GetMessageA', 'LoadCursorA', 'LoadIconA', 'MessageBoxA', 'PostQuitMessage', 'RegisterClassExA', 'SendMessageA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow'], ['ClearCommError', 'DeleteVolumeMountPointA', 'SetConsoleTextAttribute', 'ReadConsoleA', 'FlushConsoleInputBuffer', 'FlushViewOfFile', 'FindFirstFileExW', 'SetCommBreak', 'ConnectNamedPipe', 'GetTickCount', 'GetCommConfig', 'GetWindowsDirectoryA', 'GetProcessTimes', 'GetVolumePathNameW', 'WideCharToMultiByte', 'SizeofResource', 'GetProcessHandleCount', 'GetConsoleAliasW', 'GetWriteWatch', 'GetAtomNameW', 'GetEnvironmentVariableA', 'DisconnectNamedPipe', 'GetLargestConsoleWindowSize', 'GetLastError', 'UnmapViewOfFile', 'GetProcAddress', 'SetVolumeLabelW', 'EnumSystemCodePagesW', 'GetNumaHighestNodeNumber', 'GetPrivateProfileStringA', 'SetFileApisToOEM', 'LoadLibraryA', 'ProcessIdToSessionId', 'LocalAlloc', 'SetCalendarInfoW', 'IsWow64Process', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'CreatePipe', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'WTSGetActiveConsoleSessionId', 'CreateIoCompletionPort', '_lread', 'CompareStringA', 'FindNextVolumeA', 'CreateFileA', 'lstrlenA', 'IsBadStringPtrW', 'HeapReAlloc', 'GetLongPathNameW', 'GetVolumeNameForVolumeMountPointA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'GetModuleHandleA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ReadFile', 'HeapSize', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'SetStdHandle', 'GetCursorInfo', 'EnumServicesStatusW', 'DeregisterEventSource', 'SetAclInformation', 'CloseEventLog'], ['lstrcatW', 'GlobalAlloc', 'DeleteFileW', 'lstrcpyA', 'GlobalFree', 'CloseHandle', 'CreateThread', 'MoveFileExW', 'lstrcpyW', 'CreateFileMappingW', 'MapViewOfFile', 'lstrcmpW', 'BeginUpdateResourceA', 'EraseTape', 'FindFirstVolumeW', 'GetProfileSectionW', 'GetCurrentProcess', 'lstrlenW', 'CancelDeviceWakeupRequest', 'TerminateProcess', 'GlobalUnWire', 'GetConsoleTitleW', 'EnumResourceNamesW', 'CreateMutexW', 'OpenFile', 'EnumSystemCodePagesW', 'CancelThreadpoolIo', 'GlobalDeleteAtom', 'QueryMemoryResourceNotification', 'GetACP', 'OpenProcess', 'FindFirstVolumeMountPointA', 'FindActCtxSectionStringA', 'CreateToolhelp32Snapshot', 'Sleep', 'SetFileAttributesW', 'GetConsoleAliasesLengthW', 'CreateFileW', 'CreateFileA', 'DefineDosDeviceA', 'GetSystemFileCacheSize', 'GetCurrentThread', 'GetSystemDirectoryA', 'Process32FirstW', 'GlobalFindAtomW', 'QueueUserAPC', 'LocalSize', 'FindAtomA', 'ExitProcess', 'FreeLibrary', 'GetSystemTime', 'GlobalUnlock', 'GetDriveTypeW', 'FindFirstFileTransactedA', 'CreateTimerQueue', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GetModuleHandleW', 'DecodePointer', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetLastError', 'UnmapViewOfFile', 'WaitForSingleObject', 'ReadFile', 'FindClose', 'lstrlenA', 'SetFilePointer', 'SetErrorMode', 'VirtualAlloc', 'GetProcessHeap', 'GetStringTypeW', 'GetFileType', 'WriteFile', 'FindNextFileW', 'VirtualFree', 'FindFirstFileW', 'Process32NextW', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'RaiseException', 'EqualRect', 'DestroyIcon', 'EnumWindows', 'CharUpperBuffW', 'GetDesktopWindow', 'GetWindowTextW', 'wsprintfW', 'GetLastActivePopup', 'CreateDIBPatternBrush', 'CryptGenKey', 'CryptExportKey', 'CryptEncrypt', 'CryptAcquireContextW', 'CryptDestroyKey', 'CryptReleaseContext', 'SHGetSpecialFolderPathW', 'StrStrW', 'CryptImportPublicKeyInfoEx', 'CryptStringToBinaryA', 'CryptDecodeObjectEx', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'Sleep', 'ExitThread', 'CreateThread', 'RaiseException', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'FatalAppExitA', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'RtlUnwind', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetACP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetModuleHandleW', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetThreadLocale', 'GetStringTypeExA', 'DeleteFileA', 'MoveFileA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'MulDiv', 'InterlockedDecrement', 'GetModuleFileNameW', 'lstrlenA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'MultiByteToWideChar', 'lstrcmpW', 'GetVersionExA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'LoadLibraryA', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'FreeEnvironmentStringsW', 'ExitProcess', 'UnregisterClassA', 'SetRectEmpty', 'InvalidateRect', 'TranslateAcceleratorA', 'BringWindowToTop', 'CreatePopupMenu', 'InsertMenuItemA', 'LoadAcceleratorsA', 'GetMenuBarInfo', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'SetRect', 'SetTimer', 'KillTimer', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetMenuStringA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'GetDialogBaseUnits', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'EnableWindow', 'LoadIconA', 'AppendMenuA', 'GetSystemMenu', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'CharUpperA', 'DestroyIcon', 'GetSysColorBrush', 'WaitMessage', 'ReleaseCapture', 'LoadCursorA', 'WindowFromPoint', 'SetCapture', 'DeleteMenu', 'InsertMenuA', 'EndDeferWindowPos', 'RemoveMenu', 'SendMessageA', 'GetSystemMetrics', 'DrawIcon', 'IsIconic', 'GetClientRect', 'DdeInitializeA', 'DdeCreateStringHandleA', 'DdeFreeStringHandle', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeNameService', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeClientTransaction', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'UnhookWindowsHookEx', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'CreatePen', 'ExtCreatePen', 'ArcTo', 'CreateHatchBrush', 'CopyMetaFileA', 'CreateDCA', 'GetTextMetricsA', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetBkColor', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'PtVisible', 'TextOutA', 'CreateSolidBrush', 'CreateBitmap', 'StartDocA', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'ExtTextOutA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'RectVisible', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegSetValueA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegCreateKeyA', 'ExtractIconA', 'DragFinish', 'DragQueryFileA', 'SHGetFileInfoA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveExtensionA', 'PathRemoveFileSpecW', 'StringFromGUID2', 'CoDisconnectObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'CoCreateInstance', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CLSIDFromString', 'CoUninitialize', 'CoInitializeEx', 'StringFromCLSID', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapAlloc', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'HeapFree', 'lstrlenA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringW', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedDecrement', 'GetModuleHandleA', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'lstrlenW', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomW', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'QueryPerformanceCounter', 'ExitProcess', 'GetSysColorBrush', 'WindowFromPoint', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'ScreenToClient', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindow', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'DestroyMenu', 'LoadCursorW', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SetCapture', 'GetClientRect', 'PtInRect', 'GetCapture', 'SystemParametersInfoW', 'ReleaseCapture', 'GetMessagePos', 'GetWindowRect', 'GetParent', 'DrawEdge', 'DrawFocusRect', 'InflateRect', 'OffsetRect', 'SetRect', 'RedrawWindow', 'GetSysColor', 'IsWindow', 'GetSystemMetrics', 'SendMessageW', 'DrawFrameControl', 'CopyRect', 'InvalidateRect', 'EnableWindow', 'UnregisterClassA', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'SelectPalette', 'SelectObject', 'CreateSolidBrush', 'DeleteObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'Rectangle', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetTextExtentPoint32W', 'CreateFontIndirectW', 'GetDeviceCaps', 'CreatePalette', 'RealizePalette', 'CreatePen', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindExtensionW', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'LoadLibraryW', 'SetCommConfig', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'GetVersionExW', 'DnsHostnameToComputerNameW', 'GetAtomNameW', 'GetStringTypeExA', 'LCMapStringA', 'InterlockedExchange', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetFileTime', 'SetFileAttributesW', 'DeleteFileA', 'SwitchToThread', 'UpdateResourceA', 'GetLocaleInfoA', 'CreateFileA', 'GetStartupInfoW', 'HeapAlloc', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetModuleHandleA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RaiseException', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetCharWidthFloatW', 'WinHttpCheckPlatform', 'AlphaBlend'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'ReadConsoleW', 'InitializeCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'GetBinaryTypeW', 'ReplaceFileA', 'GetStdHandle', 'SetFilePointer', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetLastError', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['GetForegroundWindow', 'CM_Get_Device_Interface_List_ExW', 'CM_Get_Res_Des_Data_Ex', 'BuildExplicitAccessWithNameW', 'GdiComment', 'AssignProcessToJobObject', 'GetModuleHandleA', 'GetProcAddress', 'GetFileInformationByHandle'], ['GetModuleHandleA', 'EndPaint', 'RegQueryValueA', 'PathMakeUniqueName', '_CorExeMain', 'InitMUILanguage'], ['FindNextVolumeW', 'LeaveCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'ExitProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'FillConsoleOutputCharacterA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'GetProcAddress', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringW', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'TerminateThread', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'TerminateProcess', 'GetACP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'GetOverlappedResult', 'CreateNamedPipeA', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'SetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetFileAttributesW', 'MoveFileW', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'GetLastError', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'DebugBreak', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'lstrcatW', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['RtlUnwindEx', 'RtlPcToFileHeader', 'RtlCaptureContext', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlUnwind', 'LoadLibraryExW', 'CreateFileW', 'HeapSize', 'LoadLibraryA', 'GetProcAddress', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSectionEx', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'HeapReAlloc', 'ReadConsoleW', 'SetFilePointerEx', 'GetFileSizeEx', 'RaiseException', 'GetLastError', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'WriteConsoleW', 'GetCurrentProcess', 'TerminateProcess', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetProcessHeap', 'GetFileType', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile'], ['ShowWindow', 'GetFileType', 'IsProcessorFeaturePresent', 'WriteFile', 'MultiByteToWideChar', 'GetLastError', 'SetLastError', 'GetProcAddress', 'LocalAlloc', 'LocalFree', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'InterlockedDecrement', 'HeapFree', 'Sleep', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'HeapSize', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'HeapReAlloc', 'LoadLibraryW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleFileNameW', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW'], ['GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'TlsSetValue', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'SetLocaleInfoA', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetDateFormatW', 'CreateMutexW', 'ReplaceFileA', 'WriteConsoleA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['GetModuleHandleA', 'SetForegroundWindow', 'CreateCompatibleBitmap', 'CryptAcquireContextA', 'ShellExecuteW', 'PathFileExistsW', 'PlaySoundW', 'send', 'URLDownloadToFileW', 'GdiplusStartup'], ['SetFileAttributesA', 'SetErrorMode', 'HeapFree', 'RtlUnwind', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'LocalFileTimeToFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'WriteFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'InterlockedIncrement', 'GetAtomNameA', 'FindResourceExA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'InterlockedDecrement', 'GetModuleFileNameW', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'MulDiv', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'VirtualProtect', 'SizeofResource', 'ExitProcess', 'GetFileSize', 'GlobalAlloc', 'GlobalFree', 'ReadFile', 'GlobalUnlock', 'GlobalReAlloc', 'SetFilePointer', 'CreateFileA', 'CloseHandle', 'GlobalLock', 'GetLastError', 'FindResourceA', 'LoadResource', 'LockResource', 'LocalAlloc', 'LocalFree', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'FreeEnvironmentStringsA', 'InterlockedExchange', 'SetParent', 'SetRect', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'PostQuitMessage', 'ShowOwnedPopups', 'GetDialogBaseUnits', 'GetSysColorBrush', 'LoadCursorA', 'GetMenuItemInfoA', 'UnregisterClassA', 'GetKeyNameTextA', 'MapVirtualKeyA', 'UnionRect', 'GetDCEx', 'SetCapture', 'DestroyIcon', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'SetMenu', 'RedrawWindow', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'BringWindowToTop', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'ScrollWindowEx', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'RegisterWindowMessageA', 'GetSystemMenu', 'SendDlgItemMessageA', 'WinHelpA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'GetWindow', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'InflateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetWindowThreadProcessId', 'LoadIconA', 'SetCursor', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'LockWindowUpdate', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'ShowWindow', 'UpdateWindow', 'IsWindowEnabled', 'GetDlgItem', 'GetParent', 'PostMessageA', 'GetWindowLongA', 'GetWindowRect', 'SetFocus', 'GetFocus', 'GetAsyncKeyState', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetCapture', 'GetActiveWindow', 'SetActiveWindow', 'MapDialogRect', 'SetWindowPos', 'IsChild', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'GetStockObject', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'SetViewportOrgEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetBkColor', 'EnumFontFamiliesExA', 'Escape', 'ExtTextOutA', 'SetColorAdjustment', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'PlayMetaFile', 'CreateDIBitmap', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'BitBlt', 'DeleteObject', 'CreatePalette', 'SelectPalette', 'RealizePalette', 'SelectClipRgn', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['CryptEncrypt', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetCloseEnum', 'CoInitialize', 'VariantClear', 'ShellExecuteW', 'StrStrA', 'InternetOpenW', 'htons'], ['EnumCalendarInfoA', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'GetNumberFormatA', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReplaceFileA', 'GetConsoleAliasesW', 'SetLocaleInfoA', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CreateMutexW', 'SetCurrentDirectoryA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'CharUpperBuffA', 'LoadMenuW', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['__WSAFDIsSet', 'recv', 'send', 'setsockopt', 'ntohs', 'recvfrom', 'select', 'WSAStartup', 'htons', 'accept', 'listen', 'bind', 'closesocket', 'connect', 'WSACleanup', 'ioctlsocket', 'sendto', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'socket', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_ReplaceIcon', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetQueryOptionW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetConnectW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'WaitForSingleObject', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'CloseHandle', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'CreateThread', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'GetLastError', 'GetModuleFileNameW', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedIncrement', 'DuplicateHandle', 'GetCurrentProcess', 'EnterCriticalSection', 'GetCurrentThread', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'SetFilePointer', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'FindNextFileW', 'SetEnvironmentVariableA', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'DrawMenuBar', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'MonitorFromRect', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'AdjustWindowRectEx', 'DeleteMenu', 'CheckMenuRadioItem', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'UnregisterHotKey', 'SystemParametersInfoW', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'SetRect', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'GetCursorPos', 'PeekMessageW', 'MessageBoxW', 'DefWindowProcW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'FindWindowW', 'CharLowerBuffW', 'GetWindowTextW', 'SetPixel', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'GetDeviceCaps', 'CloseFigure', 'LineTo', 'AngleArc', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'MoveToEx', 'Ellipse', 'PolyDraw', 'BeginPath', 'SelectObject', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'EndPath', 'GetSaveFileNameW', 'GetOpenFileNameW', 'GetAclInformation', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'InitiateSystemShutdownExW', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'SetSecurityDescriptorDacl', 'AddAce', 'GetAce', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHBrowseForFolderW', 'SHGetFolderPathW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHGetMalloc', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'RegisterTypeLib', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'UnRegisterTypeLib', 'SafeArrayCreateVector', 'SysAllocString', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'VariantCopy', 'VariantClear', 'CreateDispTypeInfo', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SafeArrayAllocDescriptorEx', 'VariantInit'], ['VirtualQuery', 'SetStdHandle', 'GetFileType', 'GetStdHandle', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateSemaphoreW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'GetTimeZoneInformation', 'ReadConsoleW', 'OutputDebugStringW', 'GetDateFormatW', 'LCMapStringW', 'IsValidLocale', 'EnumSystemLocalesW', 'WriteConsoleW', 'SetEnvironmentVariableA', 'OpenProcess', 'GetSystemInfo', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'InitializeSListHead', 'ReleaseSemaphore', 'FreeLibraryAndExitThread', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'WaitForSingleObjectEx', 'CreateTimerQueue', 'FormatMessageA', 'GetThreadTimes', 'HeapQueryInformation', 'IsProcessorFeaturePresent', 'CloseHandle', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetModuleHandleW', 'Sleep', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GlobalFree', 'GetCurrentProcess', 'GlobalAlloc', 'GetLastError', 'GetTickCount', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'CreateFileW', 'GetFileSize', 'MoveFileW', 'VirtualAlloc', 'SetFilePointer', 'ReadFile', 'WriteFile', 'VirtualFree', 'FindFirstFileW', 'FindNextFileW', 'GetLogicalDrives', 'SetErrorMode', 'GetDriveTypeA', 'GetTimeFormatW', 'TerminateProcess', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'DeleteFileA', 'CreateFileA', 'FlushFileBuffers', 'SetLastError', 'CreateProcessA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'FormatMessageW', 'LocalAlloc', 'lstrlenW', 'LocalSize', 'lstrcpynW', 'LocalFree', 'GetTempPathW', 'DeleteFileW', 'CopyFileW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'CreateThread', 'GetComputerNameW', 'SetEvent', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'RaiseException', 'HeapSize', 'EnterCriticalSection', 'DecodePointer', 'DeleteCriticalSection', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'WaitForMultipleObjects', 'TerminateThread', 'QueueUserAPC', 'CreateEventW', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'VerSetConditionMask', 'VerifyVersionInfoW', 'CreateWaitableTimerW', 'GetSystemTimeAsFileTime', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'OutputDebugStringA', 'EncodePointer', 'GetCurrentThreadId', 'GetSystemDirectoryW', 'FreeLibrary', 'FreeResource', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryExW', 'GlobalDeleteAtom', 'lstrcmpW', 'LoadLibraryA', 'LoadLibraryW', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GetCurrentProcessId', 'GetCurrentThread', 'GetVersionExW', 'lstrcmpA', 'lstrcpyW', 'SetThreadPriority', 'ResumeThread', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GlobalGetAtomNameW', 'FileTimeToSystemTime', 'GetThreadLocale', 'InitializeCriticalSection', 'GlobalReAlloc', 'GlobalHandle', 'LocalReAlloc', 'CompareStringW', 'GetLocaleInfoW', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GlobalFlags', 'GetCurrentDirectoryW', 'GetFileAttributesW', 'FindClose', 'GetFullPathNameW', 'GetVolumeInformationW', 'LockFile', 'SetEndOfFile', 'UnlockFile', 'DuplicateHandle', 'lstrcmpiW', 'GetStringTypeExW', 'GetTempFileNameW', 'GetWindowsDirectoryW', 'SearchPathW', 'GetProfileIntW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'GetFileSizeEx', 'GetFileTime', 'VirtualProtect', 'FindResourceExW', 'GetUserDefaultLCID', 'GetCPInfo', 'ExitThread', 'RtlUnwind', 'ExitProcess', 'GetModuleHandleExW', 'AreFileApisANSI', 'GetCommandLineW', 'SetRectEmpty', 'SetLayeredWindowAttributes', 'LoadCursorW', 'SetCursor', 'ShowOwnedPopups', 'TranslateMessage', 'GetMessageW', 'MapVirtualKeyW', 'GetKeyNameTextW', 'DrawIconEx', 'IsRectEmpty', 'OffsetRect', 'InflateRect', 'DrawFocusRect', 'GetSysColorBrush', 'SetWindowRgn', 'GetSystemMetrics', 'DrawFrameControl', 'DrawEdge', 'MapDialogRect', 'SetWindowContextHelpId', 'PostQuitMessage', 'SendDlgItemMessageA', 'GetCursorPos', 'ClientToScreen', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'TabbedTextOutW', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'GetWindowThreadProcessId', 'GetDesktopWindow', 'GetActiveWindow', 'GetNextDlgTabItem', 'EndDialog', 'CreateDialogIndirectParamW', 'LoadMenuW', 'SetMenuItemInfoW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'IsDialogMessageW', 'SetWindowTextW', 'IsWindowEnabled', 'CheckDlgButton', 'MoveWindow', 'GetMonitorInfoW', 'MonitorFromWindow', 'SystemParametersInfoW', 'GetScrollInfo', 'SetScrollInfo', 'LoadIconW', 'GetWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetParent', 'GetClassLongW', 'SetWindowLongW', 'GetWindowLongW', 'PtInRect', 'EqualRect', 'CopyRect', 'GetSysColor', 'MapWindowPoints', 'InvalidateRgn', 'AdjustWindowRectEx', 'GetWindowTextLengthW', 'GetWindowTextW', 'MonitorFromPoint', 'GetPropW', 'SetPropW', 'ShowScrollBar', 'GetScrollRange', 'SetRect', 'GetNextDlgGroupItem', 'SetParent', 'SendMessageW', 'PeekMessageW', 'LoadStringW', 'DispatchMessageW', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'RedrawWindow', 'ValidateRect', 'GetForegroundWindow', 'SetActiveWindow', 'TrackPopupMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'GetKeyState', 'GetFocus', 'SetFocus', 'GetDlgCtrlID', 'GetDlgItem', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'SetWindowPos', 'DestroyWindow', 'IsChild', 'CreateWindowExW', 'GetClassInfoExW', 'EnumDisplayMonitors', 'DestroyMenu', 'GetMenuItemInfoW', 'CopyImage', 'RealChildWindowFromPoint', 'IntersectRect', 'TrackMouseEvent', 'IsIconic', 'IsZoomed', 'CharUpperW', 'GetAsyncKeyState', 'SetCapture', 'ReleaseCapture', 'KillTimer', 'GetSystemMenu', 'GetClassInfoW', 'RegisterClassW', 'DeleteMenu', 'MessageBeep', 'WindowFromPoint', 'NotifyWinEvent', 'CreatePopupMenu', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'IsMenu', 'UpdateLayeredWindow', 'EnableScrollBar', 'WinHelpW', 'UnionRect', 'LoadAcceleratorsW', 'MessageBoxW', 'EnableWindow', 'SetWindowsHookExW', 'UnhookWindowsHookEx', 'PostThreadMessageW', 'IsWindowVisible', 'ShowWindow', 'SetForegroundWindow', 'CallNextHookEx', 'GetWindowRect', 'GetClientRect', 'UpdateWindow', 'SetTimer', 'IsWindow', 'UnregisterClassW', 'GetMenuStringW', 'GetMenuState', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'InsertMenuW', 'AppendMenuW', 'RemoveMenu', 'DrawStateW', 'InvalidateRect', 'FillRect', 'GetClassNameW', 'LoadBitmapW', 'RegisterWindowMessageW', 'GetMessagePos', 'GetMessageTime', 'PostMessageW', 'DefWindowProcW', 'CallWindowProcW', 'OpenClipboard', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'WaitMessage', 'CharNextW', 'RemovePropW', 'CopyAcceleratorTableW', 'DestroyIcon', 'LoadImageW', 'SetCursorPos', 'BringWindowToTop', 'LockWindowUpdate', 'GetDoubleClickTime', 'GetIconInfo', 'CopyIcon', 'ModifyMenuW', 'DestroyAcceleratorTable', 'SetClassLongW', 'GetUpdateRect', 'ToUnicodeEx', 'GetKeyboardLayout', 'GetKeyboardState', 'DrawIcon', 'GetWindowRgn', 'DestroyCursor', 'CreateMenu', 'GetComboBoxInfo', 'TranslateMDISysAccel', 'DefMDIChildProcW', 'DefFrameProcW', 'DrawMenuBar', 'MapVirtualKeyExW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'SubtractRect', 'InvertRect', 'HideCaret', 'FrameRect', 'ReuseDDElParam', 'UnpackDDElParam', 'InsertMenuItemW', 'TranslateAcceleratorW', 'CharUpperBuffW', 'RegisterClipboardFormatW', 'CreateAcceleratorTableW', 'ScreenToClient', 'GetTextFaceW', 'SetPixelV', 'GetWindowOrgEx', 'LPtoDP', 'GetViewportOrgEx', 'PtInRegion', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'EnumFontFamiliesExW', 'SetPaletteEntries', 'ExtFloodFill', 'GetSystemPaletteEntries', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'CreatePalette', 'RoundRect', 'OffsetRgn', 'Rectangle', 'SetDIBColorTable', 'StretchBlt', 'SetPixel', 'RealizePalette', 'GetRgnBox', 'CreateDIBSection', 'CreateRoundRectRgn', 'DPtoLP', 'SetRectRgn', 'GetMapMode', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateCompatibleBitmap', 'GetTextMetricsW', 'Polyline', 'Polygon', 'CreatePolygonRgn', 'PatBlt', 'GetTextExtentPoint32W', 'GetTextColor', 'GetBkColor', 'Ellipse', 'CreateRectRgnIndirect', 'CreateEllipticRgn', 'CombineRgn', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'OffsetWindowOrgEx', 'OffsetViewportOrgEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetViewportOrgEx', 'SetViewportExtEx', 'ExtTextOutW', 'TextOutW', 'MoveToEx', 'SetTextAlign', 'SetROP2', 'SetPolyFillMode', 'GetLayout', 'SetLayout', 'SetMapMode', 'SetBkMode', 'SelectPalette', 'SelectObject', 'ExtSelectClipRgn', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'PtVisible', 'LineTo', 'IntersectClipRect', 'GetWindowExtEx', 'GetViewportExtEx', 'GetPixel', 'GetObjectType', 'GetClipBox', 'ExcludeClipRect', 'Escape', 'CreateRectRgn', 'CreatePatternBrush', 'CreatePen', 'CreateHatchBrush', 'CreateCompatibleDC', 'BitBlt', 'CreateBitmap', 'SetTextColor', 'SetBkColor', 'GetObjectW', 'GetStockObject', 'DeleteObject', 'CreateSolidBrush', 'GetDeviceCaps', 'CreateDCW', 'CopyMetaFileW', 'DeleteDC', 'TransparentBlt', 'AlphaBlend', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'RegQueryValueExA', 'RegCloseKey', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryValueW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegQueryValueExW', 'DeleteService', 'QueryServiceStatusEx', 'CloseServiceHandle', 'QueryServiceStatus', 'ControlService', 'OpenServiceW', 'OpenSCManagerW', 'RegSetValueExW', 'RegDeleteValueW', 'RegOpenKeyExW', 'DragQueryFileW', 'SHGetFolderPathW', 'ShellExecuteExW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHAppBarMessage', 'DragFinish', 'CommandLineToArgvW', 'SHGetFileInfoW', 'InitCommonControlsEx', 'PathFindFileNameW', 'PathAppendW', 'PathFileExistsW', 'PathFindExtensionW', 'PathFileExistsA', 'StrTrimW', 'PathRemoveFileSpecW', 'PathIsUNCW', 'PathStripToRootW', 'StrFormatKBSizeW', 'IsAppThemed', 'OpenThemeData', 'CloseThemeData', 'DrawThemeBackground', 'GetThemeColor', 'GetCurrentThemeName', 'DrawThemeParentBackground', 'DrawThemeText', 'GetThemePartSize', 'IsThemeBackgroundPartiallyTransparent', 'GetThemeSysColor', 'GetWindowTheme', 'OleGetClipboard', 'OleUninitialize', 'OleInitialize', 'CoFreeUnusedLibraries', 'DoDragDrop', 'OleIsCurrentClipboard', 'CoLockObjectExternal', 'RegisterDragDrop', 'RevokeDragDrop', 'OleLockRunning', 'CoInitializeEx', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'CreateStreamOnHGlobal', 'CreateILockBytesOnHGlobal', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CoGetClassObject', 'CoDisconnectObject', 'CoInitialize', 'CoCreateInstance', 'CLSIDFromProgID', 'CLSIDFromString', 'CoCreateGuid', 'CoUninitialize', 'ReleaseStgMedium', 'OleDuplicateData', 'CoTaskMemFree', 'CoTaskMemAlloc', 'OleFlushClipboard', 'SafeArrayDestroy', 'SysAllocString', 'VariantTimeToSystemTime', 'VariantCopy', 'VarBstrFromDate', 'LoadTypeLib', 'OleCreateFontIndirect', 'VariantChangeType', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SystemTimeToVariantTime', 'SysStringLen', 'SysFreeString', 'OleUIBusyW', 'GdipBitmapLockBits', 'GdipDrawImageRectI', 'GdiplusShutdown', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdipCloneImage', 'GdipDisposeImage', 'GdipGetImageGraphicsContext', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipSetInterpolationMode', 'GdipBitmapUnlockBits', 'GdipDeleteGraphics', 'GdipDrawImageI', 'GdipCreateBitmapFromHBITMAP', 'GdipCreateFromHDC', 'PlaySoundW', 'timeGetTime', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'EnumProcesses', 'GetModuleBaseNameW', 'EnumProcessModules', 'WSASetLastError', 'getsockname', 'getsockopt', 'connect', 'bind', 'accept', 'htonl', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'listen', 'select', 'ioctlsocket', 'closesocket', '__WSAFDIsSet', 'WSACleanup', 'WSAStartup', 'WSAIoctl', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext'], ['memcpy', 'LocaleNameToLCID', 'IsSystemResumeAutomatic', 'CreateTimerQueue', 'GetFileSize', 'GetProcessShutdownParameters', 'FreeLibrary', 'GetProcAddress', 'LocalFree', 'GetPrivateProfileStructW', 'RaiseException', 'LocalAlloc', 'LoadLibraryA', 'InterlockedExchange', 'GetLastError', 'PathUnExpandEnvStringsA', 'SetupGetBackupInformationW', 'CertGetCRLContextProperty', 'WSAIsBlocking', 'ClusterRegCloseKey', 'LoadCursorA', 'MprAdminPortDisconnect'], ['ReleaseMutex', 'GetWindowsDirectoryW', 'CreateEventW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'TerminateThread', 'ExitProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'TerminateProcess', 'Process32NextW', 'CopyFileW', 'MoveFileW', 'lstrcatW', 'GetEnvironmentVariableW', 'GetTempFileNameW', 'GetDiskFreeSpaceExW', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'VirtualQuery', 'InterlockedCompareExchange', 'GetCurrentThread', 'VirtualProtect', 'SuspendThread', 'MapViewOfFile', 'CreateFileMappingW', 'LoadLibraryA', 'GetFileAttributesExW', 'GetFileAttributesW', 'FlushViewOfFile', 'SetFileTime', 'SetFileAttributesW', 'LocalAlloc', 'GetLogicalDriveStringsA', 'GetVersion', 'GetSystemDirectoryA', 'GetDriveTypeA', 'GetVolumeInformationA', 'GetDiskFreeSpaceExA', 'GetPrivateProfileStringW', 'GetModuleHandleA', 'GetSystemDefaultLangID', 'GetFileType', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'DosDateTimeToFileTime', 'FindResourceW', 'LoadResource', 'Sleep', 'lstrcmpW', 'MulDiv', 'SetEvent', 'OpenEventW', 'InterlockedIncrement', 'InterlockedDecrement', 'LoadLibraryExW', 'lstrcmpiW', 'FlushInstructionCache', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'FreeResource', 'FindResourceExW', 'GetCurrentThreadId', 'GlobalMemoryStatusEx', 'CreateThread', 'CreateMutexW', 'GetExitCodeProcess', 'WaitForSingleObject', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetLocaleInfoW', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'QueryPerformanceCounter', 'GetStartupInfoA', 'SetHandleCount', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetConsoleMode', 'GetConsoleCP', 'GetTimeZoneInformation', 'GetModuleFileNameA', 'GetStdHandle', 'HeapCreate', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetStringTypeW', 'GetCPInfo', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'GetStartupInfoW', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TlsFree', 'DeleteAtom', 'FindAtomW', 'TlsAlloc', 'AddAtomW', 'GetAtomNameW', 'TlsSetValue', 'TlsGetValue', 'SetEndOfFile', 'GetSystemTimeAsFileTime', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'HeapSize', 'OpenProcess', 'GetCurrentProcess', 'RemoveDirectoryW', 'lstrcpyW', 'GetFullPathNameW', 'SetLastError', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'MoveFileExW', 'GetTickCount', 'LockResource', 'SizeofResource', 'InterlockedExchange', 'lstrcmpiA', 'lstrcmpA', 'WideCharToMultiByte', 'lstrlenW', 'RaiseException', 'GetVersionExW', 'MultiByteToWideChar', 'lstrlenA', 'GetLastError', 'VirtualAlloc', 'ReadFile', 'VirtualFree', 'SetFilePointer', 'GetFileSize', 'LeaveCriticalSection', 'CreateFileW', 'EnterCriticalSection', 'FreeLibrary', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetProcAddress', 'CreateProcessW', 'LoadLibraryW', 'GetModuleFileNameW', 'GetModuleHandleW', 'GetCurrentProcessId', 'CloseHandle', 'HeapReAlloc', 'HeapDestroy', 'DeleteFileW', 'CreateDirectoryW', 'GetSystemDirectoryW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'WriteFile', 'CreateFileA', 'OpenMutexW', 'DeviceIoControl', 'ShowWindow', 'GetWindowThreadProcessId', 'CallWindowProcW', 'GetDesktopWindow', 'GetSystemMetrics', 'WindowFromPoint', 'GetMessageW', 'TranslateMessage', 'SystemParametersInfoW', 'SetCursor', 'GetCursorPos', 'UpdateLayeredWindow', 'UpdateWindow', 'PostQuitMessage', 'GetShellWindow', 'PostMessageW', 'SetTimer', 'IsWindow', 'FindWindowW', 'SendMessageW', 'GetWindow', 'GetWindowRect', 'GetParent', 'GetCapture', 'TrackMouseEvent', 'AdjustWindowRectEx', 'DrawTextW', 'InflateRect', 'DrawIconEx', 'GetIconInfo', 'WindowFromDC', 'UnregisterClassA', 'DispatchMessageW', 'GetTopWindow', 'IsWindowVisible', 'RegisterClassExW', 'GetClassInfoExW', 'LoadCursorW', 'DefWindowProcW', 'DestroyWindow', 'GetDlgItem', 'CreateWindowExW', 'EndDialog', 'CharNextW', 'DestroyAcceleratorTable', 'ReleaseDC', 'GetWindowLongW', 'SetWindowLongW', 'MapWindowPoints', 'GetClientRect', 'GetMonitorInfoW', 'SetWindowPos', 'PtInRect', 'ExitWindowsEx', 'GetForegroundWindow', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'wsprintfW', 'LoadStringW', 'DialogBoxParamW', 'IsIconic', 'GetKeyState', 'MessageBoxW', 'KillTimer', 'RegisterWindowMessageW', 'GetWindowTextLengthW', 'GetWindowTextW', 'SetWindowTextW', 'BeginPaint', 'EndPaint', 'IsChild', 'GetFocus', 'SetFocus', 'GetClassNameW', 'GetSysColor', 'RedrawWindow', 'CreateAcceleratorTableW', 'ClientToScreen', 'ScreenToClient', 'MoveWindow', 'SetCapture', 'ReleaseCapture', 'FillRect', 'InvalidateRgn', 'InvalidateRect', 'GetDC', 'MonitorFromWindow', 'CreateSolidBrush', 'CreateCompatibleBitmap', 'BitBlt', 'GetStockObject', 'GetDeviceCaps', 'GetObjectW', 'SelectObject', 'DeleteObject', 'CreateDIBSection', 'CreateCompatibleDC', 'DeleteDC', 'SetViewportOrgEx', 'GetObjectType', 'GetRandomRgn', 'GdiAlphaBlend', 'GetLayout', 'SetLayout', 'GetCurrentObject', 'SetBkMode', 'SetGraphicsMode', 'SetWorldTransform', 'ModifyWorldTransform', 'GetTextExtentPoint32W', 'CreateFontIndirectW', 'SelectClipRgn', 'CreateRectRgn', 'CombineRgn', 'OffsetRgn', 'GetRgnBox', 'CreateRectRgnIndirect', 'RectVisible', 'SaveDC', 'IntersectClipRect', 'RestoreDC', 'LPtoDP', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCreateKeyA', 'SetSecurityDescriptorDacl', 'AddAccessAllowedAce', 'InitializeAcl', 'GetLengthSid', 'RegSetKeySecurity', 'SetSecurityDescriptorOwner', 'InitializeSecurityDescriptor', 'RegSetValueExW', 'RegCreateKeyExW', 'DuplicateTokenEx', 'GetTokenInformation', 'SetNamedSecurityInfoW', 'OpenProcessToken', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegQueryValueExW', 'RegEnumKeyExW', 'SHGetFolderPathW', 'SHGetSpecialFolderPathA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'SHChangeNotify', 'SHFileOperationW', 'PropVariantClear', 'OleInitialize', 'CLSIDFromString', 'CLSIDFromProgID', 'CoGetClassObject', 'OleLockRunning', 'StringFromGUID2', 'OleUninitialize', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'CoTaskMemFree', 'RegisterDragDrop', 'RevokeDragDrop', 'DoDragDrop', 'CoInitialize', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'CoUninitialize', 'CreateStdDispatch', 'CreateDispTypeInfo', 'VariantChangeType', 'VarCmp', 'SysAllocStringLen', 'LoadTypeLib', 'VariantCopy', 'LoadRegTypeLib', 'OleCreateFontIndirect', 'VarUI4FromStr', 'VarBstrCmp', 'SysStringLen', 'VariantClear', 'SysAllocString', 'SysFreeString', 'VariantInit', 'StrStrIW', 'StrCmpIW', 'SHDeleteKeyW', 'StrToIntW', 'SHDeleteEmptyKeyW', 'PathRemoveBackslashW', 'SHStrDupW', 'PathFindExtensionW', 'SHDeleteValueW', 'SHSetValueA', 'PathIsRootW', 'SHGetValueA', 'SHSetValueW', 'PathAppendW', 'PathRemoveFileSpecW', 'PathFindFileNameW', 'SHGetValueW', 'PathFileExistsW', 'InitCommonControlsEx', 'WinVerifyTrust', 'EnumProcessModules', 'GetModuleFileNameExW', 'GetModuleInformation', 'HttpAddRequestHeadersA', 'InternetOpenUrlW', 'InternetErrorDlg', 'InternetCrackUrlW', 'HttpQueryInfoA', 'InternetOpenW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpAddRequestHeadersW', 'InternetQueryOptionW', 'InternetSetOptionW', 'HttpSendRequestW', 'HttpQueryInfoW', 'InternetReadFile', 'InternetCloseHandle', 'CryptQueryObject', 'CryptMsgGetParam', 'CertFindCertificateInStore', 'CertFreeCertificateContext', 'CertCloseStore', 'CryptMsgClose', 'CertGetNameStringW', 'Netbios', 'GdiplusStartup', 'GdiplusShutdown', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'SetupIterateCabinetW'], ['InitCommonControlsEx', 'GetStockObject', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'free', 'CoInitialize', 'ShellExecuteExW', 'PathRemoveArgsW', 'SetFocus', 'timeBeginPeriod'], ['WriteConsoleW', 'Process32Next', 'CreateToolhelp32Snapshot', 'Process32First', 'GetModuleFileNameA', 'CloseHandle', 'GlobalFree', 'GlobalAlloc', 'GetLastError', 'Sleep', 'OpenProcess', 'GetCurrentProcess', 'WinExec', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'DuplicateTokenEx', 'AdjustTokenPrivileges', 'CloseServiceHandle', 'LookupPrivilegeValueA', 'OpenSCManagerA', 'CreateProcessWithTokenW', 'ImpersonateLoggedOnUser', 'OpenProcessToken', 'SetThreadToken', 'GetTokenInformation', 'OpenServiceA', 'QueryServiceStatusEx', 'ConvertSidToStringSidW', 'StartServiceW'], ['CreateDCW', 'DPtoLP', 'SetMapMode', 'GetObjectW', 'DeleteDC', 'EnumFontFamiliesExW', 'CopyMetaFileW', 'StretchDIBits', 'PlayEnhMetaFile', 'GdiComment', 'WidenPath', 'StrokePath', 'StrokeAndFillPath', 'SetMiterLimit', 'GetPath', 'GetMiterLimit', 'FlattenPath', 'CreateMetaFileW', 'CloseMetaFile', 'CreateEnhMetaFileW', 'CloseEnhMetaFile', 'ExtTextOutW', 'GetDCOrgEx', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'CreateBitmap', 'SaveDC', 'RestoreDC', 'SelectObject', 'GetStockObject', 'SelectPalette', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetGraphicsMode', 'SetWorldTransform', 'ModifyWorldTransform', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'DeleteObject', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'UnrealizeObject', 'CreatePenIndirect', 'CreateBrushIndirect', 'CreateFontIndirectW', 'CreateFontW', 'CreateBitmapIndirect', 'SetBitmapBits', 'GetBitmapBits', 'SetBitmapDimensionEx', 'GetBitmapDimensionEx', 'CreateCompatibleBitmap', 'CreateDiscardableBitmap', 'CreatePalette', 'CreateHalftonePalette', 'GetPaletteEntries', 'SetPaletteEntries', 'AnimatePalette', 'GetNearestPaletteIndex', 'ResizePalette', 'CreateRectRgnIndirect', 'CreateEllipticRgn', 'CreateEllipticRgnIndirect', 'CreatePolygonRgn', 'CreatePolyPolygonRgn', 'CreateRoundRectRgn', 'PathToRegion', 'ExtCreateRegion', 'GetRegionData', 'SetRectRgn', 'CombineRgn', 'EqualRgn', 'OffsetRgn', 'GetRgnBox', 'PtInRegion', 'RectInRegion', 'CreateICW', 'CreateCompatibleDC', 'GetBrushOrgEx', 'SetBrushOrgEx', 'EnumObjects', 'GetNearestColor', 'RealizePalette', 'UpdateColors', 'GetBkColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetMapMode', 'GetGraphicsMode', 'GetWorldTransform', 'GetViewportOrgEx', 'GetViewportExtEx', 'GetWindowOrgEx', 'GetWindowExtEx', 'LPtoDP', 'FillRgn', 'FrameRgn', 'InvertRgn', 'PaintRgn', 'PtVisible', 'RectVisible', 'Arc', 'Polyline', 'Chord', 'Ellipse', 'Pie', 'Polygon', 'PolyPolygon', 'Rectangle', 'RoundRect', 'PatBlt', 'BitBlt', 'StretchBlt', 'GetPixel', 'SetPixel', 'FloodFill', 'ExtFloodFill', 'TextOutW', 'GetTextExtentPoint32W', 'GetTextAlign', 'GetTextFaceW', 'GetTextMetricsW', 'GetTextCharacterExtra', 'GetCharWidthW', 'GetFontLanguageInfo', 'GetCharacterPlacementW', 'GetAspectRatioFilterEx', 'Escape', 'SetBoundsRect', 'GetBoundsRect', 'ResetDCW', 'GetOutlineTextMetricsW', 'GetCharABCWidthsW', 'GetFontData', 'GetKerningPairsW', 'GetGlyphOutlineW', 'StartDocW', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'MaskBlt', 'PlgBlt', 'SetPixelV', 'AngleArc', 'GetArcDirection', 'PolyPolyline', 'GetColorAdjustment', 'GetCurrentObject', 'PolyBezier', 'DrawEscape', 'ExtEscape', 'GetCharABCWidthsFloatW', 'GetCharWidthFloatW', 'AbortPath', 'BeginPath', 'CloseFigure', 'EndPath', 'FillPath', 'CreatePen', 'UnregisterClassA', 'MsgWaitForMultipleObjects', 'PeekMessageA', 'IsWindowUnicode', 'DrawTextExW', 'DrawTextW', 'GetMessageA', 'DispatchMessageA', 'SubtractRect', 'UnionRect', 'InflateRect', 'SetRect', 'PtInRect', 'SetClipboardData', 'SendMessageW', 'CheckRadioButton', 'GetActiveWindow', 'SendDlgItemMessageW', 'AppendMenuW', 'IsDialogMessageW', 'SetForegroundWindow', 'PostMessageW', 'FillRect', 'TrackPopupMenu', 'DestroyWindow', 'IsRectEmpty', 'DestroyIcon', 'PostQuitMessage', 'PeekMessageW', 'MapDialogRect', 'IsWindow', 'TabbedTextOutW', 'GetWindowThreadProcessId', 'EnableWindow', 'IsWindowEnabled', 'GetLastActivePopup', 'CharUpperW', 'MapVirtualKeyW', 'GetKeyNameTextW', 'SystemParametersInfoW', 'GetClipboardFormatNameW', 'GetClipboardFormatNameA', 'GetDialogBaseUnits', 'TranslateMessage', 'UnregisterClassW', 'UnpackDDElParam', 'ReuseDDElParam', 'DestroyMenu', 'TranslateAcceleratorW', 'LoadAcceleratorsW', 'GetMessageW', 'ReleaseCapture', 'SetCursor', 'SetRectEmpty', 'GetCursorPos', 'CheckMenuRadioItem', 'GetMenuContextHelpId', 'SetMenuContextHelpId', 'LoadMenuIndirectW', 'LoadMenuW', 'RemoveMenu', 'ModifyMenuW', 'InsertMenuItemW', 'InsertMenuW', 'GetSubMenu', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'EnableMenuItem', 'CheckMenuItem', 'DeleteMenu', 'IsMenu', 'CreatePopupMenu', 'CreateMenu', 'ScrollDC', 'GrayStringW', 'DrawFrameControl', 'GetTabbedTextExtentW', 'DrawFocusRect', 'DrawEdge', 'DrawStateW', 'DrawIcon', 'InvertRect', 'FrameRect', 'ExcludeUpdateRgn', 'WindowFromDC', 'GetSysColorBrush', 'GetAsyncKeyState', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'ScrollWindowEx', 'IsDlgButtonChecked', 'SetDlgItemTextW', 'SetDlgItemInt', 'GetDlgItemTextW', 'GetDlgItemInt', 'CheckDlgButton', 'OpenIcon', 'CloseWindow', 'LoadCursorW', 'PostThreadMessageW', 'GetWindowContextHelpId', 'SetWindowContextHelpId', 'SendNotifyMessageW', 'GetForegroundWindow', 'ShowCaret', 'HideCaret', 'SetCaretPos', 'GetCaretPos', 'CreateCaret', 'GetClipboardViewer', 'GetOpenClipboardWindow', 'OpenClipboard', 'SetClipboardViewer', 'ChangeClipboardChain', 'FlashWindow', 'WindowFromPoint', 'SetParent', 'FindWindowExW', 'FindWindowW', 'ChildWindowFromPointEx', 'ChildWindowFromPoint', 'ShowScrollBar', 'GetNextDlgTabItem', 'GetNextDlgGroupItem', 'DlgDirSelectComboBoxExW', 'DlgDirSelectExW', 'DlgDirListComboBoxW', 'DlgDirListW', 'SetCapture', 'KillTimer', 'SetTimer', 'DrawCaption', 'DrawAnimatedRects', 'EnableScrollBar', 'RedrawWindow', 'LockWindowUpdate', 'GetDCEx', 'ShowOwnedPopups', 'IsWindowVisible', 'ValidateRgn', 'ValidateRect', 'InvalidateRgn', 'InvalidateRect', 'GetUpdateRgn', 'GetUpdateRect', 'UpdateWindow', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'BringWindowToTop', 'GetWindowRgn', 'SetWindowRgn', 'ArrangeIconicWindows', 'IsZoomed', 'HiliteMenuItem', 'GetSystemMenu', 'DrawMenuBar', 'SetMenu', 'GetMenu', 'DragDetect', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'SetMenuItemBitmaps', 'RegisterWindowMessageW', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'LoadIconW', 'SendDlgItemMessageA', 'GetClientRect', 'MapWindowPoints', 'GetSysColor', 'DispatchMessageW', 'GetFocus', 'SetFocus', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'GetWindow', 'GetCapture', 'WinHelpW', 'TrackPopupMenuEx', 'SetWindowPlacement', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetKeyState', 'GetDlgCtrlID', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'CallWindowProcW', 'RemovePropW', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'SetWindowLongW', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'EndDialog', 'GetDesktopWindow', 'SetActiveWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamW', 'GetDlgItem', 'UnhookWindowsHookEx', 'MessageBoxW', 'GetWindowLongW', 'GetParent', 'GetClipboardOwner', 'CoRevokeClassObject', 'CoUnmarshalInterface', 'CreateStreamOnHGlobal', 'CoMarshalInterface', 'CoReleaseMarshalData', 'OleRun', 'CLSIDFromProgID', 'CLSIDFromString', 'StringFromGUID2', 'CoCreateInstance', 'OleUninitialize', 'OleInitialize', 'OleSetContainedObject', 'CoDisconnectObject', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CreateBindCtx', 'OleDuplicateData', 'CoRegisterClassObject', 'SysFreeString', 'SystemTimeToVariantTime', 'VarDateFromUdate', 'VarUdateFromDate', 'VariantTimeToSystemTime', 'DosDateTimeToVariantTime', 'LoadTypeLib', 'SysAllocString', 'VarBstrFromDate', 'VarDateFromStr', 'VarDecFromStr', 'VarBstrFromDec', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCopy', 'VarBstrFromCy', 'VarCyFromStr', 'SysReAllocStringLen', 'VariantCopy', 'SafeArrayCreate', 'SafeArrayRedim', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SysStringByteLen', 'SysAllocStringByteLen', 'SysStringLen', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'VirtualProtect', 'CreatePipe', 'GlobalFree', 'Sleep', 'GetSystemDirectoryW', 'GlobalAlloc', 'GetTickCount', 'GlobalLock', 'SetUnhandledExceptionFilter', 'FreeLibrary', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetConsoleMode', 'GetConsoleCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'HeapReAlloc', 'FatalAppExitA', 'SetHandleCount', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'OutputDebugStringW', 'GetFileType', 'WriteConsoleW', 'OutputDebugStringA', 'GetStdHandle', 'DebugBreak', 'ExitProcess', 'ExitThread', 'CreateThread', 'GetModuleFileNameA', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'IsBadReadPtr', 'HeapValidate', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'GetDiskFreeSpaceW', 'GetTempFileNameW', 'GetFileTime', 'SetFileTime', 'GetFileAttributesW', 'GetShortPathNameW', 'lstrcmpiW', 'GetStringTypeExW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'MoveFileW', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileW', 'GetCurrentProcess', 'DuplicateHandle', 'GetHandleInformation', 'GetCurrentDirectoryW', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'GetThreadLocale', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'FindResourceExW', 'InterlockedIncrement', 'CompareStringA', 'InterlockedExchange', 'GetCurrentThread', 'GetLocaleInfoW', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GlobalFlags', 'CreateEventW', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'CopyFileW', 'GlobalSize', 'FormatMessageW', 'GetProfileIntW', 'MulDiv', 'GetModuleHandleA', 'GetVersion', 'GetVersionExW', 'SuspendThread', 'ResumeThread', 'GetThreadPriority', 'SetThreadPriority', 'CompareStringW', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpW', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExA', 'FreeResource', 'lstrlenA', 'lstrcmpA', 'MultiByteToWideChar', 'SetErrorMode', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'GlobalUnlock', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'OpenFileMappingA', 'LocalFree', 'GetAtomNameW', 'GlobalGetAtomNameW', 'lstrlenW', 'WideCharToMultiByte', 'InterlockedDecrement', 'GetModuleHandleW', 'GetProcAddress', 'GetCurrentProcessId', 'GetModuleFileNameW', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetLastError', 'SetLastError', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'SetStdHandle', 'GetTimeZoneInformation', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetEnvironmentVariableA', 'OpenEventA', 'FileTimeToLocalFileTime', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateFileMappingA', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GetFileTitleW', 'DragAcceptFiles', 'ExtractIconW', 'SHGetFileInfoW', 'DragQueryFileW', 'DragFinish', 'PathFindExtensionW', 'PathStripToRootW', 'PathFindFileNameW', 'PathRemoveExtensionW', 'PathIsUNCW', 'RegQueryValueW', 'OpenThreadToken', 'RevertToSelf', 'SetThreadToken', 'GetFileSecurityW', 'SetFileSecurityW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegSetValueW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SystemTimeToTzSpecificLocalTime', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'FileTimeToSystemTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsMenu', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'SHGetFileInfoA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'MulDiv', 'VirtualProtect', 'NtFlushInstructionCache', 'GetModuleHandleA', 'LoadLibraryA', 'LoadLibraryW', 'FileProtocolHandlerA'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'memcpy', 'memset', 'printf', 'realloc', 'sprintf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strlen', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSectionAndSpinCount', 'HeapDestroy', 'RaiseException', 'GetLastError', 'HeapSize', 'DecodePointer', 'DeleteCriticalSection', 'GetModuleHandleW', 'VirtualProtect', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'ExpandEnvironmentStringsW', 'CreateFileW', 'WriteFile', 'CloseHandle', 'VirtualAlloc', 'ExitProcess', 'FindResourceExW', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetStringTypeW', 'EncodePointer', 'GetCommandLineA', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'SetLastError', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleFileNameW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'RtlUnwind', 'LCMapStringW', 'WriteConsoleW', 'ShellExecuteW', 'PathFileExistsW', 'PathRemoveFileSpecW', 'PathAppendW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'MessageBoxA', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsDBCSLeadByteEx', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetConsoleCP', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetFileType', 'GetFileSize', 'CreateFileW', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'PeekMessageW', 'OemToCharBuffW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetVolumeLabelW', 'SetThreadPriority', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'RaiseException', 'QueryDosDeviceW', 'IsDebuggerPresent', 'MoveFileW', 'MapViewOfFile', 'LocalFree', 'LocalFileTimeToFileTime', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathW', 'GetTempFileNameW', 'GetSystemTimes', 'GetStdHandle', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileTime', 'GetFileSize', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileW', 'DeleteCriticalSection', 'CreateProcessW', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ShellExecuteW', 'SHGetSpecialFolderPathW', 'sprintf', '_ftol', 'strncmp', '_stricmp'], ['SetFilePointerEx', 'HeapReAlloc', 'ReadFile', 'LoadLibraryExW', 'OutputDebugStringW', 'SetStdHandle', 'WriteConsoleW', 'ReadConsoleW', 'CreateFileW', 'VirtualProtect', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'CloseHandle', 'GetModuleFileNameW', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'Sleep', 'GetWindowsDirectoryA', 'GetProcessHeap', 'HeapAlloc', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'GetCurrentThreadId', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetStdHandle', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetWindowRect', 'TrackPopupMenu', 'FillRect', 'GetClientRect', 'IsDialogMessageA', 'GetForegroundWindow', 'CreateDialogIndirectParamA', 'DefWindowProcA', 'SetWindowsHookExA', 'CreatePopupMenu', 'GetSysColorBrush', 'GetActiveWindow', 'AppendMenuA', 'PostMessageA', 'DialogBoxIndirectParamA', 'DrawFrameControl', 'GetWindowThreadProcessId', 'CreateRectRgn', 'PtVisible', 'CreateFontA', 'GetStockObject', 'GetPixel', 'SelectClipRgn', 'StartServiceCtrlDispatcherA', 'OpenProcessToken', 'DeleteService', 'OpenThreadToken', 'SetEntriesInAclA', 'GetTokenInformation', 'RegCloseKey', 'RegEnumKeyA', 'FreeSid', 'OpenSCManagerA', 'SetServiceStatus', 'AllocateAndInitializeSid', 'QueryServiceStatus', 'RegOpenKeyExA', 'LookupPrivilegeValueW', 'SetSecurityDescriptorDacl', 'RegCreateKeyA', 'InitializeSecurityDescriptor', 'CreateServiceA', 'RegQueryValueExA', 'RegisterServiceCtrlHandlerA', 'RegSetValueExA', 'OpenServiceA', 'ChooseFontA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'CommDlgExtendedError', 'ReplaceTextA', 'ImageList_Create', 'ImageList_GetImageCount', 'ImageList_GetBkColor', 'ImageList_EndDrag', 'ImageList_DragEnter'], ['VerSetConditionMask', 'SetLocaleInfoW', 'FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'FillConsoleOutputCharacterW', 'VirtualFree', 'TerminateProcess', 'GetLastError', 'GetVersionExA', 'FreeResource', 'EnumResourceNamesW', 'FindNextFileA', 'CopyFileExW', 'BuildCommDCBW', 'SetDefaultCommConfigA', 'WritePrivateProfileStructA', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputA', 'WriteConsoleInputA', 'LoadResource', 'AddAtomA', 'SearchPathA', 'GetThreadTimes', 'CallNamedPipeW', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryA', 'GlobalAlloc', 'SetProcessPriorityBoost', 'GetProfileSectionW', 'DeleteFileW', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceW', 'SetLastError', 'FatalAppExitW', 'SetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'WriteFileGather', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualAllocEx', 'InterlockedExchangeAdd', 'GetSystemTimeAdjustment', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'GetACP', 'GlobalFindAtomW', 'lstrcatA', 'SetMailslotInfo', 'CreateActCtxW', '_lwrite', 'OutputDebugStringA', 'CreateNamedPipeA', 'GetAtomNameW', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'DebugActiveProcessStop', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringA', 'GetFileAttributesExA', 'LocalFileTimeToFileTime', 'MoveFileA', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameW', 'VerLanguageNameW', 'LockFile', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'ContinueDebugEvent', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'OpenMutexW', 'GetModuleFileNameW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthW', 'GlobalUnWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeA', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'ReadConsoleW', 'MapUserPhysicalPagesScatter', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'GetDateFormatW', 'GetConsoleAliasExesW', 'EnumDateFormatsA', 'GlobalUnfix', 'OpenMutexA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InterlockedIncrement', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'InitiateSystemShutdownA'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['InitCommonControlsEx', 'SHBrowseForFolderW', 'SHGetSpecialFolderLocation', 'SHGetFileInfoW', 'CommandLineToArgvW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'CreateFileA', 'FreeLibrary', 'GetProcessHeap', 'HeapAlloc', 'GetLastError', 'GetProcAddress', 'HeapFree', 'LoadLibraryW', 'GetModuleFileNameW', 'LocalFree', 'WaitForSingleObject', 'CreateProcessW', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'CloseHandle', 'SetFileApisToOEM', 'GetCurrentThread', 'SetPriorityClass', 'GetEnvironmentVariableW', 'SetThreadPriority', 'GetCurrentProcess', 'GetModuleHandleW', 'GetVersionExW', 'CreateFileW', 'ExpandEnvironmentStringsW', 'GetCommandLineW', 'DeleteFileW', 'GetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryW', 'FindFirstFileW', 'FindClose', 'FindNextFileW', 'FormatMessageW', 'InterlockedExchangeAdd', 'SetEndOfFile', 'SetFileTime', 'WriteFile', 'SetFilePointer', 'GetFileSize', 'ReadFile', 'WideCharToMultiByte', 'GetACP', 'MultiByteToWideChar', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetTempPathW', 'GetFullPathNameW', 'GetWindowsDirectoryW', 'GetTempFileNameW', 'SetFileAttributesW', 'GetLongPathNameW', 'MoveFileW', 'lstrlenW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'FindResourceW', 'FileTimeToSystemTime', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetStringTypeW', 'GetStringTypeA', 'GetLocaleInfoA', 'LoadLibraryA', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'LCMapStringW', 'LCMapStringA', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'WaitForMultipleObjects', 'ResumeThread', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetSystemTimeAsFileTime', 'GetVersionExA', 'GetStartupInfoW', 'ExitThread', 'GetCurrentThreadId', 'CreateThread', 'RaiseException', 'RtlUnwind', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'Sleep', 'HeapSize', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'CreateDialogParamW', 'SetTimer', 'LoadIconW', 'ScreenToClient', 'TranslateMessage', 'IsWindowVisible', 'GetMessageW', 'IsDialogMessageW', 'DestroyIcon', 'IsWindow', 'MessageBoxW', 'ShowWindow', 'PostMessageW', 'DialogBoxParamW', 'SetWindowPos', 'GetWindowRect', 'GetSystemMetrics', 'GetDlgItem', 'SendMessageW', 'EndDialog', 'SetFocus', 'GetWindowTextW', 'SetWindowTextW', 'PostQuitMessage', 'DispatchMessageW', 'GetActiveWindow', 'GetDesktopWindow', 'LoadStringW', 'KillTimer', 'EnableWindow', 'CreateSolidBrush', 'DeleteObject', 'CoUninitialize', 'CoTaskMemFree', 'CoInitializeEx', 'CoCreateInstance', 'CoInitialize'], ['__WSAFDIsSet', 'setsockopt', 'ntohs', 'recvfrom', 'sendto', 'htons', 'select', 'listen', 'WSAStartup', 'bind', 'closesocket', 'connect', 'socket', 'send', 'WSACleanup', 'ioctlsocket', 'accept', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'recv', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_ReplaceIcon', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_Destroy', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'WNetUseConnectionW', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'EnumProcesses', 'GetModuleBaseNameW', 'GetProcessMemoryInfo', 'EnumProcessModules', 'CreateEnvironmentBlock', 'DestroyEnvironmentBlock', 'UnloadUserProfile', 'LoadUserProfileW', 'HeapAlloc', 'Sleep', 'GetCurrentThreadId', 'RaiseException', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'lstrcpyW', 'MultiByteToWideChar', 'lstrlenW', 'lstrcmpiW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'FindNextFileW', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'GetProcessHeap', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'GetTempPathW', 'GetTempFileNameW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'SetErrorMode', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'DeviceIoControl', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetCurrentThread', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'LoadLibraryExW', 'HeapFree', 'WaitForSingleObject', 'CreateThread', 'DuplicateHandle', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetProcAddress', 'LoadLibraryA', 'FreeLibrary', 'GetModuleFileNameW', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'ExitProcess', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetTimeFormatW', 'GetDateFormatW', 'GetCommandLineW', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'HeapCreate', 'SetHandleCount', 'GetFileType', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'RtlUnwind', 'SetFilePointer', 'GetTimeZoneInformation', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'SetSystemPowerState', 'SetEnvironmentVariableA', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'ReleaseCapture', 'SetCapture', 'WindowFromPoint', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'CheckMenuRadioItem', 'SetWindowPos', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'SystemParametersInfoW', 'TranslateMessage', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'AttachThreadInput', 'GetFocus', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'GetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'MessageBoxW', 'DefWindowProcW', 'CopyImage', 'AdjustWindowRectEx', 'SetRect', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'GetMenuItemID', 'DispatchMessageW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'PeekMessageW', 'UnregisterHotKey', 'CharLowerBuffW', 'keybd_event', 'MonitorFromRect', 'GetWindowThreadProcessId', 'DeleteObject', 'AngleArc', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'GetDeviceCaps', 'MoveToEx', 'DeleteDC', 'GetPixel', 'CreateDCW', 'Ellipse', 'PolyDraw', 'BeginPath', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'GetStockObject', 'LineTo', 'GetSaveFileNameW', 'GetOpenFileNameW', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegConnectRegistryW', 'CloseServiceHandle', 'UnlockServiceDatabase', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetLengthSid', 'CopySid', 'LogonUserW', 'LockServiceDatabase', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'GetAce', 'AddAce', 'SetSecurityDescriptorDacl', 'RegOpenKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'InitiateSystemShutdownExW', 'OpenSCManagerW', 'RegCloseKey', 'DragQueryPoint', 'ShellExecuteExW', 'SHGetFolderPathW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHBrowseForFolderW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHGetMalloc', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CLSIDFromString', 'StringFromGUID2', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CoTaskMemAlloc', 'CoTaskMemFree', 'ProgIDFromCLSID', 'OleInitialize', 'CreateBindCtx', 'CLSIDFromProgID', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'OleUninitialize', 'IIDFromString', 'VariantChangeType', 'VariantCopyInd', 'DispCallFunc', 'CreateStdDispatch', 'CreateDispTypeInfo', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SysStringLen', 'SafeArrayAllocData', 'GetActiveObject', 'QueryPathOfRegTypeLib', 'SafeArrayAllocDescriptorEx', 'SafeArrayCreateVector', 'SysAllocString', 'VariantCopy', 'VariantClear', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'OleLoadPicture', 'SafeArrayAccessData', 'VariantInit'], ['CreateMutexW', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'GetSystemWindowsDirectoryW', 'UnlockFile', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'GetVolumePathNameW', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetDevicePowerState', 'ReplaceFileA', 'GetComputerNameA', 'FindFirstFileA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'IsValidCodePage', 'CopyFileA', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'SetCurrentDirectoryA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'CharUpperBuffW', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'WinHttpQueryHeaders'], ['RaiseException', 'GetLastError', 'MultiByteToWideChar', 'lstrlenA', 'InterlockedDecrement', 'GetProcAddress', 'LoadLibraryA', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetModuleHandleA', 'Module32Next', 'CloseHandle', 'Module32First', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'SetEndOfFile', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetLocaleInfoA', 'CreateFileA', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'GetCommandLineA', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'FlushFileBuffers', 'SetFilePointer', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'RtlUnwind', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'OleInitialize', 'VariantInit', 'SafeArrayCreate', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'SysFreeString', 'SysAllocString', 'CorBindToRuntimeEx'], ['GetModuleFileNameA', 'GetNumberFormatW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetProfileIntA', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetThreadTimes', 'GetTickCount', 'GetVersionExA', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedIncrement', 'IsDBCSLeadByte', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenFileMappingW', 'OpenProcess', 'OutputDebugStringA', 'PostQueuedCompletionStatus', 'QueryPerformanceCounter', 'ReadFile', 'RtlUnwind', 'SetDefaultCommConfigW', 'GetLocaleInfoA', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetLocalTime', 'SetStdHandle', 'SetThreadAffinityMask', 'SetThreadIdealProcessor', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepEx', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VirtualFree', 'VirtualProtectEx', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcmpiA', 'lstrcpynA', 'lstrlenW', 'GetModuleHandleW', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetFileSize', 'GetFileAttributesW', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetConsoleAliasA', 'GetCommandLineA', 'GetCPInfo', 'GetBinaryTypeA', 'GetACP', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FlushFileBuffers', 'FatalAppExitA', 'ExpandEnvironmentStringsA', 'ExitProcess', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DnsHostnameToComputerNameW', 'DnsHostnameToComputerNameA', 'DisconnectNamedPipe', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateThread', 'CreateNamedPipeA', 'CreateFileW', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'ConvertDefaultLocale', 'ConnectNamedPipe', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'CancelIo', 'GetModuleHandleA', 'SetErrorMode', 'SetEnvironmentVariableA', 'VirtualAlloc', 'IsDlgButtonChecked', 'IsCharAlphaNumericW', 'InternalGetWindowText', 'GetWindowModuleFileNameA', 'GetMonitorInfoW', 'GetKeyState', 'ExitWindowsEx', 'EnumPropsExA', 'EndPaint', 'DrawTextW', 'DlgDirSelectExW', 'DdeUninitialize', 'CreateWindowExW', 'MapWindowPoints', 'CloseWindowStation', 'BeginPaint', 'LoadIconA', 'CharUpperW', 'GetClipboardSequenceNumber', 'CopyIcon', 'CreatePopupMenu', 'GetMessageTime', 'GetActiveWindow', 'GetParent', 'GetMenuCheckMarkDimensions', 'GetSystemMetrics', 'CharNextA', 'RegisterClassExA', 'SetLayeredWindowAttributes', 'TrackPopupMenu', 'wsprintfA', 'CreateCursor', 'LoadCursorFromFileW', 'GetMenuItemCount', 'GetTopWindow', 'GetDialogBaseUnits', 'InSendMessage', 'GetKBCodePage', 'GetMessagePos', 'GetKeyboardLayout', 'ShowCaret', 'CharLowerA', 'GetClipboardViewer', 'TranslateCharsetInfo', 'SetDIBitsToDevice', 'Rectangle', 'RectInRegion', 'PlayEnhMetaFileRecord', 'PATHOBJ_vGetBounds', 'ModifyWorldTransform', 'HT_Get8BPPMaskPalette', 'GetColorSpace', 'CreateHalftonePalette', 'RealizePalette', 'DeleteColorSpace', 'WidenPath', 'EndPath', 'FillPath', 'FlattenPath', 'GetTextAlign', 'EngTextOut', 'GdiDllInitialize', 'GdiSetPixelFormat', 'GetTextExtentExPointA', 'GetCharacterPlacementW', 'RegQueryValueExA', 'StartServiceCtrlDispatcherA', 'SetTokenInformation', 'SetServiceStatus', 'SetSecurityDescriptorDacl', 'SetNamedSecurityInfoA', 'RegisterServiceCtrlHandlerA', 'RegisterEventSourceA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenServiceA', 'OpenSCManagerA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'InitializeSecurityDescriptor', 'DuplicateTokenEx', 'DeregisterEventSource', 'DeleteService', 'CreateServiceA', 'CreateProcessAsUserA', 'CloseServiceHandle', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'SHGetDesktopFolder', 'SHGetPathFromIDListW', 'SHPathPrepareForWriteA', 'SHPathPrepareForWriteW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['GetTempPathA', 'GetLastError', 'WinExec', 'lstrlenW', 'FormatMessageW', 'LocalFree', 'AreFileApisANSI', 'ReadFile', 'TryEnterCriticalSection', 'HeapCreate', 'HeapFree', 'EnterCriticalSection', 'GetFullPathNameW', 'WriteFile', 'GetDiskFreeSpaceW', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'SetFilePointer', 'GetFullPathNameA', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'CreateFileW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'MultiByteToWideChar', 'GetDiskFreeSpaceA', 'GetFileAttributesA', 'GetFileAttributesExW', 'OutputDebugStringW', 'CreateFileA', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'GetSystemInfo', 'LoadLibraryW', 'HeapAlloc', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'GetProcAddress', 'CreateFileMappingA', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'GetProcessHeap', 'SystemTimeToFileTime', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'GetFileAttributesW', 'FindResourceW', 'LoadResource', 'LockResource', 'FreeResource', 'Sleep', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'GetCPInfo', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'InitializeSListHead', 'SetEvent', 'ResetEvent', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceFrequency', 'GetCurrentThread', 'GetThreadTimes', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetDateFormatW', 'GetTimeFormatW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'ReadConsoleW', 'GetTimeZoneInformation', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'WriteConsoleW', 'OutputDebugStringA', 'SizeofResource', 'RtlUnwind', 'RegCloseKey', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCreateKeyW', 'SHGetFolderPathW', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpOpenRequest', 'WinHttpSetOption', 'WinHttpCloseHandle', 'WinHttpAddRequestHeaders', 'WinHttpQueryAuthSchemes', 'WinHttpGetProxyForUrl', 'WinHttpSendRequest', 'WinHttpSetCredentials', 'WinHttpConnect', 'WinHttpQueryDataAvailable', 'WinHttpReceiveResponse', 'WinHttpOpen', 'WinHttpGetIEProxyConfigForCurrentUser'], ['CreateFileA', 'CreateTimerQueue', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleInputW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'CopyFileExW', 'GetStringTypeA', 'SetLocalTime', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadConsoleInputA', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'FillConsoleOutputCharacterA', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'WritePrivateProfileStringW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'BuildCommDCBW', 'OpenWaitableTimerA', 'LoadLibraryA', 'WriteConsoleA', 'InterlockedExchangeAdd', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'GlobalGetAtomNameW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'WaitForDebugEvent', 'SetThreadAffinityMask', 'GetVersionExA', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'FindNextVolumeA', 'EnumSystemLocalesW', 'CopyFileExA', 'GetTimeZoneInformation', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetStdHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'ImpersonateSelf'], ['GetModuleHandleW', 'GetDC', 'RegOpenKeyExA', 'ShellAboutA', '_CorExeMain', 'DrawStatusTextW'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'AllocConsole', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'HeapFree', 'GetProfileSectionA', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'GetVolumePathNameW', 'ActivateActCtx', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetFileAttributesW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'IsProcessorFeaturePresent', 'HeapCreate', 'HeapSize', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle'], ['GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'RtlUnwind', 'ExitProcess', 'GetModuleHandleExW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapQueryInformation', 'GetStdHandle', 'IsValidCodePage', 'GetFileType', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetTimeZoneInformation', 'OutputDebugStringW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'GetStringTypeW', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleW', 'ReadConsoleW', 'CreateFileW', 'SetEnvironmentVariableA', 'GetFileAttributesExA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'GetOEMCP', 'GlobalFlags', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'CompareStringW', 'WaitForSingleObject', 'GetCurrentProcessId', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSection', 'SetErrorMode', 'lstrcmpA', 'GetVersionExA', 'GetCurrentThread', 'GetVolumeInformationA', 'GetCurrentProcess', 'WriteFile', 'ReadFile', 'GetFullPathNameA', 'FlushFileBuffers', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'CompareStringA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'GlobalAddAtomA', 'LoadLibraryA', 'lstrcmpW', 'GlobalDeleteAtom', 'LoadLibraryExW', 'FreeLibrary', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'LeaveCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'LoadLibraryW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'SetLastError', 'OutputDebugStringA', 'GetACP', 'MultiByteToWideChar', 'GetCommandLineA', 'GetModuleHandleA', 'Sleep', 'CloseHandle', 'OpenProcess', 'Process32Next', 'ProcessIdToSessionId', 'Process32First', 'CreateToolhelp32Snapshot', 'WTSGetActiveConsoleSessionId', 'ReleaseMutex', 'CreateMutexA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'DeleteCriticalSection', 'DecodePointer', 'HeapSize', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'LocalFree', 'FormatMessageA', 'UnhandledExceptionFilter', 'GetLastError', 'ShowWindow', 'LoadBitmapW', 'SetMenuItemInfoA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'GetMonitorInfoA', 'MonitorFromWindow', 'WinHelpA', 'LoadIconW', 'LoadIconA', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetClassNameA', 'GetClassLongA', 'SetWindowLongA', 'GetWindowLongA', 'PtInRect', 'CopyRect', 'GetSysColor', 'MapWindowPoints', 'ScreenToClient', 'AdjustWindowRectEx', 'GetWindowRect', 'GetClientRect', 'GetWindowTextA', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetSystemMetrics', 'RedrawWindow', 'ValidateRect', 'SetForegroundWindow', 'GetForegroundWindow', 'MessageBoxA', 'EnableWindow', 'PostQuitMessage', 'UpdateWindow', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'GetKeyState', 'GetFocus', 'GetDlgCtrlID', 'GetDlgItem', 'IsWindowVisible', 'SetWindowPos', 'DestroyWindow', 'IsWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'CallWindowProcA', 'DefWindowProcA', 'PostMessageA', 'SendMessageA', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'DispatchMessageA', 'RegisterWindowMessageA', 'GetParent', 'IsWindowEnabled', 'SetWindowTextA', 'CharUpperA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'TabbedTextOutA', 'GetDC', 'ReleaseDC', 'ClientToScreen', 'DestroyMenu', 'GetWindowThreadProcessId', 'InvalidateRect', 'KillTimer', 'SetTimer', 'SetCursor', 'RealChildWindowFromPoint', 'LoadCursorA', 'GetSysColorBrush', 'GetCursorPos', 'GetActiveWindow', 'TranslateMessage', 'GetMessageA', 'SetMapMode', 'ExtTextOutA', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'OffsetViewportOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'PtVisible', 'GetStockObject', 'GetClipBox', 'Escape', 'DeleteObject', 'DeleteDC', 'CreateBitmap', 'TextOutA', 'SetBkColor', 'SetTextColor', 'GetDeviceCaps', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegEnumValueA', 'RegSetValueExA', 'RegDeleteValueA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'StartServiceCtrlDispatcherA', 'DeleteService', 'ControlService', 'OpenServiceA', 'CloseServiceHandle', 'ChangeServiceConfig2A', 'CreateServiceA', 'OpenSCManagerA', 'RegisterServiceCtrlHandlerExA', 'SetServiceStatus', 'CreateProcessAsUserA', 'AdjustTokenPrivileges', 'SetTokenInformation', 'DuplicateTokenEx', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CryptDecrypt', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptDeriveKey', 'CryptHashData', 'CryptCreateHash', 'CryptReleaseContext', 'CryptAcquireContextA', 'ShellExecuteA', 'PathFindExtensionA', 'PathFindFileNameA', 'PathIsUNCA', 'PathStripToRootA', 'CoTaskMemFree', 'CoUninitialize', 'CoCreateGuid', 'CoCreateInstance', 'CoInitialize', 'VariantChangeType', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'URLDownloadToFileA', 'InternetGetConnectedState', 'DeleteUrlCacheEntry', 'WTSQueryUserToken', 'CreateEnvironmentBlock', 'CreateStdAccessibleObject', 'LresultFromObject'], ['GetSysColorBrush', 'MessageBeep', 'MessageBoxA', 'GetSystemMetrics', 'SendNotifyMessageA', 'TlsSetValue', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'SetEnvironmentVariableW', 'GetLastError', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetModuleHandleA', 'GetProcAddress', 'MultiByteToWideChar', 'FreeConsole', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'FreeEnvironmentStringsW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'WriteConsoleW', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW'], ['lstrlenW', 'WriteFile', 'GetModuleFileNameW', 'SetEndOfFile', 'FindClose', 'CreateFileW', 'lstrcmpA', 'MultiByteToWideChar', 'GetLastError', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'HeapAlloc', 'GetFileSize', 'GetProcessHeap', 'lstrcpyW', 'lstrcmpW', 'GetLogicalDrives', 'GetFileSizeEx', 'SetFilePointerEx', 'lstrcmpiW', 'MoveFileW', 'HeapFree', 'FindNextFileW', 'InitializeCriticalSectionEx', 'CreateEventW', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEvent', 'InitializeSListHead', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'FindFirstFileW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'SetLastError', 'QueryPerformanceFrequency', 'RtlUnwind', 'InterlockedPushEntrySList', 'RaiseException', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'HeapSize', 'DecodePointer', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'WriteConsoleW', 'QueryPerformanceCounter', 'ReadFile', 'WNetCloseEnum', 'WNetEnumResourceW', 'WNetOpenEnumW', 'StrStrW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'DeleteDC', 'GdipFree', '??0_Winit@std@@QAE@XZ', '_iob', 'ExtractIconA', 'PathFileExistsA', 'URLDownloadToFileA', 'SendInput', 'InternetOpenA', 'waveInOpen', 'WSAStartup'], ['GetVersionExW', 'GetProductInfo', 'GetNativeSystemInfo', 'IsWow64Process', 'LocalFree', 'GetCurrentProcessId', 'ProcessIdToSessionId', 'LoadLibraryExW', 'FreeLibrary', 'Sleep', 'IsDebuggerPresent', 'RaiseException', 'GetThreadId', 'TryAcquireSRWLockExclusive', 'ReleaseSRWLockExclusive', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetFileType', 'SetHandleInformation', 'UnregisterWaitEx', 'AssignProcessToJobObject', 'WriteProcessMemory', 'CreateFileMappingW', 'MapViewOfFile', 'GetCurrentProcessorNumber', 'SetThreadAffinityMask', 'GetProcessHandleCount', 'GetProcessHeaps', 'SignalObjectAndWait', 'ExpandEnvironmentStringsW', 'GetFileAttributesW', 'QueryDosDeviceW', 'GetLongPathNameW', 'VirtualProtectEx', 'VirtualFreeEx', 'ReadProcessMemory', 'LoadLibraryW', 'GetModuleHandleExW', 'GetSystemTimeAsFileTime', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'RtlCaptureStackBackTrace', 'TlsGetValue', 'AcquireSRWLockExclusive', 'UnmapViewOfFile', 'CreateNamedPipeW', 'CreateProcessW', 'CreateRemoteThread', 'CreateJobObjectW', 'QueryInformationJobObject', 'DeleteProcThreadAttributeList', 'InitializeProcThreadAttributeList', 'UpdateProcThreadAttribute', 'FindResourceW', 'SizeofResource', 'LoadResource', 'LockResource', 'HeapDestroy', 'CreateDirectoryW', 'SetCurrentDirectoryW', 'TlsAlloc', 'TlsFree', 'TlsSetValue', 'SetFilePointerEx', 'GetFileSizeEx', 'SetEndOfFile', 'FlushFileBuffers', 'SearchPathW', 'lstrlenW', 'DebugBreak', 'FindClose', 'FindNextFileW', 'FindFirstFileExW', 'GetWindowsDirectoryW', 'WideCharToMultiByte', 'VirtualQuery', 'SetEnvironmentVariableW', 'GetEnvironmentVariableW', 'InitializeConditionVariable', 'SleepConditionVariableSRW', 'WakeAllConditionVariable', 'WakeConditionVariable', 'ExitThread', 'GetExitCodeThread', 'AreFileApisANSI', 'DeviceIoControl', 'TryEnterCriticalSection', 'CreateEventA', 'CancelIoEx', 'DisconnectNamedPipe', 'ConnectNamedPipe', 'CancelSynchronousIo', 'EnumSystemLocalesEx', 'GetUserDefaultLocaleName', 'HeapSize', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'FreeLibraryAndExitThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'OutputDebugStringW', 'GetTimeZoneInformation', 'HeapReAlloc', 'ReadConsoleW', 'EnumSystemLocalesW', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetUserDefaultLCID', 'GetUserDefaultLangID', 'TerminateProcess', 'GetCurrentThreadId', 'SetInformationJobObject', 'DuplicateHandle', 'PostQueuedCompletionStatus', 'TerminateJobObject', 'RegisterWaitForSingleObject', 'SetEvent', 'UnregisterWait', 'GetQueuedCompletionStatus', 'ResetEvent', 'SetLastError', 'CreateEventW', 'CreateIoCompletionPort', 'FormatMessageA', 'WriteFile', 'OutputDebugStringA', 'GetTickCount', 'GetLocalTime', 'GetCurrentDirectoryW', 'GetModuleFileNameW', 'VirtualAllocEx', 'VirtualQueryEx', 'GetCurrentThread', 'SetProcessDEPPolicy', 'GetModuleHandleA', 'GetSystemInfo', 'VerifyVersionInfoW', 'SetDllDirectoryW', 'GetProcAddress', 'GetModuleHandleW', 'VirtualFree', 'VirtualAlloc', 'CreateThread', 'ExitProcess', 'GetCurrentProcess', 'CreateMutexW', 'WaitForSingleObject', 'ReleaseMutex', 'HeapSetInformation', 'GetProcessHeap', 'GetLastError', 'CloseHandle', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetCommandLineW', 'VerSetConditionMask', 'GetTimeFormatW', 'GetDateFormatW', 'HeapFree', 'HeapAlloc', 'WriteConsoleW', 'GetStdHandle', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'RtlUnwind', 'InitializeSListHead', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'WaitForSingleObjectEx', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'CompareStringEx', 'GetLocaleInfoEx', 'VirtualProtect', 'LoadLibraryExA', 'InitializeSRWLock', 'ReleaseSRWLockShared', 'AcquireSRWLockShared', 'FormatMessageW', 'LocalAlloc', 'TerminateThread', 'FindFirstFileW', 'SwitchToThread', 'CreateFileMappingA', 'MapViewOfFileEx', 'OpenFileMappingA', 'InitOnceExecuteOnce', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSectionEx', 'LCMapStringEx', 'SleepConditionVariableCS', 'GetUserObjectInformationW', 'GetThreadDesktop', 'GetSystemMetrics', 'CloseWindowStation', 'GetProcessWindowStation', 'CloseDesktop', 'CreateDesktopW', 'SetProcessWindowStation', 'CreateWindowStationW', 'GetSidSubAuthorityCount', 'SetEntriesInAclW', 'GetSecurityInfo', 'GetSidSubAuthority', 'InitializeSid', 'CreateWellKnownSid', 'CopySid', 'LookupPrivilegeValueW', 'DuplicateToken', 'CreateRestrictedToken', 'RegQueryValueExW', 'RegCreateKeyExW', 'SetThreadToken', 'GetTokenInformation', 'CreateProcessAsUserW', 'AccessCheck', 'EqualSid', 'IsValidSid', 'GetNamedSecurityInfoW', 'MapGenericMask', 'ImpersonateLoggedOnUser', 'FreeSid', 'SystemFunction036', 'ConvertSidToStringSidW', 'DuplicateTokenEx', 'GetKernelObjectSecurity', 'SetKernelObjectSecurity', 'GetAce', 'OpenProcessToken', 'SetTokenInformation', 'GetLengthSid', 'ConvertStringSidToSidW', 'SetSecurityInfo', 'GetSecurityDescriptorSacl', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegOpenKeyExW', 'RegDisablePredefinedCache', 'RevertToSelf', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetUserNameW', 'RegOpenKeyA', 'SHGetFolderPathW', 'CommandLineToArgvW', 'SHGetKnownFolderPath', 'CoTaskMemFree', 'GetProcessMemoryInfo'], ['CreateFileW', 'WritePrivateProfileStringW', 'FindClose', 'LockResource', 'DeviceIoControl', 'GetFileAttributesW', 'GetFileTime', 'CloseHandle', 'GetVolumeInformationW', 'ExpandEnvironmentStringsW', '__chkstk', 'GetVersionExW', 'SizeofResource', 'WriteFile', 'SetFileTime', 'GetPrivateProfileStringW', 'GetProcessHeap', 'LoadResource', 'HeapAlloc', 'FindResourceW', 'FindFirstFileW', 'GetEnvironmentVariableW', 'LocalFree', 'lstrcatW', 'GetLastError', 'VerifyVersionInfoW', 'HeapFree', 'VerSetConditionMask', 'FindNextFileW', 'wsprintfW', 'OpenServiceW', 'RegCloseKey', 'RegOpenKeyExW', 'ChangeServiceConfigW', 'StartServiceW', 'ChangeServiceConfig2W', 'RegOpenKeyExA', 'InitializeSecurityDescriptor', 'RegQueryValueExW', 'RegCreateKeyExW', 'OpenSCManagerW', 'DeleteService', 'CloseServiceHandle', 'CreateServiceW', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'MakeAbsoluteSD', 'SetFileSecurityW', 'RegSetValueExW', '_wcsicmp', 'memmove', 'free', 'malloc', 'wprintf', 'printf', 'rand', 'srand', 'wcsncmp', '_time64', '__C_specific_handler', '_XcptFilter', 'sprintf', '_exit', '_cexit', 'exit', '__winitenv', '__wgetmainargs', '_initterm', '__setusermatherr', '_commode', '_fmode', '__set_app_type', '_c_exit', 'memset', 'memcpy'], ['GetTickCount', 'Sleep', 'CreateProcessA', 'GetSystemDirectoryA', 'GetEnvironmentVariableA', 'GetStartupInfoA', 'GetLastError', 'OpenMutexA', 'VirtualProtect', 'CloseHandle', 'DeleteFileA', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RaiseException', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW'], ['CryptBinaryToStringA', 'CryptStringToBinaryA', 'GdipSaveImageToStream', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncoders', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusShutdown', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GetAdaptersAddresses', 'InternetSetOptionA', 'InternetQueryOptionA', 'InternetReadFile', 'HttpOpenRequestA', 'InternetCloseHandle', 'InternetOpenA', 'HttpSendRequestA', 'HttpQueryInfoA', 'InternetConnectA', 'gethostname', 'WSAStartup', 'WSACleanup', 'gethostbyname', 'VirtualAlloc', 'GetPrivateProfileStringW', 'VirtualFree', 'DisableThreadLibraryCalls', 'lstrcmpiA', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'VerifyVersionInfoW', 'lstrlenW', 'GetVersionExA', 'GetSystemInfo', 'GetCurrentProcess', 'GetVolumeInformationW', 'VerSetConditionMask', 'GetTickCount', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'LoadLibraryW', 'CloseHandle', 'Sleep', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'OpenFileMappingA', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateThread', 'CreateRemoteThread', 'GetExitCodeThread', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetProcessHeap', 'IsWow64Process', 'GetLastError', 'CreateMutexA', 'lstrlenA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'GetFileSize', 'ReadFile', 'WriteFile', 'SetLastError', 'FreeLibrary', 'wsprintfW', 'TranslateMessage', 'DispatchMessageA', 'wsprintfA', 'GetSystemMetrics', 'GetMessageA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'SHGetSpecialFolderPathW'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegQueryValueExW', 'InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyExW', 'SetSecurityDescriptorDacl', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'OpenFileMappingW', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'OpenMutexW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'CreateMutexW', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'OpenEventW', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'ReleaseMutex', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'LCMapStringW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['__wgetmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '_wcmdln', '__set_app_type', '_except_handler3', '_controlfp', 'exit', '_XcptFilter', '__p__fmode', '_exit', 'VirtualProtect', 'GetStartupInfoW', 'GetModuleHandleW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassExA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetBitmapBits', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateFontA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'sndPlaySoundA', 'PlaySoundA', 'ShellExecuteA', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'LresultFromObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegEnumValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'OpenProcessToken', 'LookupAccountNameA', 'IsValidSid', 'GetUserNameA', 'lstrlenA', 'lstrcmpiA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetFilePointer', 'SetFileAttributesA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GlobalFree', 'GetVersionExA', 'GetTickCount', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetModuleHandleA', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetCurrentProcess', 'FreeResource', 'FreeLibrary', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'DeleteFileA', 'CreateRemoteThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateDirectoryA', 'CopyFileA', 'CloseHandle', 'wvsprintfA', 'TranslateMessage', 'ToAscii', 'SetWindowsHookExA', 'PeekMessageA', 'GetWindowThreadProcessId', 'GetKeyboardState', 'FindWindowA', 'DispatchMessageA', 'CharLowerA', 'CharUpperA', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'PStoreCreateInstance', 'StringFromCLSID', 'RasGetEntryDialParamsA', 'RasEnumEntriesA', 'SHGetSpecialFolderPathA', 'LsaFreeMemory', 'LsaClose', 'LsaRetrievePrivateData', 'LsaOpenPolicy', 'ConvertSidToStringSidA', 'CryptUnprotectData', 'CredEnumerateA', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptGetHashParam', 'CryptReleaseContext', 'CryptAcquireContextA'], ['LoadResource', 'FindResourceW', 'lstrlenW', 'GetProcAddress', 'GetModuleHandleW', 'DeleteCriticalSection', 'GetTempPathW', 'GetLastError', 'GetTempFileNameW', 'MoveFileW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CloseHandle', 'DeleteFileW', 'GetModuleFileNameW', 'GetCurrentProcess', 'LoadLibraryW', 'FreeLibrary', 'InitializeCriticalSectionEx', 'GetFileAttributesW', 'CreateFileW', 'SetFilePointer', 'ReadFile', 'VerSetConditionMask', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'CreateDirectoryW', 'WriteFile', 'SetFileTime', 'FreeResource', 'SizeofResource', 'LockResource', 'CreateProcessW', 'GetSystemDirectoryW', 'SetDefaultDllDirectories', 'GetCurrentThreadId', 'DecodePointer', 'RaiseException', 'LeaveCriticalSection', 'EnterCriticalSection', 'lstrcmpiW', 'LoadLibraryExW', 'GetConsoleMode', 'GetConsoleCP', 'SystemTimeToFileTime', 'VerifyVersionInfoW', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsDebuggerPresent', 'OutputDebugStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'HeapFree', 'HeapAlloc', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'HeapSize', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'WriteConsoleW', 'PathIsUNCW', 'InitCommonControlsEx'], ['CreateFileA', 'LoadLibraryA', 'LockResource', 'DeleteFileW', 'CloseHandle', 'GetModuleHandleA', 'FindResourceW', 'VirtualLock', 'GetProcAddress', 'GetModuleHandleW', 'WriteConsoleW', 'GetSystemDirectoryW', 'VirtualAlloc', 'DeviceIoControl', 'VirtualFree', 'LoadResource', 'SizeofResource', 'HeapSize', 'GetProcessHeap', 'GetLastError', 'CreateFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetEndOfFile', 'SetFilePointerEx', 'MultiByteToWideChar', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'FreeLibrary', 'LoadLibraryExW', 'SetEnvironmentVariableW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetFileSizeEx', 'GetFileType', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'ReadFile', 'ReadConsoleW', 'HeapReAlloc', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'RtlUnwind', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'SHDeleteKeyW'], ['FindFirstChangeNotificationW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetBinaryTypeW', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'UnregisterWait', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetLastError', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW'], ['WriteFile', 'DisconnectNamedPipe', 'InterlockedIncrement', 'InterlockedDecrement', 'CreateProcessA', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateNamedPipeA', 'ConnectNamedPipe', 'CreateEventA', 'GetCurrentProcessId', 'OpenProcess', 'LocalAlloc', 'LocalFree', 'CloseHandle', 'SetEvent', 'ReadFile', 'GetLastError', 'ExitThread', 'ResumeThread', 'CreateThread', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'HeapSize', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetSecurityDescriptorDacl', 'StartServiceCtrlDispatcherA', 'RegisterServiceCtrlHandlerA', 'OpenProcessToken', 'GetTokenInformation', 'AllocateAndInitializeSid', 'EqualSid', 'FreeSid', 'OpenSCManagerA', 'OpenServiceA', 'CloseServiceHandle', 'DeleteService', 'SetServiceStatus', 'InitializeSecurityDescriptor'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExA', '_configthreadlocale', 'accept', 'fputc', '_lock_file', 'free', '__setusermatherr', 'memset', 'rand', 'SHGetIconOverlayIndexA', '_time64', 'DPA_Create', '??1_Lockit@std@@QAE@XZ', 'exit'], ['StrRChrA', 'StrChrA', 'StrStrIA', 'HeapDestroy', 'HeapCreate', 'GetModuleHandleA', 'ExitProcess', 'GetLastError', 'lstrcpyW', 'CreateFileMappingW', 'MapViewOfFile', 'GetCommandLineW', 'UnmapViewOfFile', 'HeapAlloc', 'lstrlenW', 'HeapFree', 'GetCurrentThreadId', 'GetCurrentProcessId', 'lstrcmpiA', 'SetLastError', 'WaitForSingleObject', 'CreateFileA', 'GetCurrentThread', 'SetFilePointer', 'lstrcmpA', 'IsWow64Process', 'lstrlenA', 'VerLanguageNameA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'ReadFile', 'GetSystemDefaultUILanguage', 'GetLocaleInfoA', 'VirtualFree', 'lstrcpynA', 'VirtualAlloc', 'CreateEventA', 'GetVersion', 'GetLongPathNameW', 'GetProcAddress', 'CloseHandle', 'OpenProcess', 'GetCursorPos', 'wsprintfW', 'NtMapViewOfSection', 'NtUnmapViewOfSection', 'ZwClose', 'RtlNtStatusToDosError', 'NtCreateSection', 'memset', 'memcpy', 'RtlUnwind', 'NtQueryVirtualMemory'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetWindowThreadProcessId', 'VariantChangeTypeEx', 'RaiseException'], ['RegOverridePredefKey', 'SHQueryValueExW', 'SetupDiCreateDeviceInfoList', 'tolower', 'AVIStreamStart', 'CloseHandle', 'GetModuleHandleA', 'GetSystemTimeAdjustment', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedPopEntrySList', 'HGLOBAL_UserMarshal', 'HPALETTE_UserUnmarshal', 'midiOutGetDevCapsW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegQueryValueA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseSemaphore', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateSemaphoreA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostThreadMessageA', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'CLSIDFromString', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SafeArrayCopy', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetElemsize', 'SysFreeString', 'SysReAllocString', 'SysAllocString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'InternetAttemptConnect', 'InternetReadFile', 'InternetQueryDataAvailable', 'InternetOpenA', 'InternetErrorDlg', 'InternetCrackUrlA', 'InternetConnectA', 'InternetCloseHandle', 'HttpSendRequestA', 'HttpQueryInfoA', 'HttpOpenRequestA'], ['MoveFileExA', 'GetTimeFormatA', 'InitializeCriticalSection', 'Sleep', 'CreateSemaphoreA', 'GetEnvironmentVariableA', 'EnterCriticalSection', 'GetDiskFreeSpaceA', 'GetModuleFileNameA', 'GetModuleHandleA', 'VirtualProtect', 'GetFileTime', 'GetCurrentProcessId', 'GetTempPathA', 'SetFileAttributesA', 'GetLastError', 'GetFileAttributesA', 'GetSystemTimeAsFileTime', 'CloseHandle', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'EncodePointer', 'GetModuleFileNameW', 'GetFileType', 'CreateFileA', 'CreateFileW', 'HeapValidate', 'IsBadReadPtr', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoW', 'DeleteCriticalSection', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCPInfo', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'SetEndOfFile', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'MultiByteToWideChar', 'ReadFile', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'CompareStringW', 'SetEnvironmentVariableA', 'RaiseException', 'FlushFileBuffers'], ['SetLocaleInfoA', 'EnumCalendarInfoA', 'VirtualQuery', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'ReplaceFileW', 'GetVolumePathNameA', 'GetDevicePowerState', 'GetConsoleAliasesW', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetupComm', 'CreateMutexW', 'SetCurrentDirectoryA', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapFree', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA', 'sndPlaySoundA', 'mciSendCommandA', 'VirtualProtect', 'NtFlushInstructionCache', 'LoadLibraryA', 'LoadLibraryW', 'FileProtocolHandlerA'], ['ReadFile', 'FindFirstFileW', 'FindNextFileW', 'WriteFile', 'SetFilePointer', 'FindClose', 'CreateFileW', 'CloseHandle', 'MoveFileW', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer'], ['WriteFile', 'WideCharToMultiByte', 'LocalFree', 'GetStdHandle', 'FormatMessageW', 'GetModuleHandleA', 'GetVersionExA', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'GetProcAddress', 'GetModuleFileNameA', 'UnhandledExceptionFilter', 'GetModuleFileNameW', 'FreeEnvironmentStringsA', 'MultiByteToWideChar', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetLastError', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'LoadLibraryA', 'InitializeCriticalSection', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'RtlUnwind', 'VirtualProtect', 'GetSystemInfo', 'VirtualQuery', 'HeapUnlock', 'InterlockedExchange', 'GetPrivateProfileStructA', 'Thread32Next', 'GetTempFileNameW', 'VirtualAllocEx', 'GetModuleHandleW', 'CascadeWindows', 'DrawTextW', 'GetSystemMenu', 'UnhookWinEvent', 'BroadcastSystemMessageW', 'GetWindowThreadProcessId', 'CreateMenu', 'DdeReconnect', 'EnableWindow', 'IsCharAlphaNumericW', 'GetKeyState', 'LoadKeyboardLayoutW', 'EnumPropsExW', 'EnumDisplaySettingsW', 'SendMessageA', 'CharNextA', 'DragDetect', 'ReleaseCapture', 'DdeInitializeW', 'SetMenuItemBitmaps', 'DefDlgProcW', 'CharPrevExA', 'DdeCreateDataHandle', 'SetShellWindow', 'CharUpperW', 'wsprintfW', 'EnumDisplaySettingsExW', 'GetWindowTextLengthA', 'SetMessageQueue', 'ToAsciiEx', 'WindowFromPoint', 'LoadCursorW', 'LoadIconA', 'GetBrushOrgEx', 'GetMetaFileA', 'EngCreateBitmap', 'EngTransparentBlt', 'GetTextExtentPointW', 'CreateBitmapIndirect', 'GetColorAdjustment', 'Pie', 'GdiQueryFonts', 'SetStretchBltMode', 'FONTOBJ_pifi', 'AddFontResourceExA', 'FONTOBJ_cGetGlyphs', 'SetLayoutWidth', 'EngMultiByteToWideChar', 'LineTo', 'GetWindowOrgEx', 'Polyline', 'GetCharWidthA', 'GetStockObject', 'RegOpenKeyA', 'RegQueryValueExA'], ['CreateProcessA', 'CreateRemoteThread', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleHandleA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryW', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualQuery', 'WriteProcessMemory', '__dllonexit', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_onexit', '_snprintf', '_unlock', 'abort', 'calloc', 'exit', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'HeapAlloc', 'RaiseException', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['GetLastError', 'CreateFileA', 'HeapReAlloc', 'CloseHandle', 'RaiseException', 'HeapAlloc', 'DecodePointer', 'LocalFree', 'DeleteCriticalSection', 'GetProcessHeap', 'GetTempPathW', 'CreateFileW', 'lstrcmpA', 'GetModuleHandleA', 'Sleep', 'lstrcatW', 'CreateThread', 'GetLocalTime', 'GetModuleHandleW', 'GetTickCount', 'ReadFile', 'GetModuleFileNameW', 'CreateMutexA', 'WaitForSingleObject', 'GetTempPathA', 'DeleteFileA', 'MultiByteToWideChar', 'GetProcAddress', 'GetFileSize', 'GetComputerNameW', 'CreateProcessW', 'GetConsoleWindow', 'GetSystemTimeAsFileTime', 'GetExitCodeProcess', 'CreateDirectoryW', 'SetFileAttributesW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'TlsFree', 'SetEndOfFile', 'WriteConsoleW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindFirstFileExW', 'ReadConsoleW', 'CreatePipe', 'HeapSize', 'FindClose', 'GetEnvironmentVariableA', 'InitializeCriticalSectionEx', 'SetFilePointer', 'WriteFile', 'lstrlenW', 'FindNextFileW', 'HeapFree', 'LoadLibraryW', 'GetFileAttributesExW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileSizeEx', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SetLastError', 'EncodePointer', 'GetTimeZoneInformation', 'GetFileType', 'GetStdHandle', 'DeleteFileW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'DuplicateHandle', 'GetModuleHandleExW', 'ExitProcess', 'GetLogicalDrives', 'LoadLibraryExW', 'FreeLibrary', 'InterlockedFlushSList', 'RtlUnwind', 'OutputDebugStringW', 'GetCPInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'WideCharToMultiByte', 'GetStringTypeW', 'MapVirtualKeyExW', 'ShowWindow', 'CreateWindowExW', 'GetWindowRect', 'ToUnicodeEx', 'wsprintfA', 'GetWindowDC', 'LoadIconW', 'LoadCursorW', 'GetDesktopWindow', 'UpdateWindow', 'DefWindowProcW', 'wsprintfW', 'BitBlt', 'SaveDC', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'GetDeviceCaps', 'DeleteDC', 'DeleteObject', 'RestoreDC', 'GetUserNameW', 'CoCreateInstance', 'CoInitializeEx', 'CoInitializeSecurity', 'SysAllocString', 'SysFreeString', 'VariantClear', 'VariantInit', 'PathFileExistsW', 'HttpOpenRequestA', 'InternetOpenA', 'InternetReadFile', 'HttpSendRequestA', 'InternetConnectA', 'InternetCloseHandle', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipSaveImageToFile', 'GdipGetImageEncodersSize', 'GdipFree', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipAlloc', 'GdipCloneImage', 'GdiplusShutdown'], ['GetConsoleAliasA', 'GetModuleHandleW', 'CreateDirectoryExA', 'ReadConsoleInputA', 'GetTempPathA', 'GetSystemDirectoryW', 'RemoveDirectoryW', 'OutputDebugStringA', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'GetCurrentProcess', 'RtlCaptureContext', 'InterlockedDecrement', 'SetFileTime', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'SetProcessPriorityBoost', 'AddConsoleAliasA', 'FindNextFileA', 'FindFirstVolumeA', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'SetErrorMode', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructA', 'EndUpdateResourceA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegOpenKeyA', 'SysFreeString', 'CharNextA'], ['GetModuleHandleA', 'ShowWindow', 'RegCloseKey', '??1_Lockit@std@@QAE@XZ', 'memset', 'exit', 'accept', 'rand', '_lock_file', '_time64', '_configthreadlocale', 'free', '__setusermatherr', 'fputc', 'ShellAboutW', 'InitCommonControlsEx'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'DnsQuery_A', '_iob', 'wsprintfA', 'InternetGetConnectedState', 'recv'], ['MoveFileExA', 'AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'LocalHandle', 'GetMailslotInfo', 'GetBinaryTypeW', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'GetModuleHandleA', 'QueueUserWorkItem', 'VirtualProtect', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['DeleteCriticalSection', 'EnterCriticalSection', 'FreeLibrary', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__p__acmdln', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_errno', '_fileno', '_initterm', '_iob', '_lock', '_onexit', '_setjmp3', '_setmode', '_unlock', '_wfopen', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fprintf', 'fputc', 'free', 'fwrite', 'getenv', 'localeconv', 'malloc', 'memchr', 'memcmp', 'memcpy', 'setlocale', 'setvbuf', 'signal', 'strchr', 'strerror', 'strlen', 'strncmp', 'strstr', 'vfprintf', 'wcslen', 'longjmp', 'MessageBoxA'], ['AreFileApisANSI', 'GetOEMCP', 'GetUserDefaultUILanguage', 'GetLargePageMinimum', 'UnregisterApplicationRecoveryCallback', 'GetCommandLineA', 'GetThreadUILanguage', 'SwitchToThread', 'UnregisterApplicationRestart', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetSystemDefaultUILanguage', 'VirtualAlloc', 'GetUserDefaultLangID', 'GetCurrentThreadId', 'IsSystemResumeAutomatic', 'GetACP', 'GetTickCount64', 'GetCurrentThread', 'TlsAlloc', 'GetCurrentProcessorNumber', 'GetProcessHeap', 'SetFileApisToOEM', 'GetTickCount', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetFileType', 'GetStdHandle', 'GetErrorMode', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwindEx', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCurrentProcess', 'ExitProcess', 'TerminateProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'LCMapStringW', 'IsWow64Message', 'GetMessageTime', 'GetFocus', 'GetOpenClipboardWindow', 'AnyPopup', 'GetCapture', 'GetMenuCheckMarkDimensions', 'EmptyClipboard', 'GetKBCodePage', 'DestroyCaret', 'SetProcessDPIAware', 'CreateMenu', 'GetCursor', 'GetActiveWindow', 'IsProcessDPIAware', 'GetForegroundWindow', 'GetDialogBaseUnits', 'GdiFlush', 'OleUninitialize', 'CoUninitialize'], ['FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetFileAttributesA', 'GetFileAttributesExW', 'GetFileType', 'GetLastError', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetProcessShutdownParameters', 'GetProfileSectionW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetThreadPriority', 'GetTickCount', 'GetUserDefaultLCID', 'GetVersionExA', 'GlobalAddAtomW', 'GlobalHandle', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'InterlockedDecrement', 'InterlockedExchange', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'FreeEnvironmentStringsA', 'LoadResource', 'LocalFree', 'LocalSize', 'LocalUnlock', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OutputDebugStringA', 'OutputDebugStringW', 'PeekNamedPipe', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleOutputCharacterW', 'RtlUnwind', 'RtlZeroMemory', 'ScrollConsoleScreenBufferW', 'SetConsoleCP', 'SetFileApisToANSI', 'SetFilePointer', 'SetFilePointerEx', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetTapeParameters', 'SetThreadLocale', 'SetThreadUILanguage', 'SetTimerQueueTimer', 'SetUnhandledExceptionFilter', 'SizeofResource', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'VirtualAlloc', 'VirtualAllocEx', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileSectionA', 'WritePrivateProfileStructA', 'lstrcatA', 'lstrcpyA', 'lstrcpyW', 'lstrcpynW', 'lstrlenW', 'InterlockedIncrement', 'Sleep', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceW', 'FindResourceExW', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileExW', 'FindClose', 'FindAtomW', 'ExitProcess', 'EnumDateFormatsW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'DecodePointer', 'CreateSemaphoreW', 'CreateSemaphoreA', 'CreateHardLinkA', 'CreateFileW', 'CreateDirectoryA', 'CopyFileW', 'CloseHandle', 'CallNamedPipeA', 'LoadModule', 'AreFileApisANSI', 'LoadMenuW', 'LoadStringW', 'LockWindowUpdate', 'MapWindowPoints', 'MessageBoxW', 'ModifyMenuA', 'MonitorFromRect', 'MoveWindow', 'OpenWindowStationW', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RealGetWindowClassA', 'RegisterClassW', 'ReleaseCapture', 'ReleaseDC', 'ScreenToClient', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetMenu', 'SetProcessWindowStation', 'SetRect', 'SetTimer', 'SetUserObjectInformationA', 'ShowWindow', 'SystemParametersInfoW', 'TranslateAcceleratorW', 'TranslateMessage', 'LoadIconW', 'UnregisterClassW', 'UpdateLayeredWindow', 'UpdateWindow', 'WinHelpW', 'wsprintfW', 'LoadIconA', 'KillTimer', 'IsDialogMessage', 'IsCharLowerA', 'InvalidateRect', 'IntersectRect', 'IMPSetIMEW', 'IMPSetIMEA', 'GetSystemMetrics', 'GetMessageW', 'GetMessageTime', 'GetMenuItemRect', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetDesktopWindow', 'GetDC', 'GetClassNameA', 'GetAltTabInfoW', 'EnumPropsW', 'EndPaint', 'EndDialog', 'DrawTextA', 'DrawMenuBar', 'DrawFocusRect', 'DlgDirListComboBoxW', 'LoadCursorW', 'UnhookWindowsHookEx', 'DispatchMessageW', 'DialogBoxParamW', 'DialogBoxIndirectParamA', 'DestroyIcon', 'DefWindowProcW', 'CreateWindowExW', 'CreateAcceleratorTableA', 'CopyAcceleratorTableW', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'ChangeDisplaySettingsA', 'BeginPaint', 'LoadAcceleratorsW', 'GetStockObject', 'LineTo', 'MoveToEx', 'SelectObject', 'GetLayout', 'SetLayout', 'SetPixel', 'SetROP2', 'PathToRegion', 'GetDeviceCaps', 'DeleteObject', 'DeleteDC', 'CreatePen', 'CreateCompatibleDC', 'SetDIBitsToDevice', 'BitBlt', 'CreateCompatibleBitmap', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExW', 'RegCloseKey', 'RegSetValueExW', 'ShellAboutW'], ['gethostname', 'connect', 'WSACleanup', '__WSAFDIsSet', 'accept', 'send', 'ntohs', 'recv', 'WSAPoll', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'htonl', 'bind', 'WSAIoctl', 'WSASend', 'shutdown', 'listen', 'WSASocketW', 'getsockname', 'socket', 'WSARecv', 'ioctlsocket', 'FreeAddrInfoW', 'GetAddrInfoW', 'closesocket', 'getsockopt', 'setsockopt', 'WSAGetLastError', 'htons', 'GetAdaptersAddresses', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleExW', 'CompareStringW', 'SetFileAttributesW', 'GetFileAttributesExW', 'GetConsoleCP', 'SetStdHandle', 'GetCommandLineW', 'GetCommandLineA', 'RtlPcToFileHeader', 'ExitThread', 'RtlUnwindEx', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'CloseHandle', 'FreeConsole', 'GetConsoleWindow', 'SetThreadAffinityMask', 'SetPriorityClass', 'GetCurrentProcess', 'SetThreadPriority', 'GetCurrentThread', 'GetProcAddress', 'GetModuleHandleW', 'VirtualFree', 'VirtualAlloc', 'LocalAlloc', 'GetLastError', 'LocalFree', 'SetConsoleCtrlHandler', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'PostQueuedCompletionStatus', 'Sleep', 'SetErrorMode', 'GetQueuedCompletionStatus', 'CreateIoCompletionPort', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'QueueUserWorkItem', 'MultiByteToWideChar', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'WideCharToMultiByte', 'SetConsoleCursorPosition', 'CreateDirectoryW', 'ReadFile', 'SetLastError', 'WriteFile', 'DeviceIoControl', 'RemoveDirectoryW', 'SetFileTime', 'CreateHardLinkW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'MoveFileExW', 'CopyFileW', 'FlushFileBuffers', 'GetLongPathNameW', 'GetShortPathNameW', 'GetCurrentDirectoryW', 'ReadDirectoryChangesW', 'GetFileType', 'TlsSetValue', 'ReleaseSemaphore', 'WaitForMultipleObjects', 'WaitForSingleObject', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'ResetEvent', 'DeleteCriticalSection', 'CreateSemaphoreW', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'CreateEventA', 'CancelIo', 'SetHandleInformation', 'VerifyVersionInfoA', 'GetModuleFileNameW', 'SetEnvironmentVariableW', 'QueryPerformanceFrequency', 'GetSystemInfo', 'VerSetConditionMask', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'FormatMessageA', 'DebugBreak', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'GetNamedPipeHandleStateA', 'SwitchToThread', 'ConnectNamedPipe', 'GetModuleHandleA', 'LoadLibraryA', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'GetStartupInfoW', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentThreadId', 'GetTickCount64', 'RaiseException', 'GetTimeZoneInformation', 'HeapSize', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStringTypeW', 'SetFilePointerEx', 'CreateEventW', 'GetSystemTimeAsFileTime', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateThread', 'EncodePointer', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'LoadLibraryExW', 'TranslateMessage', 'ShowWindow', 'DispatchMessageA', 'MapVirtualKeyW', 'GetMessageA', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation'], ['GetModuleHandleA', 'MessageBoxA', 'RegOpenKeyExW', 'PathMakeUniqueName', 'ImageList_Draw', '_CorExeMain'], ['QueryPerformanceFrequency', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetProcAddress', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RegDeleteKeyA'], ['VirtualProtect', 'Sleep', 'RaiseException', 'GetLastError', 'SetLastError', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'TerminateProcess', 'GetCurrentProcess', 'ExitProcess', 'GetStartupInfoW', 'TlsGetValue', 'GetCurrentThreadId', 'GetCurrentProcessId', 'LCMapStringEx', 'IsValidLocale', 'GetOEMCP', 'GetLocaleInfoW', 'GetCPInfo', 'GetACP', 'LCMapStringW', 'IsValidCodePage', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InitializeCriticalSectionEx', 'LeaveCriticalSection', 'EnterCriticalSection', 'DecodePointer', 'EncodePointer', 'CompareStringW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'SendMessageA', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'PostMessageA', 'MessageBeep', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetModuleHandleExW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetModuleFileNameW', 'RtlUnwind', 'GetCommandLineA', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetStdHandle', 'GetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'FindFirstFileExW', 'ReadFile', 'FindClose', 'FlushFileBuffers', 'GetFileSizeEx', 'SetFilePointerEx', 'CreateFileW', 'GetFileType', 'FindNextFileW', 'WriteFile', 'GetProcessHeap', 'HeapReAlloc', 'HeapAlloc', 'HeapSize', 'HeapFree', 'CloseHandle', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteConsoleW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'InternetCloseHandle', 'GetModuleFileNameExA', 'DispatchMessageA', 'GetUserNameA', 'ShellExecuteA'], ['GetConsoleAliasA', 'GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetTapeParameters', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapDestroy', 'FindNextVolumeW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'ReadConsoleA', 'EnumSystemLocalesA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'ReadFileEx', 'ResetEvent', 'InterlockedExchangeAdd', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'GetDefaultCommConfigA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'RequestWakeupLatency', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'FindNextVolumeA', 'WriteConsoleOutputW', 'GetConsoleAliasesLengthW', 'SetThreadContext', 'GetLargestConsoleWindowSize', 'GetTempFileNameW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsW', 'GetCharABCWidthsI'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'LoadLibraryA', 'GetVersionExA', 'DeleteFileA', 'DeleteFileW', 'CloseHandle', 'LoadLibraryW', 'UnlockFile', 'GetProcAddress', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'GetModuleFileNameA', 'SetWaitableTimer', 'TlsSetValue', 'VerifyVersionInfoA', 'HeapFree', 'SetLastError', 'VirtualAlloc', 'WaitForMultipleObjects', 'InitializeCriticalSectionAndSpinCount', 'GetQueuedCompletionStatus', 'InitializeCriticalSectionEx', 'CreateMutexA', 'WaitForSingleObject', 'LocalAlloc', 'ReleaseMutex', 'UnmapViewOfFile', 'GetModuleHandleA', 'GetFileAttributesW', 'HeapSize', 'SetCurrentDirectoryA', 'PostQueuedCompletionStatus', 'CreateToolhelp32Snapshot', 'CreateEventW', 'GetFileInformationByHandle', 'QueryFullProcessImageNameA', 'SetEvent', 'FileTimeToSystemTime', 'TerminateThread', 'TlsAlloc', 'GlobalAlloc', 'Process32Next', 'GlobalFree', 'HeapReAlloc', 'RaiseException', 'HeapAlloc', 'QueueUserAPC', 'GetLocalTime', 'DecodePointer', 'GlobalLock', 'CreateFileMappingA', 'LocalFree', 'VerSetConditionMask', 'GetProcessHeap', 'SystemTimeToFileTime', 'SleepEx', 'TlsGetValue', 'TlsFree', 'MapViewOfFile', 'CreateIoCompletionPort', 'GlobalUnlock', 'ReadConsoleW', 'GetStringTypeW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetFileSizeEx', 'CreateFileW', 'GetTempPathW', 'SetEndOfFile', 'GetFullPathNameA', 'SetFilePointer', 'AreFileApisANSI', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LockFile', 'GetCurrentThreadId', 'WriteFile', 'GetFullPathNameW', 'EnterCriticalSection', 'ReadFile', 'OpenProcess', 'GetConsoleMode', 'GetConsoleOutputCP', 'SetStdHandle', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'GetCPInfo', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'GetModuleFileNameW', 'SystemTimeToTzSpecificLocalTime', 'PeekNamedPipe', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'ResetEvent', 'WaitForSingleObjectEx', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStartupInfoW', 'InitializeSListHead', 'GetCurrentDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetFileInformationByHandle', 'SetFilePointerEx', 'GetFileInformationByHandleEx', 'OutputDebugStringW', 'RtlUnwind', 'EncodePointer', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetDriveTypeW', 'WriteConsoleW', 'GetKeyState', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'ReleaseDC', 'OpenClipboard', 'GetDesktopWindow', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'GetDIBits', 'GetDeviceCaps', 'GetObjectW', 'CreateDCA', 'StretchBlt', 'RegGetValueA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegEnumKeyExA', 'SHGetFolderPathA', 'htons', 'getsockopt', 'setsockopt', 'WSAGetLastError', 'connect', 'WSAStartup', 'WSASocketW', 'WSAStringToAddressW', 'htonl', 'WSASetLastError', 'ntohl', 'select', 'WSASend', 'closesocket', 'WSACleanup', 'ioctlsocket'], ['AddAtomA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteAtom', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'FormatMessageA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LocalFree', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringA', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_commode', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_memccpy', '_onexit', '_setjmp', '_strdup', '_ultoa', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'free', 'fwrite', 'getc', 'islower', 'isspace', 'isupper', 'isxdigit', 'localeconv', 'longjmp', 'malloc', 'memcpy', 'memmove', 'memset', 'printf', 'realloc', 'signal', 'strchr', 'strerror', 'strlen', 'strncmp', 'strstr', 'strtol', 'strtoul', 'tolower', 'ungetc', 'vfprintf', 'wcslen'], ['ExitProcess', 'GetEnvironmentStringsA', 'CloseHandle', 'GetSystemDirectoryA', 'OpenMutexA', 'RtlUnwind', 'WinExec', '_fdopen', '_open_osfhandle', 'fclose', '_cexit', 'malloc', 'printf', 'raise', 'setbuf', 'sprintf', 'strcpy'], ['ConvertInterfaceLuidToIndex', 'ConvertInterfaceLuidToNameW', 'ConvertInterfaceNameToLuidW', 'GetAdaptersAddresses', 'GetAdaptersInfo', 'GetNetworkParams', 'GetBestRoute', 'GetBestInterface', 'ConvertInterfaceIndexToLuid', 'CertDuplicateCertificateContext', 'CertGetCertificateContextProperty', 'CertOpenStore', 'CertFreeCertificateChain', 'CertGetCertificateChain', 'CertFreeCertificateContext', 'CertCreateCertificateContext', 'CertOpenSystemStoreW', 'CertFindCertificateInStore', 'CertCloseStore', 'CertEnumCertificatesInStore', 'socket', 'WSAStartup', 'htons', 'inet_pton', 'bind', 'WSAConnect', 'closesocket', 'connect', 'getsockname', 'htonl', 'ntohl', 'ntohs', 'recv', 'gethostname', 'WSACleanup', 'WSASetLastError', 'recvfrom', 'WSASocketW', 'WSASendTo', 'WSASend', 'WSARecvFrom', 'WSARecv', 'WSANtohs', 'WSANtohl', 'WSAHtonl', 'WSAAsyncSelect', 'WSAAccept', 'select', 'listen', 'getpeername', '__WSAFDIsSet', 'getsockopt', 'getnameinfo', 'freeaddrinfo', 'getaddrinfo', 'inet_ntop', 'WSAPoll', 'WSAIoctl', 'WSAGetLastError', 'shutdown', 'setsockopt', 'sendto', 'send', 'CryptDecrypt', 'FreeSid', 'AllocateAndInitializeSid', 'AddAccessAllowedAce', 'OpenProcessToken', 'RegOpenKeyExW', 'RegNotifyChangeKeyValue', 'RegCloseKey', 'GetTokenInformation', 'InitializeAcl', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'CryptExportKey', 'SetSecurityDescriptorOwner', 'BuildTrusteeWithSidW', 'GetNamedSecurityInfoW', 'GetEffectiveRightsFromAclW', 'LookupAccountSidW', 'MapGenericMask', 'DuplicateToken', 'CopySid', 'CryptGetUserKey', 'CryptGetProvParam', 'CryptSetHashParam', 'CryptDestroyKey', 'CryptReleaseContext', 'CryptAcquireContextW', 'ReportEventW', 'RegisterEventSourceW', 'DeregisterEventSource', 'CryptCreateHash', 'CryptDestroyHash', 'AccessCheck', 'RegSetValueExW', 'RegQueryInfoKeyW', 'GetLengthSid', 'CryptSignHashW', 'CryptEnumProvidersW', 'RegQueryValueExW', 'SystemFunction036', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegFlushKey', 'NetApiBufferFree', 'NetShareEnum', 'GetUserProfileDirectoryW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateTimerQueue', 'SignalObjectAndWait', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'UnhandledExceptionFilter', 'GetCPInfo', 'GetStringTypeW', 'LCMapStringW', 'CompareStringW', 'GetTickCount', 'TryEnterCriticalSection', 'RaiseException', 'DecodePointer', 'EncodePointer', 'VirtualFree', 'Sleep', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'GetCurrentThreadId', 'GetLastError', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'TryAcquireSRWLockExclusive', 'InitializeCriticalSection', 'WaitForSingleObject', 'TerminateThread', 'GetModuleFileNameA', 'LocalFree', 'FormatMessageW', 'CreateFileW', 'CloseHandle', 'DisconnectNamedPipe', 'WaitNamedPipeW', 'CreateEventW', 'WaitForMultipleObjects', 'GetProcAddress', 'GlobalFree', 'LoadLibraryW', 'ConnectNamedPipe', 'CreateNamedPipeW', 'GetOverlappedResult', 'SetEvent', 'ResetEvent', 'GetCurrentProcess', 'SetHandleInformation', 'SetLastError', 'GetSystemTime', 'SystemTimeToFileTime', 'GetModuleHandleExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'ChangeTimerQueueTimer', 'FindFirstFileW', 'FindNextFileW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'ConvertFiberToThread', 'ConvertThreadToFiber', 'FreeLibrary', 'LoadLibraryA', 'GetEnvironmentVariableW', 'GetConsoleMode', 'SetConsoleMode', 'ReadConsoleA', 'ReadConsoleW', 'OutputDebugStringW', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetConsoleWindow', 'GetCommandLineW', 'GetStartupInfoW', 'WaitForSingleObjectEx', 'GetLocalTime', 'DuplicateHandle', 'SwitchToThread', 'CreateThread', 'GetCurrentThread', 'SetThreadPriority', 'GetThreadPriority', 'ResumeThread', 'GetSystemInfo', 'QueryPerformanceFrequency', 'GetTickCount64', 'ReadFileEx', 'PeekNamedPipe', 'CancelIoEx', 'SleepEx', 'WriteFileEx', 'UnregisterWaitEx', 'RegisterWaitForSingleObject', 'GetSystemDirectoryW', 'VirtualQuery', 'CreateFileMappingW', 'OpenFileMappingW', 'MapViewOfFile', 'UnmapViewOfFile', 'ReleaseSemaphore', 'CreateSemaphoreW', 'GetFileAttributesExW', 'FlushFileBuffers', 'GetDriveTypeW', 'GetLogicalDrives', 'ReadFile', 'SetEndOfFile', 'SetFilePointerEx', 'SetErrorMode', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'DeleteFileW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLongPathNameW', 'RemoveDirectoryW', 'SetFileTime', 'GetTempPathW', 'GetVolumePathNamesForVolumeNameW', 'DeviceIoControl', 'CopyFileW', 'MoveFileW', 'MoveFileExW', 'TzSpecificLocalTimeToSystemTime', 'FileTimeToSystemTime', 'GetFileInformationByHandleEx', 'GetModuleFileNameW', 'GetTimeZoneInformation', 'GetGeoInfoW', 'GetUserGeoID', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetExitCodeProcess', 'GetDateFormatW', 'GetTimeFormatW', 'GetLocaleInfoW', 'GetCurrencyFormatW', 'GetUserDefaultLCID', 'GetUserPreferredUILanguages', 'FindFirstFileExW', 'OpenProcess', 'VirtualAlloc', 'CreateMutexW', 'ReleaseMutex', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'UnregisterWait', 'GetThreadTimes', 'FreeLibraryAndExitThread', 'GetModuleHandleA', 'LoadLibraryExW', 'GetVersionExW', 'VirtualProtect', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'RtlUnwind', 'ExitProcess', 'ExitThread', 'SystemTimeToTzSpecificLocalTime', 'SetConsoleCtrlHandler', 'GetCommandLineA', 'SetStdHandle', 'SetFileAttributesW', 'GetConsoleOutputCP', 'IsValidLocale', 'EnumSystemLocalesW', 'HeapReAlloc', 'GetFileSizeEx', 'SetEnvironmentVariableW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'WriteConsoleW', 'SetUnhandledExceptionFilter', 'FindClose', 'HeapSize', 'CommandLineToArgvW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoCreateGuid', 'CoTaskMemFree', 'timeKillEvent', 'timeSetEvent', 'FwpmFreeMemory0', 'FwpmGetAppIdFromFileName0', 'FwpmFilterAdd0', 'FwpmSubLayerGetByKey0', 'FwpmSubLayerAdd0', 'FwpmEngineClose0', 'FwpmEngineOpen0', 'BCryptGenRandom', 'DestroyWindow', 'MsgWaitForMultipleObjectsEx', 'SetTimer', 'KillTimer', 'CreateWindowExW', 'CharNextExA', 'GetWindowThreadProcessId', 'EnumWindows', 'PostThreadMessageW', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'SetWindowLongW', 'GetQueueStatus', 'GetProcessWindowStation', 'GetUserObjectInformationW', 'MessageBoxW', 'TranslateMessage', 'DispatchMessageW', 'PeekMessageW', 'PostMessageW', 'DefWindowProcW', 'RegisterClassW', 'UnregisterClassW', 'GetWindowLongW'], ['InterlockedDecrement', 'SizeofResource', 'MultiByteToWideChar', 'InterlockedIncrement', 'LockResource', 'FreeConsole', 'LoadResource', 'FindResourceW', 'lstrlenW', 'CreateFileMappingA', 'MapViewOfFile', 'GetSystemInfo', 'UnmapViewOfFile', 'VirtualAlloc', 'GetProcessHeap', 'GetLastError', 'HeapValidate', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetCommandLineA', 'HeapSetInformation', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DecodePointer', 'EncodePointer', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThread', 'RaiseException', 'HeapAlloc', 'GetModuleFileNameA', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'LoadLibraryW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStartupInfoW', 'RtlUnwind', 'GetStringTypeW', 'LCMapStringW', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'CreateFileW', 'CloseHandle', 'FlushFileBuffers', 'SetEvent', 'OpenEventA', 'lstrlenA', 'FindResourceExW', 'MessageBoxW', 'CoCreateInstance', 'CoUninitialize', 'CLSIDFromProgID', 'CoInitializeEx', 'SysFreeString', 'SysAllocString', 'RevertToSelf', 'OpenThreadToken', 'SetThreadToken'], ['GetModuleHandleA', 'CreateCursor', 'RegCloseKey', '_CorExeMain', 'ShellAboutA', 'InitMUILanguage'], ['ImageList_AddMasked', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_Destroy', 'GetStartupInfoA', 'GetModuleHandleA', 'lstrcpynA', 'lstrlenA', 'CloseHandle', 'LoadLibraryA', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'ReadFile', 'SetFilePointer', 'CreateFileA', 'GetTickCount', 'WriteFile', 'lstrcmpA', 'SetThreadPriority', 'GetThreadPriority', 'GetCurrentThread', 'FreeLibrary', 'SetFocus', 'CreateWindowExA', 'GetSystemMetrics', 'RegisterClassExA', 'LoadCursorA', 'LoadIconA', 'TrackPopupMenu', 'GetSubMenu', 'GetCursorPos', 'PostQuitMessage', 'CreateDialogParamA', 'MessageBoxA', 'OpenClipboard', 'EmptyClipboard', 'GetWindowTextA', 'CloseClipboard', 'SetWindowTextA', 'SetForegroundWindow', 'PostMessageA', 'SetWindowLongA', 'LoadMenuA', 'SendDlgItemMessageA', 'GetClientRect', 'GetMenu', 'AdjustWindowRect', 'GetWindowRect', 'DestroyMenu', 'DestroyWindow', 'IsDialogMessageA', 'DefWindowProcA', 'GetDlgItemTextA', 'SetClipboardData', 'ScreenToClient', 'MoveWindow', 'EnableWindow', 'wsprintfA', 'SetDlgItemTextA', 'LoadBitmapA', 'LoadImageA', 'GetDC', 'ReleaseDC', 'BeginPaint', 'EndPaint', 'GetDlgItemInt', 'SetDlgItemInt', 'ShowWindow', 'InvalidateRect', 'SetWindowPos', 'UpdateWindow', 'GetWindowLongA', 'CallWindowProcA', 'HideCaret', 'GetDlgItem', 'SendMessageA', 'PeekMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'CopyRect', 'DeleteDC', 'StretchBlt', 'RealizePalette', 'SelectPalette', 'SelectObject', 'CreateCompatibleDC', 'CreateHalftonePalette', 'CreatePalette', 'GetDIBColorTable', 'GetObjectA', 'CreateFontIndirectA', 'CreateSolidBrush', 'SetBkColor', 'SetTextColor', 'GetStockObject', 'DeleteObject', 'GetOpenFileNameA', 'GetSaveFileNameA', 'DragAcceptFiles', 'DragQueryFileA', '__CxxFrameHandler', '_strlwr', 'strstr', 'sprintf', 'memmove', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'malloc', 'free', 'strchr', '__dllonexit', '_onexit', '_exit', '_XcptFilter', 'exit', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_controlfp', 'calloc', '_stricmp', '_acmdln'], ['LoadLibraryExW', 'InterlockedIncrement', 'ReadConsoleA', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleTitleA', 'SetFileTime', 'LoadLibraryW', 'GetLocaleInfoW', 'FreeConsole', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'CreateActCtxA', 'SetConsoleTitleA', 'GetTempPathW', 'VerifyVersionInfoW', 'GetStdHandle', 'GetCPInfoExW', 'GetProcAddress', 'GetLongPathNameA', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'WriteProfileSectionA', 'AllocConsole', 'EnterCriticalSection', 'FindClose', 'GetAtomNameA', 'LoadLibraryA', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'DnsHostnameToComputerNameA', 'MoveFileA', 'BeginUpdateResourceA', 'GlobalGetAtomNameW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'GetConsoleTitleW', 'GetFileTime', 'PeekConsoleInputA', 'GetVolumeNameForVolumeMountPointW', 'GetFileInformationByHandle', 'SetFileValidData', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetConsoleAliasesLengthW', 'GetStringTypeA', 'GetFirmwareEnvironmentVariableW', 'GetSystemDefaultLangID', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'GetLastError', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetLocaleInfoA', 'LCMapStringA', 'MultiByteToWideChar', 'GetStringTypeW', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpSetDefaultProxyConfiguration'], ['GetStdHandle', 'FormatMessageW', 'SetFilePointer', 'GetLastError', 'GetFileSize', 'CreateDirectoryW', 'FindFirstFileW', 'FindClose', 'FindFirstFileExW', 'WideCharToMultiByte', 'GetConsoleCP', 'MultiByteToWideChar', 'GetOEMCP', 'GetCurrentProcessId', 'CreateEventW', 'SetEvent', 'TerminateThread', 'CreateThread', 'WaitForSingleObject', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetCurrentDirectoryW', 'GetLocaleInfoW', 'FindNextFileW', 'SetFileTime', 'ReadFile', 'FileTimeToSystemTime', 'SystemTimeToTzSpecificLocalTime', 'GetFileAttributesW', 'ResetEvent', 'ExpandEnvironmentStringsW', 'CreatePipe', 'GetStartupInfoW', 'CreateProcessW', 'PeekNamedPipe', 'TerminateProcess', 'DisconnectNamedPipe', 'ResumeThread', 'DeviceIoControl', 'GetThreadLocale', 'LeaveCriticalSection', 'EnterCriticalSection', 'OutputDebugStringW', 'DeleteFileW', 'Sleep', 'GetTempPathW', 'CloseHandle', 'SizeofResource', 'WriteFile', 'CreateFileW', 'LoadResource', 'FindResourceW', 'GetSystemInfo', 'GetModuleHandleW', 'GetProcAddress', 'GetTickCount', 'GetVersionExW', 'CreateFileA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'LoadLibraryA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'HeapSize', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'HeapAlloc', 'HeapFree', 'InterlockedDecrement', 'GetCurrentThreadId', 'GetCommandLineA', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetConsoleMode', 'FlushFileBuffers', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'ExitProcess', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapCreate', 'HeapDestroy', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'RaiseException', 'wsprintfW', 'RegCloseKey', 'CryptDestroyHash', 'CryptCreateHash', 'RegOpenKeyExA', 'CryptReleaseContext', 'RegQueryValueExA', 'RegSetValueExA', 'CryptAcquireContextW', 'CryptGetHashParam', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'CryptHashData', 'ShellExecuteW', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'CoCreateInstance', 'CoCreateGuid', 'WSAStartup', 'connect', 'setsockopt', 'socket', 'WSACleanup', 'ntohs', 'inet_ntoa', 'closesocket', 'send', '__WSAFDIsSet', 'recv', 'select', 'gethostbyname', 'ntohl', 'inet_addr', 'htons', 'PathCombineW', 'SetupCopyOEMInfW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'GetProcessImageFileNameA', 'SHGetSpecialFolderPathA', 'StrStrIA', 'URLDownloadToFileA', 'InternetOpenA'], ['GetLogicalDrives', 'GetDriveTypeA', 'GetDiskFreeSpaceExA', 'ExitProcess', 'GetComputerNameA', 'ExitThread', 'Process32First', 'GetTickCount', 'WideCharToMultiByte', 'GetModuleFileNameW', 'MultiByteToWideChar', 'CreateThread', 'Process32Next', 'GlobalMemoryStatusEx', 'CreateMutexA', 'CreateToolhelp32Snapshot', 'SetFileAttributesW', 'CloseHandle', 'FindNextFileW', 'lstrcmpiW', 'LoadLibraryA', 'FindClose', 'MoveFileW', 'GetProcAddress', 'GetFileSizeEx', 'CreateFileW', 'ReadFile', 'GetFileAttributesW', 'Sleep', 'WriteFile', 'WaitForSingleObject', 'SetFilePointerEx', 'SetFilePointer', 'GetStringTypeW', 'LCMapStringW', 'GetLastError', 'FindFirstFileW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'RtlUnwind', 'LoadLibraryW', 'EncodePointer', 'DecodePointer', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapSetInformation', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapSize', 'GetModuleHandleW', 'HeapFree', 'HeapAlloc', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'HeapReAlloc', 'LeaveCriticalSection', 'EnterCriticalSection', 'RegQueryValueExA', 'CryptHashData', 'CryptDecrypt', 'CryptCreateHash', 'CryptDeriveKey', 'RegCloseKey', 'RegOpenKeyExA', 'RegCreateKeyExA', 'GetCurrentHwProfileA', 'RegSetValueExA', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptAcquireContextA', 'CryptExportKey', 'GetUserNameA', 'SHEmptyRecycleBinA', 'SHGetFolderPathW', 'ShellExecuteW', 'ShellExecuteA', 'CryptStringToBinaryA', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenA', 'InternetOpenUrlA', 'PathFindExtensionW', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['RpcAsyncAbortCall', 'CryptEncryptMessage', 'OffsetWindowOrgEx', 'GetCharWidth32W', 'CreatePalette', 'PdhCloseQuery', 'GetModuleHandleA', 'GetNLSVersion', 'WinExec', 'GetSystemRegistryQuota', 'memset', 'WSASetLastError', 'OleCreateLink', 'RegSaveKeyA', 'SCardGetStatusChangeW', 'StrCatW', 'CloseClusterResource', 'CharToOemW', 'OpenColorProfileW'], ['CloseHandle', 'GetLocalTime', 'SystemTimeToFileTime', 'GetCurrentProcessId', 'GetPrivateProfileIntW', 'GetCommandLineW', 'GetLastError', 'GetFileSize', 'WideCharToMultiByte', 'Sleep', 'GetTickCount', 'CopyFileW', 'MultiByteToWideChar', 'GetFileAttributesExW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetTempPathW', 'TerminateProcess', 'GetCurrentProcess', 'GetProcessHeap', 'HeapFree', 'GetCurrentThreadId', 'FlushInstructionCache', 'lstrlenW', 'OutputDebugStringW', 'ExpandEnvironmentStringsW', 'WritePrivateProfileStringW', 'lstrcmpiW', 'RaiseException', 'InitializeCriticalSection', 'DeleteCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenSemaphoreW', 'CreateSemaphoreW', 'WaitForSingleObject', 'LocalFree', 'CreateMutexW', 'ReleaseMutex', 'CreateThread', 'SetLastError', 'ReleaseSemaphore', 'InterlockedCompareExchange', 'GetLongPathNameW', 'GetFileTime', 'GetSystemTime', 'CreateDirectoryW', 'GetPrivateProfileStringW', 'CreateProcessW', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'DeleteAtom', 'FindAtomW', 'AddAtomW', 'OpenThread', 'GetVersionExW', 'FormatMessageW', 'SetFilePointerEx', 'LocalFileTimeToFileTime', 'SetEnvironmentVariableA', 'GetFileSizeEx', 'CompareStringA', 'CreateFileA', 'ReadFile', 'SetEndOfFile', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'FlushFileBuffers', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetLocaleInfoA', 'GetModuleHandleW', 'InterlockedExchange', 'FindResourceExW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'LoadLibraryExW', 'GetModuleFileNameW', 'EnterCriticalSection', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringA', 'QueryPerformanceCounter', 'LoadLibraryW', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetTimeZoneInformation', 'LCMapStringW', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'LeaveCriticalSection', 'GetProcAddress', 'GetCPInfo', 'RtlUnwind', 'GetStartupInfoW', 'GetFileAttributesW', 'CompareStringW', 'CreateFileW', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'FreeLibrary', 'GetAtomNameW', 'HeapDestroy', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'IsProcessorFeaturePresent', 'VirtualFree', 'VirtualAlloc', 'DeviceIoControl', 'GetSystemDirectoryW', 'ExitProcess', 'GetVolumeNameForVolumeMountPointA', 'ReadDirectoryChangesW', 'Module32FirstW', 'EnumResourceLanguagesW', 'GetShortPathNameW', 'GetPrivateProfileSectionW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'VirtualQuery', 'VirtualProtect', 'GetSystemInfo', 'GetModuleHandleA', 'GetCommandLineA', 'MulDiv', 'GetVersionExA', 'GlobalAlloc', 'lstrcpyW', 'GlobalFree', 'lstrcatW', 'MessageBoxW', 'FindWindowW', 'IsWindow', 'SendMessageTimeoutW', 'GetWindowThreadProcessId', 'IsWindowVisible', 'DefWindowProcW', 'GetActiveWindow', 'UnregisterClassA', 'SetWindowLongW', 'GetWindowLongW', 'CallWindowProcW', 'SendMessageW', 'GetWindowTextW', 'PostQuitMessage', 'CreateWindowExW', 'LoadCursorW', 'GetClassInfoExW', 'RegisterClassExW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'SetWindowTextW', 'SetTimer', 'EnumThreadWindows', 'DestroyWindow', 'CharNextW', 'GetAltTabInfoA', 'CreateIconIndirect', 'GetMenuItemID', 'GetWindowInfo', 'GetTitleBarInfo', 'GrayStringW', 'CharLowerA', 'EnumWindows', 'OpenWindowStationW', 'SetDeskWallpaper', 'GetGuiResources', 'CheckMenuRadioItem', 'SetWindowRgn', 'CallMsgFilterW', 'EnableWindow', 'ValidateRgn', 'RealGetWindowClassA', 'WINNLSGetEnableStatus', 'GetWindowRect', 'InvalidateRect', 'EndDialog', 'EnableMenuItem', 'GetMenu', 'DialogBoxParamW', 'LoadStringW', 'ReleaseDC', 'GetDC', 'SetCapture', 'GetWindowPlacement', 'IsIconic', 'IsZoomed', 'DrawMenuBar', 'DrawTextW', 'SetRect', 'FrameRect', 'FillRect', 'OffsetRect', 'InvertRect', 'IntersectRect', 'ReleaseCapture', 'UpdateWindow', 'PostMessageW', 'PtInRect', 'GetSubMenu', 'GetDesktopWindow', 'MoveWindow', 'GetForegroundWindow', 'ShowWindow', 'GetSystemMetrics', 'EndPaint', 'BeginPaint', 'WaitMessage', 'TranslateAcceleratorW', 'LoadAcceleratorsW', 'RegisterClassW', 'LoadIconW', 'MessageBoxA', 'LoadStringA', 'SetDlgItemTextW', 'GetDlgItem', 'WinHelpW', 'CheckDlgButton', 'IsDlgButtonChecked', 'CheckRadioButton', 'GetDlgItemTextW', 'UnionRect', 'LoadBitmapW', 'wsprintfW', 'GetClientRect', 'GetParent', 'CharUpperW', 'IsMenu', 'GetWindowContextHelpId', 'CharNextA', 'GetDialogBaseUnits', 'VkKeyScanA', 'CreatePopupMenu', 'IsClipboardFormatAvailable', 'GetMessagePos', 'CharLowerW', 'GetMessageExtraInfo', 'LoadCursorFromFileA', 'CloseDesktop', 'AnyPopup', 'OpenIcon', 'CreateMenu', 'SetRectRgn', 'BRUSHOBJ_hGetColorTransform', 'CreateHalftonePalette', 'EngQueryLocalTime', 'GdiGetLocalBrush', 'GdiGetSpoolMessage', 'GdiReleaseDC', 'GdiGradientFill', 'CLIPOBJ_cEnumStart', 'CreateColorSpaceW', 'RestoreDC', 'ExtCreateRegion', 'ExtEscape', 'SetWinMetaFileBits', 'StrokeAndFillPath', 'PolyDraw', 'StartFormPage', 'EnumFontFamiliesA', 'DrawEscape', 'GetCharWidth32A', 'CreateScalableFontResourceW', 'EngAlphaBlend', 'SetMiterLimit', 'SetWindowExtEx', 'GetGlyphOutline', 'SetDCBrushColor', 'GdiConvertMetaFilePict', 'GetCurrentObject', 'GetPixel', 'CreateSolidBrush', 'GdiInitSpool', 'CancelDC', 'HT_Get8BPPMaskPalette', 'SetBkColor', 'GdiGetCharDimensions', 'PlayMetaFileRecord', 'GdiConvertBrush', 'CreateEnhMetaFileA', 'GetGlyphOutlineA', 'Polyline', 'EngQueryEMFInfo', 'FONTOBJ_pQueryGlyphAttrs', 'SaveDC', 'GetDeviceCaps', 'CreateFontIndirectW', 'Ellipse', 'GetTextExtentPoint32W', 'GdiFlush', 'ExcludeClipRect', 'CreateCompatibleBitmap', 'GetStockObject', 'GetBkMode', 'GetTextColor', 'SetBkMode', 'SetTextColor', 'SetPixel', 'MoveToEx', 'LineTo', 'CreateCompatibleDC', 'SelectObject', 'BitBlt', 'DeleteObject', 'DeleteDC', 'CloseFigure', 'DeleteEnhMetaFile', 'GetMapMode', 'CloseMetaFile', 'GetLayout', 'GetTextCharacterExtra', 'GetTextAlign', 'GetDCBrushColor', 'RegQueryValueExA', 'RegQueryValueExW', 'RegCloseKey', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'SHGetFolderPathW', 'ShellExecuteW', 'SHLoadInProc', 'DoEnvironmentSubstA', 'ExtractAssociatedIconExA', 'SHFileOperationW', 'CoInitialize', 'CoUninitialize', 'CoTaskMemRealloc', 'CoTaskMemFree', 'CoCreateInstance', 'CoTaskMemAlloc', 'SHSetValueW', 'PathFindFileNameW', 'PathAppendW', 'StrStrIW', 'PathRemoveFileSpecW', 'SHGetValueW', 'PathCombineW', 'PathFileExistsW', 'StrToIntW', 'StrCmpNIW', 'StrCmpNA', 'StrStrIA', 'InitCommonControlsEx', 'ImmDisableIME'], ['GetModuleHandleA', 'GetProcAddress', 'GetExitCodeThread', 'LocalFlags', 'WritePrivateProfileStringW', 'GetModuleHandleW'], ['GetProfileIntW', 'BuildCommDCBAndTimeoutsA', 'InterlockedIncrement', 'InterlockedDecrement', 'SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetProcessTimes', 'GetVolumePathNameW', 'GetCalendarInfoA', 'GetConsoleAliasExesLengthW', 'GetFileAttributesA', 'WriteConsoleW', 'SetSystemPowerState', 'GetModuleFileNameW', 'CompareStringW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'SearchPathW', 'DeleteFiber', 'GetLastError', 'GetProcAddress', 'AttachConsole', 'HeapSize', 'SetComputerNameA', 'EnterCriticalSection', 'OpenWaitableTimerA', 'LoadLibraryA', 'GetProcessId', 'LocalAlloc', 'SetCalendarInfoW', 'IsSystemResumeAutomatic', 'AddAtomA', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'CancelTimerQueueTimer', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetFileShortNameA', 'AreFileApisANSI', 'HeapCompact', 'GetPrivateProfileIntW', 'GetVolumeNameForVolumeMountPointA', 'HeapFree', 'HeapAlloc', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'IsProcessorFeaturePresent', 'HeapCreate', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsA', 'SelectObject'], ['CloseHandle', 'CompareStringW', 'CopyFileW', 'CreateFileW', 'DeleteCriticalSection', 'EncodePointer', 'EnterCriticalSection', 'EnumSystemLocalesW', 'ExitProcess', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentStringsW', 'GetFileSizeEx', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryExW', 'LocalFree', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RaiseException', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlPcToFileHeader', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEnvironmentVariableW', 'SetFilePointerEx', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'CryptAcquireContextW', 'CryptCreateHash', 'CryptDecrypt', 'CryptDeriveKey', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptHashData', 'CryptReleaseContext', 'FreeSid', 'RegCloseKey', 'RegOpenKeyExW', 'CoCreateInstance', 'CoInitialize', 'CoInitializeEx', 'CoInitializeSecurity', 'CoUninitialize', 'SysAllocString', 'SysFreeString', 'VariantClear', 'VariantInit', 'wsprintfW', 'NtAllocateVirtualMemory', 'NtCreateThreadEx', 'NtProtectVirtualMemory', 'NtWaitForSingleObject', 'WSACleanup', 'WSAStartup', '__WSAFDIsSet', 'bind', 'closesocket', 'connect', 'gethostbyname', 'htonl', 'htons', 'ntohl', 'recvfrom', 'select', 'send', 'socket'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageExtraInfo', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'CreateDirectoryExW', 'GlobalAlloc', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetCPInfoExW', 'AllocConsole', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'GetConsoleTitleW', 'SetCalendarInfoA', 'SetFilePointer', 'SetLastError', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['CreateMutexW', 'GetConsoleAliasesLengthW', 'AllocConsole', 'lstrcpynA', 'GetConsoleAliasExesLengthA', 'HeapAlloc', 'InterlockedIncrement', 'OpenJobObjectA', 'InterlockedDecrement', 'GetNamedPipeHandleStateA', 'GetUserDefaultLCID', 'WriteConsoleInputA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetCommandLineA', 'GetPriorityClass', 'GetVolumePathNameW', 'GetPrivateProfileIntA', 'SetFileShortNameW', 'GetCalendarInfoW', 'CreateEventA', 'LeaveCriticalSection', 'CreateSemaphoreA', 'GetFileAttributesW', 'WriteConsoleW', 'GetCompressedFileSizeA', 'CompareStringW', 'GetVolumePathNameA', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'GetTempFileNameW', 'DeleteFiber', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'RemoveDirectoryA', 'SearchPathA', 'SetFileAttributesA', 'GlobalFree', 'OpenWaitableTimerA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'MoveFileA', 'GetNumberFormatW', 'BeginUpdateResourceA', 'AddAtomA', 'GetPrivateProfileSectionNamesA', 'GetModuleHandleA', 'FindNextFileW', 'GetStringTypeW', 'GetCurrentDirectoryA', 'EnumDateFormatsW', 'GetShortPathNameW', 'GetCPInfoExA', 'SetCalendarInfoA', 'GetVersionExA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'lstrcpyW', 'DeleteFileA', 'LocalFileTimeToFileTime', 'CreateMailslotW', 'GetVolumeNameForVolumeMountPointA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'WideCharToMultiByte', 'HeapSetInformation', 'GetStartupInfoW', 'HeapFree', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'CloseHandle', 'RaiseException', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'MultiByteToWideChar', 'IsProcessorFeaturePresent', 'LCMapStringW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LoadLibraryW', 'HeapReAlloc', 'ReadFile', 'CreateFileW', 'ReadEventLogW'], ['GetModuleHandleA', 'ValidateRect', 'GetUserNameA', '_CorExeMain', 'DPA_Create', 'ShellAboutW'], ['GetCurrentThread', 'GetSystemDefaultUILanguage', 'UnregisterApplicationRecoveryCallback', 'GetEnvironmentStringsW', 'SwitchToThread', 'IsSystemResumeAutomatic', 'GetThreadLocale', 'SetFileApisToOEM', 'GetCommandLineW', 'GetThreadUILanguage', 'FlushProcessWriteBuffers', 'GetCurrentProcess', 'GetLastError', 'GetErrorMode', 'GetLogicalDrives', 'GetCurrentProcessorNumber', 'RaiseException', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'DecodePointer', 'MultiByteToWideChar', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetModuleHandleW', 'GetOEMCP', 'LoadLibraryExW', 'GetModuleFileNameW', 'lstrcmpiW', 'FreeLibrary', 'WriteConsoleW', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileSizeEx', 'HeapSize', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetFileType', 'GetStdHandle', 'GetProcessHeap', 'GetCommandLineA', 'CloseHandle', 'ReadFile', 'FindClose', 'GetTickCount64', 'GetProcAddress', 'LoadLibraryA', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleExW', 'ExitProcess', 'InterlockedFlushSList', 'RtlUnwind', 'OutputDebugStringW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'GetMessageExtraInfo', 'GetActiveWindow', 'IsWow64Message', 'GetKBCodePage', 'GetOpenClipboardWindow', 'GetProcessWindowStation', 'IsProcessDPIAware', 'GetFocus', 'GetClipboardSequenceNumber', 'GetCapture', 'GetShellWindow', 'CreateMenu', 'GetDesktopWindow', 'GetClipboardViewer', 'DestroyCaret', 'GetForegroundWindow', 'SetCursor', 'LoadCursorW', 'CharNextW', 'GetDialogBaseUnits', 'EmptyClipboard', 'GdiFlush', 'RegSetValueExW', 'RegEnumKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'CoTaskMemFree', 'CoCreateInstance', 'CoTaskMemRealloc', 'CoTaskMemAlloc', 'CoUninitialize', 'OleUninitialize', 'CoFreeUnusedLibraries', 'VarUI4FromStr', 'InternetQueryDataAvailable'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegNotifyChangeKeyValue', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'GetUserNameA', 'AdjustTokenPrivileges', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualAlloc', 'UpdateResourceA', 'UnmapViewOfFile', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'OpenProcess', 'OpenMutexA', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetTempFileNameA', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'EndUpdateResourceA', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreatePipe', 'CreateMutexA', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'BeginUpdateResourceA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'ToAsciiEx', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyExA', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'CLSIDFromString', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteExA', 'ExtractIconExW', 'InternetGetConnectedState', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA', 'InternetCloseHandle', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHGetDesktopFolder', 'OpenSCManagerA', 'CloseServiceHandle', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'inet_ntoa', 'Netbios'], ['GetDCBrushColor', 'VirtualProtectEx', 'FreeConsole', 'RaiseException', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableCS', 'SleepConditionVariableSRW', 'FormatMessageA', 'InitOnceBeginInitialize', 'InitOnceComplete', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'RtlCaptureStackBackTrace', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'SetFileInformationByHandle', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'InitOnceExecuteOnce', 'CreateEventExW', 'CreateSemaphoreExW', 'FlushProcessWriteBuffers', 'GetCurrentProcessorNumber', 'GetSystemTimeAsFileTime', 'GetTickCount64', 'CreateThreadpoolTimer', 'SetThreadpoolTimer', 'WaitForThreadpoolTimerCallbacks', 'CloseThreadpoolTimer', 'CreateThreadpoolWait', 'SetThreadpoolWait', 'CloseThreadpoolWait', 'GetModuleHandleW', 'GetProcAddress', 'GetFileInformationByHandleEx', 'CreateSymbolicLinkW', 'CloseHandle', 'WaitForSingleObjectEx', 'Sleep', 'SwitchToThread', 'GetExitCodeThread', 'GetNativeSystemInfo', 'LocalFree', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'ResumeThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'SetConsoleCtrlHandler', 'HeapFree', 'HeapAlloc', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'ReadFile', 'ReadConsoleW', 'CreateFileW', 'DecodePointer'], ['OpenMutexW', 'GetSystemTimeAdjustment', 'VerSetConditionMask', 'SetLocaleInfoW', 'FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'FillConsoleOutputCharacterW', 'VirtualFree', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExW', 'FreeResource', 'EnumResourceNamesW', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBW', 'SetDefaultCommConfigA', 'WritePrivateProfileStructA', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputA', 'WriteConsoleInputA', 'LoadResource', 'AddAtomA', 'SearchPathW', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryA', 'LocalAlloc', 'SetProcessPriorityBoost', 'GetProfileSectionA', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'GetNamedPipeHandleStateW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GetProcessHeap', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileA', 'GetLastError', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceW', 'SetLastError', 'FatalAppExitW', 'SetSystemTime', 'OpenFileMappingW', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'ContinueDebugEvent', 'VirtualAllocEx', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'GetACP', 'GlobalFindAtomA', 'lstrcatA', 'GetPrivateProfileStringA', 'SetMailslotInfo', 'CreateActCtxW', '_lwrite', 'OutputDebugStringA', 'CreateNamedPipeA', 'GetAtomNameW', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetDriveTypeW', 'GetFileAttributesExW', 'OpenWaitableTimerW', 'MoveFileA', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameW', 'VerLanguageNameW', 'LockFile', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AttachConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'DebugActiveProcessStop', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleA', 'GetModuleFileNameW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'GlobalUnWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeA', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'ReadConsoleW', 'MapUserPhysicalPagesScatter', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'GetDateFormatW', 'GetConsoleAliasExesW', 'EnumDateFormatsA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InterlockedIncrement', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'GlobalAlloc', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetConsoleAliasesLengthW', 'GetCPInfoExW', 'SetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'GetModuleHandleA', 'SetCalendarInfoA', 'SetFilePointer', 'GetStdHandle', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'InitializeCriticalSectionAndSpinCount', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['GetModuleHandleA', 'PeekMessageA', 'RegOpenKeyExA', '_CorExeMain', 'ImageList_Create', 'ShellAboutW'], ['GetLastError', 'lstrcpyA', 'GetModuleHandleA', 'GetCommandLineA', 'FindFirstFileA', 'FormatMessageA', 'FindClose', 'FindNextFileA', 'DeleteFileA', 'CloseHandle', 'GetACP', 'CreateFileA', 'CreateFontIndirectA', 'PostQuitMessage', 'GetMessageA', 'UpdateWindow', 'EndPaint', 'DispatchMessageA', 'BeginPaint', 'TranslateMessage', 'MoveWindow', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcA', 'MessageBoxA', 'SendMessageA', 'DestroyWindow', 'LoadCursorA', 'LoadIconA', 'ShowWindow', 'GetWindowRect'], ['LoadLibraryA', 'WriteProfileSectionW', 'GetNumaProcessorNode', 'FindFirstVolumeW', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationW', 'WaitForSingleObject', 'GetNamedPipeHandleStateA', 'FileTimeToDosDateTime', 'CallNamedPipeW', 'EnumResourceTypesW', 'EnumResourceNamesW', 'TerminateProcess', 'ActivateActCtx', 'GetConsoleAliasesLengthA', 'GetVersionExA', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'GetCommConfig', 'WritePrivateProfileStructA', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeA', 'LeaveCriticalSection', 'WriteConsoleInputA', 'TlsSetValue', 'SetComputerNameExA', 'FindAtomA', 'BuildCommDCBAndTimeoutsA', 'LocalAlloc', 'VerifyVersionInfoA', 'TlsGetValue', 'GetCommandLineA', 'InterlockedExchange', 'GetCalendarInfoA', 'CopyFileW', 'ReleaseActCtx', 'OutputDebugStringW', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringW', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetSystemWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointA', 'DebugActiveProcessStop', 'lstrcmpW', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetSystemWindowsDirectoryW', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringA', 'InterlockedDecrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceA', 'WriteConsoleA', 'VirtualProtect', 'BuildCommDCBW', 'InterlockedFlushSList', 'DeleteCriticalSection', 'GetFileAttributesExA', 'FileTimeToLocalFileTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameW', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GetProcAddress', 'GetOverlappedResult', 'GlobalFix', 'UnregisterWait', 'FatalExit', 'InterlockedExchangeAdd', 'WaitNamedPipeW', 'SetSystemTime', 'SetLocalTime', 'GetPrivateProfileStructA', 'EnumCalendarInfoExA', 'OpenSemaphoreA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameA', 'LockFile', 'EndUpdateResourceW', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasW', 'GetLargestConsoleWindowSize', 'WriteConsoleInputW', 'CreateMailslotW', 'EnumDateFormatsW', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'ResetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'DeleteAtom', 'CreateIoCompletionPort', 'ChangeTimerQueueTimer', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileA', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'LocalLock', 'GetCommMask', 'SetEndOfFile', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerA', 'GetProcessShutdownParameters', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringW', 'InitAtomTable', 'AddAtomW', 'WriteConsoleOutputCharacterA', 'QueryInformationJobObject', 'QueryDosDeviceW', 'EnterCriticalSection', 'VirtualAlloc', 'GetBinaryTypeA', 'CreateFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleW', 'LoadLibraryW', 'SetFilePointer', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharW', 'WinHttpConnect'], ['GetModuleHandleW', 'GetProcAddress', 'CloseHandle', 'GetFileSize', 'lstrcatA', 'ExpandEnvironmentStringsA', 'CreateFileA', 'WriteFile', 'DeleteFileA', 'ReadFile', 'GetModuleHandleA', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CreateFileW'], ['InitCommonControlsEx', 'SHAutoComplete', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetNumberFormatW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'Sleep', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'GetTickCount', 'OpenFileMappingW', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateThread', 'GetProcessAffinityMask', 'CreateEventW', 'CreateSemaphoreW', 'ReleaseSemaphore', 'ResetEvent', 'SetEvent', 'SetThreadPriority', 'SystemTimeToFileTime', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CompareStringW', 'IsDBCSLeadByte', 'SetFileTime', 'SetFileAttributesW', 'SetCurrentDirectoryW', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleHandleA', 'LCMapStringW', 'LCMapStringA', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetModuleFileNameA', 'ExitProcess', 'HeapSize', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'InterlockedDecrement', 'GetCurrentThreadId', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'GetStartupInfoA', 'GetCommandLineA', 'RaiseException', 'GetFileAttributesW', 'FlushFileBuffers', 'ReadFile', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'GetStdHandle', 'GetLongPathNameW', 'GetShortPathNameW', 'GlobalAlloc', 'MoveFileW', 'CreateFileW', 'CreateDirectoryW', 'DeviceIoControl', 'RemoveDirectoryW', 'DeleteFileW', 'CreateHardLinkW', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'CreateFileA', 'GetCPInfo', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'RtlUnwind', 'EnableWindow', 'GetDlgItem', 'ShowWindow', 'SetWindowLongW', 'GetDC', 'ReleaseDC', 'FindWindowExW', 'GetParent', 'MapWindowPoints', 'CreateWindowExW', 'UpdateWindow', 'LoadCursorW', 'RegisterClassExW', 'DefWindowProcW', 'DestroyWindow', 'CopyRect', 'IsWindow', 'CharUpperW', 'OemToCharBuffA', 'LoadIconW', 'LoadBitmapW', 'PostMessageW', 'GetSysColor', 'SetForegroundWindow', 'MessageBoxW', 'WaitForInputIdle', 'IsWindowVisible', 'DialogBoxParamW', 'DestroyIcon', 'SetFocus', 'GetClassNameW', 'SendDlgItemMessageW', 'EndDialog', 'GetDlgItemTextW', 'SetDlgItemTextW', 'wvsprintfW', 'SendMessageW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'LoadStringW', 'GetWindowRect', 'GetClientRect', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'GetWindowLongW', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'DeleteDC', 'GetObjectW', 'DeleteObject', 'CreateDIBSection', 'GetSaveFileNameW', 'CommDlgExtendedError', 'GetOpenFileNameW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'SHBrowseForFolderW', 'ShellExecuteExW', 'SHGetSpecialFolderLocation', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'SHChangeNotify', 'SHGetFileInfoW', 'CLSIDFromString', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'CreateStreamOnHGlobal', 'VariantInit'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'SetCommConfig', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'DnsHostnameToComputerNameW', 'GetAtomNameW', 'SetConsoleTitleA', 'GetStringTypeExA', 'InterlockedExchange', 'GetProcAddress', 'SetStdHandle', 'SetFileAttributesA', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'UpdateResourceW', 'GetFileTime', 'GetVersionExA', 'LCMapStringW', 'DeleteFileA', 'SwitchToThread', 'VirtualAlloc', 'GetLocaleInfoA', 'WideCharToMultiByte', 'InterlockedIncrement', 'MultiByteToWideChar', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleA', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpCheckPlatform'], ['GetCurrentHwProfileA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DeleteFileA', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'feof', 'ferror', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'getc', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'wcslen', 'SHGetFolderPathA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetMailslotInfo', 'GetBinaryTypeW', 'lstrlenW', 'GetStdHandle', 'GetCPInfoExW', 'MoveFileExA', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetConsoleAliasesLengthW', 'GetLastError', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LoadLibraryA', 'SetStdHandle', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'OffsetRect', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SysFreeString', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysReAllocStringLen', 'SafeArrayCreate', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'ResizePalette', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetNearestPaletteIndex', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'HeapAlloc', 'HeapCreate', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '__dllonexit', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__mb_cur_max', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_strrev', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'free', 'fwrite', 'getc', 'getenv', 'islower', 'isspace', 'isupper', 'isxdigit', 'localeconv', 'malloc', 'memcpy', 'memmove', 'realloc', 'signal', 'strerror', 'strlen', 'strncmp', 'strtol', 'strtoul', 'tolower', 'ungetc', 'vfprintf', 'wcslen', 'EnumWindows'], ['SetStdHandle', 'WriteConsoleW', 'WriteConsoleA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW', 'CreateFileA', 'FreeConsole', 'GetModuleHandleA', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'GetClassInfoA', 'CallWindowProcA', 'SetWindowLongA', 'CheckDlgButton', 'GetActiveWindow', 'LoadCursorA', 'MessageBoxA', 'wsprintfA', 'GetDlgItemTextA', 'SetTextColor', 'CreateFontIndirectA', 'SelectObject', 'SetBkMode', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegDeleteKeyA'], ['HeapAlloc', 'Process32First', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetComputerNameA', 'SetEvent', 'Sleep', 'WaitForSingleObject', 'VirtualAlloc', 'MultiByteToWideChar', 'lstrlenW', 'GetLastError', 'SetLastError', 'DeleteFileW', 'CopyFileW', 'CreateDirectoryW', 'CreateEventA', 'VirtualFreeEx', 'WriteProcessMemory', 'VirtualAllocEx', 'IsBadReadPtr', 'ExitProcess', 'CreateRemoteThread', 'DuplicateHandle', 'CreateProcessW', 'lstrlenA', 'CreateThread', 'MapViewOfFile', 'CreateFileMappingA', 'InitializeCriticalSection', 'VirtualQuery', 'lstrcpyW', 'GetModuleFileNameW', 'lstrcatW', 'GetProcessHeap', 'TerminateProcess', 'OpenProcess', 'GetCurrentProcessId', 'CreateMutexA', 'GetCommandLineA', 'ReadProcessMemory', 'VirtualQueryEx', 'lstrcmpA', 'VirtualFree', 'WideCharToMultiByte', 'lstrcmpiA', 'WriteFile', 'CreateFileW', 'TerminateThread', 'ResumeThread', 'SuspendThread', 'HeapFree', 'lstrcatA', 'Process32Next', 'GetModuleHandleA', 'GetSystemInfo', 'GetVersionExA', 'LoadLibraryA', 'GetProcAddress', 'GetCurrentProcess', 'CloseHandle', 'lstrcpyA', 'GetProcessVersion', 'GetTickCount', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcA', 'GetSystemMetrics', 'wsprintfA', 'wsprintfW', 'OpenProcessToken', 'AdjustTokenPrivileges', 'GetUserNameA', 'RegQueryValueExA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExW', 'RegOpenKeyExA', 'RegSetValueExA', 'RegNotifyChangeKeyValue', 'RegDeleteKeyA', 'LookupPrivilegeValueA', 'SHGetFolderPathW', 'CoCreateGuid', 'StrStrA', 'StrCmpNIA', 'HttpSendRequestA', 'HttpOpenRequestA', 'InternetConnectA', 'InternetOpenA', 'InternetGetCookieA', 'InternetReadFile', 'InternetOpenUrlA', 'InternetCloseHandle', 'ObtainUserAgentString', 'UuidToStringA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'AddAce', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'sndPlaySoundA'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'CopyFileA', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexA', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA'], ['GetLastError', 'CloseHandle', 'GetModuleFileNameW', 'DeleteFileA', 'GetProcessHeap', 'WaitForSingleObject', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'LocalFree', 'GetVersionExA', 'LocalAlloc', 'LoadLibraryA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetVersionExW', 'Sleep', 'GlobalFindAtomA', 'ExpandEnvironmentStringsA', 'GetCurrentProcess', 'GlobalAddAtomA', 'SetErrorMode', 'lstrcpynA', 'ExitProcess', 'GetTickCount', 'CreateFileA', 'GetShortPathNameA', 'GetHandleInformation', 'SetPriorityClass', 'GetCurrentThread', 'WriteFile', 'ReadFile', 'SetThreadPriority', 'GetFileSizeEx', 'CopyFileA', 'SetFileAttributesA', 'GetTempFileNameA', 'wsprintfW', 'DestroyWindow', 'keybd_event', 'GetMessageA', 'SetTimer', 'RegisterClassExA', 'PostQuitMessage', 'KillTimer', 'TranslateMessage', 'CreateWindowExA', 'DefWindowProcA', 'FlashWindow', 'DispatchMessageA', 'UpdateWindow', 'ShowWindow', 'ShellExecuteExW', 'ShellExecuteExA', 'SHGetFolderPathW', 'SHGetFolderPathA', 'CoInitializeEx', 'CoUninitialize', 'GetModuleBaseNameW', 'PathAppendW', 'PathAddBackslashA', 'PathFindFileNameA', 'PathFileExistsA', 'PathAddExtensionA', 'PathIsDirectoryA', 'PathCombineA', 'StrStrNIW', 'RtlImageNtHeader', '_stricmp', 'ZwClose', 'memset', '_alloca_probe', 'strstr', '_snprintf', 'RtlUnwind', 'CryptGetHashParam', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'OpenProcessToken', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'RegSetValueExA', 'RegQueryValueExA', 'RegCreateKeyA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegFlushKey', 'RegCloseKey', 'CryptReleaseContext'], ['LoadLibraryExA', 'CreateMutexA', 'GetLastError', 'FreeConsole', 'TerminateProcess', 'CloseHandle', 'CreateProcessA', 'HeapSize', 'GetProcessHeap', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetTimeZoneInformation', 'ReadConsoleW', 'GetFileSizeEx', 'MultiByteToWideChar', 'LocalFree', 'FormatMessageA', 'GetCurrentDirectoryW', 'CreateFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'SetFileInformationByHandle', 'SetFilePointerEx', 'GetTempPathW', 'AreFileApisANSI', 'CopyFileW', 'GetFileInformationByHandleEx', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'Sleep', 'GetCurrentThreadId', 'InitializeCriticalSectionEx', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetLocaleInfoEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetDriveTypeW', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'SetStdHandle', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'WriteConsoleW', 'SHGetKnownFolderPath', 'CoTaskMemFree', 'WSAStartup', 'recv', 'getaddrinfo', 'closesocket', 'WSASocketA', 'connect'], ['LocalAlloc', 'GetProcAddress', 'LoadLibraryA', 'GetTapeParameters', 'LocalFree', 'Sleep', 'MoveFileW', 'GetLocalTime', 'LockFile', 'LockResource', 'InterlockedCompareExchange', 'InterlockedIncrement', 'EnterCriticalSection', 'EnumDateFormatsExW', 'GetConsoleAliasExesLengthA', 'GetConsoleAliasesLengthA', 'GetConsoleAliasesW', 'SetLastError', 'CloseHandle', 'GetThreadId', 'ConvertFiberToThread', 'FreeLibrary', 'VirtualLock', 'SizeofResource', 'GetLargePageMinimum', 'GetSystemDefaultLangID', 'GetCurrentProcess', 'GetProcessHeap', 'GetSystemDefaultLCID', 'GlobalUnfix', 'GetVersionExA', 'DeleteFiber', 'GetCompressedFileSizeA', 'SetConsoleTitleW', 'GetFileAttributesExW', 'SetFileShortNameW', 'GetUILanguageInfo', 'GetStringTypeA', 'RtlUnwind', 'MultiByteToWideChar', 'RaiseException', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'LeaveCriticalSection', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'GetModuleHandleA', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'DeleteCriticalSection', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'CreateFileA', 'GetSysColorBrush'], ['SetBkMode', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', '_iob', 'CharLowerA', 'CreateEnvironmentBlock'], ['HeapAlloc', 'GetCommandLineA', 'RtlUnwind', 'Sleep', 'HeapReAlloc', 'RaiseException', 'VirtualAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'GetACP', 'IsValidCodePage', 'LCMapStringW', 'LCMapStringA', 'SetHandleCount', 'HeapFree', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetOEMCP', 'GetCPInfo', 'GetModuleHandleW', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'MultiByteToWideChar', 'lstrlenA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'LoadLibraryA', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'LoadResource', 'FindResourceA', 'GetFileType', 'ExitProcess', 'LoadCursorA', 'GetSysColorBrush', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'UpdateWindow', 'CreateWindowExA', 'GetClassInfoA', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextA', 'EnableWindow', 'GetSystemMetrics', 'AppendMenuA', 'SendMessageA', 'GetWindow', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'GetClassInfoExA', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'CopyRect', 'FrameRect', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'PostQuitMessage', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'PostMessageA', 'RegisterClassA', 'DeleteDC', 'GetDeviceCaps', 'ScaleWindowExtEx', 'SetWindowExtEx', 'Escape', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'GetStockObject', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'SelectObject', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['SHFileOperationW', 'SHGetFolderPathW', 'UnMapAndLoad', 'MapAndLoad', 'TlsAlloc', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'GetFileSizeEx', 'CreateDirectoryW', 'ReadFile', 'SetConsoleCtrlHandler', 'GetCommandLineW', 'WriteFile', 'GetShortPathNameW', 'GetModuleFileNameW', 'GetProcessId', 'SetFilePointer', 'GetTempPathW', 'WaitForSingleObject', 'CreateFileW', 'GetLastError', 'CloseHandle', 'SetEnvironmentVariableA', 'GetCurrentProcessId', 'CreateProcessW', 'GetSystemTimeAsFileTime', 'FormatMessageA', 'GenerateConsoleCtrlEvent', 'GetExitCodeProcess', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetConsoleMode', 'RtlUnwindEx', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleW', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetStdHandle', 'HeapAlloc', 'MultiByteToWideChar', 'HeapFree', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'WideCharToMultiByte', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP'], ['GetACP', 'LocalFree', 'CloseHandle', 'SizeofResource', 'GetCurrentProcessId', 'VirtualProtect', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'CopyFileW', 'LoadLibraryA', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'GetModuleHandleA', 'HeapCreate', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'EnumResourceNamesW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'CreateEventW', 'WaitForMultipleObjectsEx', 'SetThreadLocale', 'GetThreadLocale', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'GetClassInfoExW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'SysFreeString', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysReAllocStringLen', 'SafeArrayCreate', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'NetWkstaGetInfo', 'NetApiBufferFree', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['SetUnhandledExceptionFilter', 'GetCurrentProcessId', 'ExitProcess', 'GetCurrentThreadId', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'RegDeleteKeyExW', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'GetUserNameA', 'socket', 'inet_addr', 'gethostbyname', 'gethostbyaddr', 'closesocket', 'htons', 'connect', 'send', 'recv', 'WSAStartup', 'WSACleanup', '?_Xbad_alloc@std@@YAXXZ', '?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z', '?uncaught_exception@std@@YA_NXZ', '?_Xlength_error@std@@YAXPBD@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ', '?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ', '?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z', '?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PAD_J@Z', '?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAVios_base@1@AAV21@@Z@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z', '??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ', '?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PAD_J@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z', 'memmove', '__CxxFrameHandler3', '__std_terminate', 'strstr', '__std_exception_copy', '__std_exception_destroy', '_CxxThrowException', 'memset', '_except_handler4_common', 'memcpy', '__p__commode', '__stdio_common_vsprintf', '_set_fmode', '_get_wide_winmain_command_line', '_initterm_e', 'exit', '_exit', '_initialize_wide_environment', '_seh_filter_exe', '_cexit', '_c_exit', '_register_thread_local_exe_atexit_callback', '_set_app_type', '_invalid_parameter_noinfo_noreturn', '_configure_wide_argv', '_initterm', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_controlfp_s', 'terminate', '_set_new_mode', 'free', 'realloc', '_callnewh', 'malloc', 'toupper', 'strncpy', 'isalnum', 'atoi', '__setusermatherr', '_configthreadlocale'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['GetProcessHeap', 'Sleep', 'GetSystemTimeAsFileTime', 'GetLocalTime', 'HeapAlloc', 'GetEnvironmentVariableA', 'GetTempPathA', 'CreateFileA', 'FindFirstChangeNotificationA', 'GetCommandLineA', 'RaiseException', 'CreateFileW', 'DecodePointer', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetTimeZoneInformation', 'GetACP', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'GetStdHandle', 'GetFileType', 'GetCommandLineW', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CloseHandle', 'VirtualProtect', 'CoTaskMemAlloc', 'CLSIDFromString', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'SystemFunction036'], ['SetThreadToken', 'RevertToSelf', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'GetNamedSecurityInfoW', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'GetSecurityDescriptorSacl', 'ConvertStringSidToSidW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerExW', 'OpenSCManagerW', 'OpenServiceW', 'QueryServiceStatus', 'StartServiceW', 'CloseServiceHandle', 'StartServiceCtrlDispatcherW', 'CreateServiceW', 'QueryServiceConfig2W', 'ChangeServiceConfig2W', 'DeleteService', 'ControlService', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'EventRegister', 'EventUnregister', 'EventWrite', 'OpenThreadToken', 'StartTraceW', 'ControlTraceW', 'EnableTraceEx2', 'TraceSetInformation', 'GetCurrentThreadId', 'UnregisterWaitEx', 'OpenProcess', 'GetLastError', 'RegisterWaitForSingleObject', 'CreateThread', 'GetFileAttributesW', 'DeleteFileW', 'WaitForSingleObject', 'CloseHandle', 'GetTempPathW', 'GetCurrentProcess', 'LocalFree', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'LoadLibraryExW', 'GetProcAddress', 'FreeLibrary', 'QueryPerformanceCounter', 'SetEvent', 'CreateEventW', 'GetModuleFileNameW', 'GetCurrentProcessId', 'GetComputerNameExW', 'QueryPerformanceFrequency', 'GetCurrentThread', 'GetVersionExW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'WriteConsoleW', 'SetFilePointer', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'SetThreadStackGuarantee', 'LCMapStringW', 'WideCharToMultiByte', 'RaiseException', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'HeapAlloc', 'HeapFree', 'RtlPcToFileHeader', 'EncodePointer', 'DecodePointer', 'SetLastError', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'HeapCreate', 'HeapSetInformation', 'GetFileType', 'GetStartupInfoW', 'SetHandleCount', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'OutputDebugStringA', 'RtlUnwindEx', 'HeapReAlloc', 'HeapSize', 'Sleep', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeW', 'MultiByteToWideChar', 'CoRevertToSelf', 'CoImpersonateClient', 'CoSuspendClassObjects', 'CoRevokeClassObject', 'CoResumeClassObjects', 'CoRegisterClassObject', 'CoInitializeSecurity', 'StringFromGUID2', 'CoCreateGuid', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'SysFreeString', 'SysAllocStringLen', 'SysStringLen', 'SysAllocString', 'SHDeleteKeyW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf', 'InternetCheckConnectionA'], ['FltGetRoutineAddress', 'MmGetSystemRoutineAddress', '__C_specific_handler', '__chkstk', 'MmMapLockedPagesSpecifyCache', 'KeBugCheckEx'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'VirtualProtect', 'FindMediaType'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA', 'mciSendCommandA', 'mciGetErrorStringA'], ['_aullshr', '_aulldiv', '_alldvrm', '_aullrem', 'memset', 'RtlNtStatusToDosError', 'memmove', 'strncmp', 'memcmp', 'strcmp', '_alldiv', '_snwprintf', 'memcpy', '_snprintf', '_allshl', '_allrem', '_allmul', '_aulldvrm', 'StrStrIA', 'StrCmpNA', 'PathCombineW', 'StrChrW', 'StrToIntExA', 'PathFindFileNameW', 'StrChrA', 'StrRChrA', 'GetVersionExA', 'DeleteCriticalSection', 'GetFileAttributesExW', 'GetSystemInfo', 'GetDiskFreeSpaceA', 'lstrlenW', 'LocalAlloc', 'GetCurrentThreadId', 'OutputDebugStringA', 'GetCurrentProcessId', 'LocalFree', 'HeapAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'SetEvent', 'Sleep', 'CreateEventA', 'HeapDestroy', 'HeapCreate', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'CreateThread', 'SwitchToThread', 'FindFirstFileW', 'FindClose', 'FindNextFileW', 'lstrlenA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'DeleteFileW', 'GetFileSize', 'FreeLibrary', 'WaitForSingleObject', 'LoadLibraryW', 'LeaveCriticalSection', 'GetFileAttributesA', 'GetFileAttributesW', 'ReadFile', 'CreateFileW', 'GetProcAddress', 'EnterCriticalSection', 'LoadLibraryA', 'CreateFileMappingW', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'LockFileEx', 'HeapSize', 'GetTempPathW', 'FlushFileBuffers', 'AreFileApisANSI', 'HeapValidate', 'GetVersionExW', 'FormatMessageW', 'InitializeCriticalSection', 'WriteFile', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'GetProcessHeap', 'UnlockFileEx', 'GetTickCount', 'OutputDebugStringW', 'LockFile', 'GetTempPathA', 'GetSystemTime', 'ExpandEnvironmentStringsW', 'DeleteFileA', 'GetFullPathNameW', 'GetFullPathNameA', 'HeapReAlloc', 'CreateFileA', 'CreateMutexW', 'HeapCompact', 'SetFilePointer', 'TryEnterCriticalSection', 'MapViewOfFile', 'UnmapViewOfFile', 'SetEndOfFile', 'SystemTimeToFileTime', 'QueryPerformanceCounter', 'InterlockedCompareExchange', 'UnlockFile', 'SHGetFolderPathW', 'CoUninitialize', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'CryptBinaryToStringW', 'CryptStringToBinaryA', 'CryptUnprotectData'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpW', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'SetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'GetProcAddress', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceW', 'VirtualAlloc', 'GetBinaryTypeW', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['GetFileVersionInfoSizeExW', 'CreateEnvironmentBlock', 'WTSQueryUserToken', 'GetVersionExW', 'GetUserObjectInformationW', 'RegDeleteKeyExW', 'CommandLineToArgvW', 'CoCreateInstance', 'connect', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['PlaySoundW', 'FindFirstUrlCacheEntryW', 'FindNextUrlCacheEntryW', 'InternetCloseHandle', 'InternetReadFile', 'FindCloseUrlCache', 'InternetOpenW', 'InternetOpenUrlW', 'DeleteUrlCacheEntryW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'InitCommonControls', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'SHGetSpecialFolderLocation', 'Shell_NotifyIconW', 'SHAppBarMessage', 'SHFileOperationW', 'ShellExecuteW', 'SHGetPathFromIDListW', 'DdeSetUserHandle', 'MoveWindow', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'DdeCmpStringHandles', 'SendMessageA', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'GetScrollBarInfo', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'SetSystemCursor', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'GetAsyncKeyState', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetThreadDesktop', 'SetFocus', 'ReleaseDC', 'mouse_event', 'ExitWindowsEx', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'PtInRect', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetMessageTime', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'CreateDesktopW', 'GetWindowPlacement', 'CreateWindowExW', 'ChildWindowFromPoint', 'OpenDesktopW', 'GetMessageW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'SetScrollPos', 'GetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'SendInput', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'MonitorFromRect', 'InsertMenuItemW', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'VkKeyScanW', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'OemToCharBuffW', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CountClipboardFormats', 'CloseClipboard', 'DestroyCursor', 'PostMessageA', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'MonitorFromPoint', 'LoadIconW', 'SystemParametersInfoW', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'MenuItemFromPoint', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetErrorInfo', 'SysFreeString', 'VariantClear', 'VariantInit', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'GetActiveObject', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'GetUserNameW', 'RegQueryInfoKeyW', 'CryptGenRandom', 'RegUnLoadKeyW', 'IsValidAcl', 'CryptReleaseContext', 'RegSaveKeyW', 'RegReplaceKeyW', 'RegCreateKeyExW', 'CryptAcquireContextW', 'InitializeAcl', 'RegLoadKeyW', 'RegEnumKeyExW', 'AdjustTokenPrivileges', 'RegDeleteKeyW', 'SetSecurityInfo', 'LookupPrivilegeValueW', 'RegOpenKeyExW', 'OpenProcessToken', 'RegDeleteValueW', 'RegFlushKey', 'RegEnumValueW', 'RegQueryValueExW', 'RegCloseKey', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'strncmp', '_stricmp', '_ftol', 'memcpy', 'memset', 'sprintf', 'SetFileAttributesW', 'GetFileTime', 'GetFileType', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'TerminateThread', 'QueryPerformanceFrequency', 'SetProcessWorkingSetSize', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'HeapAlloc', 'ExitProcess', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'DosDateTimeToFileTime', 'GetUserDefaultLCID', 'CreateProcessW', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'CopyFileW', 'MapViewOfFile', 'CreateMutexW', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'MoveFileW', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'OpenProcess', 'SwitchToThread', 'GetExitCodeThread', 'OutputDebugStringW', 'GetCurrentThread', 'GetLogicalDrives', 'LocalFileTimeToFileTime', 'GetFileAttributesExW', 'LockResource', 'LoadLibraryExW', 'TerminateProcess', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'SetVolumeLabelW', 'EnterCriticalSection', 'SetFilePointer', 'ReleaseMutex', 'FlushFileBuffers', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetTempFileNameW', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'InitializeCriticalSection', 'GetThreadPriority', 'GetCurrentProcess', 'GlobalLock', 'SetThreadPriority', 'VirtualAlloc', 'GetTempPathW', 'GetCommandLineW', 'GetSystemInfo', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'GetConsoleOutputCP', 'UnmapViewOfFile', 'GetConsoleCP', 'GetModuleHandleExA', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'GetLocaleInfoW', 'CreateFileW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'IsDBCSLeadByteEx', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'GetOEMCP', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'SHGetFolderPathW', 'gethostbyaddr', 'getsockopt', 'setsockopt', 'select', 'WSACleanup', 'gethostbyname', 'bind', 'gethostname', 'closesocket', 'WSAGetLastError', 'connect', 'getpeername', 'inet_addr', 'WSAAsyncSelect', 'WSAAsyncGetServByName', 'WSACancelAsyncRequest', 'send', 'accept', 'ntohs', 'htons', 'WSAStartup', 'getservbyname', '__WSAFDIsSet', 'getsockname', 'listen', 'socket', 'recv', 'inet_ntoa', 'ioctlsocket', 'shutdown', 'WSAAsyncGetHostByName', 'OleRegEnumVerbs', 'IsAccelerator', 'CreateBindCtx', 'MkParseDisplayName', 'CoCreateInstance', 'CoUninitialize', 'IsEqualGUID', 'ProgIDFromCLSID', 'CreateStreamOnHGlobal', 'OleInitialize', 'CLSIDFromProgID', 'OleUninitialize', 'CoGetClassObject', 'CoInitialize', 'CoTaskMemFree', 'OleDraw', 'CoTaskMemAlloc', 'StringFromCLSID', 'OleSetMenuDescriptor', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'ResizePalette', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'SetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'CreateEllipticRgn', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'CombineRgn', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetNearestPaletteIndex', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries', 'RtlCompressBuffer', 'RtlGetCompressionWorkSpaceSize', 'WTSSendMessageW', 'VirtualQuery', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'CreateEventA', 'GetModuleFileNameW', 'LoadLibraryA', 'TerminateProcess', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Thread32First', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'WriteProcessMemory', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'GetCurrentThread', 'SetThreadAffinityMask', 'Sleep', 'FreeLibrary', 'GetTickCount', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GlobalFree', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleW', 'LoadResource', 'MultiByteToWideChar', 'FindResourceExW', 'FindResourceExA', 'WideCharToMultiByte', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'CreateFileW', 'LoadLibraryW', 'GetLastError', 'FlushFileBuffers', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'HeapFree', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'LCMapStringA', 'LCMapStringW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'HeapReAlloc', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'WriteFile', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetProcessWindowStation', 'GetUserObjectInformationW', 'CharUpperBuffW', 'MessageBoxW', 'LocalAlloc', 'GetModuleFileNameW', 'LocalFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'HeapAlloc', 'HeapCreate', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_unlock', 'abort', 'calloc', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'IsValidSid', 'capGetDriverDescriptionA', 'ImageList_Add', 'SaveDC', 'GdipFree', 'acmStreamSize', 'Netbios', 'NtUnmapViewOfSection', 'NtQuerySystemInformation', 'IsEqualGUID', 'VariantCopy', 'ShellExecuteA', 'SHGetFolderPathA', 'URLDownloadToFileA', 'GetDC', 'VerQueryValueA', 'FtpPutFileA', 'waveInOpen', 'WSAIoctl', 'send'], ['GetCurrentProcess', 'SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'GlobalAlloc', 'LoadLibraryW', 'CreateEventA', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetSystemDirectoryA', 'GetBinaryTypeW', 'InterlockedExchange', 'FreeLibrary', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'TransmitCommChar', 'OpenJobObjectW', 'EnumCalendarInfoExA', 'SetFileAttributesW', 'FindResourceW', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateLoggedOnUser'], ['VirtualProtect', 'Sleep', 'GetWindowsDirectoryA', 'VirtualQuery', 'GetSystemInfo', 'RaiseException', 'CreateFileW', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetCommandLineA', 'GetCommandLineW', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CloseHandle', 'WriteConsoleW', 'LoadLibraryExA', 'DrawThemeBackground', 'DrawThemeText', 'GetThemeFont', 'CloseThemeData'], ['GetLastError', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'VirtualProtect', 'SetErrorMode', 'SleepEx', 'GetModuleHandleW', 'VirtualAlloc', 'GetFileSizeEx', 'ReadFile', 'RaiseException', 'GetModuleFileNameW', 'CreateFileW', 'VirtualFree', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnregisterWaitEx', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'CloseHandle', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'GetCommandLineA', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'IsProcessorFeaturePresent', 'SetLastError', 'GetCurrentThread', 'GetStdHandle', 'WriteFile', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'CreateSemaphoreW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'DuplicateHandle', 'WaitForSingleObject', 'GetExitCodeThread', 'CreateThread', 'ExitThread', 'CreateTimerQueue', 'SetEvent', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetThreadTimes', 'FreeLibraryAndExitThread', 'GetModuleHandleA', 'GetVersionExW', 'ReleaseSemaphore', 'InitializeSListHead', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'LoadLibraryW', 'CryptImportKey', 'CryptSetKeyParam', 'CryptDestroyKey', 'CryptGenRandom', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptDecrypt'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ChooseFontA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'ClientToScreen', 'CloseFigure', 'CopySid', 'VariantChangeTypeEx', 'RaiseException'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'NtUnmapViewOfSection', 'SysFreeString', 'SHGetMalloc', 'SHDeleteKeyW', 'URLDownloadToCacheFileW', 'CharNextW', 'FtpPutFileW'], ['RegCloseKey', 'CryptDecodeObjectEx', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'CoInitialize', 'ShellExecuteA', 'SystemParametersInfoA'], ['GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'LoadLibraryW', 'GetBinaryTypeA', 'GetModuleFileNameW', 'GetPrivateProfileIntW', 'GetLastError', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'OpenJobObjectW', 'SetConsoleTitleW', 'EnumDateFormatsW', 'LocalSize', 'WriteFileEx', 'LocalFree', 'HeapReAlloc', 'HeapSize', 'InterlockedIncrement', 'FreeLibrary', 'GetConsoleAliasesLengthW', 'RtlUnwind', 'HeapFree', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'GetStringTypeW', 'Sleep', 'RaiseException', 'ClientToScreen', 'GetFontUnicodeRanges', 'GetOldestEventLogRecord', 'CoRevokeMallocSpy'], ['GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'lstrlenA', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'SetFilePointer', 'VirtualAlloc', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ChooseFontA', 'GetProcAddress', 'AutodialHookCallback'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', '_TrackMouseEvent', 'GetOpenFileNameA', 'DeleteDC', 'gluPerspective', 'pow', 'glEnd', 'ExtractIconA', 'GetDC', 'timeGetTime', 'bind'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['GetNumberOfConsoleMouseButtons', 'SetMailslotInfo', 'CreateJobObjectW', 'InterlockedCompareExchange', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'WaitNamedPipeW', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'GetModuleFileNameW', 'GetStringTypeExA', 'InterlockedFlushSList', 'SetLastError', 'ReadConsoleA', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'SetStdHandle', 'LocalAlloc', 'WritePrivateProfileStringA', 'WriteProfileSectionW', 'AddAtomA', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleHandleA', 'OpenEventW', 'QueryPerformanceFrequency', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'DeleteAtom', 'AddConsoleAliasA', 'DebugBreak', 'EnumCalendarInfoExA', 'DeleteFileA', 'GetCommState', 'MoveFileExW', 'VerSetConditionMask', 'CommConfigDialogA', 'InterlockedIncrement', 'BackupRead', 'GetSystemDefaultLangID', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCharacterPlacementA', 'SelectPalette', 'GetTextExtentExPointA', 'GetCharWidthI', 'MapGenericMask', 'GetEventLogInformation'], ['CreateFileA', 'GetFileSize', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'GetCurrentActCtx', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetCompressedFileSizeA', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'FillConsoleOutputCharacterA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'GetStartupInfoA', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'GetACP', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'DeleteFileA', 'MultiByteToWideChar', 'GetCommandLineA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'ImpersonateSelf'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['VirtualProtect', 'GetProcessHeap', 'HeapAlloc', 'GetTempPathA', 'FindFirstChangeNotificationA', 'GetSystemDirectoryA', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'GetStringTypeW', 'MultiByteToWideChar', 'InterlockedCompareExchange', 'InterlockedExchange', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetCPInfo', 'LCMapStringW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameA', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'SetFilePointer', 'FlushFileBuffers', 'CloseHandle', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'GetLocaleInfoW', 'GetLocaleInfoA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'SetStdHandle', 'CreateFileW', 'DCISetDestination', 'DCIBeginAccess', 'DCICloseProvider', 'DCICreateOffscreen', 'DCICreateOverlay', 'DCICreatePrimary', 'DCIDestroy', 'DCIDraw', 'WinWatchClose', 'GetWindowRegionData', 'GetDCRegionData', 'DCISetSrcDestClip', 'DCISetClipList', 'DCIOpenProvider', 'DCIEnum', 'DCIEndAccess'], ['GetVolumeInformationA', 'Sleep', 'GetFileAttributesA', 'CreateProcessA', 'TerminateProcess', 'CreateDirectoryA', 'GetLastError', 'CopyFileA', 'Process32Next', 'GetModuleFileNameA', 'CreateToolhelp32Snapshot', 'CloseHandle', 'GetCurrentProcessId', 'DeleteFileA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'OpenProcess', 'GetTickCount', 'VirtualQueryEx', 'ReadProcessMemory', 'SetThreadPriority', 'GetProcessId', 'CreateThread', 'GetCurrentProcess', 'IsWow64Process', 'GetFileSize', 'CallNamedPipeA', 'WaitNamedPipeA', 'ConnectNamedPipe', 'WriteFile', 'TerminateThread', 'ReadFile', 'DisconnectNamedPipe', 'CreateNamedPipeA', 'Process32First', 'CreateFileA', 'DeleteCriticalSection', 'GetComputerNameA', 'CreateFileW', 'GetStringTypeW', 'FlushFileBuffers', 'WriteConsoleW', 'LCMapStringW', 'EncodePointer', 'DecodePointer', 'GetSystemTimeAsFileTime', 'InterlockedDecrement', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'MultiByteToWideChar', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleMode', 'ReadConsoleW', 'SetLastError', 'InterlockedIncrement', 'GetCurrentThreadId', 'GetStdHandle', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetConsoleCP', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetProcessHeap', 'GetFileType', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetFilePointerEx', 'SetStdHandle', 'OutputDebugStringW', 'LoadLibraryW', 'SetEndOfFile', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SHGetFolderPathA', 'InternetOpenA', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpQueryInfoA', 'HttpSendRequestA', 'InternetCloseHandle', 'URLDownloadToFileA'], ['GetModuleHandleW', 'VirtualAllocEx', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'lstrlenW', 'lstrcmpA', 'lstrcmpW', 'WriteProcessMemory', 'WritePrivateProfileStringW', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'UnmapViewOfFile', 'TerminateThread', 'TerminateProcess', 'SystemTimeToFileTime', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetUnhandledExceptionFilter', 'SetThreadPriority', 'SetLastError', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReleaseMutex', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OutputDebugStringW', 'OpenProcess', 'OpenFileMappingA', 'OpenFileMappingW', 'MulDiv', 'MapViewOfFile', 'LockResource', 'LocalSize', 'LocalFree', 'LoadResource', 'LoadLibraryExA', 'LoadLibraryW', 'LeaveCriticalSection', 'IsBadWritePtr', 'IsBadReadPtr', 'InitializeCriticalSection', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'GetVersionExA', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetThreadContext', 'GetTempPathA', 'GetTempPathW', 'GetTempFileNameW', 'GetSystemTime', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetSystemDefaultLangID', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetFileAttributesW', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetComputerNameW', 'GetCommandLineA', 'GetCommandLineW', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageA', 'FormatMessageW', 'FlushInstructionCache', 'FindResourceA', 'FindResourceW', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsA', 'ExitThread', 'ExitProcess', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileA', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateRemoteThread', 'CreateProcessA', 'CreateProcessW', 'CreatePipe', 'CreateMutexA', 'CreateMutexW', 'CreateFileMappingA', 'CreateFileMappingW', 'CreateFileA', 'CreateFileW', 'CreateEventW', 'CreateDirectoryA', 'CopyFileA', 'CompareStringW', 'CloseHandle', 'Beep', 'RtlUnwind', 'UnlockFileEx', 'FlushFileBuffers', 'LockFileEx', 'GetFileSizeEx', 'SetFilePointerEx', 'SetThreadUILanguage', 'GetStartupInfoW', 'GetStdHandle', 'GetFileType', 'WideCharToMultiByte', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetConsoleMode', 'LoadLibraryExW', 'SetConsoleMode', 'SystemTimeToTzSpecificLocalTime', 'GetSystemTimeAsFileTime', 'UnhandledExceptionFilter', 'GetACP', 'MultiByteToWideChar', 'GetConsoleCP', 'SetThreadLocale', 'SearchPathW', 'QueryDosDeviceW', 'GetLogicalDriveStringsW', 'ProcessIdToSessionId', 'GetProcessHeap', 'SetErrorMode', 'GetExitCodeProcess', 'lstrcpyW', 'SwitchToThread', 'PulseEvent', 'OpenEventW', 'InitializeCriticalSectionAndSpinCount', 'GlobalMemoryStatusEx', 'GetSystemPowerStatus', 'FindFirstFileW', 'LoadLibraryA', 'lstrcmpiA', 'GetSystemDirectoryA', 'SetThreadAffinityMask', 'GetQueuedCompletionStatus', 'SetThreadPriorityBoost', 'WaitForSingleObjectEx', 'CreateIoCompletionPort', 'MoveFileExA', 'MoveFileA', 'lstrcpynA', 'lstrcatA', 'lstrcpyA', 'lstrlenA', 'GetStringTypeW', 'GetStringTypeA', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'LCMapStringA', 'LCMapStringW', 'GetEnvironmentVariableA', 'HeapReAlloc', 'SetStdHandle', 'GetCPInfo', 'GetOEMCP', 'AddAtomA', 'AreFileApisANSI', 'DeviceIoControl', 'FindAtomA', 'GetAtomNameA', 'GetConsoleScreenBufferInfo', 'GetDriveTypeA', 'GetFileInformationByHandle', 'GetFullPathNameA', 'GetLogicalDriveStringsA', 'GetShortPathNameA', 'GetTimeZoneInformation', 'GetVolumeInformationA', 'PeekNamedPipe', 'SetFileTime', 'SetVolumeLabelA', 'UnlockFile', 'WritePrivateProfileSectionA', 'GetPrivateProfileSectionA', '_llseek', '_lwrite', '_lread', '_lclose', 'GetTempFileNameA', 'FindResourceExA', 'EnumResourceLanguagesA', 'EnumResourceNamesA', 'EnumResourceTypesA', 'GetCurrentDirectoryA', 'GetPrivateProfileIntA', 'TlsFree', 'TlsAlloc', 'IsDBCSLeadByte', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'lstrcmpiW', 'lstrcpynW', 'lstrcatW', 'GetShortPathNameW', 'GetSystemWindowsDirectoryW', 'GetLocaleInfoW', 'GetUserDefaultUILanguage', 'WaitForMultipleObjects', 'SetEnvironmentVariableW', 'GetEnvironmentVariableW', 'GetFileAttributesExW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'CopyFileW', 'SetFileAttributesW', 'MoveFileExW', 'RemoveDirectoryW', 'GetSystemDefaultLCID', 'FindNextChangeNotification', 'FlushViewOfFile', 'OpenMutexW', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'FindFirstChangeNotificationW', 'FindCloseChangeNotification', 'GetUserDefaultLCID', 'WaitNamedPipeW', 'FindNextFileW', 'GetProcessWindowStation', 'GetQueueStatus', 'LoadCursorFromFileW', 'PaintDesktop', 'CharUpperA', 'IsWindow', 'GetSysColorBrush', 'IsClipboardFormatAvailable', 'AnyPopup', 'CloseWindowStation', 'GetDesktopWindow', 'GetClipboardOwner', 'GetThreadDesktop', 'GetCaretBlinkTime', 'DestroyWindow', 'GetKeyState', 'IsIconic', 'GetTopWindow', 'GetSysColor', 'GetListBoxInfo', 'CharNextW', 'IsWindowVisible', 'CharUpperW', 'ShowCaret', 'GetDC', 'DestroyCursor', 'VkKeyScanW', 'GetActiveWindow', 'MessageBoxA', 'DeleteObject', 'UpdateColors', 'GetLayout', 'CreateMetaFileW', 'DeleteEnhMetaFile', 'GetTextAlign', 'GetDCPenColor', 'CloseMetaFile', 'CreateMetaFileA', 'FillPath', 'RealizePalette', 'EndDoc', 'SwapBuffers', 'GetFontLanguageInfo', 'GetSystemPaletteUse', 'GetGraphicsMode', 'GetStretchBltMode', 'WidenPath', 'ExtSelectClipRgn', 'CreatePatternBrush', 'GetViewportExtEx', 'SelectPalette', 'CreatePen', 'CreateRectRgnIndirect', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'GetTextExtentPoint32A', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetMapMode', 'CreateRectRgn', 'SelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'GetObjectA', 'SetMapMode', 'SetStretchBltMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'BitBlt', 'CreateCompatibleBitmap', 'GetDeviceCaps', 'CreateFontIndirectA', 'GetStockObject', 'DeleteDC', 'StretchBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateSolidBrush', 'GetWindowExtEx', 'RegOpenKeyA', 'RegQueryValueExA', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['GetDriveTypeW', 'GetEnvironmentVariableA', 'GetExitCodeThread', 'GetFileAttributesA', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileSize', 'GetFileTime', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetTempFileNameA', 'GetTempFileNameW', 'GetTempPathA', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExW', 'GetWindowsDirectoryW', 'GlobalAlloc', 'GlobalFree', 'GetCommandLineA', 'GlobalLock', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'IsDebuggerPresent', 'GetDateFormatW', 'LoadLibraryW', 'LocalAlloc', 'LocalFree', 'MoveFileW', 'MultiByteToWideChar', 'OpenEventW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'SetEndOfFile', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'Sleep', 'TerminateProcess', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'lstrcmpiW', 'lstrlenA', 'lstrlenW', 'GetCPInfo', 'FreeLibrary', 'FormatMessageW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'DeleteFileW', 'DeleteFileA', 'CreateProcessW', 'CreateMutexW', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateDirectoryW', 'GetCurrentProcessId', 'LoadLibraryA', 'GetCurrentProcess', 'CopyFileW', 'GlobalHandle', 'CloseHandle', 'IsCharUpperW', 'GetMenuItemCount', 'CharUpperW', 'wsprintfA', 'UpdateWindow', 'SystemParametersInfoA', 'SetTimer', 'SetCursor', 'SendMessageA', 'ReleaseDC', 'PostMessageA', 'LoadStringA', 'LoadCursorA', 'KillTimer', 'GetParent', 'GetDlgItem', 'GetDC', 'BeginPath', 'CreateMetaFileW', 'AccessCheck', 'AllocateAndInitializeSid', 'FreeSid', 'GetLengthSid', 'ImpersonateSelf', 'InitializeAcl', 'InitializeSecurityDescriptor', 'IsValidSecurityDescriptor', 'OpenProcessToken', 'OpenThreadToken', 'RegCloseKey', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RevertToSelf', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'RegOpenKeyExW', 'AddAccessAllowedAce'], ['VirtualAllocEx', 'GetModuleHandleW', 'FindWindowA', 'GetDlgItem', 'MsgWaitForMultipleObjects', 'DispatchMessageA', 'PostMessageA', 'SendMessageA', 'SetWindowPos', 'TranslateMessage', 'wsprintfA', 'DestroyWindow', 'IsGUIThread', 'GetDC', 'LoadIconW', 'PeekMessageA', 'GetEnhMetaFileA', 'RegQueryValueExW', 'RegOpenKeyExA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'WTSSendMessageW', 'GetProcessWindowStation', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['WNetOpenEnumA', 'WNetEnumResourceA', 'WNetCloseEnum', 'FileTimeToSystemTime', 'CreateThread', 'GetExitCodeThread', 'TerminateThread', 'CloseHandle', 'WriteFile', 'lstrlenA', 'CreateFileA', 'GetSystemTime', 'HeapSize', 'HeapAlloc', 'HeapCreate', 'HeapFree', 'GetTempFileNameA', 'GetTempPathA', 'GetLastError', 'ReadFile', 'MoveFileA', 'ExitProcess', 'FindClose', 'FindNextFileA', 'lstrcmpA', 'FindFirstFileA', 'lstrcatA', 'lstrcpyA', 'HeapDestroy', 'GetFileSize', 'DeleteFileA', 'CharToOemA', 'GetMessageA', 'SetTimer', 'wsprintfA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWindowUpdate', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'GradientFill', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CombineRgn', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA', 'InetIsOffline'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'SendNotifyMessageA', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcessTimes', 'LoadLibraryW', 'LocalHandle', 'ReadFile', 'lstrlenW', 'SetConsoleTitleA', 'GetLastError', 'GetProcAddress', 'BuildCommDCBW', 'GetDriveTypeA', 'WriteConsoleA', 'RegisterWaitForSingleObjectEx', 'GlobalUnWire', 'DebugSetProcessKillOnExit', 'GetProcessShutdownParameters', 'lstrcatW', 'DebugBreakProcess', 'VirtualProtect', 'GetCurrentProcessId', 'OpenFileMappingA', 'EnumSystemLocalesW', 'GetCommandLineA', 'GetUserDefaultLCID', 'HeapAlloc', 'LoadResource', 'MapViewOfFile', 'IsBadStringPtrW', 'FindResourceA', 'CreateTimerQueue', 'GetAtomNameA', 'CreateFileA', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetModuleHandleA', 'CloseHandle', 'FlushFileBuffers', 'AllocateAndInitializeSid', 'AccessCheckAndAuditAlarmA'], ['Sleep', 'CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'CreateMutexW', 'LoadLibraryA', 'lstrlenW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'WaitForSingleObject', 'GetProcAddress', 'GetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow', 'GetMetaRgn', 'GdiGetBatchLimit'], ['FormatMessageA', 'GetLogicalDriveStringsA', 'SetEndOfFile', 'ReadConsoleW', 'CreateFileW', 'FlushFileBuffers', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'GetStringTypeW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetModuleFileNameA', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'DeleteFileW', 'GetComputerNameExA', 'SetFileAttributesA', 'GetFileAttributesA', 'GetDriveTypeA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'lstrlenA', 'LocalFree', 'LocalAlloc', 'GetLastError', 'CloseHandle', 'SetFilePointerEx', 'GetFileSizeEx', 'GetConsoleMode', 'GetConsoleCP', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'WriteFile', 'ReadFile', 'GetOEMCP', 'CreateFileA', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetModuleHandleW', 'GetProcAddress', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentThreadId', 'IsDebuggerPresent', 'GetStartupInfoW', 'RaiseException', 'MultiByteToWideChar', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'InitializeSListHead', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'EncodePointer', 'GetModuleHandleExW', 'ExitProcess', 'GetStdHandle', 'HeapValidate', 'GetSystemInfo', 'GetCurrentThread', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'DecodePointer', 'PostQuitMessage', 'MessageBoxW', 'SystemParametersInfoA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DefWindowProcW', 'RegisterClassW', 'CreateWindowExW', 'SetWindowPos', 'EnableWindow', 'LoadIconA', 'LoadCursorA', 'GetSysColorBrush', 'GetWindowRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'CryptCreateHash', 'CryptReleaseContext', 'CryptDeriveKey', 'CryptDestroyKey', 'GetUserNameA', 'CryptDestroyHash', 'CryptHashData', 'CryptAcquireContextA', 'CryptDecrypt', 'CryptEncrypt', 'CryptImportKey', 'closesocket', 'connect', 'htons', 'inet_addr', 'recv', 'send', 'socket', 'gethostbyaddr', 'gethostbyname', 'WSAStartup', 'WSACleanup', 'CryptImportPublicKeyInfo', 'CryptStringToBinaryA', 'CryptDecodeObjectEx'], ['DecodePointer', 'CreateThread', 'SetEvent', 'WaitForSingleObject', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'Sleep', 'CreateTimerQueue', 'CreateEventW', 'CreateTimerQueueTimer', 'DeleteTimerQueueTimer', 'DeleteTimerQueue', 'GetCurrentProcessId', 'CreateToolhelp32Snapshot', 'Process32NextW', 'SetConsoleCtrlHandler', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'CreateFileW', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'SetFileTime', 'CloseHandle', 'FindFirstFileW', 'GetModuleFileNameW', 'CreateProcessW', 'GetConsoleWindow', 'FindNextFileW', 'FindClose', 'OpenProcess', 'TerminateProcess', 'GetFileAttributesA', 'GetWindowsDirectoryW', 'GetCurrentProcess', 'GetSystemInfo', 'FileTimeToSystemTime', 'GetFileInformationByHandle', 'GetFileSize', 'UnmapViewOfFile', 'GetLocalTime', 'GetTickCount', 'SetEndOfFile', 'LoadLibraryW', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'GetTimeZoneInformation', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'RaiseException', 'DeleteFileW', 'WideCharToMultiByte', 'InitializeSListHead', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetVersionExW', 'GetModuleHandleA', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileType', 'MoveFileExW', 'LoadLibraryExW', 'FreeLibrary', 'GetStdHandle', 'GetCurrentThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetConsoleMode', 'GetConsoleCP', 'SetEnvironmentVariableA', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'CreateSemaphoreW', 'GetStartupInfoW', 'SetLastError', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetCurrentThreadId', 'GetStringTypeW', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'GetCPInfo', 'GetCommandLineA', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetLogicalProcessorInformation', 'ChangeTimerQueueTimer', 'GetModuleHandleW', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'TranslateMessage', 'GetSystemMetrics', 'GetDC', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'wsprintfW', 'ReleaseDC', 'DispatchMessageW', 'GetDesktopWindow', 'GetMessageW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'DeleteObject', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoCreateGuid', 'StringFromGUID2', 'GdipDisposeImage', 'GdipSaveImageToFile', 'GdiplusShutdown', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipFree', 'recv', 'inet_addr', 'htons', 'socket', 'WSAStartup', 'WSACleanup', 'closesocket', 'select', 'sendto', 'GetProcessMemoryInfo', 'QueryWorkingSet'], ['Sleep', 'HeapFree', 'GetProcessHeap', 'VirtualFree', 'FreeLibrary', 'HeapAlloc', 'VirtualAlloc', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'CloseHandle', 'CreateFileA', 'WriteFile', 'ReadFile', 'GetFileSize', 'RtlUnwind', 'RaiseException', 'GetLastError', 'HeapReAlloc', 'GetCommandLineA', 'GetVersionExA', 'GetStartupInfoA', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'InitializeCriticalSection', 'SetConsoleCtrlHandler', 'InterlockedExchange', 'HeapSize', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoW', 'GetTimeZoneInformation', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'LocalAlloc', 'LocalFree'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['VirtualUnlock', 'OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'MoveFileW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'ExitThread', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'GetModuleFileNameW', 'TerminateProcess', 'VirtualAlloc', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'CloseHandle', 'lstrlenW', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'LockFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'HttpQueryInfoA', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['GlobalUnlock', 'GetCurrentProcess', 'QueryPerformanceCounter', 'GetLogicalProcessorInformation', 'DeleteFileW', 'CompareFileTime', 'SetEvent', 'FormatMessageW', 'GetDateFormatW', 'UnregisterWaitEx', 'SleepEx', 'GetTimeFormatW', 'LoadLibraryW', 'TryEnterCriticalSection', 'LoadResource', 'lstrcmpiW', 'ExpandEnvironmentStringsW', 'LockResource', 'CloseHandle', 'SetLastError', 'SetEnvironmentVariableA', 'MapViewOfFile', 'GetTimeZoneInformation', 'WaitForSingleObjectEx', 'TlsAlloc', 'DuplicateHandle', 'GetFullPathNameW', 'EncodePointer', 'UnmapViewOfFile', 'SizeofResource', 'VirtualFree', 'FreeLibrary', 'LocalAlloc', 'GetConsoleMode', 'WideCharToMultiByte', 'CreateThread', 'HeapSize', 'DecodePointer', 'InterlockedPushEntrySList', 'SetThreadAffinityMask', 'GetModuleHandleA', 'GetModuleFileNameW', 'TlsSetValue', 'ChangeTimerQueueTimer', 'FileTimeToSystemTime', 'FindClose', 'CompareStringW', 'RtlUnwind', 'InterlockedPopEntrySList', 'EnumSystemLocalesW', 'GlobalLock', 'SetCurrentDirectoryW', 'MultiByteToWideChar', 'GetModuleHandleExW', 'GlobalFree', 'lstrcmpW', 'WaitForSingleObject', 'lstrcpynW', 'SwitchToThread', 'GlobalAlloc', 'HeapReAlloc', 'InitializeSListHead', 'LeaveCriticalSection', 'OutputDebugStringW', 'SystemTimeToTzSpecificLocalTime', 'GetCurrentThreadId', 'IsValidLocale', 'WriteFile', 'GetModuleHandleW', 'GetTempPathW', 'ResetEvent', 'GetCurrentProcessId', 'GetConsoleCP', 'LoadLibraryExW', 'CreateFileW', 'GetProcessHeap', 'RegisterWaitForSingleObject', 'ReleaseSemaphore', 'ReleaseMutex', 'FreeEnvironmentStringsW', 'FindFirstFileW', 'GetCommandLineA', 'IsDebuggerPresent', 'CreateDirectoryW', 'VirtualProtect', 'SetStdHandle', 'GetSystemInfo', 'LCMapStringW', 'InterlockedFlushSList', 'QueueUserAPC', 'GlobalSize', 'MoveFileExW', 'CreateFileMappingW', 'ReadDirectoryChangesW', 'TerminateProcess', 'GetTickCount64', 'GetLocalTime', 'CopyFileW', 'WriteConsoleW', 'GetCurrentDirectoryW', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'ReadConsoleW', 'SetThreadPriority', 'GetStringTypeW', 'FindNextFileA', 'CreateSemaphoreW', 'VirtualAlloc', 'FindNextFileW', 'UnhandledExceptionFilter', 'GetEnvironmentStringsW', 'HeapDestroy', 'GetThreadPriority', 'UnregisterWait', 'FindResourceW', 'CancelIo', 'GetStartupInfoW', 'GetModuleFileNameA', 'DeleteTimerQueueTimer', 'GetCPInfo', 'IsProcessorFeaturePresent', 'GetACP', 'CreateMutexW', 'MulDiv', 'RaiseException', 'FlushFileBuffers', 'GetOEMCP', 'GetTickCount', 'WaitForMultipleObjects', 'GetCurrentThread', 'GetProcessAffinityMask', 'GetLocaleInfoW', 'ReadFile', 'GetProcAddress', 'EnterCriticalSection', 'SetUnhandledExceptionFilter', 'HeapFree', 'CreateEventW', 'LocalFree', 'lstrcpyW', 'TlsFree', 'TlsGetValue', 'GetStdHandle', 'GetNumaHighestNodeNumber', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'DeleteCriticalSection', 'GetUserDefaultLCID', 'GetCommandLineW', 'IsValidCodePage', 'SetFileAttributesW', 'GetFileType', 'GetLastError', 'CreateMutexA', 'GetFileAttributesW', 'lstrlenW', 'GetLongPathNameW', 'SignalObjectAndWait', 'CreateTimerQueue', 'CreateTimerQueueTimer', 'GetSystemMenu', 'SetScrollPos', 'CreateWindowExW', 'GetWindowPlacement', 'InvalidateRect', 'SetCursor', 'UpdateWindow', 'GetDC', 'SetScrollRange', 'GetTopWindow', 'GetWindowLongW', 'SetDlgItemTextA', 'DrawFrameControl', 'RegisterWindowMessageW', 'CharLowerW', 'LoadIconW', 'LoadMenuW', 'SystemParametersInfoW', 'GetWindowTextLengthW', 'TrackPopupMenu', 'SetWindowPlacement', 'GetFocus', 'TranslateMessage', 'DrawMenuBar', 'ScreenToClient', 'SetDlgItemInt', 'FindWindowW', 'IsIconic', 'DispatchMessageW', 'CreateCaret', 'CreateMenu', 'GetMenuStringW', 'DestroyCursor', 'FrameRect', 'SendMessageW', 'EndDialog', 'DestroyWindow', 'GetKeyboardType', 'GetMenuItemCount', 'GetParent', 'IsWindowUnicode', 'CallWindowProcW', 'GetWindowContextHelpId', 'GetWindowTextW', 'EmptyClipboard', 'GetKeyState', 'SetClipboardViewer', 'CharUpperW', 'MessageBoxW', 'SetRectEmpty', 'UnregisterClassW', 'SetWindowPos', 'GetMenuItemInfoW', 'ShowCaret', 'MonitorFromWindow', 'ChangeClipboardChain', 'SetWindowTextW', 'GetDesktopWindow', 'GetPropW', 'GetDCEx', 'SetFocus', 'DeleteMenu', 'SetParent', 'GetDlgCtrlID', 'InflateRect', 'ShowScrollBar', 'GetDlgItemTextW', 'DefWindowProcW', 'DestroyMenu', 'CreateDialogIndirectParamW', 'LoadImageW', 'EndPaint', 'RegisterClassExW', 'IsClipboardFormatAvailable', 'EnableMenuItem', 'GetMenuState', 'FlashWindowEx', 'IsChild', 'IsCharLowerW', 'RegisterClassW', 'DeferWindowPos', 'DialogBoxIndirectParamW', 'SetMenu', 'LoadStringW', 'TranslateAcceleratorW', 'BeginPaint', 'DrawIcon', 'SetCaretPos', 'GetClassNameW', 'GetDlgItemInt', 'ToAscii', 'AppendMenuW', 'BeginDeferWindowPos', 'FillRect', 'CheckMenuItem', 'RedrawWindow', 'CreateDialogParamW', 'IsCharAlphaNumericW', 'DrawFocusRect', 'PostMessageW', 'DestroyCaret', 'OpenClipboard', 'CallNextHookEx', 'UnhookWindowsHookEx', 'IsCharAlphaW', 'SetCapture', 'IsWindow', 'DefDlgProcA', 'DrawTextExW', 'GetClassNameA', 'SendDlgItemMessageW', 'CloseClipboard', 'ShowWindow', 'SetMenuItemInfoW', 'ModifyMenuW', 'IsZoomed', 'GetCursorPos', 'LoadBitmapW', 'GetWindowRect', 'CloseWindow', 'RemoveMenu', 'LockWindowUpdate', 'SetScrollInfo', 'EndDeferWindowPos', 'GetMenuItemID', 'GetMessageW', 'GetScrollRange', 'GetSystemMetrics', 'SetWindowLongW', 'DrawIconEx', 'GetLastActivePopup', 'HideCaret', 'ShowCursor', 'MessageBeep', 'DrawTextW', 'GetWindowThreadProcessId', 'SetDlgItemTextW', 'GetMenu', 'GetScrollPos', 'CreateCursor', 'MessageBoxA', 'DialogBoxParamW', 'ScrollWindow', 'GetKeyboardState', 'TrackMouseEvent', 'SetPropW', 'SetWindowsHookExW', 'SetForegroundWindow', 'InsertMenuW', 'InsertMenuItemW', 'GetClipboardData', 'DrawEdge', 'CheckMenuRadioItem', 'ReleaseDC', 'GetSubMenu', 'IsDialogMessageW', 'mouse_event', 'GetCapture', 'MapWindowPoints', 'BringWindowToTop', 'CreatePopupMenu', 'ClientToScreen', 'GetDlgItem', 'DestroyIcon', 'MoveWindow', 'GetSysColorBrush', 'GetClientRect', 'LoadCursorW', 'RemovePropW', 'EnableWindow', 'ReleaseCapture', 'GetActiveWindow', 'RegisterClipboardFormatW', 'SetClipboardData', 'GetMonitorInfoW', 'IsWindowVisible', 'GetSysColor', 'DestroyAcceleratorTable', 'GetClassLongA', 'AdjustWindowRectEx', 'CreateAcceleratorTableW', 'DeleteDC', 'CreateCompatibleBitmap', 'CreateFontA', 'OffsetWindowOrgEx', 'GetStockObject', 'SetTextAlign', 'SetBkMode', 'StartPage', 'SetBrushOrgEx', 'CreateSolidBrush', 'CreateFontW', 'ExtSelectClipRgn', 'SetTextColor', 'DPtoLP', 'PatBlt', 'GetTextMetricsW', 'DeleteObject', 'MoveToEx', 'CreatePatternBrush', 'CreateRectRgn', 'GetTextExtentPointW', 'LineTo', 'GetROP2', 'GdiFlush', 'LPtoDP', 'SetWindowOrgEx', 'CreateFontIndirectW', 'SetBkColor', 'Rectangle', 'StartDocW', 'CreateBitmap', 'GetTextExtentPoint32W', 'EndDoc', 'ExtTextOutW', 'EnumFontFamiliesExW', 'SetROP2', 'GetObjectW', 'SaveDC', 'GetNearestColor', 'CreatePen', 'GetDeviceCaps', 'EndPage', 'CreateCompatibleDC', 'SelectObject', 'GetPixel', 'StretchBlt', 'RestoreDC', 'CreateHatchBrush', 'GetViewportOrgEx', 'SelectClipRgn', 'AllocateAndInitializeSid', 'FreeSid', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegDeleteValueW', 'RegEnumKeyExW', 'IsTextUnicode', 'RegSetValueExW', 'CheckTokenMembership', 'RegDeleteKeyW', 'RegCloseKey', '??_V@YAXPAX@Z', '??3@YAXPAX@Z', 'memmove', 'memset', '__CxxFrameHandler3', '_initterm', '_initterm_e', '_cexit', '_except_handler4_common', '__getmainargs', '??_U@YAPAXI@Z', '??0exception@@QAE@ABQBD@Z', '??0exception@@QAE@ABV0@@Z', '??1exception@@UAE@XZ', '?what@exception@@UBEPBDXZ', 'free', '_invalid_parameter', '_lock', '_unlock', '?terminate@@YAXXZ', '__CppXcptFilter', '_CxxThrowException', '??2@YAPAXI@Z', 'wcsstr'], ['GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStringTypeW', 'LCMapStringW', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'OutputDebugStringW', 'HeapSize', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'DeleteVolumeMountPointA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'CommConfigDialogW', 'DeleteFileA', 'FindResourceExW', 'LoadLibraryA', 'GetSystemDefaultLangID', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask'], ['GetCurrentHwProfileA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__C_specific_handler', '__iob_func', '_amsg_exit', '_beginthreadex', '_endthreadex', '_initterm', '_lock', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strcpy', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'SHGetFolderPathA', 'WSACleanup', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['GetAce', 'ImageList_Remove', 'GetOpenFileNameW', 'LineTo', 'IcmpSendEcho', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetUseConnectionW', 'CoGetObject', 'VariantInit', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'connect'], ['RtlZeroMemory', 'SetFileAttributesW', 'SetFilePointerEx', 'SetThreadPriority', 'Sleep', 'UnmapViewOfFile', 'WriteFile', 'RtlMoveMemory', 'lstrcmpW', 'lstrcmpiA', 'lstrcmpiW', 'lstrcpyW', 'lstrlenA', 'lstrlenW', 'MultiByteToWideChar', 'MoveFileW', 'MapViewOfFile', 'GlobalMemoryStatus', 'GlobalFree', 'GlobalAlloc', 'GetModuleFileNameA', 'GetFileAttributesW', 'GetEnvironmentVariableA', 'CreateThread', 'CreateFileW', 'CreateFileMappingA', 'CreateFileA', 'CopyFileA', 'lstrcatW', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'CryptReleaseContext', 'CryptImportKey', 'CryptGenKey', 'CryptExportKey', 'CryptEncrypt', 'CryptDestroyKey', 'CryptDecrypt', 'CryptAcquireContextA', 'AdjustTokenPrivileges', 'RegSetValueExA'], ['CreateFileA', 'FindResourceA', 'FreeLibrary', 'LoadResource', 'WriteFile', 'SizeofResource', 'GetProcAddress', 'LoadLibraryA', 'LockResource', 'EnumResourceNamesA', 'CloseHandle', 'FreeResource', 'GetWindowsDirectoryA', 'OutputDebugStringA', 'GetTempPathA', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'EncodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameW', 'Sleep', 'HeapSize', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'ShellExecuteA', 'SHGetSpecialFolderPathA'], ['AuthzFreeContext', 'AuthzAddSidsToContext', 'AuthzFreeAuditEvent', 'AuthzFreeResourceManager', 'AuthzInitializeContextFromSid', 'AuthzFreeResourceManager', 'AuthzAddSidsToContext', 'AuthzFreeContext', 'AuthzFreeAuditEvent', 'AuthzInitializeContextFromSid', 'WriteProcessMemory', 'OpenEventW', 'MoveFileA', 'GetFileAttributesW', 'DecodePointer', 'InterlockedIncrement', 'GetACP', 'CreateEventW', 'GetModuleHandleA', 'OpenFileMappingA', 'GetEnvironmentVariableA', 'VirtualAlloc', 'GetEnvironmentVariableA', 'LoadLibraryExW', 'LoadBitmapW', 'IsCharLowerA', 'MessageBoxExW', 'GetMessageA', 'MessageBoxW', 'CreateWindowExW', 'SetWindowTextW', 'GetWindow', 'InsertMenuW', 'FindWindowW', 'FindWindowW', 'GetFocus', 'ExtractIconW', 'DragQueryFileA', 'ShellMessageBoxA', 'ShellExecuteW', 'DragQueryPoint', 'FindExecutableA', 'SHEmptyRecycleBinA', 'FindExecutableA', 'SHDefExtractIconW', 'ShellAboutA', 'SHGetFileInfoA', 'SHGetDataFromIDListW', 'ClusWorkerTerminate', 'ResUtilDupString', 'CAEnumNextCA', 'CACloseCertType', 'RegSaveKeyA', 'RegReplaceKeyA', 'IsValidSid', 'RegDeleteValueW', 'CryptSignHashA', 'ReadEventLogW', 'RegCreateKeyExW', 'RegUnLoadKeyA', 'IsValidAcl', 'InitializeAcl', 'OpenEventLogA'], ['FsRtlIsNameInExpression', 'PsGetProcessImageFileName', 'ZwQueryInformationProcess', '__C_specific_handler', 'strchr', 'RtlAppendUnicodeToString', 'KeInitializeSemaphore', 'KeReleaseSemaphore', 'KeWaitForSingleObject', 'KeAcquireSpinLockRaiseToDpc', 'KeReleaseSpinLock', 'PsCreateSystemThread', 'PsTerminateSystemThread', 'ZwQueryInformationFile', 'ZwWriteFile', 'PsGetCurrentThreadId', 'ZwDeleteFile', '_vsnprintf', 'PsThreadType', 'PsSetCreateProcessNotifyRoutine', 'PsGetProcessSessionId', 'RtlAppendUnicodeStringToString', 'ZwDeleteValueKey', 'ZwSetValueKey', 'towupper', 'RtlIntegerToUnicodeString', 'KeInitializeEvent', 'KeSetEvent', 'KeAcquireSpinLockAtDpcLevel', 'KeReleaseSpinLockFromDpcLevel', 'MmProbeAndLockPages', 'IoAllocateIrp', 'IoAllocateMdl', 'IofCallDriver', 'IoFreeIrp', 'IoFreeMdl', 'IoGetDeviceObjectPointer', 'IoGetRelatedDeviceObject', 'ObCloseHandle', 'ObfReferenceObject', 'ZwSetInformationFile', 'ZwReadFile', 'ZwOpenSymbolicLinkObject', 'ZwQuerySymbolicLinkObject', 'IoCreateFileSpecifyDeviceObjectHint', 'IoGetDeviceAttachmentBaseRef', 'FsRtlGetFileSize', 'ObQueryNameString', 'IoFileObjectType', 'KeReadStateEvent', 'ExQueueWorkItem', 'ExGetPreviousMode', 'MmGetSystemRoutineAddress', 'NtOpenProcess', 'ZwCreateEvent', 'ZwWaitForSingleObject', 'ZwSetEvent', 'NtQuerySystemInformation', 'ExEventObjectType', 'NtBuildNumber', 'ZwDeleteKey', 'ObReferenceObjectByName', 'IoDriverObjectType', 'MmIsDriverVerifying', 'IofCompleteRequest', 'IoCreateDevice', 'IoCreateSymbolicLink', 'IoDeleteDevice', 'IoDeleteSymbolicLink', 'RtlSetDaclSecurityDescriptor', 'MmMapLockedPagesSpecifyCache', 'PsGetProcessId', 'IoThreadToProcess', 'PsGetCurrentProcessSessionId', 'ZwTerminateProcess', 'KeStackAttachProcess', 'KeUnstackDetachProcess', 'ZwOpenThread', 'PsProcessType', 'ExInterlockedInsertHeadList', 'ExInterlockedRemoveHeadList', 'CmRegisterCallback', 'CmUnRegisterCallback', 'RtlCreateRegistryKey', 'ZwOpenKey', 'ZwEnumerateKey', 'ZwQueryKey', 'ZwQueryValueKey', 'RtlUnicodeStringToAnsiString', 'RtlFreeAnsiString', 'ProbeForWrite', 'PsSetLoadImageNotifyRoutine', 'PsRemoveLoadImageNotifyRoutine', 'PsGetProcessSectionBaseAddress', 'MmSystemRangeStart', 'KeBugCheckEx', 'PsLookupProcessByProcessId', 'ZwOpenProcess', 'PsGetCurrentProcessId', 'RtlUpcaseUnicodeString', 'RtlUpperString', 'ZwClose', 'ZwCreateFile', 'ObfDereferenceObject', 'ObReferenceObjectByHandle', 'ProbeForRead', 'ExFreePoolWithTag', 'ExAllocatePoolWithTag', 'KeDelayExecutionThread', 'RtlGetVersion', 'DbgPrint', 'RtlCopyUnicodeString', 'RtlInitUnicodeString', 'wcsstr', 'ZwQuerySystemInformation', 'strstr', 'FltSendMessage', 'FltCloseCommunicationPort', 'FltCreateCommunicationPort', 'FltReleaseContext', 'FltGetStreamHandleContext', 'FltSetStreamHandleContext', 'FltAllocateContext', 'FltCancelFileOpen', 'FltQueryInformationFile', 'FltReadFile', 'FltParseFileNameInformation', 'FltReleaseFileNameInformation', 'FltGetFileNameInformation', 'FltFreePoolAlignedWithTag', 'FltAllocatePoolAlignedWithTag', 'FltStartFiltering', 'FltUnregisterFilter', 'FltRegisterFilter', 'FltBuildDefaultSecurityDescriptor'], ['RtlCaptureContext', 'GetExitCodeThread', 'FindWindowA', 'OpenProcessToken', 'CoCreateGuid', 'VariantClear', 'PathMatchSpecExW', 'WSAGetLastError', 'CertOpenStore', 'InitSecurityInterfaceW', 'CryptUIDlgViewContext', 'GetAdaptersInfo', 'URLDownloadToFileA', 'DnsNameCompare_W', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetStartupInfoA', 'FormatMessageA', 'GetLastError', 'Sleep', 'GetExitCodeProcess', 'WaitForSingleObject', 'CloseHandle', 'CreateProcessA', 'lstrcatA', 'lstrcpyA', 'RemoveDirectoryA', 'lstrlenA', 'DeleteFileA', 'OpenFile', 'ReadFile', 'SetFilePointer', 'CreateFileA', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetTempFileNameA', 'GetTempPathA', 'GetWindowsDirectoryA', 'WriteFile', 'SetHandleCount', 'GetStdHandle', 'GetStringTypeA', 'LCMapStringW', 'GetStringTypeW', 'LCMapStringA', 'MultiByteToWideChar', 'LoadLibraryA', 'GetModuleHandleA', 'LocalFree', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetProcAddress', 'GetCPInfo', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'MessageBoxA', 'WaitForInputIdle', 'GetDesktopWindow', 'LZOpenFileA', 'LZCopy', 'LZClose'], ['WriteConsoleOutputCharacterW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'LoadLibraryW', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'GetModuleFileNameW', 'lstrlenW', 'CreateDirectoryA', 'GetConsoleAliasesW', 'GetLastError', 'GetProcAddress', 'FindFirstChangeNotificationW', 'MoveFileW', 'WriteProfileSectionA', 'SetStdHandle', 'EnterCriticalSection', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'UnregisterWaitEx', 'LocalFree', 'InterlockedPushEntrySList', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoW'], ['GetLastError', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'VirtualAllocEx', 'WriteProcessMemory', 'VirtualFreeEx', 'Module32First', 'Module32Next', 'VirtualQueryEx', 'ReadProcessMemory', 'GetSystemInfo', 'VirtualProtectEx', 'OpenProcess', 'Beep', 'UnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'CloseHandle', 'VirtualProtect', 'GetCurrentProcess', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'SetWindowsHookExA', 'CallNextHookEx', 'ShellExecuteA', 'PlaySoundA', '__CxxRegisterExceptionObject', '__CxxExceptionFilter', 'memmove', '_except_handler4_common', '__CxxDetectRethrow', '__std_exception_destroy', '__telemetry_main_return_trigger', '__CxxUnregisterExceptionObject', '__FrameUnwindFilter', '__telemetry_main_invoke_trigger', '__std_exception_copy', '__CxxFrameHandler3', 'memset', '_CxxThrowException', '__CxxQueryExceptionSize', '_stricmp', '_c_exit', '_seh_filter_exe', 'terminate', '_controlfp_s', '_crt_atexit', '_register_onexit_function', '_initialize_onexit_table', '_invalid_parameter_noinfo_noreturn', '_register_thread_local_exe_atexit_callback', 'abort', '_cexit', '_set_app_type', '_exit', 'exit', '_initterm_e', '_initterm', '_get_narrow_winmain_command_line', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', 'free', 'malloc', '_set_new_mode', '_callnewh', '?_Xlength_error@std@@YAXPBD@Z', '?_Xout_of_range@std@@YAXPBD@Z', '?_Xbad_alloc@std@@YAXXZ', '_CorExeMain'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', 'ShowWindow', 'memmove', '_register_thread_local_exe_atexit_callback', '_set_fmode', '__setusermatherr', '_configthreadlocale', '_callnewh', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcessHeap', 'GetModuleFileNameW', 'GetLastError', 'WaitForSingleObject', 'DeleteFileA', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'LocalFree', 'GetVersionExA', 'LocalAlloc', 'LoadLibraryA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetVersionExW', 'Sleep', 'GlobalFindAtomA', 'ExpandEnvironmentStringsA', 'GetCurrentProcess', 'GlobalAddAtomA', 'SetErrorMode', 'lstrcpynA', 'CloseHandle', 'ExitProcess', 'GetTickCount', 'SwitchToThread', 'Module32Next', 'VirtualProtectEx', 'Module32First', 'GetExitCodeProcess', 'CreateRemoteThread', 'GetTempFileNameA', 'SetFileAttributesA', 'GetThreadContext', 'CreateFileA', 'SetThreadContext', 'Process32First', 'VirtualFree', 'OpenProcess', 'TerminateThread', 'CreateProcessA', 'TerminateProcess', 'FlushInstructionCache', 'GetShortPathNameA', 'SetCurrentDirectoryA', 'FindFirstFileA', 'GetHandleInformation', 'VirtualAlloc', 'VirtualAllocEx', 'FindClose', 'Process32Next', 'FindNextFileA', 'VirtualProtect', 'GetCurrentDirectoryA', 'CreateToolhelp32Snapshot', 'WriteProcessMemory', 'ResumeThread', 'CreateThread', 'SetPriorityClass', 'GetCurrentThread', 'WriteFile', 'GetBinaryTypeA', 'ReadFile', 'SetThreadPriority', 'GetFileSizeEx', 'CopyFileA', 'wsprintfW', 'DestroyWindow', 'keybd_event', 'GetMessageA', 'SetTimer', 'RegisterClassExA', 'PostQuitMessage', 'KillTimer', 'TranslateMessage', 'CreateWindowExA', 'DefWindowProcA', 'FlashWindow', 'DispatchMessageA', 'UpdateWindow', 'WaitForInputIdle', 'ShowWindow', 'SHGetFolderPathW', 'ShellExecuteExW', 'SHGetFolderPathA', 'ShellExecuteExA', 'CoInitializeEx', 'CoUninitialize', 'GetModuleBaseNameW', 'PathAppendW', 'PathFindFileNameA', 'StrStrIA', 'PathFileExistsA', 'PathAddBackslashA', 'SHGetValueA', 'StrStrNIW', 'PathAddExtensionA', 'PathIsDirectoryA', 'PathCombineA', 'ZwSetInformationThread', 'RtlImageNtHeader', '_stricmp', 'ZwClose', 'ZwUnmapViewOfSection', 'memset', '_alloca_probe', 'strstr', '_snprintf', 'ZwOpenProcess', 'RtlUnwind', 'CryptGetHashParam', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'OpenProcessToken', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'RegSetValueExA', 'RegCreateKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CryptReleaseContext', 'VerQueryValueA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'WinVerifyTrust'], ['GetExitCodeThread', 'LocalFlags', 'WritePrivateProfileStringW', 'GetModuleHandleW'], ['CloseHandle', 'WriteFile', 'CreateFileA', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'CreateProcessA', 'free', '_initterm', 'malloc', '_adjust_fdiv', 'sprintf'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'CopyFileA', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'VirtualAlloc', 'GetBinaryTypeA', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['GetModuleFileNameExW', 'GetModuleBaseNameA', 'GetModuleInformation', 'EnumProcessModules', 'UuidCreate', 'UuidToStringW', 'UuidFromStringW', 'RpcStringFreeW', 'GetExtendedTcpTable', 'ntohs', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'OpenProcess', 'Thread32First', 'VirtualFreeEx', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'ReadProcessMemory', 'FormatMessageW', 'GetVersionExW', 'LeaveCriticalSection', 'GetFileAttributesW', 'Thread32Next', 'ReadFile', 'GetModuleFileNameW', 'CreateFileW', 'FlushFileBuffers', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'EnterCriticalSection', 'VirtualAllocEx', 'FindClose', 'OpenThread', 'SetConsoleCtrlHandler', 'GetExitCodeThread', 'CreateEventW', 'GetSystemInfo', 'FindNextFileW', 'CreateToolhelp32Snapshot', 'GetCurrentThreadId', 'CloseHandle', 'DeleteFileW', 'GetCurrentProcessId', 'DebugBreak', 'WriteProcessMemory', 'SuspendThread', 'ResumeThread', 'CreateThread', 'WriteFile', 'GetEnvironmentVariableW', 'CompareStringW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'lstrlenW', 'ExpandEnvironmentStringsW', 'SetLastError', 'GetPrivateProfileStringW', 'VirtualFree', 'GetModuleHandleW', 'SleepEx', 'SetEvent', 'GetComputerNameW', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'InterlockedDecrement', 'InterlockedIncrement', 'LoadLibraryExW', 'FreeLibrary', 'VirtualQuery', 'SetFilePointer', 'SetUnhandledExceptionFilter', 'FindFirstFileW', 'GetFileSize', 'ExitProcess', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetEnvironmentVariableW', 'CreateRemoteThread', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapSetInformation', 'InterlockedCompareExchange', 'DecodePointer', 'EncodePointer', 'RaiseException', 'InterlockedExchange', 'LocalAlloc', 'LoadLibraryExA', 'IsDebuggerPresent', 'GlobalFlags', 'LoadLibraryA', 'GetModuleHandleA', 'FileTimeToSystemTime', 'RegOpenKeyW', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'QueryServiceStatusEx', 'SetServiceStatus', 'StartServiceW', 'LookupPrivilegeValueW', 'RegQueryValueExW', 'RegisterServiceCtrlHandlerExW', 'OpenServiceW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'OpenProcessToken', 'CloseServiceHandle', 'GetTokenInformation', 'GetSidIdentifierAuthority', 'IsValidSid', 'DeleteObject', 'CreateCompatibleDC', 'OffsetViewportOrgEx', 'DeleteDC', 'RectVisible', 'ScaleWindowExtEx', 'CreateDIBSection', 'GetClipBox', 'CreateBrushIndirect', 'ScaleViewportExtEx', 'SetDIBColorTable', 'GetPixel', 'CreateDIBPatternBrushPt', 'GetSystemMetrics', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'GetDC', 'VarBstrFromDec', 'StringFromGUID2'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FileTimeToSystemTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['GetFullPathNameA', 'LocalUnlock', 'GetPrivateProfileSectionNamesW', 'EnumResourceNamesW', 'SetCriticalSectionSpinCount', 'GlobalMemoryStatus', 'FindResourceA', 'FindFirstFileW', 'SetThreadContext', 'FindFirstChangeNotificationW', 'EnumCalendarInfoA', 'WriteConsoleInputW', 'SetFilePointer', 'IsBadStringPtrW', 'EnumDateFormatsExW', 'CopyFileExW', 'TlsGetValue', 'GetStringTypeA', 'UnmapViewOfFile', 'MoveFileExA', 'CommConfigDialogA', 'GetConsoleAliasExesLengthA', 'BuildCommDCBAndTimeoutsA', 'DeleteVolumeMountPointA', 'SetUnhandledExceptionFilter', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentProcess', 'SetDefaultCommConfigW', 'SetFirmwareEnvironmentVariableA', 'QueryDosDeviceA', 'GlobalLock', 'SetVolumeMountPointW', 'GetComputerNameW', 'SetEvent', 'SetThreadExecutionState', 'OpenSemaphoreA', 'GetFileAttributesExA', 'FreeEnvironmentStringsA', '_lclose', 'GetModuleHandleW', 'GetCommConfig', 'GetProcessHeap', 'IsBadReadPtr', 'GetSystemTimeAsFileTime', 'GetNumberFormatA', 'GetPrivateProfileStringW', 'GetConsoleTitleA', 'CreateRemoteThread', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'WaitNamedPipeW', 'EnumTimeFormatsA', 'SetCommState', 'GetSystemWow64DirectoryA', 'WriteFileGather', 'TzSpecificLocalTimeToSystemTime', 'TlsSetValue', 'AllocateUserPhysicalPages', 'FindResourceExA', 'LoadLibraryW', 'GetConsoleMode', 'FatalAppExitW', 'GetThreadSelectorEntry', 'CopyFileW', 'GetPrivateProfileStructW', 'GetCalendarInfoW', 'GetCalendarInfoA', 'SetSystemTimeAdjustment', 'GetProcessHandleCount', 'GetSystemWindowsDirectoryA', 'GetVersionExW', 'SetConsoleCP', 'LeaveCriticalSection', 'GetFileAttributesA', 'lstrcpynW', 'SetDllDirectoryA', 'SetConsoleMode', 'HeapValidate', 'GetVolumePathNamesForVolumeNameW', 'CreateSemaphoreA', 'SetConsoleCursorPosition', 'WritePrivateProfileSectionW', 'TerminateProcess', 'IsDBCSLeadByte', 'GetModuleFileNameW', 'CreateActCtxA', 'GetComputerNameA', 'lstrcmpW', 'lstrlenW', 'WritePrivateProfileStringW', 'VirtualUnlock', 'CreateJobObjectA', 'GetNamedPipeHandleStateW', 'EnumSystemLocalesA', 'GetPrivateProfileIntW', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstFileA', 'OpenMutexW', 'GetLastError', 'ChangeTimerQueueTimer', 'GetLongPathNameW', 'SetLastError', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'HeapSize', 'PeekConsoleInputW', 'BackupWrite', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'CreateJobSet', 'SetStdHandle', 'EnterCriticalSection', 'VerLanguageNameW', 'SearchPathA', 'BuildCommDCBW', 'DefineDosDeviceA', 'GetNumaHighestNodeNumber', 'GetPrivateProfileStringA', 'GetAtomNameA', 'LoadLibraryA', 'Process32FirstW', 'OpenMutexA', 'CreateSemaphoreW', 'ProcessIdToSessionId', 'LocalAlloc', 'CreateHardLinkW', 'IsSystemResumeAutomatic', 'GetExitCodeThread', 'SetCurrentDirectoryW', 'SetFileApisToANSI', 'PostQueuedCompletionStatus', 'GetCurrentConsoleFont', 'HeapWalk', 'GetPrivateProfileStructA', 'SetNamedPipeHandleState', 'SetEnvironmentVariableA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'WriteProfileStringA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'WaitCommEvent', 'SetConsoleTitleW', 'FindFirstChangeNotificationA', 'GetProcessShutdownParameters', 'QueueUserWorkItem', 'ContinueDebugEvent', 'lstrcatW', 'HeapSetInformation', 'FreeEnvironmentStringsW', 'FindNextFileW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'CompareStringA', 'WriteConsoleOutputAttribute', 'OutputDebugStringA', 'DuplicateHandle', 'FindFirstVolumeA', 'TerminateJobObject', 'CloseHandle', 'DeleteTimerQueueTimer', 'GlobalAddAtomW', 'SetFileValidData', 'GetTempPathA', 'FindActCtxSectionStringW', 'ResetWriteWatch', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'TlsFree', 'CopyFileExA', 'DeleteFileA', 'lstrcpyA', 'GetBinaryTypeW', 'ExitProcess', 'MoveFileA', 'GetCommandLineW', 'GetStartupInfoW', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'InterlockedIncrement', 'GetEnvironmentStringsW', 'TlsAlloc', 'HeapCreate', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'WriteConsoleW', 'OutputDebugStringW', 'RtlUnwind', 'MultiByteToWideChar', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'HeapAlloc', 'HeapReAlloc', 'HeapQueryInformation', 'HeapFree', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'LCMapStringW', 'ReadFile', 'CreateFileW', 'RaiseException', 'GetFileSecurityA'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxW', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetDateFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'BuildCommDCBAndTimeoutsW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'GetUserNameA', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'realloc', 'strlen', 'time', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'ioctlsocket', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'GetCurrentProcessId', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetTimeFormatW', 'GetDateFormatW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'VariantClear', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['SetMailslotInfo', 'GetLogicalDriveStringsW', 'WritePrivateProfileSectionA', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetVolumePathNameW', 'GetPrivateProfileIntA', 'GetSystemPowerStatus', 'GetCalendarInfoA', 'GetProcessHandleCount', 'GetConsoleAliasExesLengthW', 'LeaveCriticalSection', 'GetFileAttributesA', 'GetFileAttributesW', 'GetModuleFileNameW', 'GetShortPathNameA', 'DeleteFiber', 'SetLastError', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'SetComputerNameA', 'InterlockedIncrement', 'GetDiskFreeSpaceW', 'OpenWaitableTimerA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessId', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'GetModuleHandleA', 'CreateMutexA', 'FindNextFileW', 'EnumDateFormatsW', 'CompareStringA', 'GetShortPathNameW', 'SetFileShortNameA', 'FindAtomW', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'EnumSystemLocalesW', 'AreFileApisANSI', 'GetDriveTypeW', 'SearchPathA', 'GetStringTypeA', 'GetLastError', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'EnterCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsW', 'SelectObject'], ['GetAce', 'PropertySheetW', 'CertCloseStore', 'StackWalk64', 'BitBlt', 'GdipFree', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'GradientFill', 'CoInitialize', 'SysStringLen', 'GetProcessImageFileNameW', 'DecryptMessage', 'ShellExecuteW', 'PathCanonicalizeW', 'GetDC', 'VerQueryValueW', 'shutdown'], ['FindResourceW', 'GetWindowsDirectoryA', 'OpenProcess', 'FindResourceA', 'InterlockedCompareExchange', 'GetProcessHeap', 'GetSystemDefaultUILanguage', 'GetTempPathA', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetTimeFormatW', 'TerminateProcess', 'SetThreadPriority', 'lstrlenW', 'PeekNamedPipe', 'VirtualProtect', 'lstrcatA', 'EnumSystemLocalesA', 'VerSetConditionMask', 'LCMapStringA', 'SetCurrentDirectoryW', 'SetFilePointerEx', 'lstrcpyA', 'SignalObjectAndWait', 'SetFileAttributesA', 'ExitThread', 'SystemTimeToTzSpecificLocalTime', 'GetPrivateProfileSectionW', 'GetSystemDefaultLCID', 'ConnectNamedPipe', 'GetDiskFreeSpaceW', 'SetErrorMode', 'CloseHandle', 'GetModuleFileNameA', 'DeleteFileW', 'HeapValidate', 'RemoveDirectoryA', 'OpenFileMappingA', 'IsDBCSLeadByteEx', 'SetLastError', 'GetSystemDirectoryW', 'MoveFileW', 'GlobalAlloc', 'FindClose', 'CreateProcessA', 'SetThreadExecutionState', 'SetNamedPipeHandleState', 'TlsSetValue', 'GetSystemTime', 'GetTempPathW', 'GetShortPathNameA', 'CreateEventA'], ['GetServiceDisplayNameW', 'LoadLibraryA', 'HeapUnlock'], ['InterlockedIncrement', 'GetCPInfo', 'GetOEMCP', 'GetCurrentDirectoryA', 'SetErrorMode', 'HeapFree', 'HeapAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'SetStdHandle', 'GetFileType', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'GetFileTime', 'GetACP', 'GetTimeZoneInformation', 'Sleep', 'SetHandleCount', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetConsoleCP', 'GetConsoleMode', 'SetConsoleCtrlHandler', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetLocaleInfoW', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetAtomNameA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'CloseHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MoveFileA', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'LockResource', 'SizeofResource', 'LoadResource', 'lstrcpynA', 'FindResourceA', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'SetLastError', 'DeleteFileA', 'GetVersion', 'CompareStringA', 'lstrcmpiW', 'lstrcmpiA', 'GetLastError', 'InterlockedExchange', 'GetStringTypeExA', 'lstrlenW', 'MultiByteToWideChar', 'CompareStringW', 'GetEnvironmentVariableA', 'GetStringTypeExW', 'WideCharToMultiByte', 'lstrlenA', 'GetEnvironmentVariableW', 'GetStdHandle', 'ExitProcess', 'UnpackDDElParam', 'InflateRect', 'LoadCursorA', 'GetDialogBaseUnits', 'UnregisterClassA', 'DeleteMenu', 'DestroyIcon', 'IsRectEmpty', 'GetSystemMenu', 'SetParent', 'UnionRect', 'SetRect', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'GetDCEx', 'LockWindowUpdate', 'SetCapture', 'ValidateRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'ReuseDDElParam', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'RemoveMenu', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'EnableWindow', 'CharUpperW', 'CharLowerA', 'CharLowerW', 'SendMessageA', 'CharUpperA', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetScrollPos', 'SetScrollPos', 'GetWindow', 'GetWindowLongA', 'DestroyMenu', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'GetMessageA', 'GetMessageTime', 'TranslateMessage', 'CopyRect', 'UpdateWindow', 'GetSysColorBrush', 'GetSysColor', 'InvalidateRect', 'DrawStateA', 'DrawFocusRect', 'GetClientRect', 'GetParent', 'LoadBitmapA', 'GetFocus', 'FillRect', 'LoadIconA', 'SetMenuItemInfoA', 'AppendMenuA', 'GetMenuItemInfoA', 'GetCursorPos', 'LoadMenuA', 'SetFocus', 'MapVirtualKeyA', 'GetKeyNameTextA', 'ReleaseDC', 'GetDC', 'IsWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetSubMenu', 'ScrollWindow', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetStockObject', 'SelectPalette', 'SetViewportOrgEx', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'GetTextMetricsA', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetBkColor', 'SelectObject', 'Escape', 'SelectClipPath', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'PlayMetaFileRecord', 'CreateRectRgnIndirect', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'PatBlt', 'CreateBitmap', 'GetTextExtentPoint32A', 'GetBitmapDimensionEx', 'GetViewportExtEx', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegQueryValueA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegSetValueA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegCreateKeyA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ExtractIconA', 'Shell_NotifyIconA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'CoDisconnectObject', 'ReadFmtUserTypeStg', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetLastError', 'VirtualAlloc', 'lstrcpyW', 'lstrcatW', 'CreateFileW', 'WriteFile', 'CloseHandle', 'ExpandEnvironmentStringsW', 'CreateMutexW', 'CreateThread', 'WaitForSingleObject', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapSize', 'LCMapStringW', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'WideCharToMultiByte', 'HeapAlloc', 'EncodePointer', 'DecodePointer', 'RaiseException', 'HeapFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapReAlloc', 'WriteConsoleW', 'WinHttpReadData', 'WinHttpQueryHeaders', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpSetOption', 'ShellExecuteW'], ['GetModuleHandleW', 'LoadLibraryA', 'GetProcAddress', 'GetStartupInfoA', 'GetModuleHandleA', 'GetProcessWindowStation', 'GetQueueStatus', 'LoadCursorFromFileW', 'PaintDesktop', 'CharUpperA', 'IsWindow', 'GetSysColorBrush', 'IsClipboardFormatAvailable', 'AnyPopup', 'CloseWindowStation', 'GetDesktopWindow', 'GetClipboardOwner', 'GetThreadDesktop', 'GetCaretBlinkTime', 'DestroyWindow', 'GetKeyState', 'IsIconic', 'GetTopWindow', 'GetSysColor', 'GetListBoxInfo', 'CharNextW', 'IsWindowVisible', 'CharToOemBuffA', 'CharNextExA', 'DeleteObject', 'UpdateColors', 'GetLayout', 'CreateMetaFileW', 'DeleteEnhMetaFile', 'GetTextAlign', 'GetDCPenColor', 'CloseMetaFile', 'CreateMetaFileA', 'FillPath', 'RealizePalette', 'EndDoc', 'SwapBuffers', 'GetFontLanguageInfo', 'GetSystemPaletteUse', 'RegOpenKeyA', 'RegQueryValueExA', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['GetStdHandle', 'GetFileType', 'SetStdHandle', 'QueryPerformanceFrequency', 'VirtualQuery', 'GetSystemInfo', 'HeapQueryInformation', 'GetModuleHandleExW', 'GetTimeZoneInformation', 'ExitThread', 'CreateThread', 'GetCommandLineW', 'GetCommandLineA', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'RtlUnwind', 'OutputDebugStringW', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'IsValidLocale', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetStringTypeW', 'SetConsoleCtrlHandler', 'GetStartupInfoW', 'IsDebuggerPresent', 'EnumSystemLocalesW', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'WaitForSingleObjectEx', 'ResetEvent', 'LocalUnlock', 'LocalLock', 'GetUserDefaultLCID', 'ReplaceFileW', 'GetTempFileNameW', 'GetDiskFreeSpaceW', 'Sleep', 'SearchPathW', 'GetProfileIntW', 'GetTickCount', 'GetTempPathW', 'SystemTimeToTzSpecificLocalTime', 'SetFileTime', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesExW', 'FileTimeToLocalFileTime', 'SetErrorMode', 'FindResourceExW', 'GetFileAttributesW', 'VerifyVersionInfoW', 'VerSetConditionMask', 'GetStringTypeExW', 'MoveFileW', 'lstrcmpiW', 'GetCurrentProcess', 'DuplicateHandle', 'WriteFile', 'UnlockFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'LockFile', 'GetVolumeInformationW', 'GetShortPathNameW', 'GetFullPathNameW', 'GetFileSize', 'FlushFileBuffers', 'FindFirstFileW', 'FindClose', 'CreateFileW', 'DeleteFileW', 'GetCurrentDirectoryW', 'VirtualProtect', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'GetThreadLocale', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetAtomNameW', 'GlobalGetAtomNameW', 'lstrcpyW', 'GlobalFlags', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'ResumeThread', 'SuspendThread', 'SetThreadPriority', 'CreateEventW', 'WaitForSingleObject', 'SetEvent', 'CloseHandle', 'CompareStringA', 'lstrcmpA', 'GetVersionExW', 'GetCurrentThread', 'GetCurrentProcessId', 'CompareStringW', 'GlobalFindAtomW', 'GlobalAddAtomW', 'lstrcmpW', 'GlobalDeleteAtom', 'LoadLibraryA', 'LoadLibraryExW', 'GetSystemDirectoryW', 'EncodePointer', 'MultiByteToWideChar', 'GetModuleHandleW', 'GetModuleHandleA', 'OutputDebugStringA', 'SetLastError', 'CopyFileW', 'FormatMessageW', 'LocalFree', 'GlobalLock', 'GlobalUnlock', 'GlobalSize', 'GetProcAddress', 'WinExec', 'FreeLibrary', 'LoadLibraryW', 'GetWindowsDirectoryW', 'ExitProcess', 'VirtualAlloc', 'lstrcpynW', 'WideCharToMultiByte', 'GlobalFree', 'GlobalAlloc', 'GetCurrentThreadId', 'GetModuleFileNameW', 'GetProcessHeap', 'DeleteCriticalSection', 'HeapDestroy', 'DecodePointer', 'HeapAlloc', 'RaiseException', 'HeapReAlloc', 'GetLastError', 'SizeofResource', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'HeapFree', 'MulDiv', 'FindResourceW', 'LoadResource', 'LockResource', 'FreeLibraryAndExitThread', 'WriteConsoleW', 'GetMenuItemInfoW', 'DestroyMenu', 'ShowOwnedPopups', 'TranslateMessage', 'GetMessageW', 'PostQuitMessage', 'GetWindowThreadProcessId', 'TabbedTextOutW', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'IntersectRect', 'WindowFromPoint', 'GetCursorPos', 'LoadMenuW', 'IsDialogMessageW', 'SetWindowTextW', 'ScrollWindowEx', 'SendDlgItemMessageW', 'IsDlgButtonChecked', 'CheckRadioButton', 'CheckDlgButton', 'GetDlgItemTextW', 'SetDlgItemTextW', 'GetDlgItemInt', 'SetDlgItemInt', 'MoveWindow', 'ShowWindow', 'SetMenuItemInfoW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'GetMonitorInfoW', 'MonitorFromWindow', 'WinHelpW', 'GetScrollInfo', 'SetScrollInfo', 'GetWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetClassNameW', 'GetClassLongW', 'EqualRect', 'MapWindowPoints', 'MessageBoxW', 'AdjustWindowRectEx', 'GetWindowTextLengthW', 'GetWindowTextW', 'RemovePropW', 'GetPropW', 'SetPropW', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'ValidateRect', 'EndPaint', 'BeginPaint', 'SetForegroundWindow', 'GetForegroundWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetMenu', 'GetSysColorBrush', 'GetCapture', 'GetKeyState', 'SetFocus', 'GetDlgCtrlID', 'IsWindowVisible', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'IsChild', 'IsMenu', 'GetClassInfoExW', 'GetClassInfoW', 'CallWindowProcW', 'CloseClipboard', 'PeekMessageW', 'DispatchMessageW', 'SetRectEmpty', 'SendDlgItemMessageA', 'GetDesktopWindow', 'GetWindowLongW', 'SetActiveWindow', 'IsWindowEnabled', 'GetActiveWindow', 'GetNextDlgTabItem', 'GetDlgItem', 'EndDialog', 'CreateDialogIndirectParamW', 'RemoveMenu', 'InsertMenuW', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetMenuState', 'GetMenuStringW', 'CopyIcon', 'SetCursor', 'ScreenToClient', 'MessageBeep', 'DestroyCursor', 'SetClipboardData', 'EmptyClipboard', 'SetClassLongW', 'SetWindowRgn', 'EnableWindow', 'RedrawWindow', 'SetTimer', 'GetClientRect', 'LoadBitmapW', 'RegisterWindowMessageW', 'SetCursorPos', 'IsIconic', 'AppendMenuW', 'GetSystemMenu', 'LoadIconW', 'DrawIcon', 'ReleaseCapture', 'SetRect', 'SystemParametersInfoW', 'GetMessagePos', 'MapVirtualKeyW', 'SetCapture', 'GetSystemMetrics', 'PtInRect', 'GetDialogBaseUnits', 'RealChildWindowFromPoint', 'TrackMouseEvent', 'CopyImage', 'GetAsyncKeyState', 'MapDialogRect', 'WaitMessage', 'DeleteMenu', 'CharUpperW', 'CreatePopupMenu', 'GetMenuDefaultItem', 'GetNextDlgGroupItem', 'IsRectEmpty', 'DrawIconEx', 'ClientToScreen', 'DrawFocusRect', 'EnableScrollBar', 'HideCaret', 'InvertRect', 'NotifyWinEvent', 'GetKeyNameTextW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'GetMenu', 'SendMessageW', 'KillTimer', 'GetParent', 'IsWindow', 'GetFocus', 'UnregisterClassW', 'UpdateWindow', 'SetWindowLongW', 'SetWindowsHookExW', 'LoadCursorW', 'UnhookWindowsHookEx', 'RegisterClassW', 'LoadStringW', 'CallNextHookEx', 'CreateWindowExW', 'SetWindowPos', 'DestroyWindow', 'GetWindowRect', 'PostMessageW', 'DefWindowProcW', 'GetDC', 'GetIconInfo', 'CreateIconIndirect', 'ReleaseDC', 'DestroyIcon', 'LoadImageW', 'CopyRect', 'OffsetRect', 'InvalidateRect', 'GetWindowDC', 'DrawStateW', 'GetSysColor', 'InflateRect', 'FillRect', 'FrameRect', 'DrawEdge', 'SetParent', 'DrawFrameControl', 'IsZoomed', 'BringWindowToTop', 'OpenClipboard', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'GetTabbedTextExtentW', 'GetDCEx', 'GetWindowRgn', 'WindowFromDC', 'CreateMenu', 'InSendMessage', 'MonitorFromRect', 'SendNotifyMessageW', 'SubtractRect', 'TranslateMDISysAccel', 'DefMDIChildProcW', 'DefFrameProcW', 'DrawMenuBar', 'EnumChildWindows', 'GetUpdateRect', 'IsClipboardFormatAvailable', 'CharUpperBuffW', 'RegisterClipboardFormatW', 'ModifyMenuW', 'GetDoubleClickTime', 'SetMenuDefaultItem', 'LockWindowUpdate', 'CopyAcceleratorTableW', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'GetKeyboardState', 'ToUnicodeEx', 'MapVirtualKeyExW', 'IsCharLowerW', 'GetKeyboardLayout', 'PostThreadMessageW', 'GetComboBoxInfo', 'MonitorFromPoint', 'UpdateLayeredWindow', 'UnionRect', 'ReuseDDElParam', 'UnpackDDElParam', 'GetMenuBarInfo', 'GetMessageTime', 'InsertMenuItemW', 'SetBkColor', 'SetTextColor', 'CreateBitmap', 'CombineRgn', 'CreatePatternBrush', 'CreateRectRgn', 'CreateRectRgnIndirect', 'GetMapMode', 'PatBlt', 'SetRectRgn', 'ExtTextOutW', 'DPtoLP', 'CreateDIBPatternBrushPt', 'Escape', 'ExcludeClipRect', 'GetClipBox', 'GetClipRgn', 'GetCurrentPositionEx', 'GetObjectType', 'GetPixel', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'OffsetClipRgn', 'PlayMetaFile', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBkMode', 'SetMapperFlags', 'SetGraphicsMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetTextCharacterExtra', 'SetTextAlign', 'SetTextJustification', 'PlayMetaFileRecord', 'EnumMetaFile', 'SetWorldTransform', 'ModifyWorldTransform', 'SetColorAdjustment', 'StartDocW', 'ArcTo', 'PolyDraw', 'SelectClipPath', 'SetArcDirection', 'ExtCreatePen', 'MoveToEx', 'TextOutW', 'PolyBezierTo', 'PolylineTo', 'CopyMetaFileW', 'SetViewportOrgEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'GetTextMetricsW', 'CreatePalette', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'GetSystemPaletteEntries', 'RealizePalette', 'GetBkColor', 'CreateDIBitmap', 'EnumFontFamiliesW', 'GetTextCharsetInfo', 'SetPixel', 'StretchBlt', 'CreateDIBSection', 'SetDIBColorTable', 'CreateEllipticRgn', 'Ellipse', 'GetTextColor', 'CreatePolygonRgn', 'Polygon', 'Polyline', 'CreateRoundRectRgn', 'LPtoDP', 'EnumFontFamiliesExW', 'GetRgnBox', 'OffsetRgn', 'GetCurrentObject', 'CreateFontW', 'GetCharWidthW', 'StretchDIBits', 'RoundRect', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'PtInRegion', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetWindowOrgEx', 'GetViewportOrgEx', 'CloseMetaFile', 'CreateMetaFileW', 'DeleteMetaFile', 'EndDoc', 'StartPage', 'EndPage', 'AbortDoc', 'SetAbortProc', 'GetROP2', 'GetBkMode', 'GetNearestColor', 'GetPolyFillMode', 'GetStretchBltMode', 'GetTextAlign', 'GetTextFaceW', 'Rectangle', 'CreatePen', 'GetTextExtentPoint32W', 'CreateFontIndirectW', 'GetStockObject', 'CreateHatchBrush', 'CreateSolidBrush', 'GetObjectW', 'CreateCompatibleDC', 'SetDIBits', 'CreateCompatibleBitmap', 'GetDIBits', 'DeleteDC', 'GetDeviceCaps', 'CreateDCW', 'SetViewportExtEx', 'BitBlt', 'DeleteObject', 'TransparentBlt', 'AlphaBlend', 'GradientFill', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'GetJobW', 'RegDeleteValueW', 'RegOpenKeyExW', 'SetFileSecurityW', 'GetFileSecurityW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegEnumKeyW', 'RegSetValueExW', 'RegQueryValueExW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueW', 'RegQueryValueW', 'RegCloseKey', 'SHAddToRecentDocs', 'ExtractIconW', 'SHGetFileInfoW', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'DragQueryFileW', 'DragFinish', 'ShellExecuteExW', 'SHAppBarMessage', 'SHBrowseForFolderW', 'SHGetMalloc', 'ShellExecuteW', '_TrackMouseEvent', 'PathRemoveExtensionW', 'PathFindExtensionW', 'PathIsUNCW', 'PathStripToRootW', 'StrFormatKBSizeW', 'PathRemoveFileSpecW', 'PathFindFileNameW', 'IsThemeBackgroundPartiallyTransparent', 'GetCurrentThemeName', 'GetThemePartSize', 'GetThemeSysColor', 'IsAppThemed', 'DrawThemeText', 'DrawThemeParentBackground', 'OpenThemeData', 'CloseThemeData', 'DrawThemeBackground', 'GetThemeColor', 'GetWindowTheme', 'RevokeDragDrop', 'RegisterDragDrop', 'CoLockObjectExternal', 'OleInitialize', 'OleUninitialize', 'OleSetMenuDescriptor', 'OleLockRunning', 'StgCreateDocfile', 'StgOpenStorage', 'StgOpenStorageOnILockBytes', 'StgIsStorageFile', 'CreateILockBytesOnHGlobal', 'CreateFileMoniker', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'OleRegGetMiscStatus', 'OleRegEnumVerbs', 'StgCreateDocfileOnILockBytes', 'WriteClassStm', 'GetHGlobalFromILockBytes', 'CreateGenericComposite', 'CreateItemMoniker', 'OleCreate', 'OleCreateFromData', 'OleCreateLinkFromData', 'OleCreateStaticFromData', 'OleCreateLinkToFile', 'OleCreateFromFile', 'OleLoad', 'OleSave', 'PropVariantCopy', 'OleGetClipboard', 'DoDragDrop', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'OleSetClipboard', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'CLSIDFromString', 'CoDisconnectObject', 'StringFromGUID2', 'CoInitialize', 'CoCreateInstance', 'CoCreateGuid', 'CoUninitialize', 'SetConvertStg', 'OleRegGetUserType', 'ReleaseStgMedium', 'OleDuplicateData', 'ReadFmtUserTypeStg', 'WriteFmtUserTypeStg', 'CreateBindCtx', 'CoTreatAsClass', 'WriteClassStg', 'ReadClassStg', 'CoTaskMemFree', 'CoTaskMemAlloc', 'StringFromCLSID', 'OleSaveToStream', 'OleSetContainedObject', 'OleGetIconOfClass', 'OleRun', 'CreateDataAdviseHolder', 'CreateOleAdviseHolder', 'GetRunningObjectTable', 'OleIsRunning', 'CoGetMalloc', 'OleQueryLinkFromData', 'OleQueryCreateFromData', 'CoGetClassObject', 'CLSIDFromProgID', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoFreeUnusedLibraries', 'RegisterTypeLib', 'SysReAllocStringLen', 'SysStringLen', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCreate', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayRedim', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetUBound', 'LoadRegTypeLib', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayGetElement', 'SafeArrayPutElement', 'SafeArrayCopy', 'SafeArrayPtrOfIndex', 'VariantCopy', 'VarDateFromStr', 'VarCyFromStr', 'VarBstrFromCy', 'VarBstrFromDate', 'SysAllocStringLen', 'VarBstrFromDec', 'VarDecFromStr', 'LoadTypeLib', 'SysAllocString', 'VariantChangeType', 'VariantInit', 'VariantClear', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayGetLBound', 'SysFreeString', 'OleUIBusyW', 'PlaySoundW', 'GdipCreateFromHDC', 'GdipSetInterpolationMode', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromFileICM', 'GdipCreateBitmapFromStreamICM', 'GdipDrawImageRectI', 'GdipCreateBitmapFromStream', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdiplusShutdown', 'GdipCreateBitmapFromFile', 'GdipCreateBitmapFromHBITMAP', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject', 'ImmReleaseContext', 'ImmGetOpenStatus', 'ImmGetContext'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SetLastError', 'SetFilePointer', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'InterlockedExchange', 'FormatMessageA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'RegConnectRegistryA', 'ImageList_LoadImageA', 'CreateCompatibleDC', '_strdup', '__getmainargs', 'VariantClear', 'ExtractIconA', 'CharNextW', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcAddress', 'DeleteCriticalSection', 'GetCurrentProcessId', 'GetProcessHeap', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'CreateFileA', 'Process32FirstW', 'WriteConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'DecodePointer', 'HeapAlloc', 'RaiseException', 'CloseHandle', 'HeapReAlloc', 'LoadLibraryA', 'GetLastError', 'GetTempPathA', 'HeapSize', 'CreateFileW', 'InitializeCriticalSectionEx', 'VirtualAlloc', 'DeviceIoControl', 'VirtualFree', 'Sleep', 'HeapFree', 'GetEnvironmentStringsW', 'GetCommandLineW', 'FormatMessageA', 'WideCharToMultiByte', 'LocalFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'MultiByteToWideChar', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'IsDebuggerPresent', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetModuleHandleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwindEx', 'RtlPcToFileHeader', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'DeleteFileW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'GetFileSizeEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'ReadConsoleW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'RtlUnwind', 'CreateServiceA', 'CloseServiceHandle', 'OpenSCManagerA', 'DeleteService', 'ControlService', 'StartServiceA', 'OpenServiceA', 'NtQuerySystemInformation', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'CreateEventA', 'GetModuleFileNameW', 'LoadLibraryA', 'TerminateProcess', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Thread32First', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'WriteProcessMemory', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'GetCurrentThread', 'SetThreadAffinityMask', 'Sleep', 'FreeLibrary', 'GetTickCount', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GlobalFree', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleW', 'LoadResource', 'MultiByteToWideChar', 'FindResourceExW', 'FindResourceExA', 'WideCharToMultiByte', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'CreateFileW', 'LoadLibraryW', 'GetLastError', 'FlushFileBuffers', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'HeapFree', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'HeapAlloc', 'LCMapStringA', 'LCMapStringW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'WriteFile', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'InitializeCriticalSectionAndSpinCount', 'GetUserObjectInformationW', 'CharUpperBuffW', 'MessageBoxW', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'QueryPerformanceCounter', 'HeapCreate', 'WriteFile', 'ExitProcess', 'GetLastError', 'EnterCriticalSection', 'TlsGetValue', 'GetStdHandle', 'HeapFree', 'VirtualAlloc', 'GetOEMCP', 'FreeEnvironmentStringsA', 'VirtualProtect', 'GetModuleHandleA', 'LoadLibraryA', 'GetCurrentProcessId', 'lstrlenA', 'GetCommandLineA', 'GetTickCount', 'RtlUnwind', 'SetHandleCount', 'QueryPerformanceCounter', 'GetProcAddress', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'GetEnvironmentStringsW', 'GetStartupInfoA', 'LCMapStringW', 'LoadLibraryW', 'OutputDebugStringA', 'TlsFree', 'GetCPInfo', 'MultiByteToWideChar', 'InterlockedDecrement', 'GetCurrentThreadId', 'GetCurrentProcessId', 'TlsSetValue', 'InterlockedIncrement', 'GetSystemInfo', 'HeapAlloc', 'TerminateProcess', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'DeleteCriticalSection', 'VirtualQuery', 'GetLocaleInfoA', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetCommandLineA', 'VirtualProtect', 'GetFileType', 'HeapDestroy', 'HeapReAlloc', 'TlsAlloc', 'Sleep', 'GetVersion', 'FreeLibrary', 'VirtualFree', 'GetVersionExA', 'ExpandEnvironmentStringsA', 'SetLastError', 'GetTickCount', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'GetCurrentThreadId', 'GetStringTypeA', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetACP'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'WriteProfileSectionA', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'ReadConsoleOutputW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'SetVolumeMountPointA', 'EnumCalendarInfoA', 'SetProcessPriorityBoost', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'BuildCommDCBAndTimeoutsA', 'GetPrivateProfileStringW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetCharWidth32A'], ['GetACP', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['EnumCalendarInfoA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'SetUnhandledExceptionFilter', 'WaitNamedPipeA', 'GetNamedPipeHandleStateA', 'GetModuleHandleExW', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'WriteConsoleInputA', 'SetEvent', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'CreateRemoteThread', 'GetDateFormatA', 'WriteFile', 'FindActCtxSectionStringA', 'EnumResourceTypesA', 'AllocateUserPhysicalPages', 'GetEnvironmentStrings', 'GlobalAlloc', 'GetSystemDirectoryW', 'ReadFileScatter', 'GetVersionExW', 'GetFileAttributesA', 'FindNextVolumeW', 'GetConsoleAliasW', 'GetModuleFileNameW', 'lstrcmpA', 'MultiByteToWideChar', 'FindNextVolumeMountPointW', 'GetConsoleOutputCP', 'GetLastError', 'BackupRead', 'GetProcAddress', 'GetComputerNameExW', 'RemoveDirectoryA', 'GlobalGetAtomNameA', 'LoadLibraryA', 'OpenMutexA', 'DnsHostnameToComputerNameA', 'GetCommMask', 'RtlCaptureStackBackTrace', 'GetPrivateProfileStructA', 'GlobalFindAtomW', 'FindNextFileA', 'EraseTape', 'CreateMutexA', 'GetStringTypeW', 'RequestWakeupLatency', 'ScrollConsoleScreenBufferA', 'SetCalendarInfoA', 'GetDiskFreeSpaceExA', 'DeleteFileW', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CreateFileW', 'IsProcessorFeaturePresent', 'GetBinaryTypeW', 'GetVolumeNameForVolumeMountPointA', 'WriteConsoleW', 'HeapSize', 'DeleteFileA', 'HeapReAlloc', 'ExitProcess', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetCurrentThread', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapAlloc', 'FatalAppExitA', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryW', 'GetLocaleInfoW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'Sleep', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'LCMapStringW', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'CloseHandle', 'GetMenu', 'ReportEventA', 'WinHttpSetOption'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExA', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'GetOEMCP', 'EnterCriticalSection', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenA', 'LoadLibraryW', 'MoveFileW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'CopyFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'FindActCtxSectionStringW', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetStringTypeA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'FindAtomA', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ReadFile', 'ImpersonateSelf'], ['AddAtomW', 'AssignProcessToJobObject', 'CreateEventW', 'CreateFileW', 'CreateMutexW', 'DeleteAtom', 'DeleteCriticalSection', 'EnterCriticalSection', 'FindNextVolumeMountPointW', 'FreeConsole', 'FreeLibrary', 'GetACP', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetExitCodeProcess', 'GetLastError', 'GetLogicalDrives', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetStringTypeW', 'GetSystemInfo', 'GetVersion', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LockFile', 'ResumeThread', 'SetCalendarInfoW', 'SetConsoleMode', 'SetConsoleScreenBufferSize', 'SetEndOfFile', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__p__acmdln', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleW', 'lstrcpyW', 'lstrcmpW', 'WritePrivateProfileStringW', 'WinExec', 'WideCharToMultiByte', 'TerminateProcess', 'SearchPathW', 'OpenProcess', 'LoadLibraryW', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetLastError', 'GetFileAttributesW', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetACP', 'FreeLibrary', 'ExpandEnvironmentStringsW', 'ExitProcess', 'CloseHandle', 'Sleep', 'GetLongPathNameW', 'GetStartupInfoA', 'GetModuleHandleA', 'GetProfileIntA', 'LoadLibraryA', 'lstrcatA', 'GetTempPathA', 'GlobalUnlock', 'GlobalLock', 'GlobalFlags', 'GlobalFree', 'GlobalAlloc', 'GetVersion', 'GlobalSize', 'lstrcmpA', 'VirtualAllocEx', 'SetErrorMode', 'DestroyAcceleratorTable', 'SendMessageCallbackA', 'OpenWindowStationA', 'DrawTextA', 'DlgDirSelectExW', 'CheckMenuItem', 'SendNotifyMessageW', 'EnumDisplayMonitors', 'TrackPopupMenu', 'DdeUninitialize', 'MonitorFromWindow', 'IMPGetIMEA', 'ToAscii', 'GetDesktopWindow', 'ExitWindowsEx', 'SendNotifyMessageA', 'EnumPropsExA', 'DialogBoxIndirectParamW', 'SetWindowTextA', 'SetSystemCursor', 'SetThreadDesktop', 'TranslateAcceleratorA', 'FindWindowW', 'GetIconInfo', 'ScrollWindow', 'EndTask', 'DdeNameService', 'wsprintfA', 'TranslateAccelerator', 'GetInputState', 'DdeDisconnectList', 'SetRectEmpty', 'BeginDeferWindowPos', 'BroadcastSystemMessageA', 'GetClipboardViewer', 'DrawStateA', 'CreateWindowExA', 'GetSystemMenu', 'ChangeMenuA', 'DefWindowProcA', 'PostQuitMessage', 'RegisterClassA', 'DdeGetData', 'DdeCmpStringHandles', 'DdePostAdvise', 'LoadCursorA', 'LoadIconA', 'ShowWindow', 'GetMessageA', 'DispatchMessageA', 'TranslateMessage', 'PostMessageA', 'RegisterWindowMessageA', 'DdeCreateDataHandle', 'DdeCreateStringHandleA', 'DdeFreeStringHandle', 'DdeGetLastError', 'DdeInitializeA', 'DdeDisconnect', 'PeekMessageA', 'GetStockObject', 'StrokePath', 'PathToRegion', 'OpenProcessToken', 'LookupAccountSidW', 'GetUserNameW', 'GetTokenInformation', 'StartServiceW', 'QueryServiceStatus', 'OpenServiceW', 'OpenSCManagerW', 'CloseServiceHandle', 'RegQueryValueExA', 'SHGetFileInfoA', 'SHGetMalloc', 'Shell_NotifyIconW', 'SHBrowseForFolder', 'SHGetIconOverlayIndexA', 'SHEmptyRecycleBinW', 'SHChangeNotify', 'ExtractIconA', 'ExtractIconExW', 'CommandLineToArgvW', 'SHGetDiskFreeSpaceA', 'SHInvokePrinterCommandW', 'SHGetIconOverlayIndexW', 'SHGetDiskFreeSpaceExW', 'DuplicateIcon', 'SHGetSpecialFolderLocation', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'StrChrA', 'StrRChrIA', 'StrChrW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['CreateThread', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'memset', '_except_handler4_common', '__std_type_info_destroy_list', '_configure_narrow_argv', '_initterm_e', '_initterm', 'system', '_cexit', '_initialize_narrow_environment', '_execute_onexit_table', '_seh_filter_dll', '_initialize_onexit_table'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'CryptDecrypt', 'ShellExecuteW', 'PathIsDirectoryW'], ['InitCommonControlsEx', 'SHAutoComplete', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetNumberFormatW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'Sleep', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'GetTickCount', 'OpenFileMappingW', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateThread', 'GetProcessAffinityMask', 'CreateEventW', 'CreateSemaphoreW', 'ReleaseSemaphore', 'ResetEvent', 'SetEvent', 'SetThreadPriority', 'SystemTimeToFileTime', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CompareStringW', 'SetFileTime', 'SetFileAttributesW', 'GlobalAlloc', 'SetCurrentDirectoryW', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleHandleA', 'LCMapStringW', 'LCMapStringA', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetModuleFileNameA', 'ExitProcess', 'HeapSize', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'InterlockedDecrement', 'GetCurrentThreadId', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'GetStartupInfoA', 'GetFileAttributesW', 'FlushFileBuffers', 'ReadFile', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'GetStdHandle', 'GetLongPathNameW', 'GetShortPathNameW', 'GetCPInfo', 'MoveFileW', 'CreateFileW', 'CreateDirectoryW', 'DeviceIoControl', 'RemoveDirectoryW', 'DeleteFileW', 'CreateHardLinkW', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'CreateFileA', 'IsDBCSLeadByte', 'GetCommandLineA', 'RaiseException', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'RtlUnwind', 'EnableWindow', 'GetDlgItem', 'ShowWindow', 'SetWindowLongW', 'GetDC', 'ReleaseDC', 'FindWindowExW', 'GetParent', 'MapWindowPoints', 'CreateWindowExW', 'UpdateWindow', 'LoadCursorW', 'RegisterClassExW', 'DefWindowProcW', 'DestroyWindow', 'CopyRect', 'IsWindow', 'LoadIconW', 'LoadBitmapW', 'PostMessageW', 'GetSysColor', 'SetForegroundWindow', 'MessageBoxW', 'WaitForInputIdle', 'IsWindowVisible', 'DialogBoxParamW', 'DestroyIcon', 'SetFocus', 'GetClassNameW', 'SendDlgItemMessageW', 'EndDialog', 'GetDlgItemTextW', 'SetDlgItemTextW', 'wvsprintfW', 'SendMessageW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'LoadStringW', 'GetWindowRect', 'GetClientRect', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'GetWindowLongW', 'OemToCharBuffA', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'DeleteDC', 'GetObjectW', 'DeleteObject', 'CreateDIBSection', 'GetSaveFileNameW', 'CommDlgExtendedError', 'GetOpenFileNameW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'SHGetMalloc', 'SHGetSpecialFolderLocation', 'SHGetFileInfoW', 'ShellExecuteExW', 'SHChangeNotify', 'SHFileOperationW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'CLSIDFromString', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'CreateStreamOnHGlobal', 'VariantInit'], ['SetDllDirectoryA', 'GetSystemTimeAsFileTime', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'Sleep', 'LoadLibraryA', 'GetModuleHandleA'], ['ZombifyActCtx', 'GetConsoleAliasesLengthA', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeA', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsSetValue', 'SetComputerNameExA', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'GetModuleHandleA', 'LocalAlloc', 'InitializeCriticalSection', 'TlsGetValue', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringW', 'ExitThread', 'GlobalWire', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'IsDebuggerPresent', 'SetConsoleCursorPosition', 'GetLastError', 'ContinueDebugEvent', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'InterlockedPushEntrySList', 'WritePrivateProfileSectionA', 'DeleteCriticalSection', 'GetPrivateProfileSectionNamesA', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'MoveFileW', 'GetVolumePathNameA', 'TerminateProcess', 'lstrcmpW', 'GetComputerNameW', 'FindActCtxSectionStringA', 'SetThreadContext', 'MoveFileExA', 'GetProcAddress', 'GlobalCompact', 'UnregisterWait', 'WriteConsoleInputA', 'FormatMessageA', 'FatalExit', 'SetCommTimeouts', 'WaitNamedPipeW', 'CreateIoCompletionPort', 'FindResourceExA', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'FreeEnvironmentStringsA', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'SetThreadExecutionState', 'GetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'GetAtomNameW', 'WriteConsoleInputW', 'CreateMailslotA', 'GetCommState', 'SetHandleCount', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'EnumDateFormatsA', 'GlobalDeleteAtom', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetCurrentProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringW', 'InitAtomTable', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterA', 'TerminateJobObject', 'VirtualAlloc', 'GetBinaryTypeW', 'QueryDosDeviceW', 'LeaveCriticalSection', 'HeapSetInformation', 'FileTimeToDosDateTime', 'Sleep', 'EnterCriticalSection', 'RaiseException', 'RtlUnwind', 'MoveFileA', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetModuleHandleW', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'CloseHandle', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'ExitProcess', 'GetStdHandle', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'SetStdHandle', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'LoadLibraryA', 'CreateFileA', 'OemToCharA', 'GetFileSecurityW', 'AlphaBlend'], ['lstrlenW', 'FindNextVolumeMountPointW', 'IsBadStringPtrA', 'GetStringTypeExA', 'GetNamedPipeHandleStateW', 'LCMapStringA', 'GetLargestConsoleWindowSize', 'EnumSystemLocalesA', 'BackupRead', 'GetProcAddress', 'CreateTimerQueueTimer', 'HeapUnlock', 'VirtualProtectEx', 'BuildCommDCBW', 'CreateFileW', 'LoadLibraryA', 'TransmitCommChar', 'GetTapeParameters', 'DebugSetProcessKillOnExit', 'SetConsoleTitleW', 'GetProcessShutdownParameters', 'LoadLibraryExA', 'DebugBreakProcess', 'OpenFileMappingW', 'LocalSize', 'GetCurrentProcessId', 'GetPrivateProfileSectionW', 'AddConsoleAliasA', 'GetAtomNameW', 'GetFileAttributesW', 'Beep', 'SetFileShortNameW', 'GlobalAlloc', 'GetCurrencyFormatW', 'GetDriveTypeA', 'GetCommandLineA', 'FormatMessageA', 'EnumCalendarInfoExW', 'GetTickCount', 'CreateHardLinkA', 'GetUserDefaultLCID', 'GlobalLock', 'WriteTapemark', 'MapViewOfFile', 'FindFirstFileW', 'lstrcmpA', 'GlobalDeleteAtom', 'GetProcessVersion', 'DosDateTimeToFileTime', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'HeapDestroy', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetCurrentThread', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetLocaleInfoW', 'HeapSize', 'FatalAppExitA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'IsValidLocale', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'FreeLibrary', 'LoadLibraryW', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'CloseHandle', 'WriteConsoleW', 'SetFilePointer', 'SetStdHandle', 'CloseEventLog', 'RegLoadKeyW', 'GetServiceDisplayNameA', 'GetLengthSid', 'GetSecurityDescriptorSacl', 'FreeSid', 'AddAccessAllowedAce', 'RegDeleteValueW', 'LookupPrivilegeValueW', 'DeregisterEventSource', 'EqualSid', 'AccessCheckAndAuditAlarmA', 'RegSetValueExA', 'RegRestoreKeyA', 'SetServiceObjectSecurity', 'IsValidAcl', 'LookupPrivilegeNameW', 'OpenServiceA', 'GetCurrentHwProfileA', 'GetSecurityDescriptorDacl'], ['GetModuleHandleW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'LoadLibraryW', 'LeaveCriticalSection', 'lstrcpynW', 'GetModuleFileNameW', 'ReleaseActCtx', 'SetLastError', 'GetLongPathNameA', 'MoveFileW', 'WriteProfileSectionA', 'InitializeSListHead', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'IsWow64Process', 'GetModuleFileNameA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'VirtualProtect', 'GetShortPathNameW', 'GetFileInformationByHandle', 'SetMailslotInfo', 'SetFileAttributesA', 'FreeLibrary', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetLastError', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'GetProcAddress', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'RaiseException', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'MultiByteToWideChar', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'SetStdHandle', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileW', 'CloseHandle', 'ClearEventLogA'], ['GetModuleHandleA', 'GetLocaleInfoA', 'OpenProcess', 'PostQueuedCompletionStatus', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'Sleep', 'GetLastError', 'Process32NextW', 'GetDiskFreeSpaceExW', 'GetCurrentThread', 'TerminateThread', 'LoadLibraryA', 'lstrcatW', 'CloseHandle', 'GetNativeSystemInfo', 'GetSystemInfo', 'CreateThread', 'SetVolumeMountPointW', 'GetWindowsDirectoryW', 'GetProcAddress', 'SetFilePointerEx', 'LocalFree', 'DeleteCriticalSection', 'ExitProcess', 'GetCurrentProcessId', 'GetModuleHandleW', 'CopyFileW', 'WideCharToMultiByte', 'GetVolumePathNamesForVolumeNameW', 'lstrcpyW', 'SleepEx', 'GetDiskFreeSpaceExA', 'FindNextVolumeW', 'lstrcmpiW', 'GetCurrentThreadId', 'GetTickCount', 'lstrcmpW', 'MoveFileW', 'GetDriveTypeW', 'GetComputerNameA', 'QueryDosDeviceW', 'DuplicateHandle', 'CreateEventW', 'SetEvent', 'FindVolumeClose', 'GetFileType', 'WriteConsoleW', 'SetEndOfFile', 'ReadConsoleW', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'GetFileAttributesW', 'CreateFileW', 'WaitForSingleObject', 'FindClose', 'lstrlenA', 'GetQueuedCompletionStatus', 'SetErrorMode', 'InitializeCriticalSection', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'GetModuleFileNameW', 'GetUserDefaultLangID', 'TerminateProcess', 'WriteFile', 'GetCurrentProcess', 'FindNextFileW', 'lstrlenW', 'GetCommandLineW', 'EnterCriticalSection', 'FindFirstVolumeW', 'FindFirstFileExW', 'GetFileSizeEx', 'GetLogicalDrives', 'ReadFile', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'QueryPerformanceCounter', 'CreateIoCompletionPort', 'LCMapStringW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetStdHandle', 'GetModuleHandleExW', 'LoadLibraryExW', 'FreeLibrary', 'TlsFree', 'TlsSetValue', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'ResetEvent', 'WaitForSingleObjectEx', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'DecodePointer', 'CreateWindowExW', 'GetCursorPos', 'DefWindowProcW', 'RegisterClassW', 'CloseServiceHandle', 'OpenThreadToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CreateServiceW', 'RegCloseKey', 'CryptAcquireContextW', 'RegQueryValueExA', 'CryptGenRandom', 'OpenSCManagerW', 'AllocateAndInitializeSid', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'RegSetValueExW', 'OpenProcessToken', 'FreeSid', 'StartServiceW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'CryptReleaseContext', 'CommandLineToArgvW', 'ShellExecuteW', 'ShellExecuteA', 'NetShareEnum', 'NetApiBufferFree', 'wnsprintfA', 'StrCmpNIW', 'StrCmpNW', 'StrDupW', 'StrStrIW', 'UrlUnescapeA', 'UrlEscapeA', 'SHDeleteKeyW', 'wnsprintfW', 'GetIpNetTable', 'inet_ntoa', 'InternetCrackUrlW', 'InternetQueryOptionW', 'InternetCloseHandle', 'InternetConnectW', 'InternetSetOptionW', 'InternetOpenW', 'InternetQueryDataAvailable', 'HttpOpenRequestW', 'InternetReadFile', 'HttpSendRequestW'], ['gethostname', 'connect', 'WSACleanup', '__WSAFDIsSet', 'accept', 'send', 'ntohs', 'recv', 'WSAPoll', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'bind', 'WSAIoctl', 'WSASend', 'shutdown', 'listen', 'WSASocketW', 'getsockname', 'socket', 'WSARecv', 'ioctlsocket', 'FreeAddrInfoW', 'GetAddrInfoW', 'htonl', 'closesocket', 'getsockopt', 'setsockopt', 'WSAGetLastError', 'htons', 'GetAdaptersAddresses', 'ExitThread', 'SetFileAttributesW', 'GetFileAttributesExW', 'GetConsoleCP', 'SetStdHandle', 'GetCommandLineW', 'GetModuleHandleExW', 'RtlUnwind', 'ExitProcess', 'HeapFree', 'GetCommandLineA', 'HeapAlloc', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'OutputDebugStringA', 'CreateMutexA', 'ReleaseMutex', 'GetLastError', 'CloseHandle', 'FreeConsole', 'GetConsoleWindow', 'MultiByteToWideChar', 'SetThreadAffinityMask', 'SetPriorityClass', 'GetCurrentProcess', 'SetThreadPriority', 'GetCurrentThread', 'GetProcAddress', 'GetModuleHandleW', 'VirtualFree', 'VirtualAlloc', 'LocalAlloc', 'LocalFree', 'SetErrorMode', 'PostQueuedCompletionStatus', 'GetQueuedCompletionStatusEx', 'CreateIoCompletionPort', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'QueueUserWorkItem', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'WideCharToMultiByte', 'SetConsoleCursorPosition', 'GetLongPathNameW', 'GetShortPathNameW', 'GetFileAttributesW', 'GetCurrentDirectoryW', 'ReadDirectoryChangesW', 'VerifyVersionInfoA', 'EnterCriticalSection', 'GetModuleFileNameW', 'SetEnvironmentVariableW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'QueryPerformanceFrequency', 'GetSystemInfo', 'VerSetConditionMask', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'SetConsoleCtrlHandler', 'Sleep', 'GetFileType', 'CreateDirectoryW', 'ReadFile', 'SetLastError', 'WriteFile', 'DeviceIoControl', 'RemoveDirectoryW', 'GetFinalPathNameByHandleW', 'SetFileTime', 'ReOpenFile', 'CreateHardLinkW', 'GetFileInformationByHandle', 'SetFilePointerEx', 'MoveFileExW', 'CopyFileW', 'CreateSymbolicLinkW', 'FlushFileBuffers', 'SleepConditionVariableCS', 'TlsSetValue', 'ReleaseSemaphore', 'WakeConditionVariable', 'InitializeConditionVariable', 'WaitForSingleObject', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'DeleteCriticalSection', 'CreateSemaphoreW', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'CreateEventA', 'CancelIo', 'SetHandleInformation', 'SetFileCompletionNotificationModes', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'CancelSynchronousIo', 'GetNamedPipeHandleStateA', 'CancelIoEx', 'SwitchToThread', 'ConnectNamedPipe', 'FormatMessageA', 'DebugBreak', 'GetModuleHandleA', 'LoadLibraryA', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'GetStartupInfoW', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentThreadId', 'GetTickCount64', 'RaiseException', 'LoadLibraryExW', 'FreeLibraryAndExitThread', 'FreeLibrary', 'GetThreadTimes', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapReAlloc', 'GetTimeZoneInformation', 'HeapSize', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetEndOfFile', 'CreateEventW', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateThread', 'TranslateMessage', 'ShowWindow', 'DispatchMessageA', 'MapVirtualKeyW', 'GetMessageA', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation'], ['AddAtomA', 'CreateDirectoryA', 'CreateProcessA', 'CreateSemaphoreA', 'DeleteFileA', 'ExitProcess', 'FindAtomA', 'GetAtomNameA', 'GetCommandLineA', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetStartupInfoA', 'InterlockedDecrement', 'InterlockedIncrement', 'ReleaseSemaphore', 'SetFileAttributesA', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'WaitForSingleObject', '_fdopen', '_read', '_strdup', '_write', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_assert', '_cexit', '_ctype', '_errno', '_fstati64', '_iob', '_isctype', '_lseeki64', '_onexit', '_pctype', '_setmode', '_strnicmp', '_vsnprintf', 'abort', 'atexit', 'fclose', 'fflush', 'fopen', 'fprintf', 'free', 'localeconv', 'malloc', 'memchr', 'memcpy', 'memmove', 'memset', 'rand', 'setlocale', 'setvbuf', 'signal', 'srand', 'strcat', 'strcmp', 'strcoll', 'strcpy', 'strftime', 'strlen', 'strtod', 'strxfrm', 'time', 'SHGetFolderPathA', 'ShellExecuteA', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameA', '_configthreadlocale', 'free', 'exit', 'memset', '_lock_file', 'ImageList_Draw', 'SHGetDiskFreeSpaceExW', '__setusermatherr', 'fputc', '??1_Lockit@std@@QAE@XZ', '_time64', 'accept', 'rand'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameW', 'memset', 'rand', 'exit', '_configthreadlocale', '__setusermatherr', '??1_Lockit@std@@QAE@XZ', 'SHGetIconOverlayIndexA', '_time64', '_lock_file', 'ImageList_Create', 'free', 'accept', 'fputc'], ['GetModuleHandleA', 'ValidateRect', 'RegisterEventSourceA', 'SHGetDiskFreeSpaceA', '_CorExeMain', 'CreateStatusWindowA'], ['Sleep', 'GetSystemDirectoryA', 'GetModuleFileNameA', 'VirtualProtect', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'HeapSize', 'MultiByteToWideChar', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW'], ['InitCommonControlsEx', 'SHAutoComplete', 'DeleteFileW', 'DeleteFileA', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetFullPathNameA', 'GetFullPathNameW', 'MultiByteToWideChar', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetTickCount', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetCurrentProcessId', 'SetFileAttributesW', 'GetNumberFormatW', 'DosDateTimeToFileTime', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'SetEnvironmentVariableW', 'OpenFileMappingW', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemTime', 'WideCharToMultiByte', 'CompareStringW', 'IsDBCSLeadByte', 'GetCPInfo', 'GlobalAlloc', 'SetCurrentDirectoryW', 'SetFileAttributesA', 'GetFileAttributesW', 'GetFileAttributesA', 'WriteFile', 'GetStdHandle', 'ReadFile', 'GetCurrentDirectoryW', 'CreateFileW', 'CreateFileA', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'FlushFileBuffers', 'MoveFileW', 'SetFileTime', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'GetLocaleInfoW', 'GetClassNameW', 'DialogBoxParamW', 'IsWindowVisible', 'WaitForInputIdle', 'SetForegroundWindow', 'GetSysColor', 'PostMessageW', 'LoadBitmapW', 'LoadIconW', 'CharToOemA', 'OemToCharA', 'IsWindow', 'CopyRect', 'DestroyWindow', 'DefWindowProcW', 'RegisterClassExW', 'LoadCursorW', 'UpdateWindow', 'CreateWindowExW', 'MapWindowPoints', 'GetParent', 'GetDlgItemTextW', 'TranslateMessage', 'DispatchMessageW', 'wvsprintfW', 'wvsprintfA', 'CharUpperA', 'CharToOemBuffA', 'LoadStringW', 'GetWindowRect', 'GetClientRect', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'GetWindowLongW', 'CharUpperW', 'CharToOemBuffW', 'MessageBoxW', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'OemToCharBuffA', 'SendDlgItemMessageW', 'DestroyIcon', 'EndDialog', 'SetFocus', 'SetDlgItemTextW', 'SendMessageW', 'GetDC', 'ReleaseDC', 'PeekMessageW', 'FindWindowExW', 'GetMessageW', 'SetWindowLongW', 'GetDeviceCaps', 'GetObjectW', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'GetOpenFileNameW', 'CommDlgExtendedError', 'GetSaveFileNameW', 'RegOpenKeyExW', 'LookupPrivilegeValueW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'SetFileSecurityA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'SHChangeNotify', 'ShellExecuteExW', 'SHFileOperationW', 'SHGetFileInfoW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'CLSIDFromString', 'CreateStreamOnHGlobal', 'OleUninitialize', 'CoCreateInstance', 'OleInitialize', 'VariantInit'], ['Sleep', 'GetProcAddress', 'LoadLibraryA', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'GetVersion', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'GetLastError', 'SetUnhandledExceptionFilter', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'TerminateProcess', 'GetCurrentProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'WriteFile', 'IsBadReadPtr', 'IsBadCodePtr', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'InterlockedDecrement', 'InterlockedIncrement', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW'], ['DnsQuery_A', 'DnsFree', 'ApplyControlToken', 'InitializeSecurityContextA', 'DecryptMessage', 'EncryptMessage', 'AcquireCredentialsHandleW', 'FreeContextBuffer', 'QueryContextAttributesW', 'DeleteSecurityContext', 'FreeCredentialsHandle', 'InitializeSecurityContextW', 'SHGetFileInfoA', 'ShellExecuteA', 'SHGetSpecialFolderPathW', 'InternetQueryDataAvailable', 'HttpQueryInfoA', 'InternetOpenUrlA', 'InternetOpenA', 'HttpQueryInfoW', 'InternetQueryOptionW', 'InternetCloseHandle', 'InternetReadFile', 'PathAppendW', 'StrStrIA', 'PathAppendA', 'PathFindExtensionA', 'closesocket', 'connect', 'htons', 'send', 'WSAStartup', 'WSACleanup', 'inet_addr', 'inet_ntoa', 'WSAGetLastError', 'recv', 'setsockopt', 'ioctlsocket', 'select', 'ntohs', 'gethostbyname', 'sendto', 'getpeername', 'socket', 'strncat', 'isalnum', 'vsprintf', 'strrchr', 'toupper', 'strncmp', 'memmove', 'isxdigit', '_strnicmp', '??2@YAPAXI@Z', '_snwprintf', 'strchr', 'strtok', '_stricmp', '_vsnprintf', '_wcsnicmp', '_memicmp', 'strncpy', 'sprintf', '_snprintf', 'printf', '_strcmpi', 'sscanf', 'atoi', '??3@YAXPAX@Z', 'wcsrchr', 'strstr', 'wcsstr', 'memset', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'OpenMutexA', 'GetLogicalDriveStringsA', 'CreateDirectoryA', 'GetFileSize', 'LockFile', 'SetCurrentDirectoryA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'CopyFileW', 'FlushFileBuffers', 'GetLocaleInfoA', 'GetVolumeInformationW', 'lstrcatA', 'ExitProcess', 'CreateProcessW', 'VirtualAlloc', 'DeviceIoControl', 'SetFilePointer', 'lstrcpynA', 'LocalAlloc', 'LocalFree', 'lstrcpyW', 'SetFileAttributesA', 'DeleteFileA', 'lstrcpynW', 'lstrcatW', 'GetTempFileNameW', 'DeleteFileW', 'GetWindowsDirectoryW', 'CreateThread', 'InterlockedCompareExchange', 'GetModuleFileNameW', 'GetVersionExA', 'CreateMutexA', 'UnmapViewOfFile', 'InterlockedIncrement', 'CreateFileMappingA', 'OpenFileMappingA', 'MapViewOfFile', 'ReleaseMutex', 'WaitForSingleObject', 'OpenProcess', 'CreateRemoteThread', 'IsWow64Process', 'VirtualAllocEx', 'VirtualFreeEx', 'CreateFileA', 'WaitForMultipleObjects', 'GetOverlappedResult', 'DisconnectNamedPipe', 'lstrcpyA', 'MoveFileExA', 'lstrcmpA', 'WideCharToMultiByte', 'MoveFileExW', 'lstrcmpW', 'ExitThread', 'MultiByteToWideChar', 'GetFileAttributesA', 'SetFileAttributesW', 'GetFileAttributesW', 'LoadLibraryW', 'CloseHandle', 'SetFileTime', 'CreateFileW', 'GetFileTime', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetModuleHandleW', 'GetLastError', 'ReadFile', 'GetTickCount', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'lstrlenA', 'Sleep', 'WriteProcessMemory', 'ReadProcessMemory', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'SetEvent', 'ConnectNamedPipe', 'CreateNamedPipeA', 'CreateEventA', 'RegisterClassExA', 'CreateWindowExA', 'RegisterDeviceNotificationA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DefWindowProcA', 'wsprintfW', 'wvsprintfA', 'MessageBoxA', 'RegSetValueExW', 'CryptDestroyHash', 'CryptHashData', 'RegOpenKeyExA', 'RegSetValueExA', 'RegNotifyChangeKeyValue', 'RegCreateKeyExW', 'CryptGetHashParam', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptReleaseContext', 'CoInitialize', 'CoCreateInstance'], ['GetCurrentHwProfileA', 'CryptUnprotectData', 'AddVectoredExceptionHandler', 'AreFileApisANSI', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateFileMappingW', 'CreateFileW', 'CreateMutexW', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DeleteFileA', 'DeleteFileW', 'DuplicateHandle', 'EnterCriticalSection', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FormatMessageW', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDiskFreeSpaceA', 'GetDiskFreeSpaceW', 'GetFileAttributesA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFullPathNameA', 'GetFullPathNameW', 'GetHandleInformation', 'GetLastError', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathA', 'GetTempPathW', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'GetVersionExA', 'GetVersionExW', 'HeapAlloc', 'HeapCompact', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LocalFree', 'LockFile', 'LockFileEx', 'MapViewOfFile', 'MultiByteToWideChar', 'OutputDebugStringA', 'OutputDebugStringW', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEndOfFile', 'SetEvent', 'SetFilePointer', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnlockFileEx', 'UnmapViewOfFile', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'WriteFile', '__C_specific_handler', '__iob_func', '_access', '_amsg_exit', '_beginthreadex', '_endthreadex', '_initterm', '_localtime64', '_lock', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strcspn', 'strlen', 'strncmp', 'strrchr', 'strtoul', 'system', 'vfprintf', 'SHGetFolderPathA', 'WSACleanup', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['memcpy', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'CharUpperBuffW', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['GetProcAddress', 'lstrlenA', 'LocalAlloc', 'LoadLibraryA', 'CoInitialize'], ['FindFirstVolumeA', 'SetConsoleCursorInfo', 'HeapLock', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesW', 'EnumResourceNamesA', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'TlsGetValue', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'ReleaseActCtx', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedIncrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'GetNumaProcessorNode', 'TryEnterCriticalSection', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExA', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'LockFile', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'FindAtomW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'InterlockedPushEntrySList', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedDecrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'CreateFileA', 'OemToCharW', 'SetKernelObjectSecurity', 'WinHttpReadData'], ['SetupUninstallNewlyCopiedInfs', 'CM_Get_Device_Interface_List_ExW', 'CM_Get_Res_Des_Data_Ex', 'SCardForgetCardTypeW', 'BuildExplicitAccessWithNameW', 'GetForegroundWindow', 'GdiComment', 'GetFileInformationByHandle', 'AssignProcessToJobObject', 'GetProcAddress', 'GetModuleHandleA'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'GetFileAttributesExW', 'FreeLibrary', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'GetCommandLineA', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'TlsAlloc', 'GetProcessAffinityMask', 'SetLocaleInfoA', 'SetFileTime', 'CompareFileTime', 'SearchPathW', 'GetShortPathNameW', 'GetFullPathNameW', 'MoveFileW', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTickCount', 'GetFileSize', 'CopyFileW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'lstrcpynA', 'lstrcpynW', 'GetDiskFreeSpaceW', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessW', 'lstrcmpiA', 'GetTempFileNameW', 'lstrcatW', 'LoadLibraryA', 'GetModuleHandleA', 'OpenProcess', 'lstrcpyW', 'GetVersionExW', 'GetSystemDirectoryW', 'GetVersion', 'lstrcpyA', 'RemoveDirectoryW', 'lstrcmpA', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GlobalFree', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MulDiv', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW', 'lstrlenW', 'LoadIconW', 'MessageBoxW', 'wsprintfW', 'SetClassWord', 'EnableScrollBar', 'LoadCursorA', 'DrawTextA', 'ToUnicode', 'SendDlgItemMessageW', 'GetMessageTime', 'SetWinEventHook', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'ScreenToClient', 'GetMessagePos', 'CallWindowProcW', 'IsWindowVisible', 'LoadBitmapW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'GetWindowRect', 'AppendMenuW', 'CreatePopupMenu', 'GetSystemMetrics', 'EndDialog', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'SetWindowPos', 'DialogBoxParamW', 'CheckDlgButton', 'CreateWindowExW', 'SystemParametersInfoW', 'RegisterClassW', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharNextA', 'CharUpperW', 'CharPrevW', 'wvsprintfW', 'DispatchMessageW', 'PeekMessageW', 'wsprintfA', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'SendMessageTimeoutW', 'LoadCursorW', 'SetCursor', 'GetWindowLongW', 'GetSysColor', 'CharNextW', 'GetClassInfoW', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'EndPaint', 'FindWindowExW', 'GetStockObject', 'GetStringBitmapA', 'SetBoundsRect', 'FONTOBJ_vGetInfo', 'GetETM', 'FONTOBJ_pfdg', 'GdiEntry4', 'FONTOBJ_pifi', 'SetMetaFileBitsEx', 'AnimatePalette', 'ResetDCA', 'CLIPOBJ_cEnumStart', 'SetBkColor', 'GdiConvertRegion', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectW', 'SetBkMode', 'SetTextColor', 'SelectObject', 'GetUserNameW', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegEnumKeyW', 'RegCloseKey', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumValueW', 'SHGetFolderPathW', 'SHGetDiskFreeSpaceA', 'Shell_NotifyIconW', 'SHCreateProcessAsUserW', 'ShellExecuteEx', 'SHFormatDrive', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'SHGetSpecialFolderLocation', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'PathAppendW', 'PathRemoveFileSpecW', 'StrCmpNA', 'StrStrIA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create'], ['SetFilePointerEx', 'CloseHandle', 'lstrlenW', 'CreateFileW', 'HeapCreate', 'GetCurrentProcess', 'ExitProcess', 'CreateThread', 'GetCurrentThread', 'SetThreadPriority', 'WaitForMultipleObjects', 'Sleep', 'GetLogicalDrives', 'SetFilePointer', 'FindClose', 'lstrcmpiA', 'lstrcmpiW', 'lstrcpyA', 'ReadFile', 'lstrcatW', 'GetModuleFileNameW', 'CreateProcessW', 'GetEnvironmentVariableW', 'GetDriveTypeA', 'GetTempPathW', 'GetTempFileNameW', 'SetFileAttributesW', 'GetFileAttributesW', 'FindFirstFileW', 'FindNextFileW', 'CopyFileW', 'MoveFileExW', 'SetPriorityClass', 'MultiByteToWideChar', 'WideCharToMultiByte', 'CompareStringA', 'WriteFile', 'GetFileSizeEx', 'GetLastError', 'lstrlenA', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'lstrcpyW', 'HeapAlloc', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegCloseKey', 'CryptGenRandom', 'CryptReleaseContext', 'CryptAcquireContextW', 'RegSetValueExW', 'SHChangeNotify', 'ShellExecuteExW', 'PathFindFileNameW', 'PathRemoveFileSpecW', 'PathAddBackslashW', '_aulldiv', '_alldiv', '_allrem', '_chkstk', 'RtlUnwind', 'NtQueryVirtualMemory'], ['FreeLibrary', 'GetCurrentProcess', 'SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'SetComputerNameW', 'GetModuleHandleW', 'GlobalAlloc', 'GetSystemDirectoryW', 'LoadLibraryW', 'CreateEventA', 'GetProcessHandleCount', 'SetConsoleMode', 'GetBinaryTypeA', 'GetModuleFileNameW', 'lstrcmpW', 'FindResourceW', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'GetDiskFreeSpaceW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'TransmitCommChar', 'OpenJobObjectW', 'EnumCalendarInfoExA', 'SetFileAttributesW', 'CommConfigDialogA', 'InterlockedExchange', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateLoggedOnUser'], ['GetConsoleWindow', 'WriteConsoleW', 'CreateFileW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'CloseHandle', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'GetFileAttributesExW', 'HeapAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow'], ['CreateDirectoryA', 'IsWow64Process', 'lstrcatA', 'GetModuleHandleA', 'lstrcpyA', 'WinExec', 'lstrlenA', 'HeapAlloc', 'GetProcAddress', 'lstrcpynA', 'GetProcessHeap', 'WriteConsoleW', 'LocalFree', 'GetWindowsDirectoryA', 'CloseHandle', 'DeleteFileA', 'LoadLibraryA', 'GetFileAttributesA', 'GetLastError', 'CopyFileA', 'Sleep', 'LocalAlloc', 'GetVolumeInformationA', 'GetCurrentProcess', 'HeapFree', 'GetModuleFileNameA', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'ReadConsoleW', 'ReadFile', 'FlushFileBuffers', 'CreateFileW', 'GetStringTypeW', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'MultiByteToWideChar', 'LCMapStringW', 'MoveFileExW', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'CreateServiceA', 'RegCloseKey', 'StartServiceCtrlDispatcherA', 'GetCurrentHwProfileA', 'CloseServiceHandle', 'RegQueryValueExA', 'SetServiceStatus', 'RegisterServiceCtrlHandlerA', 'OpenSCManagerA', 'GetUserNameA', 'StartServiceA', 'RegOpenKeyExA', 'OpenServiceA', 'SHGetSpecialFolderPathA', 'SHGetFolderPathA', 'ShellExecuteA', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiEnumDeviceInfo'], ['WriteFile', 'GetProcessTimes', 'LoadLibraryW', 'GetStringTypeExW', 'FileTimeToSystemTime', 'IsBadStringPtrA', 'GetNamedPipeHandleStateW', 'GetLastError', 'GetTickCount', 'GlobalFree', 'GetPrivateProfileStringA', 'GetAtomNameA', 'WriteConsoleA', 'GetProcessId', 'LocalAlloc', 'GetCurrentConsoleFont', 'SetConsoleTitleW', 'OpenFileMappingW', 'VirtualProtect', 'EnumSystemLocalesW', 'BackupSeek', 'GetCurrentProcess', 'LoadResource', 'DebugActiveProcessStop', 'lstrlenA', 'lstrcmpA', 'CreateFileA', 'BuildCommDCBW', 'GetCommandLineW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCommandLineA', 'GetStartupInfoA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'SetStdHandle', 'GetConsoleOutputCP', 'MultiByteToWideChar', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetModuleHandleA', 'CloseHandle'], ['FreeLibrary', 'GetProcAddress', 'GetLastError', 'LoadLibraryExW', 'CreateFileA', 'SetEndOfFile', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetFileAttributesW', 'ExpandEnvironmentStringsW', 'MultiByteToWideChar', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetFullPathNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetFullPathNameA', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'CloseHandle', 'RaiseException', 'GetDriveTypeA', 'ReadFile', 'SetFilePointer', 'SetStdHandle', 'LoadLibraryA', 'InitializeCriticalSection', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetCurrentDirectoryA', 'FlushFileBuffers', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'CreateFileW', 'HeapSize', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableW', 'MessageBoxW', 'RegQueryValueExW', 'RegCloseKey', 'RegEnumKeyExW', 'RegOpenKeyExW'], ['SetDllDirectoryA', 'SetWindowLongW', 'CryptGenRandom', 'HttpOpenRequestA', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'VirtualAllocExNuma', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'RegDeleteKeyExW', 'socket', 'inet_addr', 'WSAStartup', 'recv', 'gethostbyname', 'send', 'connect', 'gethostbyaddr', 'closesocket', 'htons', 'WSACleanup', '?_Xlength_error@std@@YAXPBD@Z', 'memcpy', 'memmove', '__CxxFrameHandler3', 'strstr', '__std_exception_copy', '__std_exception_destroy', '_CxxThrowException', 'memset', '_except_handler4_common', '__p__commode', '__stdio_common_vsprintf', '_set_fmode', '_seh_filter_exe', '_exit', 'exit', '_initialize_onexit_table', '_invalid_parameter_noinfo_noreturn', '_crt_atexit', '_controlfp_s', 'terminate', '_set_app_type', '_register_thread_local_exe_atexit_callback', '_c_exit', '_register_onexit_function', '_cexit', '_initterm_e', '_initterm', '_get_wide_winmain_command_line', '_initialize_wide_environment', '_configure_wide_argv', '_callnewh', 'malloc', 'realloc', 'free', '_set_new_mode', 'strncpy', '__setusermatherr', '_configthreadlocale'], ['lstrlenA', 'lstrcmpiA', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['MessageBoxW', 'GetSystemMetrics', 'GetSysColorBrush', 'FindWindowA', 'GetProcAddress', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetLastError', 'GetCurrentProcessId', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'SetEnvironmentVariableW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'WriteConsoleW', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['SetCaretBlinkTime', 'TerminateProcess', 'CreateFileW', 'GetModuleHandleA', 'DisableThreadLibraryCalls', 'FreeConsole', 'MultiByteToWideChar', 'GetStringTypeW', 'WideCharToMultiByte', 'GetCurrentThreadId', 'CloseHandle', 'WaitForSingleObjectEx', 'GetExitCodeThread', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'WriteConsoleW', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'HeapSize', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'ReadConsoleW'], ['ObRegisterCallbacks', 'IoAllocateMdl', 'MmProbeAndLockPages', 'MmMapLockedPagesSpecifyCache', 'MmUnlockPages', 'IoFreeMdl', 'ExAllocatePool', 'ExFreePool', 'NtQuerySystemInformation', 'HalMakeBeep'], ['GetCurrentProcess', 'VirtualAlloc', 'VirtualFree', 'FreeLibrary', 'Sleep', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryA', 'FreeConsole', 'CreateFileW', 'QueryPerformanceFrequency', 'GetModuleHandleA', 'QueryPerformanceCounter', 'FormatMessageA', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'LocalFree', 'GetLocaleInfoEx', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'RaiseException', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'ExitProcess', 'GetModuleHandleExW', 'HeapValidate', 'GetSystemInfo', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'GetTimeZoneInformation', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'SetEndOfFile', 'RegCloseKey', 'RegOpenKeyExA'], ['InterlockedIncrement', 'SystemTimeToFileTime', 'SetMailslotInfo', 'GetFileAttributesExA', 'MoveFileWithProgressA', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'SetFileShortNameW', 'ReadConsoleInputA', 'CreateEventA', 'GetBinaryTypeA', 'GetGeoInfoA', 'GetMailslotInfo', 'GetSystemDirectoryA', 'CreateActCtxA', 'GetACP', 'GetStartupInfoA', 'GetLastError', 'SetLastError', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'VirtualAlloc', 'DisableThreadLibraryCalls', 'LoadLibraryA', 'DeleteVolumeMountPointA', 'UnhandledExceptionFilter', 'GetProcessWorkingSetSize', 'LocalAlloc', 'IsSystemResumeAutomatic', 'GetNumberFormatW', 'RemoveDirectoryW', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'HeapSetInformation', 'GetConsoleTitleW', 'GetVersionExA', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'GetTempPathA', 'CopyFileExA', 'InitializeCriticalSectionAndSpinCount', 'HeapSize', 'HeapReAlloc', 'MapUserPhysicalPages', 'FillConsoleOutputCharacterA', 'GetNumaProcessorNode', 'MultiByteToWideChar', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'GetCPInfo', 'InterlockedDecrement', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapAlloc', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetLocaleInfoA', 'GetKeyNameTextW', 'IsChild', 'RealGetWindowClassA', 'LoadMenuA', 'CharUpperA', 'CharLowerBuffW', 'GetCursorInfo', 'CharLowerBuffA', 'ClipCursor', 'LogonUserW', 'ReportEventA', 'IsValidAcl', 'CoRevokeMallocSpy'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'inet_ntoa', 'GetOpenFileNameA', 'StgCreateDocfile', 'CreateTextFilter', 'lua_typename', '?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV12@II@Z', '_localtime32', 'EDOneTimePad_Decipher', 'ImmAssociateContext', 'timeGetTime'], ['SizeofResource', 'WriteFile', 'CreateFileW', 'LockResource', 'CloseHandle', 'LoadResource', 'FindResourceW', 'CreateProcessW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetModuleHandleW', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '_Thrd_join', '_Thrd_id', '_Cnd_do_broadcast_at_thread_exit', '?_Xlength_error@std@@YAXPBD@Z', '?uncaught_exception@std@@YA_NXZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?_Throw_Cpp_error@std@@YAXH@Z', '_except_handler4_common', '_CxxThrowException', '__current_exception_context', '__current_exception', 'memset', '__std_terminate', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', '__p___argc', '_beginthreadex', '_exit', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_c_exit', '_controlfp_s', 'terminate', '__p___argv', '_register_thread_local_exe_atexit_callback', '_invalid_parameter_noinfo_noreturn', '_cexit', 'exit', '_initterm_e', '_initterm', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '_set_app_type', '_seh_filter_exe', '_callnewh', 'free', 'malloc', '_set_new_mode', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale'], ['InterlockedCompareExchange', 'OpenWaitableTimerW', 'CreateEventA', 'ReadConsoleInputA', 'WaitNamedPipeW', 'FindVolumeMountPointClose', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesW', 'GetModuleFileNameW', 'IsBadCodePtr', 'DeleteFileA', 'SearchPathW', 'VirtualAlloc', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasA', 'GetShortPathNameW', 'GetPrivateProfileStringA', 'PeekConsoleInputA', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDefaultLangID', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameW', 'lstrcpynA', 'AddAtomW', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameW', 'FoldStringW', 'ResetEvent', 'GlobalWire', 'GetComputerNameW', 'GetVersionExA', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'SetFileShortNameA', 'GetFileSize', 'GetFileAttributesExW', 'SetComputerNameA', 'GetFileAttributesA', 'ReadConsoleW', 'FindFirstChangeNotificationA', 'GetVolumePathNameA', 'GlobalGetAtomNameA', 'LoadLibraryA', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'HeapSize', 'FlushFileBuffers', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap', 'ClearEventLogA', 'CoRevokeMallocSpy'], ['ExitProcess', 'GetCommandLineW', 'GetFileSize', 'CreateProcessW', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'GetProcessHeap', 'WriteFile', 'GetSystemDirectoryW', 'ReadFile', 'GetModuleFileNameW', 'CreateFileW', 'lstrcatW', 'CloseHandle', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'wsprintfW', 'CommandLineToArgvW', 'wcsstr', 'memcpy', 'free', 'malloc'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationW', 'SetPriorityClass', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointA', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'GetTimeZoneInformation', 'GetSystemDirectoryA', 'GetDriveTypeW', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'CreateWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'WaitForDebugEvent', 'EndUpdateResourceW', 'GetLastError', 'GetSystemTime', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'TerminateThread', 'GetACP', 'FindAtomA', 'HeapUnlock', 'EnterCriticalSection', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'GetOverlappedResult', 'CreateNamedPipeA', 'InterlockedDecrement', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'GetStringTypeW', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileA', 'GetCommMask', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotA', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeW', 'GetConsoleAliasExesLengthW', 'CopyFileExA', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileA', 'GetDateFormatA', 'GetMailslotInfo', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'ImpersonateSelf'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'Beep', 'Sleep', 'TerminateProcess', 'GetSystemInfo', 'VirtualProtectFromApp', 'GetSystemMetrics', 'GetConsoleWindow', 'ShowWindow', '_CxxThrowException', '_exit', '__stdio_common_vfprintf', '__setusermatherr', '_configthreadlocale', '_callnewh', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'VariantChangeTypeEx', 'RaiseException'], ['GetTickCount', 'GetModuleFileNameW', 'GetLastError', 'Sleep', 'lstrcpyW', 'DisableThreadLibraryCalls', 'free', 'malloc', 'memset', 'strstr', 'wcsstr', 'memcpy', 'fclose', 'fwrite', 'fseek', '_wfopen', 'strcmp', '_initterm', '_adjust_fdiv'], ['MessageBoxW', 'MessageBoxA', 'GetLastError', 'SetDllDirectoryW', 'GetModuleFileNameW', 'GetProcAddress', 'GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'DecodePointer', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'LoadLibraryExW', 'CreateDirectoryW', 'GetShortPathNameW', 'FormatMessageW', 'LoadLibraryA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'WaitForSingleObject', 'CloseHandle', 'SetEndOfFile', 'HeapReAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetCommandLineA', 'ReadFile', 'CreateFileW', 'GetDriveTypeW', 'GetFileType', 'RaiseException', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'GetFullPathNameA', 'RemoveDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'SetStdHandle', 'SetConsoleCtrlHandler', 'DeleteFileW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleCP', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'SetEnvironmentVariableA', 'GetFileAttributesExW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetProcessHeap', 'WriteConsoleW', 'GetTimeZoneInformation', 'HeapSize', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ntohl'], ['CertCreateCertificateContext', 'CertDeleteCertificateFromStore', 'CertOpenSystemStoreA', 'CryptMsgClose', 'CertFreeCertificateContext', 'CertAddCertificateContextToStore', 'CryptQueryObject', 'CertCloseStore', 'CryptMsgGetParam', 'ReadFile', 'GetModuleFileNameW', 'SetFilePointer', 'LocalAlloc', 'CreateFileW', 'Sleep', 'LoadLibraryA', 'CloseHandle', 'GetProcAddress', 'LocalFree', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer'], ['SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'SetCommConfig', 'SwitchToFiber', 'Sleep', 'GetCalendarInfoW', 'IsBadCodePtr', 'GetStringTypeExW', 'DnsHostnameToComputerNameW', 'GetMailslotInfo', 'InterlockedExchange', 'GetProcAddress', 'VirtualAlloc', 'SetFileAttributesA', 'GetAtomNameA', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'UpdateResourceW', 'GetVersionExA', 'LCMapStringW', 'DeleteFileA', 'GetLocaleInfoA', 'SetStdHandle', 'GetComputerNameA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'MultiByteToWideChar', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleA', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpCheckPlatform'], ['GetModuleHandleW', 'GlobalFree', 'GlobalSize', 'lstrcpynW', 'lstrcpyW', 'GetProcAddress', 'WideCharToMultiByte', 'VirtualFree', 'FreeLibrary', 'lstrlenW', 'LoadLibraryW', 'GlobalAlloc', 'MultiByteToWideChar', 'VirtualAlloc', 'VirtualProtect', 'GetLastError', 'wsprintfW', 'StringFromGUID2', 'CLSIDFromString'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetStringTypeW', 'GetSystemTime', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'EnterCriticalSection', 'GetACP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'MoveFileA', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'MoveFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotW', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'TerminateThread', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ImpersonateSelf'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetModuleHandleA', 'GetProcAddress', 'ShellExecuteW', 'VerQueryValueW', 'CharNextW', 'VariantCopy', 'NetWkstaGetInfo', 'RegLoadKeyW'], ['GetUserNameA', 'AddAtomA', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateProcessA', 'ExitProcess', 'FindAtomA', 'FreeLibrary', 'GetAtomNameA', 'GetComputerNameA', 'GetFileAttributesA', 'GetFileSize', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetTempPathA', 'GetVersionExA', 'GetVolumeInformationA', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'Sleep', 'WaitForSingleObject', 'WriteFile', '_itoa', '_strlwr', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'atoi', 'exit', 'fclose', 'fflush', 'fopen', 'fprintf', 'fread', 'free', 'fwrite', 'malloc', 'memcpy', 'memmove', 'memset', 'signal', 'strcat', 'strcmp', 'strcpy', 'strlen', 'strncat', 'ShellExecuteExA', 'GetSystemMetrics', 'WSACleanup', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['GetModuleHandleA', 'EndPaint', 'GetUserNameA', '_CorExeMain', 'ShellAboutW', 'ImageList_SetBkColor'], ['LoadLibraryA', 'GetProcAddress', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SetLastError', 'SetErrorMode', 'RemoveDirectoryA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'FormatMessageA', 'DeleteFileA', 'CreateProcessA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'CharNextA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['SetDefaultCommConfigA', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetConsoleAliasExesA', 'GetStringTypeA', 'GetDriveTypeW', 'DebugActiveProcessStop', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'SetDllDirectoryW', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentActCtx', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'SetVolumeMountPointW', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleTitleA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadProcessMemory', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'VerifyVersionInfoA', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetCompressedFileSizeA', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetFileSize', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetNamedPipeHandleStateW', 'GetConsoleAliasesW', 'GlobalUnfix', 'ReleaseActCtx', 'GetStartupInfoA', 'FillConsoleOutputCharacterW', 'GetLastError', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'DisableThreadLibraryCalls', 'BuildCommDCBW', 'ResetEvent', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'ProcessIdToSessionId', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'CreateFileA', 'GetOverlappedResult', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetCommandLineA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'DeleteFileA', 'ImpersonateSelf', 'IsTokenUntrusted'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetUserDefaultLCID', 'GetCommandLineW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetTimeZoneInformation', 'RtlUnwind', 'HeapQueryInformation', 'VirtualAlloc', 'SetStdHandle', 'GetFileType', 'GetStdHandle', 'GetStartupInfoW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateSemaphoreW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'SetFilePointerEx', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeW', 'ReadConsoleW', 'GetTempFileNameW', 'EnumSystemLocalesW', 'SetEnvironmentVariableW', 'WriteConsoleW', 'SetEnvironmentVariableA', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'InitializeSListHead', 'ReleaseSemaphore', 'VirtualFree', 'FreeLibraryAndExitThread', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'GetProfileIntW', 'SearchPathW', 'LoadLibraryExA', 'GetThreadTimes', 'lstrlenA', 'FindResourceExW', 'GetWindowsDirectoryW', 'IsValidLocale', 'VirtualProtect', 'GetFileTime', 'GetFileSizeEx', 'FileTimeToLocalFileTime', 'VerifyVersionInfoW', 'VerSetConditionMask', 'lstrcmpiW', 'DuplicateHandle', 'FindClose', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'CompareStringW', 'GetCurrentDirectoryW', 'GlobalFlags', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'GetThreadLocale', 'FileTimeToSystemTime', 'GlobalGetAtomNameW', 'GlobalFindAtomW', 'EncodePointer', 'lstrcpyW', 'ResumeThread', 'SetThreadPriority', 'CreateEventW', 'SetEvent', 'FreeResource', 'GetModuleHandleA', 'GlobalAddAtomW', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'lstrcmpW', 'lstrcmpA', 'GlobalDeleteAtom', 'GetCurrentThread', 'MulDiv', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalSize', 'GlobalAlloc', 'SetLastError', 'InterlockedDecrement', 'DeleteFileA', 'AreFileApisANSI', 'GetSystemTime', 'LocalFree', 'GetTempPathA', 'GetVersionExA', 'GetCurrentThreadId', 'GetFileAttributesExW', 'GetSystemInfo', 'GetDiskFreeSpaceA', 'CreateFileMappingW', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'LockFileEx', 'GetTempPathW', 'FlushFileBuffers', 'GetFileAttributesW', 'HeapValidate', 'HeapCreate', 'GetFileAttributesA', 'GetVersionExW', 'FormatMessageW', 'InitializeCriticalSection', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'UnlockFileEx', 'WaitForSingleObjectEx', 'LockFile', 'FlushViewOfFile', 'UnlockFile', 'InterlockedCompareExchange', 'QueryPerformanceCounter', 'SystemTimeToFileTime', 'UnmapViewOfFile', 'MapViewOfFile', 'TryEnterCriticalSection', 'HeapCompact', 'GetFullPathNameA', 'GetFullPathNameW', 'GetTickCount', 'SetEndOfFile', 'GetExitCodeThread', 'Sleep', 'FindNextFileW', 'LoadLibraryExW', 'FindFirstFileW', 'CreateFileA', 'GetVolumeInformationW', 'GetCurrentProcessId', 'DeleteFileW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'CopyFileW', 'WideCharToMultiByte', 'GetSystemDirectoryW', 'GetModuleHandleW', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'VirtualQuery', 'CreateMutexW', 'GetFileSize', 'OutputDebugStringA', 'TerminateProcess', 'TerminateThread', 'LoadLibraryW', 'FreeLibrary', 'CreateThread', 'CloseHandle', 'CreateFileW', 'ReadFile', 'WriteFile', 'OutputDebugStringW', 'SetFilePointer', 'LockResource', 'LoadLibraryA', 'GetProcAddress', 'MultiByteToWideChar', 'SizeofResource', 'GetPrivateProfileStringW', 'LoadResource', 'FindResourceW', 'DeleteCriticalSection', 'DecodePointer', 'EnterCriticalSection', 'HeapSize', 'GetLastError', 'RaiseException', 'LeaveCriticalSection', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'HeapReAlloc', 'GetComboBoxInfo', 'DestroyCursor', 'CreateMenu', 'GetWindowRgn', 'HideCaret', 'InvertRect', 'CopyIcon', 'GetIconInfo', 'GetDoubleClickTime', 'LockWindowUpdate', 'BringWindowToTop', 'SetRect', 'SetCursorPos', 'LoadImageW', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'OpenClipboard', 'SetParent', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'MonitorFromPoint', 'UnionRect', 'EnableScrollBar', 'UpdateLayeredWindow', 'IsMenu', 'SetMenuDefaultItem', 'GetMenuDefaultItem', 'CreatePopupMenu', 'NotifyWinEvent', 'IntersectRect', 'SetRectEmpty', 'MessageBeep', 'GetAsyncKeyState', 'IsZoomed', 'TrackMouseEvent', 'CharUpperW', 'DestroyIcon', 'WindowFromPoint', 'ReleaseCapture', 'SetCapture', 'WaitMessage', 'KillTimer', 'SetTimer', 'DeleteMenu', 'CopyImage', 'RealChildWindowFromPoint', 'LoadCursorW', 'IsDialogMessageW', 'SetWindowTextW', 'CheckDlgButton', 'MoveWindow', 'ShowWindow', 'GetMonitorInfoW', 'MonitorFromWindow', 'WinHelpW', 'GetScrollInfo', 'SetScrollInfo', 'GetTopWindow', 'GetClassLongW', 'SetWindowLongW', 'EqualRect', 'AdjustWindowRectEx', 'GetWindowTextLengthW', 'GetWindowTextW', 'RemovePropW', 'GetPropW', 'SetPropW', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'TranslateMDISysAccel', 'GetForegroundWindow', 'TrackPopupMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'SetFocus', 'GetDlgCtrlID', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'CallWindowProcW', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'SystemParametersInfoW', 'CopyRect', 'GetMenuItemInfoW', 'DestroyMenu', 'GetClassNameW', 'InvalidateRect', 'UpdateWindow', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'TabbedTextOutW', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'SetActiveWindow', 'GetNextDlgTabItem', 'GetDlgItem', 'EndDialog', 'CreateDialogIndirectParamW', 'DestroyWindow', 'ValidateRect', 'GetKeyState', 'GetActiveWindow', 'PeekMessageW', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'MapDialogRect', 'GetWindow', 'SetWindowContextHelpId', 'SetWindowPos', 'DrawIconEx', 'IsRectEmpty', 'OffsetRect', 'InflateRect', 'FillRect', 'DrawFocusRect', 'GetSysColorBrush', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'GetNextDlgGroupItem', 'InvalidateRgn', 'MessageBoxW', 'GetDesktopWindow', 'EnableWindow', 'RedrawWindow', 'SetWindowRgn', 'DrawStateW', 'IsWindowVisible', 'DrawFrameControl', 'DrawEdge', 'RegisterWindowMessageW', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PtInRect', 'ScreenToClient', 'ClientToScreen', 'GetCursorPos', 'GetWindowRect', 'DefMDIChildProcW', 'DefFrameProcW', 'DrawMenuBar', 'MapVirtualKeyExW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'SubtractRect', 'GetKeyNameTextW', 'PostThreadMessageW', 'FrameRect', 'CreateAcceleratorTableW', 'MapVirtualKeyW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToUnicodeEx', 'CharUpperBuffW', 'IsWindow', 'GetLastActivePopup', 'RegisterClipboardFormatW', 'ReuseDDElParam', 'UnpackDDElParam', 'InsertMenuItemW', 'TranslateAcceleratorW', 'LoadAcceleratorsW', 'SetForegroundWindow', 'GetUpdateRect', 'SendMessageW', 'GetSystemMetrics', 'AppendMenuW', 'LoadIconW', 'GetClientRect', 'DrawIcon', 'IsIconic', 'GetSystemMenu', 'wsprintfA', 'GetMenuStringW', 'GetMenuState', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'InsertMenuW', 'RemoveMenu', 'GetFocus', 'CheckMenuItem', 'EnableMenuItem', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'SetMenuItemInfoW', 'GetParent', 'LoadBitmapW', 'PostMessageW', 'PostQuitMessage', 'ShowOwnedPopups', 'SetCursor', 'IsWindowEnabled', 'GetWindowLongW', 'GetWindowThreadProcessId', 'CopyAcceleratorTableW', 'CharNextW', 'SetClassLongW', 'DestroyAcceleratorTable', 'IsChild', 'ModifyMenuW', 'LoadMenuW', 'BitBlt', 'CreateCompatibleDC', 'CreatePen', 'CreatePatternBrush', 'DeleteObject', 'Escape', 'ExcludeClipRect', 'GetClipBox', 'GetObjectType', 'GetPixel', 'GetStockObject', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetTextAlign', 'GetObjectW', 'MoveToEx', 'TextOutW', 'SetViewportExtEx', 'Polygon', 'SetWindowExtEx', 'SetWindowOrgEx', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'CreateFontIndirectW', 'GetTextMetricsW', 'CreateCompatibleBitmap', 'CreateDIBSection', 'GetMapMode', 'SetRectRgn', 'DPtoLP', 'CreateDIBitmap', 'EnumFontFamiliesW', 'GetTextCharsetInfo', 'RealizePalette', 'SetPixel', 'StretchBlt', 'SetDIBColorTable', 'Rectangle', 'GetRgnBox', 'OffsetRgn', 'RoundRect', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'GetSystemPaletteEntries', 'ExtFloodFill', 'SetPaletteEntries', 'EnumFontFamiliesExW', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'PtInRegion', 'GetViewportOrgEx', 'LPtoDP', 'GetWindowOrgEx', 'SetPixelV', 'GetTextFaceW', 'CreatePolygonRgn', 'ExtTextOutW', 'PatBlt', 'GetTextExtentPoint32W', 'GetTextColor', 'GetBkColor', 'Ellipse', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreateHatchBrush', 'CreateEllipticRgn', 'CombineRgn', 'CreateBitmap', 'GetDeviceCaps', 'CreateRoundRectRgn', 'Polyline', 'CreateDCW', 'SetViewportOrgEx', 'DeleteDC', 'CopyMetaFileW', 'TransparentBlt', 'AlphaBlend', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryValueW', 'RegEnumKeyW', 'RegSetValueExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'SHGetFileInfoW', 'SHGetSpecialFolderPathW', 'SHGetFolderPathA', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderW', 'DragFinish', 'DragQueryFileW', 'SHAppBarMessage', 'ShellExecuteExW', 'SHGetDesktopFolder', 'InitCommonControlsEx', 'PathFindExtensionW', 'PathFindFileNameW', 'PathIsUNCW', 'PathStripToRootW', 'PathRemoveFileSpecW', 'PathFileExistsW', 'StrFormatKBSizeW', 'GetWindowTheme', 'GetThemeSysColor', 'OpenThemeData', 'IsThemeBackgroundPartiallyTransparent', 'GetThemePartSize', 'DrawThemeParentBackground', 'DrawThemeText', 'IsAppThemed', 'GetCurrentThemeName', 'GetThemeColor', 'DrawThemeBackground', 'CloseThemeData', 'OleUIBusyW', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdiplusShutdown', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipBitmapLockBits', 'GdipBitmapUnlockBits', 'GdipDeleteGraphics', 'GdipDrawImageI', 'GdipCreateBitmapFromHBITMAP', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'InternetCloseHandle', 'InternetReadFile', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetOpenW', 'WinHttpSetOption', 'WinHttpSendRequest', 'WinHttpWriteData', 'WinHttpConnect', 'WinHttpQueryHeaders', 'WinHttpSetStatusCallback', 'WinHttpReceiveResponse', 'WinHttpReadData', 'WinHttpSetCredentials', 'WinHttpAddRequestHeaders', 'WinHttpQueryAuthSchemes', 'WinHttpOpen', 'WinHttpCloseHandle', 'WinHttpCrackUrl', 'WinHttpOpenRequest', 'AMGetErrorTextW', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'LresultFromObject', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext', 'PlaySoundW'], ['SendMessageA', 'CreateWindowExA', 'GetWindowRect', 'DrawTextA', 'EndPaint', 'ClientToScreen', 'ScreenToClient', 'SetWindowPos', 'LoadBitmapA', 'CallWindowProcA', 'GetDlgItemTextA', 'PeekMessageA', 'CreateDialogParamA', 'SetWindowTextA', 'ShowWindow', 'GetCursorPos', 'GetForegroundWindow', 'MessageBoxA', 'BeginPaint', 'InternetOpenA', 'InternetOpenUrlA', 'InternetReadFile', 'InternetConnectA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'IsUserAnAdmin', 'OpenProcessToken', 'AllocateAndInitializeSid', 'GetTokenInformation', 'EqualSid', 'GetUserNameA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'FreeSid', 'strcat', 'strcpy', 'sprintf', 'strlen', 'fopen', 'fseek', 'ftell', 'fread', 'fwrite', 'fclose', 'memset', 'time', 'gmtime', 'memcpy', 'free', 'malloc', 'OpenProcess', 'OpenThread', 'GetTickCount', 'Sleep', 'VirtualProtect', 'ExitProcess', 'ExpandEnvironmentStringsA', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'FindFirstFileA', 'GetSystemWow64DirectoryA', 'GetVersionExA', 'GetCurrentProcessId', 'MultiByteToWideChar', 'WideCharToMultiByte', 'RtlZeroMemory', 'CreatePipe', 'GetStartupInfoA', 'CreateProcessA', 'PeekNamedPipe', 'ReadFile', 'CreateFileA', 'SetFilePointer', 'GetFileSize', 'CloseHandle', 'GetVolumeInformationA', 'GetComputerNameA', 'GetModuleHandleA', 'GetProcAddress'], ['QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'GetWindowsDirectoryA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedFlushSList', 'WaitNamedPipeA', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'SetFirmwareEnvironmentVariableW', 'RemoveDirectoryA', 'SetStdHandle', 'CreateSemaphoreW', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetConsoleProcessList', 'DebugBreak', 'GetCommState', 'InterlockedIncrement', 'MultiByteToWideChar', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapReAlloc', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoW', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'FreeConsole', 'GetModuleHandleA', 'MultiByteToWideChar', 'WriteConsoleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'GetClassInfoA', 'CallWindowProcA', 'SetWindowLongA', 'CheckDlgButton', 'GetActiveWindow', 'LoadCursorA', 'MessageBoxA', 'wsprintfA', 'GetDlgItemTextA', 'SelectObject', 'GetObjectA', 'GetStockObject', 'DeleteObject', 'SetBkMode', 'SetTextColor', 'CreateFontIndirectA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegDeleteKeyA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'CoInitialize', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'SearchPathA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['CloseHandle', 'CreateWaitableTimerW', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeConsole', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', '_strdup', '_stricoll', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_fpreset', '_fullpath', '_iob', '_isctype', '_onexit', '_pctype', '_rotl', '_setmode', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'malloc', 'mbstowcs', 'memcpy', 'memset', 'realloc', 'setlocale', 'signal', 'strcoll', 'strlen', 'tolower', 'vfprintf', 'wcstombs'], ['GetModuleHandleW', 'IsChild', 'RegisterEventSourceW', '_CorExeMain', 'SHChangeNotifyRegister', 'InitMUILanguage'], ['CreateProcessA', 'CreateDirectoryA', 'IsWow64Process', 'lstrcatA', 'GetModuleHandleA', 'lstrcpyA', 'lstrlenA', 'HeapAlloc', 'GetProcAddress', 'lstrcpynA', 'GetProcessHeap', 'WriteConsoleW', 'LocalFree', 'GetWindowsDirectoryA', 'CloseHandle', 'DeleteFileA', 'LoadLibraryA', 'GetFileAttributesA', 'GetLastError', 'CopyFileA', 'Sleep', 'LocalAlloc', 'WaitForSingleObject', 'GetVolumeInformationA', 'GetCurrentProcess', 'HeapFree', 'GetModuleFileNameA', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'ReadConsoleW', 'ReadFile', 'FlushFileBuffers', 'CreateFileW', 'GetStringTypeW', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'MultiByteToWideChar', 'LCMapStringW', 'MoveFileExW', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'CreateServiceA', 'RegCloseKey', 'StartServiceCtrlDispatcherA', 'GetCurrentHwProfileA', 'CloseServiceHandle', 'RegQueryValueExA', 'SetServiceStatus', 'RegisterServiceCtrlHandlerA', 'OpenSCManagerA', 'GetUserNameA', 'StartServiceA', 'RegOpenKeyExA', 'OpenServiceA', 'SHGetSpecialFolderPathA', 'SHGetFolderPathA', 'ShellExecuteA', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiEnumDeviceInfo'], ['CreateFileW', 'GetFileInformationByHandle', 'GetFileSize', 'SetEndOfFile', 'SetFilePointer', 'IsProcessorFeaturePresent', 'GetVersion', 'DeleteAtom', 'AddAtomW', 'FindAtomW', 'GetAtomNameW'], ['WaitForSingleObject', 'CreateThread', 'VirtualAlloc', 'FreeLibrary', 'VirtualQuery', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetLastError', 'GetModuleHandleW', 'GetStartupInfoW', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RaiseException', 'IsDebuggerPresent', 'GetCurrentThreadId', 'GetProcAddress', '__std_type_info_destroy_list', 'memset', '_except_handler4_common', '__vcrt_GetModuleFileNameW', '__vcrt_GetModuleHandleW', '__vcrt_LoadLibraryExW', 'memcpy', '__stdio_common_vsprintf_s', '__p___argc', '_configure_narrow_argv', '_initialize_narrow_environment', '_initialize_onexit_table', '_register_onexit_function', '_execute_onexit_table', '_crt_atexit', '_crt_at_quick_exit', '_controlfp_s', 'terminate', '_wmakepath_s', '_wsplitpath_s', 'strcpy_s', '_seh_filter_dll', '_set_fmode', '_exit', 'exit', '_initterm_e', '_initterm', '_get_initial_wide_environment', '_initialize_wide_environment', '_configure_wide_argv', '__setusermatherr', '_set_app_type', '_seh_filter_exe', '_CrtDbgReportW', '_CrtDbgReport', 'strcat_s', '__p__commode', '_set_new_mode', '_configthreadlocale', '_register_thread_local_exe_atexit_callback', '_c_exit', '_cexit', 'wcscpy_s', '__p___wargv'], ['GetCurrentProcess', 'SetMailslotInfo', 'SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'GlobalAlloc', 'GetSystemDirectoryW', 'LoadLibraryW', 'CreateEventA', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetBinaryTypeA', 'GetModuleFileNameW', 'InterlockedExchange', 'FreeLibrary', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'GetDiskFreeSpaceW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'TransmitCommChar', 'OpenJobObjectW', 'EnumCalendarInfoExA', 'SetFileAttributesW', 'FindResourceW', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateLoggedOnUser'], ['GetWindowTextA', 'GetWindowThreadProcessId', 'CreateWindowExA', 'LoadCursorA', 'LoadIconA', 'RegisterClassA', 'SendMessageA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow', 'GetMessageA', 'GetClassNameA', 'DispatchMessageA', 'DefWindowProcA', 'wsprintfA', 'WaitForSingleObject', 'WriteFile', 'CloseHandle', 'CreateDirectoryA', 'CreateEventA', 'CreateFileA', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'ExitThread', 'FileTimeToSystemTime', 'GetCommandLineW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetEnvironmentVariableA', 'GetLastError', 'GetLocalTime', 'GetModuleHandleA', 'GetTempPathA', 'GetVolumeInformationA', 'LocalAlloc', 'LocalFree', 'OpenProcess', 'RemoveDirectoryA', 'SetEvent', 'SetFilePointer', 'VirtualFree', 'SystemTimeToFileTime', 'VirtualAlloc', 'Sleep', 'CryptExportKey', 'CryptDestroyKey', 'CryptAcquireContextA', 'CryptReleaseContext', 'GetSidSubAuthority', 'GetTokenInformation', 'GetUserNameW', 'OpenProcessToken', 'CryptImportKey', 'htons', 'inet_addr', 'inet_ntoa', 'ioctlsocket', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket', 'connect', 'closesocket', 'WSAStartup', 'WSACleanup', 'CommandLineToArgvW', 'freeaddrinfo', 'WSAIoctl', 'getaddrinfo', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'GetUserNameExW', 'QueryContextAttributesA', 'AcquireCredentialsHandleA', 'DecryptMessage', 'DeleteSecurityContext', 'EncryptMessage', 'FreeContextBuffer', 'FreeCredentialsHandle', 'GetUserNameExA', 'InitSecurityInterfaceA', 'InitializeSecurityContextA', 'CryptStringToBinaryA', 'CryptDecodeObject', 'GetModuleFileNameExA'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'ShellExecuteA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'ObtainUserAgentString', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['LoadLibraryA', 'GetProcAddress', 'GetCommandLineA', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'WriteFile', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsDebuggerPresent', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['LoadLibraryA', 'GetModuleHandleA', 'InterlockedCompareExchange', 'OpenWaitableTimerW', 'CreateEventA', 'ReadConsoleInputW', 'WaitNamedPipeA', 'SetVolumeMountPointA', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesA', 'GetModuleFileNameW', 'IsBadCodePtr', 'LoadLibraryW', 'DeleteFileW', 'SearchPathA', 'VirtualAlloc', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasA', 'GetShortPathNameA', 'GetPrivateProfileStringW', 'PeekConsoleInputW', 'GlobalGetAtomNameA', 'GetProcAddress', 'GetUserDefaultLangID', 'GetConsoleAliasW', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameA', 'lstrcpynA', 'AddAtomA', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameA', 'FoldStringW', 'OpenWaitableTimerA', 'ResetEvent', 'GlobalWire', 'GetComputerNameA', 'GetVersionExW', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'SetCalendarInfoW', 'SetComputerNameA', 'GetFileAttributesA', 'GetVolumePathNameW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap'], ['SetFilePointer', 'ReadFile', 'CloseHandle', 'CreateThread', 'TerminateThread', 'WriteFile', 'GetPrivateProfileStringW', 'GetTempPathW', 'GetFileSize', 'CreatePipe', 'GetStartupInfoA', 'CreateProcessA', 'OpenProcess', 'TerminateProcess', 'QueryPerformanceCounter', 'GetLastError', 'CreateFileA', 'WideCharToMultiByte', 'Sleep', 'WriteConsoleW', 'FlushFileBuffers', 'SetStdHandle', 'CreateFileW', 'OutputDebugStringW', 'LCMapStringW', 'GetStringTypeW', 'HeapReAlloc', 'LoadLibraryExW', 'SetFilePointerEx', 'ReadConsoleW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'GetCurrentProcess', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'EncodePointer', 'DecodePointer', 'HeapFree', 'HeapAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'MultiByteToWideChar', 'HeapSize', 'RtlUnwindEx', 'GetProcessHeap', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThreadId', 'GetFileAttributesExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'GetModuleFileNameW', 'RtlPcToFileHeader', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetEndOfFile', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptGenRandom', 'SHGetSpecialFolderPathW', 'recv', 'closesocket', 'send', 'connect', 'inet_addr', 'htons', 'socket', 'WSAGetLastError', 'WSAStartup', 'WinHttpQueryHeaders', 'WinHttpReceiveResponse', 'WinHttpWriteData', 'WinHttpSendRequest', 'WinHttpAddRequestHeaders', 'WinHttpSetOption', 'WinHttpQueryDataAvailable', 'WinHttpSetCredentials', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpOpen', 'WinHttpGetIEProxyConfigForCurrentUser', 'WinHttpCloseHandle', 'WinHttpReadData', 'WinHttpQueryOption'], ['GetModuleHandleA', 'BeginPaint', 'RegQueryValueW', 'ImageList_SetBkColor', 'SHGetIconOverlayIndexA', '_CorExeMain'], ['WSACloseEvent', 'gethostname', 'WSAAddressToStringW', 'WSAStartup', 'WSAConnect', 'getsockname', 'setsockopt', 'sendto', 'WSACleanup', 'socket', 'gethostbyname', 'GetModuleHandleA', 'CreateFileA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'ReadFile', 'GetLocaleInfoW', 'GetFileSize', 'SetEndOfFile', 'CreateProcessW', 'CreateDirectoryW', 'VirtualFree', 'WriteFile', 'LoadLibraryW', 'Sleep', 'MulDiv', 'CreateFileW', 'GetProcAddress', 'VirtualAlloc', 'GetDiskFreeSpaceW', 'ResetEvent', 'LocalAlloc', 'RemoveDirectoryW', 'VirtualProtect', 'DeleteCriticalSection', 'GetCurrentThreadId', 'CloseHandle', 'DeleteFileW', 'LocalFree', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoW', 'GetCPInfo', 'GetLastError', 'RaiseException', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetACP', 'GetOEMCP', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'LoadLibraryA'], ['GetExitCodeThread', 'WritePrivateProfileStringW', 'LocalFlags', 'GetModuleHandleW'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'VirtualAlloc', 'GetBinaryTypeA', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['WSACleanup', 'waveOutGetVolume', 'GetFileVersionInfoSizeW', 'CreateStatusWindowW', 'GetModuleBaseNameW', 'GetVersionExW', 'GetLocalTime', 'GetMenuItemInfoW', 'CreateRoundRectRgn', 'GetSaveFileNameW', 'RegEnumKeyExW', 'SHGetDesktopFolder', 'OleUninitialize', 'SafeArrayLock', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['ReadFile', 'GetCurrentProcess', 'lstrcatA', 'GetModuleHandleA', 'SetCurrentDirectoryA', 'GetModuleHandleExA', 'CreateFileA', 'lstrcpyA', 'CloseHandle', 'GetFileSize', 'GetLastError', 'GetProcAddress', 'HeapFree', 'WriteFile', 'lstrlenA', 'lstrcpynA', 'WriteConsoleW', 'QueryPerformanceCounter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'SetFilePointerEx', 'GetFileType', 'HeapAlloc', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'GetConsoleMode', 'FlushFileBuffers', 'GetConsoleOutputCP', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'DecodePointer'], ['lstrcpyA', 'GlobalFree', 'CloseHandle', 'CreateThread', 'MoveFileExW', 'lstrcpyW', 'CreateFileMappingW', 'MapViewOfFile', 'lstrcmpW', 'GetShortPathNameA', 'GetModuleFileNameA', 'BeginUpdateResourceA', 'EraseTape', 'FindFirstVolumeW', 'GetProfileSectionW', 'GetCurrentProcess', 'lstrlenW', 'CancelDeviceWakeupRequest', 'TerminateProcess', 'GlobalUnWire', 'GetConsoleTitleW', 'EnumResourceNamesW', 'CreateMutexW', 'OpenFile', 'GetEnvironmentVariableA', 'EnumSystemCodePagesW', 'CancelThreadpoolIo', 'GlobalDeleteAtom', 'QueryMemoryResourceNotification', 'GetACP', 'OpenProcess', 'FindFirstVolumeMountPointA', 'FindActCtxSectionStringA', 'CreateToolhelp32Snapshot', 'CreateEventW', 'Sleep', 'GetLastError', 'GetConsoleAliasesLengthW', 'Process32NextW', 'CreateFileA', 'SetEvent', 'DefineDosDeviceA', 'DeleteFileW', 'GetCurrentThread', 'GetSystemDirectoryA', 'Process32FirstW', 'GlobalFindAtomW', 'QueueUserAPC', 'LocalSize', 'FindAtomA', 'ExitProcess', 'FreeLibrary', 'GetSystemTime', 'GlobalUnlock', 'GetDriveTypeW', 'FindFirstFileTransactedA', 'CreateTimerQueue', 'SizeofResource', 'GetCurrentDirectoryA', 'LockResource', 'LoadResource', 'FindResourceW', 'GetModuleHandleW', 'DecodePointer', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'GetStringTypeW', 'GlobalAlloc', 'ReadFile', 'lstrcatW', 'GetFileType', 'SetStdHandle', 'OutputDebugStringW', 'SetFileAttributesW', 'UnmapViewOfFile', 'CreateFileW', 'WaitForSingleObject', 'FindClose', 'lstrlenA', 'SetFilePointer', 'SetErrorMode', 'VirtualAlloc', 'LCMapStringW', 'WriteFile', 'FindNextFileW', 'VirtualFree', 'FindFirstFileW', 'GetSystemFileCacheSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'RaiseException', 'GetWindowTextW', 'wsprintfW', 'GetDC', 'EqualRect', 'wsprintfA', 'DestroyIcon', 'GetKeyboardLayout', 'EnumWindows', 'CharUpperBuffW', 'GetDesktopWindow', 'GetLastActivePopup', 'CreateDIBPatternBrush', 'GetTextCharset', 'OpenPrinterA', 'RegisterServiceCtrlHandlerW', 'CryptGenKey', 'CryptExportKey', 'CryptEncrypt', 'CryptAcquireContextW', 'SetServiceStatus', 'CryptReleaseContext', 'StartServiceCtrlDispatcherW', 'CryptDestroyKey', 'SHGetSpecialFolderPathW', 'ShellExecuteA', 'StrStrW', 'CryptStringToBinaryA', 'CryptImportPublicKeyInfoEx', 'CryptDecodeObjectEx', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum'], ['GetDefaultCommConfigW', 'GetProcessIoCounters', 'LoadResource', 'ClearCommError', 'SetConsoleTextAttribute', 'SetCommBreak', 'GetTickCount', 'GetPrivateProfileStringW', 'ReadConsoleW', 'GetWindowsDirectoryA', 'GetProcessTimes', 'WideCharToMultiByte', 'FindNextVolumeW', 'GetEnvironmentVariableA', 'CompareStringW', 'lstrlenW', 'IsBadStringPtrA', 'FindFirstFileExA', 'GetLastError', 'SetupComm', 'EnumSystemCodePagesW', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'SetFileApisToANSI', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'SetConsoleCursorInfo', 'CreateIoCompletionPort', 'SetCalendarInfoA', 'GetVolumeNameForVolumeMountPointW', 'ResetWriteWatch', 'OpenFileMappingA', 'GetProcAddress', 'HeapReAlloc', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ReadFile', 'SetEndOfFile', 'GetProcessHeap', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCursorInfo', 'RegQueryMultipleValuesW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', 'GetForegroundWindow', '__std_exception_destroy', '_exit', '_set_fmode', 'malloc', '__setusermatherr', '_configthreadlocale', 'VariantChangeTypeEx', 'RaiseException'], ['GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetLastError', 'GetProcAddress', 'HeapFree', 'HeapAlloc', 'GetModuleFileNameW', 'GetProcessHeap', 'VirtualAlloc', 'VirtualFree', 'LoadLibraryA', 'GetVersionExA', 'GetStartupInfoW', 'GetWindowRect', 'DbgPrint', 'PathFileExistsW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetInputState', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CreateMutexW', 'FindFirstFileW', 'GetDriveTypeW', 'SetEndOfFile', 'SetFilePointerEx', 'GetLogicalDrives', 'WriteFile', 'ReadFile', 'CreateFileW', 'GetLastError', 'FindClose', 'GetFileSize', 'HeapSetInformation', 'FindNextFileW', 'WinExec', 'CloseHandle', 'SetFilePointer', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'RtlUnwind', 'RemoveDirectoryW', 'GetComputerNameA', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'GetModuleFileNameW', 'HeapAlloc', 'EncodePointer', 'DecodePointer', 'MoveFileW', 'GetCommandLineA', 'GetStartupInfoW', 'RaiseException', 'FreeLibrary', 'InterlockedExchange', 'GetProcAddress', 'LoadLibraryW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'IsProcessorFeaturePresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'HeapCreate', 'Sleep', 'HeapSize', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetStdHandle', 'ShowWindow', 'CreateWindowExW', 'RegisterClassW', 'GetSystemMetrics', 'SetWindowLongW', 'LoadCursorW', 'GetStockObject', 'SHGetSpecialFolderPathW', 'SHEmptyRecycleBinW'], ['MessageBoxW', 'memset', '__current_exception_context', '__current_exception', '__C_specific_handler', '_crt_atexit', 'terminate', '_exit', 'exit', '_initterm_e', '_initterm', '_get_wide_winmain_command_line', '_initialize_wide_environment', '_configure_wide_argv', '_initialize_onexit_table', '_set_app_type', '_seh_filter_exe', '_register_thread_local_exe_atexit_callback', '_c_exit', '_cexit', '_register_onexit_function', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', '_set_new_mode', 'QueryPerformanceCounter', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'RtlCaptureContext', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'Sleep', 'CreateThread', 'GetSystemInfo', 'VirtualProtectFromApp', 'GetSystemMetrics', 'GetConsoleWindow', 'SendMessageA', '_CxxThrowException', '_register_onexit_function', '__stdio_common_vfprintf', '__setusermatherr', '_configthreadlocale', 'free', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'VariantChangeTypeEx', 'RaiseException'], ['GetOpenFileNameA', 'GetSaveFileNameA', 'GetStockObject', 'AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetFileSize', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'GlobalAlloc', 'GlobalFree', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReadFile', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'rand', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'srand', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'time', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DispatchMessageA', 'GetDlgItem', 'GetMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'LoadCursorA', 'LoadIconA', 'MessageBoxA', 'MoveWindow', 'PostMessageA', 'PostQuitMessage', 'RegisterClassExA', 'SendDlgItemMessageA', 'SetFocus', 'SetWindowTextA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fputwc', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memmove', 'printf', 'putc', 'putwc', 'rand', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'srand', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strncmp', 'strxfrm', 'time', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'RtlGetVersion', '_wtoi', 'memcpy', 'memset', 'strlen', 'MessageBoxA', 'WinHttpCloseHandle', 'WinHttpConnect', 'WinHttpOpen', 'WinHttpOpenRequest', 'WinHttpQueryAuthSchemes', 'WinHttpQueryDataAvailable', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpSetCredentials'], ['DeregisterEventSource', 'RegisterEventSourceW', 'ReportEventW', 'CryptAcquireContextW', 'CryptReleaseContext', 'CryptDestroyKey', 'CryptSetHashParam', 'CryptGetProvParam', 'CryptGetUserKey', 'CryptExportKey', 'CryptDecrypt', 'CryptCreateHash', 'CryptDestroyHash', 'CryptSignHashW', 'CryptEnumProvidersW', 'CryptGenRandom', 'CertCloseStore', 'CertEnumCertificatesInStore', 'CertFindCertificateInStore', 'CertDuplicateCertificateContext', 'CertFreeCertificateContext', 'CertGetCertificateContextProperty', 'CertOpenStore', 'GetUserObjectInformationW', 'MessageBoxW', 'GetProcessWindowStation', 'closesocket', 'WSASetLastError', 'send', 'recv', 'WSACleanup', 'ioctlsocket', 'shutdown', '__WSAFDIsSet', 'WSAGetLastError', 'GetTimeZoneInformation', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'PeekNamedPipe', 'GetFileInformationByHandle', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToTzSpecificLocalTime', 'GetDriveTypeW', 'FindFirstFileExW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'SetEndOfFile', 'CreateFileW', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetStringTypeW', 'LCMapStringW', 'CompareStringW', 'lstrcpynA', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'MultiByteToWideChar', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'ConvertFiberToThread', 'ConvertThreadToFiber', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetTickCount', 'GlobalMemoryStatus', 'GetEnvironmentVariableW', 'GetConsoleMode', 'ReadConsoleA', 'ReadConsoleW', 'SetConsoleMode', 'SetLastError', 'GetSystemTime', 'SystemTimeToFileTime', 'GetCommandLineA', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'ExitProcess', 'GetModuleHandleExW', 'AreFileApisANSI', 'SetConsoleCtrlHandler', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ReadFile', 'GetProcessHeap', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RtlUnwindEx', 'HeapSize', 'GetModuleFileNameW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleCP', 'SetFilePointerEx', 'SetStdHandle', 'OutputDebugStringW'], ['CreateThread', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'memset', '__C_specific_handler', '__std_type_info_destroy_list', '_configure_narrow_argv', '_initterm_e', '_initterm', 'system', '_initialize_narrow_environment', '_initialize_onexit_table', '_execute_onexit_table', '_seh_filter_dll', '_cexit'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA', 'mciSendCommandA', 'mciGetErrorStringA'], ['LoadLibraryA', 'GetProcAddress', 'WriteProcessMemory', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'memset', '_except_handler4_common', '__std_type_info_destroy_list', '_cexit', '_seh_filter_dll', '_initterm_e', '_initterm', '_initialize_narrow_environment', '_initialize_onexit_table', '_execute_onexit_table', '_configure_narrow_argv'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'WNetGetConnectionA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetEnvironmentVariableA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'waveOutWrite', 'waveOutUnprepareHeader', 'waveOutReset', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutGetDevCapsA', 'waveOutClose', 'waveInGetNumDevs', 'waveInGetDevCapsA'], ['GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'WideCharToMultiByte', 'Sleep', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'DecodePointer', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'CloseClipboard', 'GetClipboardData'], ['WriteConsoleOutputCharacterW', 'lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'GetBinaryTypeA', 'ReplaceFileW', 'CreateDirectoryA', 'GetConsoleAliasesW', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'FindFirstChangeNotificationW', 'MoveFileW', 'WriteProfileSectionA', 'SetStdHandle', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'VirtualProtect', 'SetCalendarInfoA', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'Sleep', 'GetCurrentProcessId', 'GetSystemInfo', 'VirtualProtectFromApp', 'GetSystemMetrics', 'GetConsoleWindow', 'FindWindowA', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'SetLastError', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwind', 'LeaveCriticalSection', 'DecodePointer', 'GetCommandLineA', 'CreateFileW', 'HeapFree', 'GetCPInfo', 'CompareStringW', 'WriteConsoleW', 'CloseHandle', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleFileNameExW', 'MultiByteToWideChar', 'VirtualAlloc', 'VirtualFree', 'WideCharToMultiByte', 'FreeLibrary', 'GetProcAddress', 'GetLastError', 'FindClose', 'CloseHandle', 'LoadLibraryA', 'GetModuleHandleW', 'RemoveDirectoryW', 'SetFileAttributesW', 'GetProcessHeap', 'FindFirstFileW', 'FindNextFileW', 'HeapFree', 'Process32First', 'Process32Next', 'LocalAlloc', 'LocalFree', 'OpenProcess', 'GetCurrentProcess', 'ExitProcess', 'TerminateProcess', 'SetErrorMode', 'Sleep', 'GetModuleFileNameW', 'CreateProcessW', 'CreateThread', 'TerminateThread', 'DuplicateHandle', 'WaitForSingleObjectEx', 'HeapAlloc', 'DeleteFileW', 'CreateToolhelp32Snapshot', 'RegDeleteValueW', 'RegSetValueExW', 'RegEnumValueW', 'RegOpenKeyExW', 'RegCloseKey', 'CoTaskMemFree'], ['GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'WriteFile', 'GetLastError', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'FlushFileBuffers', 'CloseHandle'], ['K32GetProcessImageFileNameA', 'Thread32First', 'lstrlenA', 'SuspendThread', 'ResumeThread', 'UnmapViewOfFile', 'GetModuleHandleA', 'CreateToolhelp32Snapshot', 'Sleep', 'GetModuleHandleExA', 'K32GetModuleFileNameExA', 'CopyFileA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'CloseHandle', 'Thread32Next', 'FreeConsole', 'K32GetModuleInformation', 'HeapAlloc', 'GetThreadContext', 'GetProcAddress', 'GetCurrentProcessId', 'GetModuleHandleW', 'FreeLibrary', 'CreateProcessA', 'K32EnumProcessModules', 'GetComputerNameExA', 'CreateDirectoryA', 'CreateFileMappingW', 'MapViewOfFile', 'SetThreadContext', 'OpenThread', 'CreateFileW', 'GetCurrentProcess', 'VirtualProtect', 'HeapCreate', 'K32GetModuleBaseNameA', 'GetModuleFileNameA', 'FlushFileBuffers', 'GetConsoleCP', 'WriteFile', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'SetStdHandle', 'GetProcessHeap', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwindEx', 'InterlockedFlushSList', 'RtlPcToFileHeader', 'RaiseException', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'GetACP', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetConsoleMode', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'WriteConsoleW', 'RegSetValueExA', 'RegOpenKeyExA', 'SystemFunction036', 'RegCloseKey', 'SHGetFolderPathA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'HttpAddRequestHeadersA', 'HttpOpenRequestA', 'HttpQueryInfoA', 'InternetQueryOptionW', 'InternetSetOptionW', 'InternetReadFile', 'InternetOpenA', 'GetUserNameExA'], ['GlobalUnlock', 'Heap32ListNext', 'HeapAlloc', 'HeapCreate', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LocalReAlloc', 'LocalSize', 'LockResource', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenEventW', 'OpenMutexW', 'OpenSemaphoreA', 'OpenThread', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'ReplaceFileA', 'RtlUnwind', 'GlobalReAlloc', 'SetConsoleCtrlHandler', 'SetConsoleMode', 'SetConsoleOutputCP', 'SetConsoleTextAttribute', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VerLanguageNameA', 'VirtualAlloc', 'VirtualFree', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', '_lwrite', 'lstrcmpA', 'lstrcmpW', 'lstrlenA', 'lstrlenW', 'GlobalLock', 'GlobalHandle', 'GlobalFree', 'GlobalFlags', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersionExA', 'GetUserDefaultUILanguage', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemTimeAsFileTime', 'GetSystemDefaultLCID', 'GetStringTypeW', 'GetStringTypeExW', 'GetStringTypeA', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetShortPathNameW', 'GetProcessHeaps', 'GetProcessHeap', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetExitCodeThread', 'GetEnvironmentStringsW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleFontSize', 'GetConsoleCP', 'GetComputerNameW', 'GetCommandLineW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FlushFileBuffers', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileA', 'CreateEventW', 'ConvertDefaultLocale', 'SetComputerNameExA', 'CloseHandle', 'LoadCursorFromFileA', 'GetClipboardData', 'InSendMessage', 'IsMenu', 'DestroyIcon', 'CharLowerW', 'GetMenuContextHelpId', 'VkKeyScanA', 'CountClipboardFormats', 'IsCharAlphaA', 'IsCharAlphaNumericA', 'GetProcessWindowStation', 'IsWindowUnicode', 'GetKeyboardLayout', 'VkKeyScanW', 'GetKBCodePage', 'GetClipboardOwner', 'GetAsyncKeyState', 'DestroyCursor', 'CloseClipboard', 'PaintDesktop', 'GetInputState', 'GetCursor', 'CharNextW', 'CloseDesktop', 'ReleaseCapture', 'EnumClipboardFormats', 'GetWindowContextHelpId', 'GetWindowTextLengthA', 'GetClipboardViewer', 'GetThreadDesktop', 'IsCharAlphaW', 'AnyPopup', 'CharUpperW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'GetQueueStatus', 'CloseWindow', 'GetDialogBaseUnits', 'OemKeyScan', 'CharNextA', 'LoadIconA', 'WindowFromDC', 'WinHelpW', 'ValidateRect', 'UnregisterDeviceNotification', 'UnregisterClassW', 'UnhookWindowsHookEx', 'UnhookWinEvent', 'TranslateMessage', 'TabbedTextOutW', 'SystemParametersInfoA', 'ShowWindow', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowLongW', 'SetPropW', 'SetMessageQueue', 'SetMenuItemBitmaps', 'SetMenu', 'SetForegroundWindow', 'SetCursor', 'SendMessageW', 'SendMessageA', 'RemovePropW', 'ReleaseDC', 'RegisterWindowMessageW', 'RegisterClassW', 'PtInRect', 'PostThreadMessageA', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'NotifyWinEvent', 'MsgWaitForMultipleObjectsEx', 'ModifyMenuW', 'MessageBoxW', 'MessageBoxA', 'MapWindowPoints', 'LoadStringW', 'LoadMenuW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'GrayStringW', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindow', 'GetTopWindow', 'GetSystemMetrics', 'GetSysColor', 'GetSubMenu', 'GetScrollPos', 'GetPropW', 'GetParent', 'GetMessageW', 'GetMessageTime', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetClassNameW', 'GetClassLongW', 'GetClassInfoW', 'GetClassInfoExW', 'GetCapture', 'GetActiveWindow', 'EnableWindow', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExW', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DefWindowProcW', 'DefWindowProcA', 'DdeQueryConvInfo', 'CreateWindowExW', 'CreateDialogParamW', 'CopyRect', 'ClientToScreen', 'CheckMenuItem', 'CharToOemW', 'CharLowerA', 'CallWindowProcW', 'CallNextHookEx', 'AdjustWindowRectEx', 'GetSysColorBrush', 'GetObjectType', 'GetColorSpace', 'AddFontResourceW', 'GetPolyFillMode', 'GetGraphicsMode', 'AbortPath', 'DeleteColorSpace', 'GetSystemPaletteUse', 'UnrealizeObject', 'StartDocW', 'GetDCPenColor', 'UpdateColors', 'CreatePatternBrush', 'StrokePath', 'CreateHalftonePalette', 'GdiFlush', 'GetBkColor', 'GetLayout', 'AbortDoc', 'GdiGetBatchLimit', 'FlattenPath', 'CreateSolidBrush', 'SwapBuffers', 'GetTextCharset', 'XLATEOBJ_cGetPalette', 'XFORMOBJ_iGetXform', 'CreateCompatibleDC', 'CopyMetaFileW', 'SetWindowExtEx', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetMapMode', 'SetBkColor', 'SelectObject', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'PtVisible', 'OffsetViewportOrgEx', 'GetTextColor', 'GetStockObject', 'GetICMProfileW', 'GetDeviceCaps', 'GetClipBox', 'GetCharABCWidthsA', 'GdiStartDocEMF', 'GdiDllInitialize', 'ExtTextOutW', 'Escape', 'EngReleaseSemaphore', 'EngQueryLocalTime', 'EngLoadModule', 'DeleteObject', 'DeleteDC', 'DPtoLP', 'CreateBitmap', 'TextOutW', 'RegSetValueExA', 'RegQueryValueW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCreateKeyExA', 'RegCloseKey', 'RegSetValueExW', 'ShellExecuteEx', 'ShellExecuteA', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHIsFileAvailableOffline', 'SHInvokePrinterCommandW', 'SHInvokePrinterCommandA', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderPathA', 'SHGetDesktopFolder', 'SHGetDataFromIDListA', 'SHFormatDrive', 'SHFileOperationA', 'SHFileOperation', 'SHEmptyRecycleBinA', 'SHCreateDirectoryExA', 'SHBrowseForFolderA', 'SHBindToParent', 'ExtractIconW', 'DragQueryPoint', 'DragQueryFileAorW', 'DragQueryFileA', 'DoEnvironmentSubstW', 'CommandLineToArgvW', 'PathFindFileNameW', 'StrChrIW', 'StrChrW', 'StrCmpNIW', 'StrRChrIA', 'StrRChrW', 'PathFindExtensionW'], ['MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetConsoleAliasesW', 'GetStdHandle', 'GetLastError', 'SetConsoleTextAttribute', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'AllocConsole', 'GetProcAddress', 'SetFilePointer', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ClientToScreen', 'ClearEventLogW'], ['CreateEventA', 'WinExec', 'ExitProcess', 'ActivateKeyboardLayout', 'AdjustWindowRectEx'], ['CreateProcessA', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoA', 'GetLastError', 'VirtualQuery', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'LoadLibraryA', 'InitializeCriticalSection', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyExA', 'ShellExecuteExA'], ['StrStrA', 'PathFindFileNameW', 'HeapFree', 'FlushFileBuffers', 'Sleep', 'GetEnvironmentVariableW', 'GetShortPathNameW', 'GetModuleFileNameW', 'TerminateProcess', 'CloseHandle', 'TerminateJobObject', 'GetLastError', 'CreateProcessW', 'SetHandleInformation', 'CreatePipe', 'AssignProcessToJobObject', 'CreateJobObjectW', 'DeleteFileW', 'ReadProcessMemory', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetFileAttributesW', 'WriteFile', 'WaitForSingleObject', 'WideCharToMultiByte', 'MultiByteToWideChar', 'PeekNamedPipe', 'GetExitCodeProcess', 'GetTickCount', 'CreateEventA', 'WaitForMultipleObjects', 'CancelIo', 'GetOverlappedResult', 'ResetEvent', 'CreateNamedPipeA', 'GetNamedPipeInfo', 'CreateFileA', 'DisconnectNamedPipe', 'ConnectNamedPipe', 'GetCurrentProcess', 'GetProcAddress', 'GetModuleHandleA', 'WriteConsoleW', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'RtlUnwind', 'GetStartupInfoW', 'HeapAlloc', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'ShellExecuteW'], ['SetDllDirectoryA', 'SetWindowLongW', 'CryptGenRandom', 'HttpOpenRequestA', 'URLDownloadToCacheFileA', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetProcessWindowStation', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CreateBitmap', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateFontA', 'CreateFontIndirectA', 'CreatePalette', 'CreatePen', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'ExcludeClipRect', 'ExtTextOutA', 'ExtTextOutW', 'GetBkMode', 'GetCharABCWidthsFloatA', 'GetCharWidth32A', 'GetCharWidth32W', 'GetCharWidthA', 'GetCharWidthW', 'GetCharacterPlacementW', 'GetDeviceCaps', 'GetObjectA', 'GetPixel', 'GetStockObject', 'GetTextExtentExPointA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'IntersectClipRect', 'LineTo', 'MoveToEx', 'Polyline', 'RealizePalette', 'Rectangle', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetMapMode', 'SetPaletteEntries', 'SetPixel', 'SetTextAlign', 'SetTextColor', 'TextOutA', 'TranslateCharsetInfo', 'UnrealizeObject', 'UpdateColors', 'AppendMenuA', 'BeginPaint', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'CloseClipboard', 'CreateCaret', 'CreateDialogParamA', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExA', 'CreateWindowExW', 'DefDlgProcA', 'DefWindowProcA', 'DefWindowProcW', 'DeleteMenu', 'DestroyCaret', 'DestroyIcon', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DispatchMessageW', 'DrawEdge', 'DrawIconEx', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'FindWindowA', 'FlashWindow', 'GetCapture', 'GetCaretBlinkTime', 'GetClientRect', 'GetClipboardData', 'GetClipboardOwner', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetDlgItem', 'GetDlgItemTextA', 'GetDoubleClickTime', 'GetForegroundWindow', 'GetKeyboardLayout', 'GetKeyboardState', 'GetMessageA', 'GetMessageTime', 'GetParent', 'GetQueueStatus', 'GetScrollInfo', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowTextLengthA', 'HideCaret', 'InsertMenuA', 'InvalidateRect', 'IsDialogMessageA', 'IsDlgButtonChecked', 'IsIconic', 'IsWindow', 'IsZoomed', 'KillTimer', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'MapDialogRect', 'MessageBeep', 'MessageBoxA', 'MessageBoxIndirectA', 'MoveWindow', 'MsgWaitForMultipleObjects', 'OpenClipboard', 'PeekMessageA', 'PeekMessageW', 'PostMessageA', 'PostQuitMessage', 'RegisterClassA', 'RegisterClassW', 'RegisterClipboardFormatA', 'RegisterWindowMessageA', 'ReleaseCapture', 'ReleaseDC', 'ScreenToClient', 'SendDlgItemMessageA', 'SendMessageA', 'SetActiveWindow', 'SetCapture', 'SetCaretPos', 'SetClassLongA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetFocus', 'SetForegroundWindow', 'SetKeyboardState', 'SetScrollInfo', 'SetTimer', 'SetWindowLongA', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextA', 'ShowCaret', 'ShowCursor', 'ShowWindow', 'SystemParametersInfoA', 'ToAsciiEx', 'TrackPopupMenu', 'TranslateMessage', 'UpdateWindow', 'ChooseColorA', 'ChooseFontA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'ShellExecuteA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'ImmGetCompositionStringW', 'ImmGetContext', 'ImmReleaseContext', 'ImmSetCompositionFontA', 'ImmSetCompositionWindow', 'AllocateAndInitializeSid', 'CopySid', 'EqualSid', 'GetLengthSid', 'GetUserNameA', 'InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorOwner', 'Beep', 'ClearCommBreak', 'CloseHandle', 'CompareStringW', 'ConnectNamedPipe', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeA', 'CreatePipe', 'CreateProcessA', 'CreateThread', 'DecodePointer', 'DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindFirstFileExA', 'FindNextFileA', 'FindResourceA', 'FlushFileBuffers', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommState', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetFileAttributesExA', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemTimeAsFileTime', 'GetTempPathA', 'GetThreadTimes', 'GetTickCount', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetVersionExA', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalMemoryStatus', 'GlobalUnlock', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockResource', 'MapViewOfFile', 'MulDiv', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringW', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'RtlUnwind', 'SetCommBreak', 'SetCommState', 'SetCommTimeouts', 'SetCurrentDirectoryA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFilePointerEx', 'SetHandleInformation', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WaitNamedPipeA', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile'], ['CreateFileA', 'CreateTimerQueue', 'GetFileSize', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'GetCurrentActCtx', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'FillConsoleOutputCharacterA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'GetACP', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'DeleteFileA', 'MultiByteToWideChar', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'ImpersonateSelf'], ['RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'SetFileSecurityA', 'ImageList_AddMasked', 'ImageList_Create', 'ImageList_Destroy', 'InitCommonControls', 'CreateBrushIndirect', 'CreateFontIndirectA', 'DeleteObject', 'GetDeviceCaps', 'SelectObject', 'SetBkColor', 'SetBkMode', 'SetTextColor', 'CloseHandle', 'CompareFileTime', 'CopyFileA', 'CreateDirectoryA', 'CreateFileA', 'CreateProcessA', 'CreateThread', 'DeleteFileA', 'ExitProcess', 'ExpandEnvironmentStringsA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetCurrentProcess', 'GetDiskFreeSpaceA', 'GetExitCodeProcess', 'GetFileAttributesA', 'GetFileSize', 'GetFullPathNameA', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetShortPathNameA', 'GetSystemDirectoryA', 'GetTempFileNameA', 'GetTempPathA', 'GetTickCount', 'GetVersion', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'LoadLibraryA', 'LoadLibraryExA', 'MoveFileA', 'MulDiv', 'MultiByteToWideChar', 'ReadFile', 'RemoveDirectoryA', 'SearchPathA', 'SetCurrentDirectoryA', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'SetFileTime', 'Sleep', 'WaitForSingleObject', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpynA', 'lstrlenA', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'SHBrowseForFolderA', 'SHFileOperationA', 'SHGetFileInfoA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'AppendMenuA', 'BeginPaint', 'CallWindowProcA', 'CharNextA', 'CharPrevA', 'CheckDlgButton', 'CloseClipboard', 'CreateDialogParamA', 'CreatePopupMenu', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawTextA', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'ExitWindowsEx', 'FillRect', 'FindWindowExA', 'GetClassInfoA', 'GetClientRect', 'GetDC', 'GetDlgItem', 'GetDlgItemTextA', 'GetMessagePos', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowRect', 'InvalidateRect', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'LoadBitmapA', 'LoadCursorA', 'LoadImageA', 'MessageBoxIndirectA', 'OpenClipboard', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassA', 'ScreenToClient', 'SendMessageA', 'SendMessageTimeoutA', 'SetClassLongA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetForegroundWindow', 'SetTimer', 'SetWindowLongA', 'SetWindowPos', 'SetWindowTextA', 'ShowWindow', 'SystemParametersInfoA', 'TrackPopupMenu', 'wsprintfA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'GetACP', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryW', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCurrentDirectoryW', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CreateFileW', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WindowFromDC', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LockWindowUpdate', 'LoadStringW', 'LoadMenuW', 'LoadKeyboardLayoutW', 'LoadImageW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsClipboardFormatAvailable', 'IsChild', 'IsCharAlphaNumericW', 'IsCharAlphaW', 'InvalidateRgn', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndMenu', 'EndDialog', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextA', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DestroyAcceleratorTable', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CreateAcceleratorTableW', 'CountClipboardFormats', 'CopyRect', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharUpperW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BringWindowToTop', 'BeginPaint', 'CharLowerBuffA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMetaFileBitsEx', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'ResizePalette', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetTextColor', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetNearestPaletteIndex', 'GetNearestColor', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'FillRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteMetaFile', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRoundRectRgn', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateMetaFileW', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'CloseMetaFile', 'Chord', 'BitBlt', 'ArcTo', 'Arc', 'AngleArc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WNetGetConnectionW', 'lstrlenA', 'lstrlenW', 'lstrcmpW', 'WritePrivateProfileStringW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObjectEx', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReleaseMutex', 'ReadFile', 'RaiseException', 'QueryDosDeviceW', 'IsDebuggerPresent', 'OpenMutexW', 'OpenFileMappingW', 'MultiByteToWideChar', 'MulDiv', 'MapViewOfFile', 'LockResource', 'LocalFree', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVolumeInformationW', 'GetVersionExW', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathW', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetMailslotInfo', 'GetLogicalDrives', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsW', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CopyFileW', 'CompareStringA', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'GetUserNameW', 'Sleep', 'CoCreateGuid', 'GetErrorInfo', 'SysFreeString', 'CreateILockBytesOnHGlobal', 'OleGetIconOfClass', 'OleSetMenuDescriptor', 'OleSetContainedObject', 'OleCreateFromFile', 'OleCreateLinkToFile', 'OleCreateStaticFromData', 'OleCreateLinkFromData', 'OleCreateFromData', 'OleCreate', 'OleUninitialize', 'OleInitialize', 'CreateBindCtx', 'StgCreateDocfileOnILockBytes', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateGuid', 'CLSIDFromProgID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'EnumDisplayMonitors', 'GetMonitorInfoW', 'MonitorFromPoint', 'MonitorFromRect', 'MonitorFromWindow', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW', 'ShellExecuteW', 'DragQueryFileW', 'DragFinish', 'DragAcceptFiles', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHGetMalloc', 'SHGetDesktopFolder', 'SHChangeNotify', 'SHBrowseForFolderW', 'ReplaceTextW', 'FindTextW', 'ChooseColorW', 'GetSaveFileNameW', 'GetOpenFileNameW', 'waveOutSetVolume', 'timeGetTime', 'sndPlaySoundW', 'PlaySoundW', 'mciSendCommandW', 'mciGetErrorStringW', 'OleUIObjectPropertiesW', 'OleUIPasteSpecialW', 'OleUIInsertObjectW', 'GetVersionExW', 'CreateMutexW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['GetModuleHandleA', 'GetDC', 'GetUserNameA', 'ShellAboutW', 'ImageList_SetBkColor', '_CorExeMain'], ['OpenEventA', 'SetThreadLocale', 'CopyFileA', 'LoadLibraryA', 'SetLocaleInfoW', 'OpenSemaphoreA', 'CloseHandle', 'ReadFile', 'GetFileSize', 'SetConsoleMode', 'CreateFileA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetModuleHandleW', 'GetCurrentProcessId', 'CompareStringW', 'GetFileAttributesW', 'CompareStringA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'SetConsoleCtrlHandler', 'GetLastError', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'HeapAlloc', 'RtlUnwind', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapFree', 'RaiseException', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'IsBadWritePtr', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'WriteFile', 'SetUnhandledExceptionFilter', 'IsBadReadPtr', 'IsBadCodePtr', 'SetEnvironmentVariableA', 'DestroyWindow', 'IsWindow', 'GetWindowTextLengthW', 'GetWindowTextA', 'IsZoomed', 'CreatePopupMenu', 'IsWindowVisible', 'FindWindowExA', 'CreateMenu', 'CreateWindowExW', 'FindWindowExW'], ['NtCreateTimer', 'NtAlertThread', 'NtSetTimer', 'RtlGetGroupSecurityDescriptor', 'RtlGetOwnerSecurityDescriptor', 'RtlGetSaclSecurityDescriptor', 'RtlLengthSecurityDescriptor', 'NtCreateSemaphore', 'NtQueryObject', 'NtClearEvent', 'NtCreateKeyedEvent', 'NtWaitForKeyedEvent', 'NtReleaseKeyedEvent', 'RtlGetVersion', 'NtDeviceIoControlFile', 'NtSetInformationObject', 'NtQueryFullAttributesFile', 'NtSuspendProcess', 'NtOpenFile', 'NtQuerySecurityObject', 'NtOpenSection', 'NtQueryDirectoryFile', 'NtCreateFile', 'NtCreateKey', 'NtWriteVirtualMemory', 'NtSetContextThread', 'NtOpenThreadToken', 'NtQueryDirectoryObject', 'NtFsControlFile', 'NtDuplicateObject', 'NtOpenDirectoryObject', 'NtReadVirtualMemory', 'RtlPrefixUnicodeString', 'NtSetSecurityObject', 'NtResumeProcess', 'NtOpenProcess', 'NtQuerySymbolicLinkObject', 'RtlConvertSidToUnicodeString', 'NtOpenKey', 'NtUnloadDriver', 'RtlEqualUnicodeString', 'NtOpenSymbolicLinkObject', 'NtGetContextThread', 'NtOpenThread', 'NtDeleteKey', 'NtQueryKey', 'NtQueryValueKey', 'LdrLoadDll', 'LdrUnloadDll', 'NtSuspendThread', 'LdrGetProcedureAddress', 'NtQueryInformationFile', 'NtFlushBuffersFile', 'NtLockFile', 'NtUnlockFile', 'RtlInterlockedPopEntrySList', 'RtlUnicodeToMultiByteSize', 'RtlMultiByteToUnicodeSize', 'RtlMultiByteToUnicodeN', 'RtlReAllocateHeap', 'RtlUpcaseUnicodeChar', 'RtlUnicodeToMultiByteN', 'RtlExpandEnvironmentStrings_U', 'NtResumeThread', 'RtlGetDaclSecurityDescriptor', 'RtlCreateUserProcess', 'RtlNtStatusToDosError', 'RtlCreateProcessParameters', 'NtFilterToken', 'RtlStringFromGUID', 'RtlFindMessage', 'NtQueryAttributesFile', 'RtlAddAce', 'RtlDestroyProcessParameters', 'RtlDosPathNameToNtPathName_U', 'RtlFreeUnicodeString', 'RtlGetAce', 'RtlRandomEx', 'NtDuplicateToken', 'RtlGetFullPathName_U', 'NtSetInformationToken', 'NtTerminateProcess', 'NtCreateDebugObject', 'RtlCreateUserThread', 'NtAllocateVirtualMemory', 'NtCreateJobObject', 'NtTerminateThread', 'NtDebugActiveProcess', 'NtPowerInformation', 'NtTestAlert', 'RtlTimeToSecondsSince1980', 'RtlEqualSid', 'RtlSecondsSince1980ToTime', 'NtIsProcessInJob', 'RtlFirstEntrySList', 'RtlCreateSecurityDescriptor', 'RtlCreateAcl', 'RtlAddAccessAllowedAce', 'NtAcceptConnectPort', 'NtReplyWaitReceivePort', 'NtCompleteConnectPort', 'RtlSetDaclSecurityDescriptor', 'RtlSubAuthoritySid', 'NtCreatePort', 'RtlInitializeSid', 'RtlLengthRequiredSid', 'NtQueryInformationProcess', 'NtRemoveProcessDebug', 'NtSetInformationThread', 'NtDelayExecution', 'NtClose', 'RtlValidRelativeSecurityDescriptor', 'RtlSelfRelativeToAbsoluteSD2', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'RtlUnwindEx', 'RtlValidSid', 'NtConnectPort', 'NtRequestWaitReplyPort', 'RtlAbsoluteToSelfRelativeSD', 'RtlLengthSid', 'NtCreateSection', 'NtQueryMutant', 'NtReleaseSemaphore', 'NtSetHighEventPair', 'NtQueryEvent', 'NtQuerySemaphore', 'NtCancelTimer', 'NtPulseEvent', 'NtSetLowEventPair', 'NtQueryTimer', 'NtResetEvent', 'RtlIpv6AddressToStringW', 'RtlIpv4AddressToStringW', 'RtlInterlockedFlushSList', 'RtlInitializeSListHead', 'RtlInterlockedPushEntrySList', 'RtlSecondsSince1970ToTime', 'RtlCreateHeap', 'RtlFreeHeap', 'RtlAllocateHeap', 'RtlDestroyHeap', 'NtQueryVirtualMemory', 'NtProtectVirtualMemory', 'NtSetSystemInformation', 'NtSetInformationFile', 'NtQueryInformationToken', 'NtOpenProcessToken', 'NtCreateMutant', 'NtAdjustPrivilegesToken', 'NtTerminateJobObject', 'NtAssignProcessToJobObject', 'NtQueryInformationJobObject', 'NtMapViewOfSection', 'NtQuerySection', 'RtlSetHeapInformation', 'RtlLeaveCriticalSection', 'RtlInitializeCriticalSection', 'RtlEnterCriticalSection', 'RtlQueryEnvironmentVariable_U', 'NtQueryPerformanceCounter', 'RtlDeleteCriticalSection', 'NtSetValueKey', 'RtlDetermineDosPathNameType_U', 'NtDeleteValueKey', 'NtAddAtom', 'RtlGUIDFromString', 'NtWaitForMultipleObjects', 'NtSetEvent', 'NtCreateEvent', 'NtReadFile', 'NtWriteFile', 'NtQueryInformationThread', 'NtQuerySystemInformation', 'NtWaitForSingleObject', 'RtlDoesFileExists_U', 'NtSetInformationDebugObject', 'NtUnmapViewOfSection', 'RtlRaiseStatus', 'NtSetInformationProcess', 'NtInitiatePowerAction', 'NtFreeVirtualMemory', 'WinStationSendMessageW', 'WinStationShadow', 'WinStationGetAllProcesses', 'WinStationFreeGAPMemory', 'WinStationRegisterConsoleNotification', 'WinStationQueryInformationW', 'WinStationFreeMemory', 'WinStationEnumerateW', 'WinStationReset', 'WinStationDisconnect', 'WinStationConnectW', 'ImageList_SetImageCount', 'PropertySheetW', 'InitCommonControlsEx', 'CreatePropertySheetPageW', 'ImageList_Remove', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_ReplaceIcon', 'ImageList_Replace', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetModuleHandleW', 'GetProcAddress', 'GetLastError', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'CreateProcessW', 'SetConsoleCtrlHandler', 'RaiseException', 'WriteConsoleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'TlsFree', 'LoadLibraryExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetStringTypeW', 'MultiByteToWideChar', 'GetACP', 'GetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetCurrentProcess', 'TerminateProcess', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'LCMapStringW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetCPInfo', 'IsValidCodePage', 'GetOEMCP', 'CloseHandle', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetProcessHeap', 'CreateFileW', 'GetConsoleCP', 'GlobalSize', 'LocalAlloc', 'GlobalUnlock', 'GlobalLock', 'FindResourceW', 'LoadResource', 'GlobalFree', 'GlobalAlloc', 'LockResource', 'SizeofResource', 'ExitThread', 'CreateRemoteThread', 'CreateThread', 'SetEndOfFile', 'GetDateFormatW', 'GetTimeFormatW', 'GetNumberFormatW', 'GetSystemDefaultLangID', 'GetSystemDirectoryW', 'GetLocaleInfoW', 'GetUserDefaultLangID', 'SearchPathW', 'LocalFree', 'SetLastError', 'GetComputerNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'FreeLibrary', 'LoadLibraryW', 'SetProcessShutdownParameters', 'ExitProcess', 'SetErrorMode', 'GetTickCount', 'AllocConsole', 'GetConsoleWindow', 'FreeConsole', 'GetConsoleMode', 'SetFilePointerEx', 'FlushFileBuffers', 'ReadFile', 'ReadConsoleW', 'HeapSize', 'HeapReAlloc', 'CreatePipe', 'GetActiveWindow', 'GetFocus', 'GetWindowTextLengthW', 'GetWindowLongW', 'DestroyMenu', 'TrackPopupMenu', 'CreatePopupMenu', 'InsertMenuItemW', 'EndPaint', 'BeginPaint', 'ReleaseCapture', 'PtInRect', 'SetScrollPos', 'ShowCaret', 'EnableScrollBar', 'SetCapture', 'DestroyCaret', 'DragDetect', 'GetClipboardData', 'CreateCaret', 'SetCaretPos', 'GetScrollInfo', 'RegisterClipboardFormatW', 'SetScrollInfo', 'GetDCEx', 'FrameRect', 'ScreenToClient', 'ScrollWindowEx', 'GetUpdateRect', 'GetMessageTime', 'DrawFocusRect', 'GetCapture', 'GetAsyncKeyState', 'InvalidateRgn', 'WaitMessage', 'MessageBeep', 'GetMessagePos', 'GetUpdateRgn', 'GetIconInfo', 'SetCursorPos', 'DialogBoxParamW', 'SetDlgItemTextW', 'EndDialog', 'LockWorkStation', 'ExitWindowsEx', 'SendMessageW', 'IsWindowVisible', 'EnableWindow', 'GetParent', 'GetDlgItem', 'SetPropW', 'IsWindowEnabled', 'RemovePropW', 'GetPropW', 'GetClassNameW', 'GetWindowThreadProcessId', 'IsIconic', 'InvalidateRect', 'SetForegroundWindow', 'GetClientRect', 'FindWindowW', 'SetLayeredWindowAttributes', 'MoveWindow', 'ClientToScreen', 'GetMonitorInfoW', 'GetWindowInfo', 'RedrawWindow', 'ShowWindow', 'GetSubMenu', 'GetWindowPlacement', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'GetMenuItemCount', 'MonitorFromRect', 'SetWindowPos', 'GetMenu', 'FindWindowExW', 'PostMessageW', 'GetKeyState', 'GetMenuItemInfoW', 'MapWindowPoints', 'SetWindowTextW', 'GetWindowRect', 'MapDialogRect', 'DestroyIcon', 'EnableMenuItem', 'BringWindowToTop', 'DeleteMenu', 'GetSystemMenu', 'SetCursor', 'LoadCursorW', 'CreateDialogParamW', 'GetSysColorBrush', 'GetSysColor', 'CopyIcon', 'SetDlgItemInt', 'SetTimer', 'DestroyWindow', 'ReleaseDC', 'SystemParametersInfoW', 'TranslateMessage', 'TranslateAcceleratorW', 'IsChild', 'IsDialogMessageW', 'DispatchMessageW', 'LoadAcceleratorsW', 'GetSystemMetrics', 'GetDC', 'SendMessageTimeoutW', 'GetMessageW', 'LoadImageW', 'UpdateWindow', 'PostQuitMessage', 'KillTimer', 'AppendMenuW', 'EndDeferWindowPos', 'DrawMenuBar', 'LoadIconW', 'SetFocus', 'SetMenuInfo', 'SetMenuItemInfoW', 'BeginDeferWindowPos', 'IsWindow', 'RegisterClassExW', 'CreateWindowExW', 'ShowWindowAsync', 'LoadMenuW', 'DefWindowProcW', 'DeferWindowPos', 'GetCursorPos', 'DrawIconEx', 'DrawTextW', 'TrackMouseEvent', 'IsHungAppWindow', 'SetActiveWindow', 'MonitorFromWindow', 'MonitorFromPoint', 'CallWindowProcW', 'GetForegroundWindow', 'GetDoubleClickTime', 'CreateIconIndirect', 'FillRect', 'GetDlgItemInt', 'GetGuiResources', 'OpenWindowStationW', 'GetProcessWindowStation', 'OpenDesktopW', 'GetUserObjectInformationW', 'CloseDesktop', 'CloseWindowStation', 'EnumDesktopsW', 'EnumWindows', 'GetGUIThreadInfo', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'GetWindowTextW', 'CreateDialogIndirectParamW', 'GetDesktopWindow', 'SetClipboardData', 'InternalGetWindowText', 'EmptyClipboard', 'CloseClipboard', 'OpenClipboard', 'GetDIBits', 'SaveDC', 'GetCharWidthW', 'Rectangle', 'SetBkMode', 'BitBlt', 'DeleteDC', 'CreateDIBSection', 'GetClipRgn', 'GetStockObject', 'Polyline', 'SetDCBrushColor', 'SetDCPenColor', 'SelectObject', 'GetTextMetricsW', 'GetTextExtentPoint32W', 'GetTextColor', 'DeleteObject', 'CreateFontW', 'GetDeviceCaps', 'SetTextColor', 'SetBkColor', 'GetObjectW', 'CreateFontIndirectW', 'TextOutW', 'SelectClipRgn', 'ExcludeClipRect', 'RestoreDC', 'CombineRgn', 'IntersectClipRect', 'GdiAlphaBlend', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SetBoundsRect', 'CreateRectRgn', 'GetOpenFileNameW', 'GetSaveFileNameW', 'ChooseFontW', 'ChooseColorW', 'SystemFunction036', 'GetSecurityInfo', 'SetSecurityInfo', 'LsaLookupPrivilegeValue', 'LsaLookupPrivilegeDisplayName', 'LsaLookupNames2', 'LsaOpenPolicy', 'LsaLookupPrivilegeName', 'EnumServicesStatusExW', 'QueryServiceConfigW', 'CreateProcessWithLogonW', 'LsaOpenAccount', 'LsaEnumeratePrivilegesOfAccount', 'LogonUserW', 'CreateProcessAsUserW', 'QueryServiceConfig2W', 'OpenServiceW', 'RegisterServiceCtrlHandlerExW', 'LsaEnumerateAccounts', 'LsaFreeMemory', 'SetServiceStatus', 'StartServiceCtrlDispatcherW', 'CreateServiceW', 'OpenSCManagerW', 'ChangeServiceConfig2W', 'ChangeServiceConfigW', 'LsaAddAccountRights', 'LsaClose', 'CloseServiceHandle', 'DeleteService', 'ControlService', 'StartServiceW', 'LsaLookupSids', 'DuplicateIcon', 'SHGetFileInfoW', 'ShellExecuteExW', 'SHGetFolderPathW', 'SHCreateDirectoryExW', 'Shell_NotifyIconW', 'ExtractIconExW', 'CoTaskMemFree', 'CoInitializeEx', 'CoCreateInstance', 'CoUninitialize', 'SysFreeString'], ['Sleep', 'CreateSemaphoreA', 'GetEnvironmentVariableA', 'GetModuleFileNameA', 'HeapAlloc', 'GetProcessHeap', 'VirtualProtect', 'SetStdHandle', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoA', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'GetStringTypeW', 'MultiByteToWideChar', 'InterlockedCompareExchange', 'InterlockedExchange', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetCPInfo', 'LCMapStringW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'SetFilePointer', 'FlushFileBuffers', 'CloseHandle', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'GetLocaleInfoW', 'CreateFileW', 'DhcpCApiInitialize', 'DhcpDeRegisterParamChange', 'DhcpRegisterParamChange', 'DhcpRemoveDNSRegistrations', 'DhcpCApiCleanup'], ['LoadLibraryExW', 'InterlockedIncrement', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'FindActCtxSectionStringA', 'GlobalAlloc', 'ReadConsoleInputA', 'LeaveCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'EnumSystemLocalesA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'GetDefaultCommConfigW', 'SetThreadContext', 'GetAtomNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'GetFileType', 'ContinueDebugEvent', 'UpdateResourceW', 'GetStringTypeW', 'GetConsoleTitleW', 'GetFileTime', 'GetVersionExA', 'GetVolumeNameForVolumeMountPointW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'SetStdHandle', 'GetLocaleInfoA', 'GetComputerNameA', 'EnterCriticalSection', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'IsValidLocale', 'GetStringTypeA', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'ScreenToClient', 'GetCharWidthFloatA', 'ClearEventLogW'], ['GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'VirtualAlloc', 'VirtualFree', 'MessageBoxA'], ['GetModuleHandleA', 'IsChild', 'GetUserNameW', '_CorExeMain', 'DSA_Create', 'SHChangeNotifyRegister'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'ReportEventA', 'RegisterEventSourceA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'DeregisterEventSource', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageExtraInfo', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'StartServiceCtrlDispatcherA', 'SetServiceStatus', 'RegisterServiceCtrlHandlerA', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'CreateServiceA', 'CloseServiceHandle', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetCurrentThreadId', 'WriteFile', 'SHGetFolderPathA', 'ShellExecuteA', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['ShellAboutA', '_CorExeMain', 'GetUserNameW', 'OffsetRect', 'GetModuleHandleA'], ['CertVerifyCertificateChainPolicy', 'CertFreeCertificateChain', 'CertFreeCertificateChainEngine', 'CertFreeCertificateContext', 'CertGetCertificateChain', 'CertCreateCertificateChainEngine', 'InitSecurityInterfaceA', 'SetEvent', 'TerminateThread', 'GetCurrentProcessId', 'CreateEventA', 'SetWaitableTimer', 'TlsSetValue', 'VerifyVersionInfoA', 'SetLastError', 'EnterCriticalSection', 'WaitForMultipleObjects', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'GetQueuedCompletionStatus', 'PostQueuedCompletionStatus', 'CreateEventW', 'FormatMessageW', 'TlsAlloc', 'QueueUserAPC', 'CreateWaitableTimerA', 'LocalFree', 'DeleteCriticalSection', 'VerSetConditionMask', 'WideCharToMultiByte', 'SleepEx', 'TlsGetValue', 'TlsFree', 'FormatMessageA', 'CreateIoCompletionPort', 'AreFileApisANSI', 'ReadFile', 'SetHandleInformation', 'CreateNamedPipeA', 'WriteFile', 'TerminateProcess', 'GetCurrentThreadId', 'GetSystemDirectoryW', 'MultiByteToWideChar', 'CreateFileA', 'GetEnvironmentStrings', 'CreateProcessA', 'FreeEnvironmentStringsA', 'GetExitCodeProcess', 'FileTimeToSystemTime', 'LoadLibraryW', 'GetLocalTime', 'GetProcAddress', 'SystemTimeToFileTime', 'GetModuleHandleW', 'GetCurrentProcess', 'Thread32Next', 'Thread32First', 'GetModuleHandleA', 'LoadLibraryA', 'VirtualProtectEx', 'OpenThread', 'GetModuleFileNameW', 'SetFilePointer', 'lstrlenA', 'CreateFileW', 'lstrcmpA', 'VirtualAlloc', 'HeapFree', 'GetLastError', 'HeapAlloc', 'GetProcessHeap', 'VirtualQuery', 'lstrcpyA', 'Wow64DisableWow64FsRedirection', 'ExpandEnvironmentStringsW', 'Wow64RevertWow64FsRedirection', 'GetWindowsDirectoryW', 'GetCurrentDirectoryW', 'GlobalMemoryStatusEx', 'VerifyVersionInfoW', 'GetFileAttributesW', 'Process32NextW', 'Process32FirstW', 'GetStdHandle', 'RtlCaptureContext', 'WaitForSingleObjectEx', 'ResetEvent', 'SetFilePointerEx', 'HeapSize', 'GetConsoleMode', 'Sleep', 'lstrcatA', 'GetFileAttributesA', 'OpenProcess', 'GetModuleFileNameA', 'CloseHandle', 'CreateToolhelp32Snapshot', 'WaitForSingleObject', 'GetCPInfo', 'GetConsoleCP', 'FlushFileBuffers', 'SetStdHandle', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'FindNextFileA', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'RaiseException', 'DecodePointer', 'EncodePointer', 'RtlPcToFileHeader', 'RtlVirtualUnwind', 'HeapReAlloc', 'FindFirstFileExA', 'FindClose', 'GetTimeZoneInformation', 'GetOEMCP', 'IsValidCodePage', 'OutputDebugStringW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'ExitProcess', 'GetACP', 'WriteConsoleW', 'GetFileType', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'FreeLibrary', 'RtlUnwindEx', 'InterlockedFlushSList', 'InitializeSListHead', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlLookupFunctionEntry', 'wsprintfW', 'FindWindowW', 'LookupPrivilegeValueA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetUserNameW', 'SHGetSpecialFolderPathA', 'SHGetSpecialFolderPathW', 'CoCreateInstance', 'CoInitializeSecurity', 'CoInitializeEx', 'CoSetProxyBlanket', 'CoUninitialize', 'SafeArrayGetUBound', 'SafeArrayGetElement', 'SafeArrayGetLBound', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SysFreeString', 'SysAllocString', 'VariantClear', 'VariantInit', 'WNetGetProviderNameW', 'GetAdaptersInfo', 'getaddrinfo', 'WSASocketW', 'WSASetLastError', 'select', 'WSAStartup', 'WSAGetLastError', 'setsockopt', 'connect', 'ioctlsocket', 'freeaddrinfo', 'getsockopt', 'WSASend', 'closesocket', 'WSACleanup', 'WSARecv', 'PathCombineW', 'StrCmpIW', 'StrChrA', 'StrStrIW', 'StrToIntA'], ['CM_Get_Res_Des_Data_Ex', 'CM_Get_Device_Interface_List_ExW', 'SetupUninstallNewlyCopiedInfs', 'GetForegroundWindow', 'GetLastInputInfo', 'RedrawWindow', 'GdiComment', 'DrawEscape', 'BuildExplicitAccessWithNameW', 'UuidEqual', 'GetComputerObjectNameW', 'QuerySecurityPackageInfoW', 'HttpEndRequestW', 'SCardForgetCardTypeW', 'GetPrinterDriverW', 'GetFileInformationByHandle', 'SetInformationJobObject', 'GetProcAddress', 'GetModuleHandleA'], ['WriteFile', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['GdipCreateBitmapFromHBITMAP', 'GdiplusStartup', 'GdipDisposeImage', 'GdipFree', 'GdipAlloc', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipSaveImageToFile', 'PathFindExtensionW', 'PathFindFileNameW', 'GetProcessImageFileNameW', 'EnumProcesses', 'isxdigit', 'wcsstr', 'wcsncmp', 'strstr', '_vsnwprintf', '_allshl', '_alldiv', '_aullshr', 'RtlUnwind', 'HeapFree', 'GetProcessHeap', 'WriteFile', 'GlobalAlloc', 'Sleep', 'GetFileAttributesW', 'CreateFileW', 'ExitThread', 'FlushFileBuffers', 'GetLastError', 'GlobalFree', 'FindClose', 'CloseHandle', 'DeleteFileW', 'SetFileAttributesW', 'GetVolumeInformationW', 'GlobalMemoryStatus', 'FreeLibrary', 'QueryPerformanceCounter', 'GetTickCount', 'LoadLibraryW', 'GetLogicalDriveStringsW', 'GetCurrentProcessId', 'GetEnvironmentVariableW', 'CreateProcessW', 'GetCurrentProcess', 'WaitForSingleObject', 'GetModuleHandleW', 'CopyFileW', 'GetModuleFileNameW', 'SetThreadPriority', 'SetLastError', 'LocalAlloc', 'GetShortPathNameW', 'LocalFree', 'CreateThread', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'MoveFileExW', 'HeapAlloc', 'GetDriveTypeW', 'SetFilePointer', 'GetFileSize', 'ReadFile', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetConsoleCP', 'GetVersionExW', 'GetConsoleMode', 'MultiByteToWideChar', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleW', 'IsProcessorFeaturePresent', 'HeapSize', 'SetEndOfFile', 'GetProcAddress', 'GetCurrentThreadId', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCPInfo', 'GetStdHandle', 'ExitProcess', 'HeapCreate', 'DecodePointer', 'EncodePointer', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'LoadStringW', 'GetDC', 'ReleaseDC', 'DrawTextA', 'SetBkMode', 'CreateFontW', 'GetStockObject', 'DeleteDC', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SetTextColor', 'RegQueryValueExA', 'AdjustTokenPrivileges', 'CheckTokenMembership', 'FreeSid', 'AllocateAndInitializeSid', 'LookupPrivilegeValueA', 'GetTokenInformation', 'GetSidSubAuthority', 'OpenProcessToken', 'RegSetValueExW', 'RegCloseKey', 'RegFlushKey', 'RegCreateKeyExA', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteExW', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoInitializeEx', 'WNetEnumResourceW', 'WNetOpenEnumW', 'WNetCloseEnum', 'InternetOpenA', 'InternetCrackUrlA', 'HttpSendRequestA', 'InternetSetOptionA', 'InternetCloseHandle'], ['RegCloseKey', 'MiniDumpWriteDump', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'GetModuleFileNameExA', 'ShowWindow', 'VerQueryValueA', 'InternetOpenA', 'WSAGetLastError'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'ShellExecuteA'], ['KeClearEvent', 'HalReturnToFirmware', 'FltParseFileNameInformation', 'IoAllocateMdl', 'MmProbeAndLockPages', 'MmMapLockedPagesSpecifyCache', 'MmUnlockPages', 'IoFreeMdl', 'ExAllocatePool', 'ExFreePool', 'NtQuerySystemInformation', 'HalMakeBeep'], ['MoveFileExA', 'AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'LocalHandle', 'GetMailslotInfo', 'GetBinaryTypeW', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'GetModuleHandleA', 'QueueUserWorkItem', 'VirtualProtect', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['GetModuleHandleA', 'FindWindowA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['ClusterRegCloseKey', 'GetProcessShutdownParameters', 'CreateTimerQueue', 'GetFileSize', 'GetPrivateProfileStructW', 'IsSystemResumeAutomatic', 'LocaleNameToLCID', 'LoadLibraryA', 'GetLastError', 'InterlockedExchange', 'FreeLibrary', 'RaiseException', 'GetProcAddress', 'LocalFree', 'LocalAlloc', 'CertGetCRLContextProperty', 'WSAIsBlocking', 'LoadCursorA', 'MprAdminPortDisconnect', 'SetupGetBackupInformationW', 'memcpy', 'PathUnExpandEnvStringsA'], ['CloseHandle', 'lstrcpynA', 'lstrlenA', 'LoadLibraryA', 'GetCurrentDirectoryW', 'GetFileAttributesExW', 'GetVolumeNameForVolumeMountPointA', 'UnlockFile', 'GetNumberFormatA', 'PeekConsoleInputW', 'SetConsoleCursorPosition', 'CreateFileW', 'GetStringTypeW', 'OutputDebugStringW', 'DebugActiveProcessStop', 'GetLastError', 'TerminateProcess', 'LocalAlloc', 'GlobalAlloc', 'WTSGetActiveConsoleSessionId', 'GetProcAddress', 'WriteConsoleW', 'SetFilePointerEx', 'SetStdHandle', 'HeapReAlloc', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LoadLibraryExW', 'EncodePointer', 'DecodePointer', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'RaiseException', 'RtlUnwind', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleExW', 'AreFileApisANSI', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'DeleteCriticalSection', 'ReadFile', 'ReadConsoleW', 'GetCurrentThreadId', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetEndOfFile', 'GetClassInfoW', 'PeekMessageA', 'SetMapperFlags', 'AddFontResourceExA', 'GetCharWidthA', 'GetBitmapBits', 'Ellipse', 'SetMapMode', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpOpenRequest', 'WinHttpSendRequest', 'WinHttpQueryHeaders', 'WinHttpReadData', 'GradientFill'], ['CloseHandle', 'CreateSemaphoreW', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentThreadId', 'GetLastError', 'GetStartupInfoA', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'RaiseException', 'ReleaseSemaphore', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_commode', '_errno', '_fmode', '_initterm', '_onexit', '_wcsicmp', '_wcsnicmp', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'fputs', 'fputwc', 'free', 'fwprintf', 'fwrite', 'localeconv', 'malloc', 'memcpy', 'memset', 'realloc', 'signal', 'strcat', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strstr', 'vfprintf', 'wcscat', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsstr'], ['GetModuleHandleA', 'ValidateRect', 'RegQueryValueA', 'ShellAboutW', '_CorExeMain', 'ImageList_SetBkColor'], ['CreateFileA', 'CreateTimerQueue', 'GetFileSize', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'GetCurrentActCtx', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'FillConsoleOutputCharacterA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'GetACP', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'WideCharToMultiByte', 'DeleteFileA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetStdHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'ImpersonateSelf'], ['FindCloseUrlCache', 'lstrlenW', 'GetEnvironmentStrings', 'ClearCommBreak', 'GetCurrentThread', 'GetOEMCP', 'GetCurrentThreadId', 'SwitchToThread', 'FindFirstVolumeMountPointW', 'GetModuleFileNameW', 'GetSystemDefaultUILanguage', 'GetBinaryTypeW', 'CompareStringA', 'GetTimeZoneInformation', 'GetLocaleInfoW', 'UnhandledExceptionFilter', 'GetACP', 'GetSystemRegistryQuota', 'CompareStringW', 'GetModuleHandleW', 'WriteFile', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'HeapReAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'GetVersionExA', 'GetStartupInfoA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetLastError', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringW', 'SetUnhandledExceptionFilter', 'GetModuleHandleA', 'ExitProcess', 'SetEnvironmentVariableA', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'HeapAlloc', 'OutputDebugStringA', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'Sleep', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryExA', 'ExtractIconA', 'FindNextPrinterChangeNotification', 'AreAnyAccessesGranted', 'GetFontUnicodeRanges', 'GetMapMode', 'LoadImageA', 'DefFrameProcA', 'GetFileVersionInfoA'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpW', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceW', 'VirtualAlloc', 'GetBinaryTypeW', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'CoInitialize', 'SHGetFileInfoA', 'MessageBoxA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', 'GetCursorPos', 'memset', '_initialize_onexit_table', '_libm_sse2_sqrt_precise', '_set_fmode', '_configthreadlocale', 'free', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'CreateDCW', 'UnregisterClassA', 'CoRevokeClassObject', 'SysFreeString', 'LresultFromObject', 'GetFileTitleW', 'DragAcceptFiles', 'PathFindExtensionW', 'RegQueryValueW'], ['SetVolumeLabelA', 'GetNumaNodeProcessorMask', 'SetPriorityClass', 'IsBadStringPtrW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetDefaultCommConfigW', 'GetProcessIoCounters', 'ClearCommError', 'SetConsoleScreenBufferSize', 'SetThreadExecutionState', 'FlushViewOfFile', 'FindFirstFileExW', 'ConnectNamedPipe', 'GetTickCount', 'GetWindowsDirectoryA', 'WideCharToMultiByte', 'LoadLibraryW', '_hread', 'SizeofResource', 'GetWriteWatch', 'GetEnvironmentVariableA', 'HeapReAlloc', 'DisconnectNamedPipe', 'GetLastError', 'GetProcAddress', 'GetLongPathNameA', 'EnumDateFormatsExA', 'EnumSystemCodePagesW', 'GetAtomNameA', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'GetExitCodeThread', 'SetFileApisToANSI', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'CreateIoCompletionPort', '_lread', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'FindNextVolumeA', 'CompareStringW', 'GetFullPathNameA', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'CloseHandle', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'LoadLibraryA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'HeapSize', 'GetCaretPos', 'RegisterEventSourceW'], ['VirtualFree', 'GetModuleFileNameW', 'CreateFileW', 'GetFileSize', 'ReadFile', 'CloseHandle', 'VirtualAlloc', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetCurrentProcess', 'TerminateProcess', 'HeapAlloc', 'HeapFree'], ['LoadLibraryA', 'HeapAlloc', 'GetProcAddress', 'GetProcessHeap', 'IsBadReadPtr', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'ZwQueryInformationFile', 'ZwProtectVirtualMemory', 'ZwAllocateVirtualMemory', 'RtlInitUnicodeString', 'ZwClose', 'ZwCreateFile', 'ZwReadFile', 'ZwWaitForSingleObject', 'ZwQuerySystemInformation', '_chkstk', 'RtlExpandEnvironmentStrings_U'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['WaitNamedPipeA', 'GetComputerNameW', 'InitializeCriticalSection', 'ReadConsoleInputA', 'GetCalendarInfoA', 'GetStringTypeExW', 'DnsHostnameToComputerNameW', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'GetStdHandle', 'GetProcAddress', 'InterlockedIncrement', 'LoadLibraryA', 'LocalAlloc', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'DebugSetProcessKillOnExit', 'LoadLibraryExA', 'GetConsoleTitleW', 'GetVersionExA', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetStringTypeA', 'UpdateResourceA', 'GetLocaleInfoA', 'VirtualAlloc', 'GetConsoleAliasesLengthW', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'CloseEventLog'], ['IsValidLanguageGroup', 'GetUserDefaultLangID', 'GetThreadLocale', 'VirtualProtectEx', 'OpenSemaphoreA', 'GetCurrentProcessId', 'LocalLock', 'GetModuleFileNameA', 'GetBinaryTypeA', 'lstrlenA', 'GlobalDeleteAtom', 'GetLocaleInfoA', 'GetCurrentProcess', 'GetCommandLineW', 'DefineDosDeviceW', 'LocalSize', 'GetProcessWorkingSetSize', 'WritePrivateProfileStructW', 'GetComputerNameA', 'GetCompressedFileSizeA', 'GetPrivateProfileSectionNamesA', 'GetCurrentThread', 'GetModuleHandleW', 'GetClusterResourceNetworkName', 'FindFirstFreeAce', 'tolower', 'strcspn', 'setvbuf', 'strcmp', 'GetPrinterDataExW', 'GetMapMode', 'GetDIBColorTable', 'GetTextFaceW', 'RemoveFontResourceA', 'GdiComment', 'GetTextExtentPoint32A', 'GetLayout', 'IsPwrHibernateAllowed', 'GetStandardColorSpaceProfileW', 'IsWindow', 'GetWindowTextW', 'GetClientRect', 'DeregisterShellHookWindow', 'GetClassInfoExW', 'DefWindowProcW', 'GetWindowPlacement', 'DialogBoxParamW', 'InsertMenuItemW', 'GetSysColor', 'DrawStateW', 'GetDC', 'MessageBoxIndirectA', 'GetClipboardFormatNameW', 'EnumWindows', 'GetKeyboardLayoutNameW', 'GetUserObjectInformationW', 'LoadMenuIndirectA', 'FindNextUrlCacheGroup', 'DeleteUrlCacheEntryW', 'GetMenuPosFromID', 'GetErrorInfo'], ['DeleteFileA', 'ExitProcess', 'FindResourceA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'LoadLibraryA', 'LoadResource', 'RtlMoveMemory', 'SizeofResource', 'VirtualAlloc', 'lstrcatA', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteFile'], ['GetMessageW', 'DdeQueryStringA', 'LoadCursorA', 'DrawStateW', 'CharToOemW', 'SetFocus', 'LoadBitmapW', 'DefWindowProcA', 'CreateWindowExA', 'MessageBoxExA', 'InvokeControlPanel', 'drvSetDefaultCommConfigA', 'CountryRunOnce', 'drvGetDefaultCommConfigA', 'NDdeShareGetInfoA', 'NDdeShareDelA', 'NDdeShareEnumA', 'NDdeShareSetInfoA', 'CreateEventA', 'FindFirstFileW', 'lstrcmpi', 'FindAtomW', 'DeleteFileW', 'lstrcmp', 'GetFileSize', 'GetLocalTime', 'LoadLibraryA', 'WaitForMultipleObjectsEx', 'GetTimeFormatA', 'ReadConsoleA', 'CreateFileMappingA', 'OpenJobObjectA', 'GetFileAttributesW', 'ReleaseMutex', 'VirtualFreeEx', 'TlsGetValue', 'FormatMessageA', 'GetVersionExW', 'GetProcAddress', 'GetOEMCP', 'InterlockedDecrement', 'WaitForSingleObject', 'CreateProcessA', 'ReleaseMutex', 'CompareStringW', 'GetLogicalDriveStringsW', 'GetShortPathNameW', 'GetModuleHandleA', 'CAEnumFirstCA', 'CACloseCA', 'CACloseCertType', 'CAEnumNextCA', 'CADeleteCA'], ['RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'ImageList_AddMasked', 'ImageList_Create', 'ImageList_Destroy', 'InitCommonControls', 'CreateBrushIndirect', 'CreateFontIndirectA', 'DeleteObject', 'GetDeviceCaps', 'SelectObject', 'SetBkColor', 'SetBkMode', 'SetTextColor', 'CloseHandle', 'CompareFileTime', 'CopyFileA', 'CreateDirectoryA', 'CreateFileA', 'CreateProcessA', 'CreateThread', 'DeleteFileA', 'ExitProcess', 'ExpandEnvironmentStringsA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetCurrentProcess', 'GetDiskFreeSpaceA', 'GetExitCodeProcess', 'GetFileAttributesA', 'GetFileSize', 'GetFullPathNameA', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetShortPathNameA', 'GetSystemDirectoryA', 'GetTempFileNameA', 'GetTempPathA', 'GetTickCount', 'GetVersion', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'LoadLibraryA', 'LoadLibraryExA', 'MoveFileA', 'MulDiv', 'MultiByteToWideChar', 'ReadFile', 'RemoveDirectoryA', 'SearchPathA', 'SetCurrentDirectoryA', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'SetFileTime', 'Sleep', 'WaitForSingleObject', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpynA', 'lstrlenA', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'SHBrowseForFolderA', 'SHFileOperationA', 'SHGetFileInfoA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'AppendMenuA', 'BeginPaint', 'CallWindowProcA', 'CharNextA', 'CharPrevA', 'CheckDlgButton', 'CloseClipboard', 'CreateDialogParamA', 'CreatePopupMenu', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawTextA', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'ExitWindowsEx', 'FillRect', 'FindWindowExA', 'GetClassInfoA', 'GetClientRect', 'GetDC', 'GetDlgItem', 'GetDlgItemTextA', 'GetMessagePos', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowRect', 'InvalidateRect', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'LoadBitmapA', 'LoadCursorA', 'LoadImageA', 'MessageBoxIndirectA', 'OpenClipboard', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassA', 'ScreenToClient', 'SendMessageA', 'SendMessageTimeoutA', 'SetClassLongA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetForegroundWindow', 'SetTimer', 'SetWindowLongA', 'SetWindowPos', 'SetWindowTextA', 'ShowWindow', 'SystemParametersInfoA', 'TrackPopupMenu', 'wsprintfA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'VerQueryValueA'], ['SysStringLen', 'SysAllocStringLen', 'VariantClear', 'DialogBoxParamW', 'SetWindowLongW', 'GetWindowLongW', 'GetDlgItem', 'LoadStringW', 'CharUpperW', 'DestroyWindow', 'EndDialog', 'PostMessageW', 'SetWindowTextW', 'ShowWindow', 'MessageBoxW', 'SendMessageW', 'LoadIconW', 'KillTimer', 'SetTimer', 'ShellExecuteExW', '_controlfp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '?terminate@@YAXXZ', '??1type_info@@UAE@XZ', '_except_handler3', '_beginthreadex', 'memset', 'wcsstr', 'free', 'malloc', 'memcpy', '_CxxThrowException', '_purecall', 'memmove', 'memcmp', 'wcscmp', '__CxxFrameHandler', 'WaitForSingleObject', 'GetStartupInfoA', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'lstrlenW', 'lstrcatW', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'WaitForMultipleObjects', 'GetFileInformationByHandle', 'GetStdHandle', 'GlobalMemoryStatus', 'GetSystemInfo', 'GetCurrentProcess', 'GetProcessAffinityMask', 'SetEndOfFile', 'WriteFile', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'GetFileAttributesW', 'GetModuleHandleA', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'GetCurrentThreadId', 'GetTickCount', 'GetCurrentProcessId', 'GetTempPathW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'SetLastError', 'DeleteFileW', 'CreateDirectoryW', 'GetModuleHandleW', 'GetProcAddress', 'RemoveDirectoryW', 'SetFileAttributesW', 'CreateFileW', 'SetFileTime', 'GetSystemDirectoryW', 'FormatMessageW', 'LocalFree', 'GetModuleFileNameW', 'LoadLibraryExW', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetVersionExW', 'GetCommandLineW', 'CreateProcessW', 'CloseHandle'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'GetCursorPos', 'memset', '_initialize_onexit_table', '_libm_sse2_sqrt_precise', '__p__commode', '_configthreadlocale', 'malloc', 'VariantChangeTypeEx', 'RaiseException'], ['SetLocaleInfoA', 'EnumCalendarInfoA', 'VirtualQuery', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'ReplaceFileW', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReleaseSemaphore', 'SetCurrentDirectoryA', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetupComm', 'CreateMutexW', 'GetConsoleAliasesW', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapFree', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetCaretPos', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['closesocket', 'gethostbyname', 'select', 'shutdown', 'WSAStartup', 'gethostname', 'WSAGetLastError', 'WSACleanup', 'ntohl', 'GetStdHandle', 'WriteConsoleA', 'WriteFile', 'FillConsoleOutputAttribute', 'GetFileType', 'SetConsoleCursorPosition', 'FormatMessageA', 'GetTickCount64', 'SetConsoleTextAttribute', 'GetModuleHandleA', 'GetCurrentProcess', 'LocalAlloc', 'GetLastError', 'GetCurrentThread', 'LocalFree', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetConsoleScreenBufferInfo', 'FillConsoleOutputCharacterA', 'GetProcessHeap', 'GetProcAddress', 'HeapAlloc', 'CloseHandle', 'LoadLibraryA', 'GetFileSizeEx', 'HeapSize', 'SetEndOfFile', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'IsProcessorFeaturePresent', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'CreateFileW', 'ReadConsoleW', 'GetConsoleMode', 'SetFilePointerEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'DecodePointer', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'ReadFile', 'GetConsoleCP', 'GetModuleFileNameW', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'HeapReAlloc', 'MessageBoxA', 'SetSecurityDescriptorDacl', 'AccessCheck', 'SetSecurityDescriptorOwner', 'AllocateAndInitializeSid', 'IsValidSecurityDescriptor', 'OpenProcessToken', 'FreeSid', 'InitializeSecurityDescriptor', 'InitializeAcl', 'DuplicateToken', 'GetLengthSid', 'AddAccessAllowedAce', 'OpenThreadToken', 'SetSecurityDescriptorGroup'], ['HeapAlloc', 'GetProcessHeap', 'GetCommandLineW', 'HeapFree', 'CloseHandle', 'CreateEventW', 'ExitThread', 'MsgWaitForMultipleObjectsEx', 'CommandLineToArgvW', 'SHGetFolderPathW'], ['GetCurrentThreadId', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'ExitProcess', 'RtlUnwind', 'RaiseException', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'FreeLibrary', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetProcessHeap', 'WriteFile', 'SizeofResource', 'SetFilePointer', 'LockResource', 'LoadResource', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetSystemDirectoryA', 'FreeResource', 'FindResourceA', 'CreateFileA', 'CloseHandle', 'SHGetFolderPathA', 'ShellExecuteA'], ['GetVersionExW', 'RegCloseKey', 'SHFileOperationW', 'inet_ntoa', 'GetAdaptersInfo', 'HttpSendRequestA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['CryptStringToBinaryA', 'GetStartupInfoW', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetTickCount', 'GetProcAddress', 'LoadLibraryW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'DefWindowProcW', 'LoadCursorW', 'RegisterClassExW', 'CreateWindowExW', 'AdjustWindowRectEx', 'UpdateWindow', 'GetActiveWindow', 'EnableWindow', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetParent', 'IsDialogMessageW', 'SetActiveWindow', 'TrackMouseEvent', 'BeginPaint', 'EndPaint', 'PostQuitMessage', 'GetClassNameW', 'DrawEdge', 'GetWindowTextW', 'DrawTextW', 'DrawFocusRect', 'TranslateAcceleratorW', 'GetWindowRect', 'GetSystemMetrics', 'SetWindowLongW', 'CallWindowProcW', 'SetWindowTextW', 'GetWindowTextLengthW', 'ScreenToClient', 'SetTimer', 'GetSystemMenu', 'EnableMenuItem', 'ShowWindow', 'SetFocus', 'FillRect', 'GetDC', 'ReleaseCapture', 'SetCapture', 'SendMessageW', 'InvalidateRect', 'GetClientRect', 'GetWindowLongW', 'wsprintfW', 'DestroyWindow', 'SetWindowPos', 'KillTimer', 'CreatePen', 'GetTextExtentPointW', 'SetTextColor', 'SelectObject', 'GetStockObject', 'DeleteObject', 'CreateHatchBrush', 'CreateSolidBrush', 'SetBkMode', 'Ellipse', 'MoveToEx', 'LineTo', 'Rectangle', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ', '?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z', '?uncaught_exception@std@@YA_NXZ', '??$?HDU?$char_traits@D@std@@V?$allocator@D@1@@std@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '_purecall', '__CxxFrameHandler3', '_controlfp_s', '_invoke_watson', '_except_handler4_common', '_decode_pointer', '_onexit', '_lock', '__dllonexit', '_unlock', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '?terminate@@YAXXZ', '_crt_debugger_hook', '__set_app_type', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '_wcmdln', 'exit', '_XcptFilter', '_exit', '_cexit', '__wgetmainargs', '_amsg_exit', 'memset', 'wcsstr', 'malloc', 'free', '??_V@YAXPAX@Z', 'isupper', '??3@YAXPAX@Z', '??2@YAPAXI@Z'], ['GetModuleHandleA', 'GetDlgItem', 'GetUserNameA', '_CorExeMain', 'SHGetIconOverlayIndexA', 'ImageList_SetBkColor'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatusEx', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateWaitableTimerExW', 'CreateThread', 'CreateIoCompletionPort', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['InitCommonControlsEx', 'SHAutoComplete', 'DeleteFileW', 'DeleteFileA', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetTickCount', 'WideCharToMultiByte', 'GlobalAlloc', 'GetVersionExW', 'GetFullPathNameA', 'GetFullPathNameW', 'MultiByteToWideChar', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetLocaleInfoW', 'SetFileAttributesW', 'DosDateTimeToFileTime', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'SetEnvironmentVariableW', 'OpenFileMappingW', 'GetProcAddress', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemTime', 'CompareStringW', 'IsDBCSLeadByte', 'GetCPInfo', 'SetCurrentDirectoryW', 'LoadLibraryW', 'FreeLibrary', 'SetFileAttributesA', 'GetFileAttributesW', 'GetFileAttributesA', 'WriteFile', 'GetStdHandle', 'ReadFile', 'CreateFileW', 'GetCurrentDirectoryW', 'CreateFileA', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'MoveFileW', 'SetFileTime', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'GetNumberFormatW', 'wvsprintfA', 'wvsprintfW', 'ReleaseDC', 'GetDC', 'SendMessageW', 'SetDlgItemTextW', 'SetFocus', 'EndDialog', 'DestroyIcon', 'SendDlgItemMessageW', 'GetDlgItemTextW', 'GetClassNameW', 'DialogBoxParamW', 'IsWindowVisible', 'WaitForInputIdle', 'SetForegroundWindow', 'GetSysColor', 'PostMessageW', 'LoadBitmapW', 'LoadIconW', 'CharToOemA', 'OemToCharA', 'GetParent', 'MapWindowPoints', 'CreateWindowExW', 'UpdateWindow', 'LoadCursorW', 'RegisterClassExW', 'SetWindowLongW', 'GetWindowLongW', 'DefWindowProcW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'DestroyWindow', 'CopyRect', 'IsWindow', 'CharToOemBuffW', 'MessageBoxW', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'OemToCharBuffA', 'CharUpperA', 'CharToOemBuffA', 'LoadStringW', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'CharUpperW', 'FindWindowExW', 'GetWindowRect', 'GetClientRect', 'GetDeviceCaps', 'GetObjectW', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'GetOpenFileNameW', 'CommDlgExtendedError', 'GetSaveFileNameW', 'RegOpenKeyExW', 'LookupPrivilegeValueW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'SetFileSecurityA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'SHChangeNotify', 'ShellExecuteExW', 'SHFileOperationW', 'SHGetFileInfoW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CLSIDFromString', 'VariantInit'], ['GetModuleFileNameW', 'Sleep', 'GetLastError', 'GetFileAttributesA', 'DeleteFileW', 'CloseHandle', 'GetCurrentDirectoryW', 'GetProcAddress', 'CreateProcessW', 'GetModuleHandleW', 'CopyFileW', 'WinExec', 'WriteConsoleW', 'CreateFileW', 'HeapSize', 'ReadConsoleW', 'GetProcessHeap', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'MultiByteToWideChar', 'GetStringTypeW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'RtlUnwind', 'SHCreateItemFromParsingName', 'SHGetKnownFolderPath', 'CoInitializeEx', 'CoUninitialize', 'CoGetObject', 'CoInitializeSecurity', 'CoTaskMemFree', 'SysAllocString', 'SysFreeString'], ['SymSetSearchPathW', 'SymGetSearchPathW', 'SymGetModuleBase64', 'SymFunctionTableAccess64', 'StackWalk64', 'SymSetOptions', 'SymFromAddr', 'SymInitialize', 'SymGetLineFromAddr64', 'SymCleanup', 'UnDecorateSymbolName', 'getservbyname', 'getservbyport', 'gethostbyaddr', 'inet_ntoa', 'inet_addr', 'WSACleanup', 'gethostbyname', 'WSASetLastError', 'ntohs', 'htonl', 'ntohl', 'closesocket', 'getsockopt', 'WSAStartup', 'recv', 'gethostname', '__WSAFDIsSet', 'accept', 'sendto', 'recvfrom', 'send', 'WSAIoctl', 'FreeAddrInfoW', 'GetAddrInfoW', 'GetNameInfoW', 'select', 'WSASocketW', 'WSASend', 'WSAGetOverlappedResult', 'WSADuplicateSocketW', 'shutdown', 'listen', 'htons', 'WSASendTo', 'WSARecvFrom', 'WSARecv', 'setsockopt', 'getsockname', 'getpeername', 'ioctlsocket', 'connect', 'bind', 'WSAGetLastError', 'GetHostNameW', 'socket', 'GetAdaptersAddresses', 'ConvertInterfaceIndexToLuid', 'ConvertInterfaceLuidToNameW', 'GetModuleFileNameExW', 'GetProcessMemoryInfo', 'EnumProcessModules', 'GetUserProfileDirectoryW', 'CryptReleaseContext', 'RegOpenKeyExW', 'GetUserNameW', 'OpenProcessToken', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegEnumKeyExW', 'EventWriteTransfer', 'EventUnregister', 'EventRegister', 'ReportEventW', 'RegisterEventSourceW', 'DeregisterEventSource', 'CryptEnumProvidersW', 'CryptSignHashW', 'CryptDestroyHash', 'CryptCreateHash', 'CryptDecrypt', 'CryptExportKey', 'CryptGetUserKey', 'CryptGetProvParam', 'CryptSetHashParam', 'CryptDestroyKey', 'RegQueryInfoKeyW', 'CryptAcquireContextW', 'SetSecurityInfo', 'GetSecurityInfo', 'SetEntriesInAclA', 'FreeSid', 'AllocateAndInitializeSid', 'SystemFunction036', 'RegGetValueW', 'RegQueryValueExW', 'RegCloseKey', 'GetProcessWindowStation', 'MapVirtualKeyW', 'DispatchMessageA', 'TranslateMessage', 'MessageBoxW', 'GetSystemMetrics', 'GetMessageA', 'GetUserObjectInformationW', 'CertOpenStore', 'CertCloseStore', 'CertEnumCertificatesInStore', 'CertFindCertificateInStore', 'CertDuplicateCertificateContext', 'CertFreeCertificateContext', 'CertGetCertificateContextProperty', 'BCryptGenRandom', 'InitializeCriticalSectionAndSpinCount', 'WaitForSingleObjectEx', 'CreateEventW', 'RtlCaptureContext', 'GetCPInfo', 'GetStringTypeW', 'RtlLookupFunctionEntry', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeSListHead', 'InterlockedPushEntrySList', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'ExitProcess', 'SetStdHandle', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetFileAttributesExW', 'SetFileAttributesW', 'GetConsoleOutputCP', 'GetDriveTypeW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapReAlloc', 'SetEndOfFile', 'OutputDebugStringW', 'HeapSize', 'FindFirstFileExW', 'IsValidCodePage', 'GetOEMCP', 'GetProcessHeap', 'TryEnterCriticalSection', 'VerSetConditionMask', 'VerifyVersionInfoW', 'GetEnvironmentVariableA', 'WideCharToMultiByte', 'GetEnvironmentVariableW', 'GetLastError', 'GetLocalTime', 'SetConsoleCtrlHandler', 'CloseHandle', 'WaitForSingleObject', 'CreateRemoteThread', 'OpenProcess', 'OpenFileMappingW', 'MapViewOfFile', 'UnmapViewOfFile', 'GetFileType', 'RemoveVectoredExceptionHandler', 'RtlCaptureStackBackTrace', 'GetStdHandle', 'GetCurrentProcess', 'GetCurrentProcessId', 'VirtualQuery', 'MultiByteToWideChar', 'WriteConsoleW', 'LocalFree', 'FormatMessageW', 'InitOnceExecuteOnce', 'CreateEventA', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'GetTempPathW', 'SetLastError', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'Sleep', 'GetProcessTimes', 'SetPriorityClass', 'GetPriorityClass', 'GlobalMemoryStatusEx', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetVersionExW', 'GetModuleFileNameW', 'GetProcessIoCounters', 'VerifyVersionInfoA', 'FileTimeToSystemTime', 'GetConsoleTitleW', 'SetConsoleTitleW', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'SetHandleInformation', 'CreateIoCompletionPort', 'SetFileCompletionNotificationModes', 'CreateFileA', 'CreateFileW', 'DuplicateHandle', 'PostQueuedCompletionStatus', 'SetEvent', 'ResetEvent', 'QueueUserWorkItem', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleMode', 'SetConsoleMode', 'GetNumberOfConsoleInputEvents', 'ReadConsoleInputW', 'ReadConsoleW', 'FillConsoleOutputCharacterW', 'FillConsoleOutputAttribute', 'GetConsoleCursorInfo', 'SetConsoleCursorInfo', 'GetConsoleScreenBufferInfo', 'SetConsoleCursorPosition', 'SetConsoleTextAttribute', 'WriteConsoleInputW', 'CancelIoEx', 'CancelIo', 'SwitchToThread', 'GetStartupInfoW', 'GetFileAttributesW', 'TerminateProcess', 'GetExitCodeProcess', 'CreateProcessW', 'UnregisterWaitEx', 'CreateJobObjectW', 'AssignProcessToJobObject', 'SetInformationJobObject', 'LCMapStringW', 'RtlUnwind', 'DeleteCriticalSection', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableCS', 'ReleaseSemaphore', 'CreateSemaphoreW', 'ResumeThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetNativeSystemInfo', 'CreateSemaphoreA', 'FlushFileBuffers', 'ReadFile', 'WriteFile', 'ConnectNamedPipe', 'SetNamedPipeHandleState', 'PeekNamedPipe', 'CreateNamedPipeW', 'WaitNamedPipeW', 'CancelSynchronousIo', 'GetCurrentThread', 'CreateNamedPipeA', 'GetNamedPipeHandleStateA', 'GetLongPathNameW', 'GetShortPathNameW', 'ReadDirectoryChangesW', 'CreateDirectoryW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetDiskFreeSpaceW', 'GetFileInformationByHandle', 'GetFileSizeEx', 'GetFinalPathNameByHandleW', 'GetFullPathNameW', 'RemoveDirectoryW', 'SetFilePointerEx', 'SetFileTime', 'DeviceIoControl', 'FlushViewOfFile', 'CreateFileMappingA', 'ReOpenFile', 'CopyFileW', 'MoveFileExW', 'CreateHardLinkW', 'GetFileInformationByHandleEx', 'CreateSymbolicLinkW', 'DebugBreak', 'FormatMessageA', 'FreeLibrary', 'LoadLibraryExW', 'SetErrorMode', 'GetQueuedCompletionStatus', 'GetCurrentThreadId', 'ReadConsoleA', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'VirtualLock', 'GetACP', 'GetModuleHandleW', 'LoadLibraryW', 'GetSystemTime', 'SystemTimeToFileTime', 'GetSystemDirectoryA', 'SwitchToFiber', 'DeleteFiber', 'CreateFiberEx', 'ConvertFiberToThread', 'ConvertThreadToFiberEx', 'RtlVirtualUnwind', 'GetModuleHandleExW', 'AddVectoredExceptionHandler', 'RtlAddFunctionTable', 'RtlDeleteFunctionTable', 'IsDebuggerPresent', 'OutputDebugStringA', 'OpenThread', 'SuspendThread', 'GetThreadContext', 'GetLocaleInfoEx', 'GetNumberFormatEx', 'GetCurrencyFormatEx', 'ResolveLocaleName', 'SystemTimeToTzSpecificLocalTime', 'GetTimeZoneInformation', 'GetTimeFormatEx', 'GetDateFormatEx', 'GetVersionExA', 'ExpandEnvironmentStringsA', 'GetWindowsDirectoryA', 'GetTickCount', 'GetDynamicTimeZoneInformation', 'GetGeoInfoW', 'GetUserGeoID', 'CreateFileMappingW', 'LocaleNameToLCID', 'LCIDToLocaleName', 'TryAcquireSRWLockExclusive', 'TryAcquireSRWLockShared', 'DeleteFileA', 'GetFileSize', 'GetTempPathA', 'GetTempFileNameA', 'GetThreadTimes', 'SetThreadPriority', 'GetThreadPriority', 'QueryThreadCycleTime', 'SleepConditionVariableSRW', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionEx', 'InitOnceBeginInitialize', 'InitOnceComplete', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'timeGetTime'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'VariantCopy', 'CharNextW', 'InternetOpenW'], ['DeleteFileA', 'VirtualProtect', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'WideCharToMultiByte', 'CloseHandle', 'DeviceIoControl', 'Sleep', 'FlushFileBuffers', 'GetCurrentDirectoryA', 'LoadLibraryA', 'GetLocalTime', 'GetProcAddress', 'WriteFile', 'GetCurrentProcess', 'MultiByteToWideChar', 'CreateFileA', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetModuleHandleExW', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapReAlloc', 'SetStdHandle', 'WriteConsoleW', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'CreateFileW', 'GetSystemMetrics', 'MessageBoxA', 'MapVirtualKeyW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegCreateKeyA', 'RegDeleteKeyA', 'RegSetValueExA', 'OpenProcessToken', 'RegCloseKey'], ['IsDebuggerPresent', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['InitAtomTable', 'FindNextVolumeA', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxW', 'GetConsoleAliasW', '_lwrite', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameW', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'GetStringTypeExA', 'EnumSystemLocalesA', 'CallNamedPipeW', 'FindActCtxSectionStringW', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetConsoleAliasExesLengthW', 'GetTickCount', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'GetSystemDefaultLCID', 'GetACP', 'GetUserDefaultLangID', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLangID', 'LoadLibraryW', 'GetModuleFileNameW', 'GetStringTypeExW', 'GetLocalTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetLastError', 'GetCommandLineW', 'lstrlenW', 'GlobalFree', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStartupInfoW', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetTempPathA', 'GetTempFileNameA', 'QueryPerformanceCounter', 'VirtualProtect', 'GetUserDefaultUILanguage', 'GetCalendarInfoW', 'EnumSystemLocalesW', 'EnumUILanguagesW', 'IsProcessorFeaturePresent', 'ReleaseSemaphore', 'GlobalMemoryStatus', 'GetCurrentThread', 'GetProcessHeap', 'HeapFree', 'HeapSize', 'HeapValidate', 'HeapAlloc', 'HeapReAlloc', 'GetModuleHandleA', 'RaiseException', 'TlsSetValue', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'VirtualFree', 'TlsGetValue', 'TlsFree', 'DeleteCriticalSection', 'GetProcAddress', 'GetFileAttributesW', 'GetVersion', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LoadLibraryA', 'OutputDebugStringA', 'MulDiv', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetVersionExA', 'IsValidLocale', 'FreeLibrary', 'WaitForSingleObject', 'ReleaseMutex', 'CloseHandle', 'GetSystemTimeAsFileTime', 'GetTickCount', 'WriteFile', 'SetFileAttributesW', 'FlushFileBuffers', 'DeleteFileW', 'GetFileType', 'CreateFileW', 'GetLocaleInfoW', 'ExpandEnvironmentStringsW', 'GetProcessTimes', 'GetCurrentProcess', 'CreateMutexA', 'OpenMutexA', 'CreateSemaphoreA', 'GetShortPathNameA', 'GetModuleFileNameA', 'LoadLibraryExW', 'GetSystemDirectoryW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetDiskFreeSpaceExW', 'GetSystemInfo', 'GetUserDefaultLCID', 'LocalFree', 'LocalAlloc', 'CreateProcessA', 'Sleep', 'TerminateProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GlobalAlloc', 'IsDBCSLeadByte', 'IsValidCodePage', 'CompareStringW', 'InitializeCriticalSection', 'CreateDirectoryW', 'CancelIo', 'EnumCalendarInfoExA', 'GetDiskFreeSpaceA', 'lstrcmpiW', 'GetSystemDirectoryA', 'WaitForMultipleObjectsEx', 'WriteConsoleOutputAttribute', 'CreateDirectoryExA', 'GetStdHandle', 'GetConsoleMode', 'ReadConsoleW', 'AllocConsole', 'FreeConsole', 'WriteConsoleW', 'ResumeThread', 'CreateThread', 'TerminateThread', 'GetThreadTimes', 'SearchPathW', 'WaitForMultipleObjects', 'FormatMessageW', 'ConnectNamedPipe', 'CreateNamedPipeW', 'GetOverlappedResult', 'QueryPerformanceFrequency', 'SetStdHandle', 'SetEndOfFile', 'SetFilePointer', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'GetFileAttributesExW', 'MoveFileW', 'RemoveDirectoryW', 'GetComputerNameW', 'SystemTimeToTzSpecificLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'SetHandleInformation', 'GetHandleInformation', 'RtlUnwind', 'ExitProcess', 'GetCommandLineA', 'InterlockedIncrement', 'InterlockedDecrement', 'FatalAppExitA', 'SetConsoleCtrlHandler', 'SetHandleCount', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'GetCPInfo', 'GetOEMCP', 'GetConsoleCP', 'LCMapStringA', 'LCMapStringW', 'CreateFileA', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'EnumSystemLocalesA', 'WriteConsoleA', 'GetConsoleOutputCP', 'CompareStringA', 'SetEnvironmentVariableA', 'MapViewOfFile', 'CreateFileMappingW', 'DuplicateHandle', 'UnmapViewOfFile', 'ReadFile', 'GlobalLock', 'GlobalUnlock', 'OpenProcess', 'ResetEvent', 'CreateEventW', 'SetEvent', 'SetProcessShutdownParameters', 'LoadIconW', 'GetDlgItem', 'LoadCursorW', 'RegisterClassExW', 'GetDC', 'GetWindowTextW', 'SetWindowPos', 'ReleaseDC', 'DialogBoxParamW', 'BeginPaint', 'GetClientRect', 'GetSysColor', 'GetFocus', 'DrawFocusRect', 'EndPaint', 'InvalidateRect', 'DefWindowProcW', 'GetParent', 'SendMessageW', 'GetClassNameA', 'SendMessageA', 'IsWindowUnicode', 'GetWindowLongA', 'GetWindowLongW', 'SetRectEmpty', 'MapWindowPoints', 'GetWindowRect', 'MoveWindow', 'IsWindowVisible', 'SendDlgItemMessageW', 'IsWindow', 'CreateWindowExA', 'CreateDialogIndirectParamA', 'DrawTextA', 'DrawTextW', 'DestroyWindow', 'MapDialogRect', 'GetSystemMetrics', 'SystemParametersInfoA', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMonitorInfoA', 'EnumDisplayMonitors', 'GetKeyboardLayout', 'MessageBoxW', 'LoadStringW', 'SetWindowTextW', 'GetDlgCtrlID', 'GetWindow', 'EndDialog', 'SetFocus', 'CharLowerBuffA', 'SetActiveWindow', 'RegisterClipboardFormatA', 'GetMenuItemRect', 'SetMenuItemInfoA', 'DrawIcon', 'GetScrollInfo', 'DdeCmpStringHandles', 'EnumDesktopsA', 'DefDlgProcW', 'PtInRect', 'WindowFromDC', 'DrawStateA', 'TileChildWindows', 'DdeNameService', 'CreateIconIndirect', 'GetClassInfoA', 'EnumChildWindows', 'LoadImageA', 'RealGetWindowClass', 'MessageBeep', 'IsZoomed', 'LoadCursorFromFileW', 'DefWindowProcA', 'ScrollWindowEx', 'UnregisterClassW', 'RedrawWindow', 'GetWindowTextLengthW', 'CallWindowProcW', 'WindowFromPoint', 'CreateWindowExW', 'GetDesktopWindow', 'GetClipboardData', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'CloseClipboard', 'PostMessageW', 'FindWindowW', 'FillRect', 'SetThreadDesktop', 'CloseDesktop', 'GetThreadDesktop', 'OpenInputDesktop', 'OpenDesktopW', 'GetUserObjectInformationW', 'UnhookWinEvent', 'SetWinEventHook', 'AdjustWindowRect', 'SetRect', 'GetTopWindow', 'SetTimer', 'ShowWindow', 'RegisterClassW', 'CloseWindowStation', 'GetProcessWindowStation', 'ChangeDisplaySettingsW', 'EnumDisplaySettingsW', 'SetScrollInfo', 'EnumDesktopsW', 'GetAsyncKeyState', 'ToAsciiEx', 'ToUnicodeEx', 'VkKeyScanExA', 'VkKeyScanExW', 'GetKeyboardLayoutList', 'GetWindowDC', 'mouse_event', 'GetIconInfo', 'EnumDisplayDevicesA', 'EnumWindows', 'GetClassNameW', 'EnumDisplaySettingsA', 'ChangeDisplaySettingsExA', 'EnumDisplayDevicesW', 'MapVirtualKeyW', 'keybd_event', 'GetKeyState', 'GetKeyboardState', 'SendMessageTimeoutW', 'ExitWindowsEx', 'SystemParametersInfoW', 'GetGUIThreadInfo', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'IsIconic', 'IsRectEmpty', 'EnumDesktopWindows', 'PostQuitMessage', 'SetClipboardViewer', 'ChangeClipboardChain', 'GetAncestor', 'PeekMessageW', 'SetWindowLongW', 'ClientToScreen', 'PostThreadMessageW', 'GetCursorPos', 'GetClipboardOwner', 'TranslateMessage', 'DispatchMessageW', 'CopyImage', 'MsgWaitForMultipleObjects', 'DrawIconEx', 'GetStockObject', 'DeleteDC', 'GetDeviceCaps', 'GetObjectW', 'CreateFontIndirectW', 'GetObjectA', 'CreateFontIndirectA', 'GetTextFaceW', 'GetTextMetricsA', 'GetOutlineTextMetricsA', 'CreateSolidBrush', 'TranslateCharsetInfo', 'SelectObject', 'GetTextExtentPoint32W', 'CreatePen', 'SetBkColor', 'SetTextColor', 'SetTextAlign', 'TextOutW', 'MoveToEx', 'LineTo', 'DeleteObject', 'CreateDCA', 'SetMetaFileBitsEx', 'SetBoundsRect', 'DPtoLP', 'GetObjectType', 'EngLineTo', 'ResizePalette', 'GdiConvertBitmapV5', 'SetPixel', 'SetDIBitsToDevice', 'BitBlt', 'GetSystemPaletteEntries', 'GetBitmapBits', 'GetTextMetricsW', 'SetMapMode', 'CreateCompatibleBitmap', 'GdiFlush', 'SetDIBColorTable', 'SetPixelV', 'CreateBitmap', 'CreateDIBSection', 'StretchBlt', 'SetWindowOrgEx', 'GetClipBox', 'CreateCompatibleDC', 'CreateDCW', 'GetDIBits', 'ExtEscape', 'GdiAlphaBlend', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryInfoKeyW', 'RegEnumKeyW', 'GetLengthSid', 'AddAccessAllowedAce', 'AddAccessDeniedAce', 'InitializeAcl', 'CryptDestroyKey', 'CryptGenKey', 'CryptReleaseContext', 'CryptAcquireContextW', 'RegCloseKey', 'RegEnumValueW', 'RegOpenKeyExW', 'RegQueryValueExW', 'CopySid', 'GetTokenInformation', 'OpenProcessToken', 'FreeSid', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'GetSecurityDescriptorDacl', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ConvertSidToStringSidA', 'CheckTokenMembership', 'IsValidSid', 'AllocateAndInitializeSid', 'OpenThreadToken', 'SetEntriesInAclW', 'GetAclInformation', 'SetSecurityDescriptorSacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'MakeAbsoluteSD', 'GetSecurityDescriptorControl', 'GetSecurityDescriptorLength', 'MakeSelfRelativeSD', 'SetNamedSecurityInfoW', 'CryptGenRandom', 'GetUserNameW', 'RegDeleteKeyW', 'GetSecurityInfo', 'RegDeleteValueW', 'RegEnumKeyExW', 'SetSecurityInfo', 'RegNotifyChangeKeyValue', 'DuplicateTokenEx', 'SetTokenInformation', 'LookupAccountNameW', 'LookupAccountSidW', 'EqualSid', 'GetSidIdentifierAuthority', 'SHFreeNameMappings', 'SHBindToParent', 'ExtractAssociatedIconExW', 'SHBrowseForFolder', 'SHGetIconOverlayIndexA', 'SHGetFileInfoA', 'SHLoadInProc', 'SHFileOperationW', 'CoInitialize', 'CoUninitialize', 'CoCreateGuid', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'CoInitializeEx', 'wnsprintfA', 'StrChrIA', 'StrStrIW', 'StrStrIA', 'StrRChrW', 'StrRChrIA', 'InitCommonControlsEx', '_TrackMouseEvent'], ['GetSysColorBrush', 'TlsSetValue', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['GetModuleHandleA', 'GetMenu', 'RegQueryValueW', 'PropertySheet', 'ShellAboutA', '_CorExeMain'], ['GetFileSize', 'GetCPInfo', 'SetEndOfFile', 'GetProcessHeap', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetSystemDirectoryW', 'Sleep', 'SetSystemPowerState', 'FileTimeToSystemTime', 'CreateFileW', 'CreateEventW', 'VirtualProtect', 'DeleteCriticalSection', 'CloseHandle', 'GetVersion', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CreateFileA', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'HeapSize', 'SetFilePointer', 'ReadFile', 'FlushFileBuffers', 'GetStringTypeW', 'GetStringTypeA', 'GetCurrentProcessId', 'GetTickCount', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapReAlloc', 'GetCurrentThreadId', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleHandleA', 'AcquireCredentialsHandleW', 'FreeContextBuffer', 'QueryContextAttributesW', 'FreeCredentialsHandle', 'RevertSecurityContext', 'InitializeSecurityContextW', 'acmGetVersion', 'acmDriverID', 'acmStreamMessage', 'acmFormatSuggest', 'acmFormatDetailsW', 'acmDriverPriority', 'acmStreamOpen', 'acmFilterChooseW', 'acmDriverRemove', 'acmStreamConvert', 'acmStreamPrepareHeader', 'acmFormatEnumW', 'acmDriverOpen', 'acmStreamClose', 'acmFormatTagEnumW', 'acmDriverMessage', 'acmFormatTagDetailsW', 'acmFilterTagDetailsW', 'acmFilterEnumW', 'acmFilterDetailsW', 'acmFilterTagEnumW', 'acmFormatChooseW', 'acmMetrics'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'ChooseColorA', 'SaveDC', 'OleDraw', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['GetModuleHandleA', 'OffsetRect', 'RegOpenKeyExW', 'DllGetVersion', 'ShellAboutW', '_CorExeMain'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'GetCurrentProcessId', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'InterlockedDecrement', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetTimeFormatW', 'GetDateFormatW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'SysAllocString', 'SysFreeString', 'VariantClear', 'GdipAlloc', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'lstrcmpA', 'lstrlenA', 'lstrcatA', 'GetACP', 'GetProcessId', 'GetCurrentThreadId', 'GetCursorPos', 'GetGUIThreadInfo', 'CheckRadioButton', 'CheckDlgButton', 'CheckMenuItem', 'GetCursorInfo', 'GetWindowThreadProcessId', 'CheckMenuRadioItem', 'HBITMAP_UserMarshal', 'DeletePrintProcessorA', 'StrRChrA', 'PerfOpen', 'AdvancedSetupDialog', 'DEVICEMODE'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'InternetGetConnectedState'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'ValidateRect', 'UpdateLayeredWindow', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'TrackMouseEvent', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExA', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SelectClipPath', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPath', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'BeginPath', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadReadPtr', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Sleep', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CreateStreamOnHGlobal', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'Shell_NotifyIconA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHChangeNotify', 'sndPlaySoundA', 'ntohs', 'inet_ntoa', 'inet_addr', 'htons', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipDisposeImage', 'GdiplusShutdown', 'GdiplusStartup', 'LresultFromObject', 'MulDiv'], ['HeapLock', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesA', 'EnumResourceNamesA', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'TlsGetValue', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'ReleaseActCtx', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedIncrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'InterlockedPushEntrySList', 'SetConsoleCursorInfo', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'LockFile', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'FindAtomW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'TryEnterCriticalSection', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedDecrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'CreateFileA', 'OemToCharW', 'GetFileSecurityA', 'WinHttpReadData'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'RaiseException', 'CreateThread', 'LocalFree', 'CloseHandle', 'CreateEventW', 'SetEvent', 'CreateProcessW', 'GetVersionExA', 'GetVersionExW', 'GetLastError', 'SetLastError', 'GetModuleFileNameW', 'lstrcmpiW', 'FormatMessageW', 'GetCommandLineW', 'CreateFileW', 'FlushFileBuffers', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'HeapSetInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'RtlUnwind', 'Sleep', 'HeapSize', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryW', 'HeapReAlloc', 'SetStdHandle', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'SetErrorMode', 'VirtualAlloc', 'MessageBoxA', 'SetClassLongW', 'EnumDisplayMonitors', 'GetClipCursor', 'GetProcessWindowStation', 'GetWindowInfo', 'LoadMenuA', 'ShowScrollBar', 'InvalidateRect', 'MonitorFromPoint', 'AdjustWindowRectEx', 'InflateRect', 'GetUserObjectSecurity', 'PostThreadMessageW', 'GetMenuContextHelpId', 'CreateIconFromResourceEx', 'GetTopWindow', 'SetWindowRgn', 'CreateIcon', 'UnpackDDElParam', 'EnumWindowStationsA', 'SendInput', 'TrackPopupMenu', 'MsgWaitForMultipleObjects', 'LoadIconA', 'GetOpenClipboardWindow', 'IsMenu', 'GetMessagePos', 'CharNextA', 'UnrealizeObject', 'TranslateCharsetInfo', 'SetTextAlign', 'GetCharWidthInfo', 'RoundRect', 'CopyEnhMetaFileA', 'EngGetCurrentCodePage', 'SetDIBitsToDevice', 'EngReleaseSemaphore', 'GetDIBits', 'GetBrushOrgEx', 'ExtCreateRegion', 'GetPixelFormat', 'XLATEOBJ_hGetColorTransform', 'GetEnhMetaFileA', 'CreateDiscardableBitmap', 'CreateBitmap', 'TextOutW', 'GetViewportOrgEx', 'SetColorSpace', 'GetHFONT', 'CreateRoundRectRgn', 'PolyPatBlt', 'FONTOBJ_pQueryGlyphAttrs', 'EngBitBlt', 'EnumICMProfilesW', 'CreateRectRgnIndirect', 'OffsetRgn', 'StrokeAndFillPath', 'SetBitmapBits', 'GetRandomRgn', 'CreateColorSpaceW', 'GetStockObject', 'AddFontResourceW', 'GetLayout', 'RealizePalette', 'PrintDlgW', 'RegQueryValueExW', 'SetSecurityDescriptorDacl', 'StartServiceW', 'ControlService', 'RegOpenKeyExW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerExW', 'StartServiceCtrlDispatcherW', 'DeleteService', 'CreateServiceW', 'QueryServiceStatus', 'OpenServiceW', 'OpenSCManagerW', 'CloseServiceHandle', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'ShellExecuteExW', 'SHGetSpecialFolderLocation', 'DuplicateIcon', 'ExtractIconExW', 'DragFinish', 'SHGetSettings', 'Shell_NotifyIconW', 'ShellExecuteEx', 'SHGetDesktopFolder', 'SHLoadInProc', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHGetInstanceExplorer', 'ShellExecuteW', 'ExtractIconW', 'SHGetDataFromIDListA', 'OleUninitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'StrCmpNIA', 'StrCmpNA', 'ImageList_Destroy', 'InitializeFlatSB'], ['GetVersionExW', 'GetVersionExA', 'ReleaseDC', 'BitBlt', 'GetTokenInformation', 'SHFileOperationW', 'CreateStreamOnHGlobal', 'CryptUnprotectData', 'InternetSetOptionA', 'send', 'GetSystemTimeAsFileTime', 'CharUpperBuffW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailW', 'SetupDiDestroyDeviceInfoList', '_snwprintf', 'RtlUnwind', 'memmove', '_allrem', '_strnicmp', '_alloca_probe', 'memset', 'memcpy', 'strlen', 'wcscpy', 'wcslen', 'wcscat', 'swprintf', 'strcpy', 'wcsstr', 'toupper', '_chkstk', 'strstr', 'towupper', '_wcsnicmp', 'mbstowcs', '_stricmp', 'memcmp', 'wcschr', 'tolower', '_wcsicmp', 'wcsncpy', 'strcmp', 'wcsrchr', 'PathFileExistsW', '_wfopen', 'fseek', 'ftell', 'fflush', 'fclose', 'fwrite', '??2@YAPAXI@Z', '??3@YAXPAX@Z', 'mbtowc', '_beginthreadex', 'malloc', 'free', 'calloc', '__CxxFrameHandler', '_CxxThrowException', '_XcptFilter', '_initterm', '_amsg_exit', '_adjust_fdiv', '_unlock', '__dllonexit', '_lock', '_onexit', '??1type_info@@UAE@XZ', 'ReleaseMutex', 'VirtualFree', 'VirtualUnlock', 'VirtualLock', 'MulDiv', 'LoadLibraryW', 'GetVersionExW', 'IsBadReadPtr', 'LoadLibraryExA', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InterlockedCompareExchange', 'InterlockedExchange', 'lstrlenA', 'OpenMutexW', 'CreateMutexW', 'MultiByteToWideChar', 'UnmapViewOfFile', 'SetLastError', 'GetVersionExA', 'GetCurrentThread', 'LocalAlloc', 'LocalFree', 'GetCurrentProcessId', 'FindResourceA', 'LoadResource', 'SizeofResource', 'LockResource', 'CreateDirectoryW', 'ExpandEnvironmentStringsA', 'GetFileSize', 'ReadFile', 'GetFileAttributesW', 'WriteFile', 'DeleteFileW', 'MoveFileExW', 'SetFileAttributesW', 'SetFileTime', 'GetFileTime', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'InterlockedDecrement', 'SetErrorMode', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDiskFreeSpaceExW', 'GetVolumeNameForVolumeMountPointW', 'GetVolumeInformationW', 'CreateFileW', 'DeviceIoControl', 'GetModuleFileNameA', 'LoadLibraryA', 'FreeLibrary', 'CreateThread', 'CreateProcessA', 'WaitForSingleObject', 'CopyFileA', 'HeapFree', 'GetProcessHeap', 'VirtualAlloc', 'GetProcAddress', 'VirtualQuery', 'GetVersion', 'GetCurrentProcess', 'GetModuleHandleA', 'GetLastError', 'Sleep', 'SetFileAttributesA', 'GetSystemTimeAsFileTime', 'CloseHandle', 'CreateMutexA', 'GetFileAttributesA', 'GetVolumeInformationA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueExA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumValueW', 'RegEnumKeyExW', 'InitializeAcl', 'AddAccessAllowedAce', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'AccessCheck', 'OpenThreadToken', 'DuplicateTokenEx', 'OpenProcessToken', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetUserNameW', 'AllocateAndInitializeSid', 'LookupAccountSidW', 'FreeSid', 'RegCloseKey', 'CoSetProxyBlanket', 'CoCreateInstance', 'CoInitializeEx', 'CoInitializeSecurity', 'CoUninitialize', 'VariantClear', 'SysFreeString', 'SysAllocString', 'DestroyWindow', 'CreateWindowExW', 'GetSystemMetrics'], ['GetWindowsDirectoryA', 'GetTempPathA', 'GetCurrentProcessId', 'LocalFree', 'LocalAlloc', 'GetLastError', 'GetCurrentProcess', 'GetCurrentThread', 'GetVersionExA', 'GetProcAddress', 'GetVersion', 'GetModuleHandleA', 'CreateMutexW', 'OpenMutexW', 'LoadLibraryExA', 'WaitForSingleObject', 'SetLastError', 'GetSystemDirectoryA', 'GetVersionExW', 'LoadLibraryW', 'DeleteFileW', 'CreateFileW', 'GetTempFileNameW', 'GetTempPathW', 'VirtualFree', 'VirtualUnlock', 'VirtualLock', 'VirtualAlloc', 'ReleaseMutex', 'GetEnvironmentVariableW', 'IsBadReadPtr', 'UnmapViewOfFile', 'CreateFileMappingW', 'MapViewOfFile', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'GetSystemTimeAsFileTime', 'CompareFileTime', 'LoadLibraryA', 'Sleep', 'FreeLibrary', 'GetStartupInfoA', 'CreateProcessA', 'WriteFile', 'GetFileSize', 'CloseHandle', 'MulDiv', 'SetPropA', 'UnregisterClassW', 'CreateWindowExW', 'DestroyWindow', 'CreateAcceleratorTableW', 'OpenProcessToken', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'AccessCheck', 'OpenThreadToken', 'DuplicateTokenEx', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetUserNameW', 'AllocateAndInitializeSid', 'LookupAccountSidW', 'FreeSid', 'RegOpenKeyExA', 'RegCloseKey', 'AddAccessAllowedAce', 'InitializeAcl', 'InitializeSecurityDescriptor', '_initterm', 'fseek', '__CxxFrameHandler', 'strlen', '??2@YAPAXI@Z', '??3@YAXPAX@Z', '_purecall', 'strcat', 'wcscmp', 'memset', '_local_unwind2', 'memcpy', 'memcmp', 'wcslen', '_wcsicmp', '_snwprintf', 'wcsncpy', 'strcpy', 'fclose', '_wfopen', 'wcsncat', 'wcscpy', 'strcmp', 'strncmp', '_exit', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', 'fread', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', 'malloc', 'calloc', 'memmove', 'free', '_controlfp', '_stricmp', '_get_osfhandle'], ['VirtualUnlock', 'OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'MoveFileW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'ExitThread', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'FindFirstFileW', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'GetModuleFileNameW', 'TerminateProcess', 'VirtualAlloc', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'CloseHandle', 'lstrlenW', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'LockFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'HttpQueryInfoA', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['WinHttpReceiveResponse', 'WinHttpOpen', 'WinHttpReadData', 'WinHttpOpenRequest', 'WinHttpSetOption', 'WinHttpCloseHandle', 'WinHttpSendRequest', 'WinHttpConnect', 'WinHttpQueryDataAvailable', 'WriteConsoleW', 'FlushFileBuffers', 'WriteFile', 'GetTempPathW', 'CreateFileW', 'Sleep', 'HeapReAlloc', 'CloseHandle', 'LoadLibraryW', 'HeapAlloc', 'GetProcessHeap', 'CreateProcessW', 'FreeLibrary', 'lstrcpyW', 'GetTempFileNameW', 'GetProcAddress', 'GetModuleHandleW', 'GetEnvironmentStringsW', 'SetLastError', 'GetCurrentProcessId', 'LocalFree', 'GetModuleFileNameW', 'DeleteFileW', 'GetLastError', 'MultiByteToWideChar', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'FreeEnvironmentStringsW', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'WideCharToMultiByte', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'FindClose', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlPcToFileHeader', 'EncodePointer', 'RaiseException', 'RtlUnwindEx', 'InterlockedFlushSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'HeapFree', 'GetStringTypeW', 'GetACP', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'RealGetWindowClassW', 'GetWindowThreadProcessId', 'VariantClear'], ['AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetCurrentHwProfileA', 'GetUserNameA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetComputerNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'OutputDebugStringA', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_fmode', '_initterm', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_write', 'abort', 'calloc', 'exit', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'SysFreeString', 'RegQueryValueExW', 'CharNextW', 'UnrealizeObject', 'VerQueryValueW', 'SHGetFolderPathW', 'NetApiBufferFree', 'CreateStreamOnHGlobal', 'InitializeFlatSB', 'memset', 'SHGetFileInfoW', 'InternetGetConnectedState', 'OpenPrinterW', 'WSACleanup', 'timeGetTime', 'GdipGetPenFillType', 'LresultFromObject'], ['WaitForSingleObject', 'GetFileAttributesW', 'GetModuleFileNameW', 'GetLastError', 'SetLastError', 'GetModuleFileNameA', 'CreateFileA', 'SetFileTime', 'InitializeCriticalSection', 'LeaveCriticalSection', 'GetSystemDirectoryA', 'EnterCriticalSection', 'GetFileTime', 'DeleteCriticalSection', 'CloseHandle', 'HeapAlloc', 'WideCharToMultiByte', 'HeapFree', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'GetTimeZoneInformation', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'HeapSize', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'VirtualQuery', 'GetProcAddress', 'LoadLibraryW', 'GetCPInfo', 'GetModuleHandleA', 'RaiseException', 'DefWindowProcA', 'EndDialog', 'CreateWindowExA', 'GetWindowLongA', 'MessageBoxA', 'TranslateMessage', 'SendMessageA', 'SetFocus', 'LoadIconA', 'LoadMenuA', 'KillTimer', 'PostQuitMessage', 'RegisterClassExA', 'SetTimer', 'GetMessageA', 'wsprintfW', 'wsprintfA', 'SetMenu', 'DispatchMessageA', 'SetWindowTextA', 'LoadCursorA', 'DialogBoxParamA', 'ShowWindow', 'GetStockObject', 'GetUserNameA'], ['WriteProfileSectionA', 'SetLocaleInfoA', 'FindFirstVolumeA', 'GetNamedPipeHandleStateW', 'CompareFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateThread', 'SignalObjectAndWait', 'GetVersionExW', 'VerifyVersionInfoA', 'QueryDepthSList', 'SetEvent', 'FindNextFileA', 'BuildCommDCBAndTimeoutsA', 'GetCompressedFileSizeA', 'CopyFileExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructA', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'FindAtomA', 'LoadResource', 'GetThreadPriority', 'CallNamedPipeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LocalAlloc', 'GetProfileSectionA', 'GetCommandLineA', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'GetCalendarInfoA', 'ReleaseActCtx', 'OutputDebugStringW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'TerminateProcess', 'GlobalFix', 'HeapValidate', 'InterlockedCompareExchange', 'GetStartupInfoW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleTextAttribute', 'GetLastError', 'CopyFileA', 'DisconnectNamedPipe', 'GetCPInfoExW', 'GetComputerNameExW', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetSystemWindowsDirectoryW', 'GetACP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'GetConsoleAliasW', 'lstrlenA', 'WriteConsoleA', 'GlobalWire', 'FormatMessageW', 'GetPrivateProfileSectionNamesA', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'VerSetConditionMask', 'CreateConsoleScreenBuffer', 'GetSystemWindowsDirectoryA', 'GetProfileStringW', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'SetThreadContext', 'GetSystemTimeAdjustment', '_lwrite', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthW', 'MoveFileA', 'GetWriteWatch', 'GetPrivateProfileStringW', 'GetModuleHandleA', 'EnumDateFormatsA', 'DeleteAtom', 'LoadLibraryW', 'TlsFree', 'SetFirmwareEnvironmentVariableW', 'CommConfigDialogW', 'GetConsoleAliasesLengthA', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'ReadConsoleW', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'GetNumberFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'EnterCriticalSection', 'InitializeCriticalSection', 'GetSystemWow64DirectoryW', 'LoadLibraryA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'SetStdHandle', 'GetFileType', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'MultiByteToWideChar', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'GetBoundsRect', 'WinHttpConnect', 'AlphaBlend'], ['GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'QueryDepthSList', 'GetVersionExW', 'VerifyVersionInfoW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExW', 'FindAtomA', 'GlobalDeleteAtom', 'SetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'VirtualProtect', 'LoadLibraryW', 'LocalAlloc', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'CopyFileA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoA', 'SetConsoleCursorPosition', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'FindFirstVolumeW', 'CreateActCtxA', 'GetConsoleAliasA', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'GetPrivateProfileSectionNamesA', 'GlobalWire', 'FreeEnvironmentStringsW', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'SetConsoleCP', 'GetSystemWindowsDirectoryA', 'GetProfileStringA', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'GetSystemWindowsDirectoryW', 'EnumDateFormatsW', 'GetModuleHandleA', 'DeleteAtom', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'FindFirstVolumeA', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'ReadConsoleW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'GetCurrentActCtx', 'InitializeCriticalSection', 'WriteProfileSectionA', 'SetLocaleInfoA', 'GetPrivateProfileStringA', 'LoadLibraryA', 'DeleteFileA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'GetCharWidth32A', 'ImpersonateSelf', 'WinHttpWriteData', 'AlphaBlend'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['ntohl', 'htonl', '_beginthreadex', '_adjust_fdiv', 'malloc', '_vsnprintf', 'fopen', 'vfprintf', 'fclose', 'free', 'memcpy', '_initterm', 'GetProcAddress', 'SetErrorMode', 'DisableThreadLibraryCalls', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'SetEvent', 'CloseHandle', 'CreateEventA', 'GetLastError'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['OpenProcessToken', 'GetTokenInformation', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'getaddrinfo', 'WSAGetLastError', 'WSACleanup', 'WSAStartup', 'freeaddrinfo', 'closesocket', 'send', 'select', 'recv', 'getsockopt', 'ioctlsocket', 'connect', 'socket', 'EnumDisplayDevicesA', 'SetEndOfFile', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'SetStdHandle', 'GetProcessHeap', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'CloseHandle', 'SetLastError', 'WaitForSingleObject', 'GetCurrentProcess', 'ResumeThread', 'CreateProcessA', 'SetPriorityClass', 'GetThreadContext', 'SetThreadContext', 'VirtualAlloc', 'VirtualAllocEx', 'WriteProcessMemory', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'lstrlenA', 'FreeConsole', 'LocalFree', 'FormatMessageA', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RtlPcToFileHeader', 'RaiseException', 'RtlUnwindEx', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'RtlUnwind', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetACP', 'GetExitCodeProcess', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'HeapDestroy', 'ReadFile', 'CreateProcessW', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LoadLibraryA', 'ResetEvent', 'GetVersion', 'RaiseException', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'GetSystemDirectoryW', 'DeleteFileW', 'GetLocalTime', 'GetEnvironmentVariableW', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'GetUserDefaultLangID', 'RemoveDirectoryW', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'InitCommonControls', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CreateWindowExW', 'TranslateMessage', 'CharLowerBuffW', 'CallWindowProcW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'SetWindowLongW', 'MessageBoxW', 'DestroyWindow', 'CharNextW', 'MsgWaitForMultipleObjects', 'LoadStringW', 'ExitWindowsEx', 'DispatchMessageW', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegCloseKey', 'OpenProcessToken', 'RegOpenKeyExW'], ['HeapAlloc', 'SetConsoleTextAttribute', 'ConnectNamedPipe', 'GetPrivateProfileStringW', 'CreateIoCompletionPort', 'PurgeComm', 'EnumDateFormatsExW', 'GetSystemWindowsDirectoryW', 'GetCurrentProcess', 'LocalAlloc', 'GetFullPathNameW', 'GetWriteWatch', 'GetProcAddress', 'ClearCommError', 'ReadConsoleA', 'lstrcpyA', 'SetThreadExecutionState', 'GetDefaultCommConfigA', 'GetEnvironmentVariableW', 'BuildCommDCBAndTimeoutsA', 'GetAtomNameW', 'ProcessIdToSessionId', 'FindNextVolumeW', 'GetLastError', 'GetTickCount', 'lstrlenA', 'GetVolumeNameForVolumeMountPointW', 'MapViewOfFile', 'LoadResource', 'LoadLibraryA', 'CompareStringA', 'CreateFileA', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'VirtualAlloc', 'HeapReAlloc', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CloseHandle', 'IsValidSid', 'RegisterEventSourceW', 'InitializeAcl', 'EnumServicesStatusA', 'TransparentBlt'], ['GetCurrentHwProfileA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateProcessA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'wcslen', 'WSACleanup', 'WSAConnect', 'WSASocketA', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['DeactivateActCtx', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetLastError', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'ReleaseActCtx', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_commode', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'free', 'fwrite', 'localeconv', 'malloc', 'memcpy', 'memset', 'signal', 'strerror', 'strlen', 'strncmp', 'vfprintf', 'wcslen'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameW', '_register_onexit_function', 'DSA_Create', 'SHGetDiskFreeSpaceExW', 'accept', '__stdio_common_vfprintf', '_configthreadlocale', 'srand', '__setusermatherr', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '_time64', '__current_exception_context', 'free', '_lock_file'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceW', 'VirtualAlloc', 'GetBinaryTypeW', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IntersectRect', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'SetScrollPos', 'GetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetProcessAffinityMask', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'CreatePolygonRgn', 'BeginPath', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'CloseFigure', 'StrokeAndFillPath', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'PathToRegion', 'SetArcDirection', 'ExtSelectClipRgn', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'FillPath', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'CreateDCW', 'CreateICW', 'PolyBezierTo', 'GetStockObject', 'CreateSolidBrush', 'GetBkMode', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'SetTextCharacterExtra', 'GetTextCharacterExtra', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'CreatePenIndirect', 'GetEnhMetaFilePaletteEntries', 'SetMapMode', 'GetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'ExtCreatePen', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'PtVisible', 'GetEnhMetaFileDescriptionW', 'CreateEllipticRgnIndirect', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'PolylineTo', 'TextOutW', 'SelectPalette', 'SetGraphicsMode', 'ExcludeClipRect', 'SetWindowOrgEx', 'MaskBlt', 'EndPage', 'EndPath', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'StrokePath', 'PatBlt', 'SelectClipPath', 'SetEnhMetaFileBits', 'Rectangle', 'DeleteDC', 'SaveDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'GetClipRgn', 'Polyline', 'IntersectClipRect', 'CreateBitmap', 'SetWinMetaFileBits', 'CreateDIBitmap', 'GetStretchBltMode', 'CreateDIBSection', 'SetStretchBltMode', 'GetDIBits', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'SetWindowExtEx', 'CreateHalftonePalette', 'DeleteObject', 'SelectObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'GetBkColor', 'CreateCompatibleDC', 'GetObjectA', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'SetTextAlign', 'GetTextAlign', 'CreateRoundRectRgn', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetViewportExtEx', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'WidenPath', 'GetPaletteEntries'], ['GetCursorPos', 'OpenSCManagerW', 'GetUserNameA', 'CloseServiceHandle', 'EnumServicesStatusExW', 'StrCmpIW', 'SetStdHandle', 'HeapAlloc', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'VerSetConditionMask', 'CreateFileA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'GetFileAttributesA', 'ReadFile', 'WriteFile', 'IsDebuggerPresent', 'CheckRemoteDebuggerPresent', 'CloseHandle', 'GetLastError', 'ConnectNamedPipe', 'Sleep', 'GetCurrentProcess', 'CreateThread', 'GlobalMemoryStatusEx', 'GetTickCount', 'VirtualAlloc', 'VirtualProtect', 'CreateNamedPipeA', 'VerifyVersionInfoW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'FormatMessageA', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'LocalFree', 'GetLocaleInfoEx', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'LCMapStringEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'GetCurrentThreadId', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'RaiseException', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetModuleHandleW', 'CreateFileW', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'GetProcAddress', 'GetEnvironmentStringsW', 'RtlPcToFileHeader', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RtlUnwind', 'HeapSize', 'HeapValidate', 'GetSystemInfo', 'GetModuleHandleExW', 'GetStdHandle', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapReAlloc', 'HeapQueryInformation', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'GetTimeZoneInformation', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP'], ['IpRenewAddress', 'IpReleaseAddress', 'GetInterfaceInfo', 'GetTickCount', 'GetProcessHeap', 'GetModuleHandleA', 'ExitProcess', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'IsBadReadPtr', 'Sleep', 'GetModuleFileNameA', 'CloseHandle', 'WriteFile', 'CreateFileA', 'WaitForSingleObject', 'CreateProcessA', 'GetStartupInfoA', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GetCommandLineA', 'GetVersionExA', 'GetLastError', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'FlushFileBuffers', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'RaiseException', 'InitializeCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'RtlUnwind', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'wsprintfA', 'MessageBoxA'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'OleInitialize', 'strlen'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'WriteFile', 'VirtualQuery', 'SetDefaultCommConfigW', 'ReleaseMutex', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'LoadLibraryA', 'HeapWalk', 'HeapDestroy', 'GlobalAlloc', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetNumberOfConsoleMouseButtons', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCPInfo', 'GetACP', 'EnumResourceTypesA', 'EnumCalendarInfoA', 'DefineDosDeviceW', 'BackupWrite', 'UnregisterClassA', 'SetClassWord', 'PeekMessageA', 'MessageBoxA', 'LoadStringA', 'LoadAcceleratorsW', 'GetSystemMetrics', 'GetClipboardViewer', 'GetClipboardFormatNameW', 'CheckRadioButton', 'CharNextA', 'CharToOemA'], ['GetProcAddress', 'GetModuleHandleA', 'FreeConsole', 'ResetEvent', 'SetEvent', 'UnlockFile', 'CreateFiberEx', 'LockFile', 'ConvertThreadToFiber', 'SetFilePointer', 'EncodePointer', 'GlobalUnfix', 'GetCurrentProcessId', 'AssignProcessToJobObject', 'GetFileInformationByHandle', 'CreateEventW', 'GetLastError', 'CreateFileW', 'GetCurrentProcess', 'GetCommandLineA', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TerminateProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['PathIsNetworkPathA', 'CloseHandle', 'DuplicateHandle', 'UnmapViewOfFile', 'CreateFileMappingA', 'MapViewOfFileEx', 'CreateFileA', 'GetSystemInfo', 'FormatMessageA', 'LocalFree', 'GetProcAddress', 'GetModuleHandleA', 'GetExitCodeProcess', 'CreateProcessW', 'TerminateProcess', 'WaitForSingleObjectEx', 'WaitForSingleObject', 'CreateEventA', 'SetEvent', 'CreateSemaphoreA', 'ReleaseSemaphore', 'AreFileApisANSI', 'ReadFile', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetSystemDirectoryW', 'CreatePipe', 'SetHandleInformation', 'GetProcessHeap', 'HeapAlloc', 'GetCurrentProcess', 'GetLogicalDriveStringsW', 'GetCommandLineW', 'GetDriveTypeW', 'GetWindowsDirectoryW', 'Wow64DisableWow64FsRedirection', 'Wow64RevertWow64FsRedirection', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ResetEvent', 'WaitForMultipleObjectsEx', 'OpenEventA', 'SetWaitableTimer', 'GetCurrentProcessId', 'GetCurrentThreadId', 'ResumeThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CreateWaitableTimerA', 'SetLastError', 'GetCurrentThread', 'GetThreadTimes', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'HeapSize', 'ReadConsoleW', 'GetLastError', 'SwitchToThread', 'Sleep', 'WriteConsoleW', 'HeapFree', 'GetStringTypeW', 'FormatMessageW', 'GetExitCodeThread', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'CreateFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetDiskFreeSpaceExW', 'GetFileAttributesExW', 'GetFileInformationByHandle', 'SetEndOfFile', 'SetFileAttributesW', 'SetFilePointerEx', 'GetTempPathW', 'DeleteFileW', 'GetFileAttributesW', 'RemoveDirectoryW', 'GetModuleHandleW', 'MoveFileExW', 'GetCPInfo', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetSystemTimeAsFileTime', 'GetTickCount', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'InitializeSListHead', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'CreateTimerQueue', 'SignalObjectAndWait', 'CreateThread', 'SetThreadPriority', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'RegisterWaitForSingleObject', 'UnregisterWait', 'FreeLibrary', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'LoadLibraryExW', 'GetVersionExW', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'UnregisterWaitEx', 'LoadLibraryW', 'RaiseException', 'RtlUnwind', 'GetCommandLineA', 'ExitThread', 'GetModuleHandleExW', 'SetEnvironmentVariableA', 'ExitProcess', 'GetModuleFileNameA', 'GetStdHandle', 'GetACP', 'HeapReAlloc', 'GetDateFormatW', 'GetTimeFormatW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'IsValidCodePage', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SHGetFolderPathW', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CryptReleaseContext', 'CryptAcquireContextA', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'CryptGenRandom'], ['SetupIterateCabinetW', 'CoInitializeEx', 'CoUninitialize', 'ShellExecuteW', 'ShellExecuteExW', 'wsprintfW', 'MessageBoxW', 'DeleteFileW', 'FindResourceW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetTempPathW', 'WriteFile', 'CreateDirectoryW', 'LoadLibraryA', 'GetStartupInfoW', 'SetEnvironmentVariableW', 'lstrcpyW', 'FreeLibrary', 'LoadResource', 'LockResource', 'GetModuleFileNameW', 'GetLastError', 'CloseHandle', 'CreateFileW', 'GetModuleHandleW', 'GetProcAddress', 'VerSetConditionMask', 'RemoveDirectoryW', 'ExitProcess', 'GetCommandLineW', 'SizeofResource'], ['OpenProcessToken', 'GetTokenInformation', 'LookupAccountNameW', 'ConvertSidToStringSidW', 'EventUnregister', 'EventRegister', 'EventWriteTransfer', 'CreateEventExW', 'Sleep', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetModuleFileNameW', 'OpenEventW', 'CreateMutexW', 'LocalFree', 'WaitForSingleObjectEx', 'GetTickCount64', 'SetLastError', 'CreateWaitableTimerW', 'GetCurrentThreadId', 'QueryDepthSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'InitializeSListHead', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'FindClose', 'FindFirstFileExW', 'SetFilePointerEx', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetEvent', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'HeapSize', 'GetStdHandle', 'GetModuleFileNameA', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetCurrentThread', 'GetFileType', 'GetStringTypeW', 'HeapReAlloc', 'GetProcessHeap', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'DecodePointer', 'WriteConsoleW', 'CreateFileW', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'GetLastError', 'CloseHandle', 'GetStartupInfoW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'FileTimeToSystemTime', 'GetShortPathNameA', 'CreateEventW', 'GetThreadTimes', 'CoTaskMemFree', 'StringFromIID'], ['GdipDrawImageI', 'GdipDrawLineI', 'GdipDeletePen', 'GdipCreatePen1', 'GdipDrawString', 'GdipDeleteFont', 'GdipCreateFont', 'GdipDeleteFontFamily', 'GdipCreateFontFamilyFromName', 'GdipFillRectangleI', 'GdipCreateSolidFill', 'GdipCloneBrush', 'GdipDeleteBrush', 'GdipCreateLineBrushFromRectI', 'GdipGetImageGraphicsContext', 'GdipCreateBitmapFromScan0', 'GdipGetVisibleClipBoundsI', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdiplusStartup', 'GdipCloneImage', 'GdipAlloc', 'GdipDisposeImage', 'GdipFree', 'LCMapStringW', 'CompareStringW', 'HeapSize', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetFileType', 'GetConsoleCP', 'ReadConsoleW', 'GetConsoleMode', 'RtlUnwind', 'GetProcessHeap', 'CreateThread', 'GetCommandLineW', 'GetVersionExA', 'CreateToolhelp32Snapshot', 'GetLastError', 'GetCurrentProcessId', 'Process32First', 'Process32Next', 'CloseHandle', 'ExitProcess', 'CreateMutexA', 'WaitForSingleObject', 'ReleaseMutex', 'SetThreadExecutionState', 'DeviceIoControl', 'FormatMessageW', 'Sleep', 'CreateFileW', 'GetFileInformationByHandle', 'FlushFileBuffers', 'GetSystemTime', 'SystemTimeToFileTime', 'FindNextFileW', 'FindClose', 'GetSystemTimeAsFileTime', 'GetFileAttributesExW', 'GetCurrentProcess', 'GetVolumePathNameW', 'GetVolumeNameForVolumeMountPointW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetVolumeInformationW', 'FindFirstVolumeMountPointW', 'FindNextVolumeMountPointW', 'FindVolumeMountPointClose', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetShortPathNameW', 'GetLongPathNameW', 'DosDateTimeToFileTime', 'LocalFileTimeToFileTime', 'ReadFile', 'WriteFile', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'SetFilePointerEx', 'SetStdHandle', 'WriteConsoleW', 'SetEndOfFile', 'FindFirstFileW', 'SetEnvironmentVariableA', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapAlloc', 'HeapFree', 'GetTimeZoneInformation', 'HeapReAlloc', 'DeleteFileW', 'GetCommandLineA', 'GetCurrentThreadId', 'RaiseException', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetStringTypeW', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DefWindowProcA', 'EndPaint', 'BeginPaint', 'InvalidateRect', 'PostQuitMessage', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'SetTimer', 'UpdateWindow', 'ShowWindow', 'CreateWindowExW', 'MessageBoxW', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'RegisterClassExA', 'GetStockObject', 'RegQueryValueExW', 'RegCreateKeyExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCloseKey', 'CommandLineToArgvW'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'PathFindFileNameA', 'malloc'], ['GetEnvironmentStringsW', 'AddConsoleAliasW', 'GetEnvironmentStrings', 'GlobalAlloc', 'WideCharToMultiByte', 'LoadLibraryW', 'SetVolumeMountPointA', 'LeaveCriticalSection', 'HeapValidate', 'WriteConsoleW', 'GetAtomNameW', 'ReplaceFileA', 'SetLastError', 'AttachConsole', 'VirtualAlloc', 'ZombifyActCtx', 'WriteProfileSectionA', 'SetStdHandle', 'LoadLibraryA', 'SetCalendarInfoW', 'AddVectoredExceptionHandler', 'GetModuleFileNameA', 'SetConsoleTitleW', 'FindFirstChangeNotificationA', 'EnumResourceNamesA', 'GetConsoleTitleW', 'LocalFree', 'BeginUpdateResourceW', 'GetDefaultCommConfigW', 'HeapAlloc', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegQueryValueA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'CLSIDFromString', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['FindClose', 'CreateFileW', 'MultiByteToWideChar', 'GetLastError', 'lstrcatW', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'HeapAlloc', 'GetProcessHeap', 'GetModuleHandleW', 'lstrcpyW', 'GetTickCount', 'lstrcmpW', 'lstrlenA', 'VirtualFree', 'lstrcpynW', 'VirtualAlloc', 'TerminateProcess', 'WaitForMultipleObjects', 'GetEnvironmentVariableW', 'GetComputerNameExW', 'lstrcatA', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'CreateThread', 'SetFilePointerEx', 'ExitProcess', 'GlobalMemoryStatusEx', 'CreateProcessW', 'WideCharToMultiByte', 'WinExec', 'lstrcmpiW', 'MoveFileW', 'GetModuleFileNameW', 'RemoveDirectoryW', 'WriteFile', 'lstrlenW', 'FindNextFileW', 'HeapFree', 'FindFirstFileW', 'GetTempPathW', 'ResetEvent', 'GetLogicalDrives', 'ReadFile', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'GetVersionExW', 'GetModuleHandleA', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SignalObjectAndWait', 'SetEvent', 'CreateTimerQueue', 'WriteConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'DecodePointer', 'HeapSize', 'GetStringTypeW', 'SetStdHandle', 'InitializeSListHead', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'WaitForSingleObjectEx', 'Sleep', 'SwitchToThread', 'GetExitCodeThread', 'GetNativeSystemInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'QueryPerformanceFrequency', 'GetCurrentThread', 'GetThreadTimes', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RaiseException', 'EncodePointer', 'FreeLibrary', 'LoadLibraryExW', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetStdHandle', 'LCMapStringW', 'GetFileType', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'CryptAcquireContextA', 'CryptDestroyKey', 'CloseServiceHandle', 'CryptEncrypt', 'OpenSCManagerW', 'ControlService', 'CryptImportKey', 'OpenServiceW', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptGenRandom', 'SHGetFolderPathW', 'ShellExecuteW', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'SysAllocString', 'VariantClear', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'PathCombineW', 'wnsprintfW', 'wnsprintfA', 'StrCmpNA', 'StrStrA', 'StrStrW', 'InternetCrackUrlA', 'HttpOpenRequestW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'InternetOpenW', 'InternetCrackUrlW', 'HttpSendRequestW', 'InternetCloseHandle', 'InternetConnectW', 'InternetSetOptionW', 'InternetReadFile', 'recv', 'connect', 'closesocket', 'inet_addr', 'send', 'socket', 'htons'], ['GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'GetStartupInfoW', 'FreeLibrary', 'LoadLibraryExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'SetEndOfFile', 'GetProcAddress', 'GetModuleFileNameW', 'SetDllDirectoryW', 'CreateProcessW', 'GetLastError', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwindEx', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCommandLineA', 'ReadFile', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'SetStdHandle', 'SetConsoleCtrlHandler', 'DeleteFileW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'GetFileAttributesExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'ConvertSidToStringSidW', 'GetTokenInformation', 'OpenProcessToken', 'ConvertStringSecurityDescriptorToSecurityDescriptorW'], ['RaiseException', 'GetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'Sleep', 'LoadResource', 'SizeofResource', 'FindClose', 'CloseHandle', 'CreateMutexA', 'OpenMutexA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CreateProcessA', 'FindResourceW', 'FindResourceExW', 'GetTempPathA', 'CreateDirectoryA', 'RemoveDirectoryA', 'GetFullPathNameW', 'QueryDosDeviceW', 'SetFileAttributesA', 'DeleteFileA', 'FindFirstFileW', 'FindNextFileW', 'CopyFileA', 'GetPriorityClass', 'GetVersionExA', 'FindFirstVolumeW', 'TerminateProcess', 'FindVolumeClose', 'GetVolumePathNamesForVolumeNameW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'VirtualFree', 'GetVersionExW', 'GetThreadTimes', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'GetCurrentProcessId', 'OpenProcess', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'LockResource', 'HeapDestroy', 'InterlockedDecrement', 'FindNextVolumeW', 'DecodePointer', 'SetEndOfFile', 'CreateFileW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileAttributesExW', 'GetExitCodeProcess', 'WaitForSingleObject', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'GetACP', 'WriteFile', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'VirtualQuery', 'FreeLibrary', 'DuplicateHandle', 'GetCurrentThread', 'GetExitCodeThread', 'TryEnterCriticalSection', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'GetCPInfo', 'EncodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'OutputDebugStringW', 'LocalFree', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'ReadFile', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'PostQuitMessage', 'DefWindowProcA', 'SendMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'RegisterWindowMessageA', 'wsprintfA', 'GetCursorPos', 'IsWindowVisible', 'GetSystemMetrics', 'GetDesktopWindow', 'TrackPopupMenu', 'SetForegroundWindow', 'GetDC', 'LoadCursorA', 'LoadIconA', 'ReleaseDC', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'GetObjectA', 'SetKernelObjectSecurity', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'Shell_NotifyIconA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoInitializeEx', 'CoUninitialize', 'CoSetProxyBlanket', 'CoInitialize', 'CoCreateInstance', 'CoInitializeSecurity', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysAllocString', 'PathFindExtensionA', 'PathFindExtensionW', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipCreateBitmapFromHBITMAP', 'GdipCreateBitmapFromScan0', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCloneImage', 'GdipDisposeImage', 'GdipSaveImageToFile', 'InternetConnectA', 'InternetCloseHandle', 'HttpSendRequestA', 'InternetOpenA', 'HttpOpenRequestA', 'InternetReadFile', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'SetMailslotInfo', 'CreateDirectoryExA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'InitializeCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetBinaryTypeW', 'GetStdHandle', 'GetCPInfoExW', 'lstrlenA', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'GetLastError', 'SetFilePointer', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetModuleHandleA', 'HeapSize'], ['RtlUnwind', 'NtCancelIoFileEx', 'RtlCaptureContext', 'NtCreateFile', 'NtDeviceIoControlFile', 'RtlNtStatusToDosError', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'BCryptGenRandom', 'CertDuplicateCertificateChain', 'CertFreeCertificateChain', 'CertEnumCertificatesInStore', 'CertGetCertificateChain', 'CertVerifyCertificateChainPolicy', 'CertFreeCertificateContext', 'CertDuplicateCertificateContext', 'CertDuplicateStore', 'CertCloseStore', 'CertOpenStore', 'CertAddCertificateContextToStore', 'CompareStringW', 'LCMapStringW', 'HeapSize', 'GetConsoleOutputCP', 'CreateFileW', 'CloseHandle', 'GetConsoleWindow', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'SetHandleInformation', 'GetCurrentProcessId', 'TryAcquireSRWLockExclusive', 'ReleaseSRWLockShared', 'SleepConditionVariableSRW', 'GetSystemInfo', 'SetFileCompletionNotificationModes', 'WriteFile', 'ReadFile', 'GetOverlappedResult', 'CreateIoCompletionPort', 'GetQueuedCompletionStatusEx', 'PostQueuedCompletionStatus', 'CreateEventW', 'FlushFileBuffers', 'CreateNamedPipeW', 'GetLastError', 'SwitchToThread', 'GetCurrentProcess', 'GetCurrentThread', 'GetProcAddress', 'ReleaseMutex', 'SetLastError', 'GetCurrentDirectoryW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GetCommandLineW', 'CompareStringOrdinal', 'DuplicateHandle', 'SetFilePointerEx', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'WaitForSingleObject', 'GetExitCodeProcess', 'TerminateProcess', 'WaitForMultipleObjects', 'WakeAllConditionVariable', 'WakeConditionVariable', 'TryEnterCriticalSection', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'AddVectoredExceptionHandler', 'SetThreadStackGuarantee', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'TlsAlloc', 'HeapReAlloc', 'AcquireSRWLockShared', 'WaitForSingleObjectEx', 'LoadLibraryA', 'CreateMutexA', 'FindNextFileW', 'FindClose', 'DecodePointer', 'GetFinalPathNameByHandleW', 'CancelIo', 'DeleteCriticalSection', 'GetModuleHandleW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetModuleFileNameW', 'ExitProcess', 'GetFullPathNameW', 'GetSystemDirectoryW', 'GetWindowsDirectoryW', 'CreateProcessW', 'CreateThread', 'TlsGetValue', 'TlsSetValue', 'QueryPerformanceFrequency', 'GetModuleHandleA', 'GetConsoleMode', 'WriteConsoleW', 'GetStringTypeW', 'GetFileType', 'SetStdHandle', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindFirstFileExW', 'GetCommandLineA', 'GetModuleHandleExW', 'LoadLibraryExW', 'FreeLibrary', 'TlsFree', 'InitializeCriticalSectionAndSpinCount', 'EncodePointer', 'RaiseException', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeSListHead', 'GetCurrentThreadId', 'FreeContextBuffer', 'DecryptMessage', 'EncryptMessage', 'DeleteSecurityContext', 'QueryContextAttributesW', 'AcquireCredentialsHandleA', 'FreeCredentialsHandle', 'InitializeSecurityContextW', 'ApplyControlToken', 'AcceptSecurityContext', 'ShowWindow', 'WSACleanup', 'send', 'recv', 'shutdown', 'WSAStartup', 'getaddrinfo', 'ioctlsocket', 'connect', 'bind', 'WSASocketW', 'getpeername', 'closesocket', 'freeaddrinfo', 'WSAGetLastError', 'WSAIoctl', 'setsockopt', 'getsockopt', 'WSASend'], ['GetACP', 'GetExitCodeProcess', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'HeapDestroy', 'ReadFile', 'CreateProcessW', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LoadLibraryA', 'ResetEvent', 'GetVersion', 'RaiseException', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetSystemWindowsDirectoryW', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'GetSystemDirectoryW', 'DeleteFileW', 'GetLocalTime', 'GetEnvironmentVariableW', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'GetUserDefaultLangID', 'RemoveDirectoryW', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'InitCommonControls', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CreateWindowExW', 'TranslateMessage', 'CharLowerBuffW', 'CallWindowProcW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'SetWindowLongW', 'MessageBoxW', 'DestroyWindow', 'CharUpperBuffW', 'CharNextW', 'MsgWaitForMultipleObjects', 'LoadStringW', 'ExitWindowsEx', 'DispatchMessageW', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'GetTokenInformation', 'ConvertSidToStringSidW', 'LookupPrivilegeValueW', 'RegCloseKey', 'OpenProcessToken', 'RegOpenKeyExW'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'CopyFileA', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'FindCloseChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'GetConsoleAliasExesLengthA', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'GetFileInformationByHandle', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'InitAtomTable', 'GetBinaryTypeA', 'LeaveCriticalSection', 'VirtualAlloc', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['GetCommandLineW', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['GetModuleHandleA', 'MessageBoxA', 'RegOpenKeyExA', 'SHGetDiskFreeSpaceA', 'InitMUILanguage', '_CorExeMain'], ['Sleep', 'lstrlenA', 'CreateThread', 'VirtualFree', 'GetModuleFileNameW', 'GetTickCount', 'ExitProcess', 'GetFileSize', 'VirtualAlloc', 'ReadFile', 'CloseHandle', 'CreateFileW', 'lstrlenW', 'MultiByteToWideChar', 'memset', '_wtoi', 'memcpy', 'CreateStreamOnHGlobal', 'StrStrA', 'wsprintfA', 'wsprintfW', 'WinHttpCrackUrl', 'WinHttpOpen', 'WinHttpConnect', 'WinHttpOpenRequest', 'WinHttpSendRequest', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpCloseHandle', 'WinHttpReceiveResponse'], ['SetEnvironmentVariableA', 'CompareStringW', 'GetConsoleWindow', 'GetComputerNameA', 'GetSystemTime', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'CloseHandle', 'CreateProcessA', 'DuplicateHandle', 'GetCurrentProcess', 'RtlUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetFileAttributesA', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'CreatePipe', 'GetExitCodeProcess', 'WaitForSingleObject', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetModuleHandleA', 'HeapAlloc', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LoadLibraryA', 'GetLocaleInfoW', 'CompareStringA', 'CreateFileA', 'ShowWindow', 'GetUserNameA'], ['WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeA', 'EnumResourceTypesA', 'EnumResourceNamesA', 'TerminateProcess', 'ReleaseActCtx', 'GetConsoleAliasesLengthA', 'GetVersionExA', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'GetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeW', 'LeaveCriticalSection', 'ReadConsoleInputA', 'TlsGetValue', 'SetComputerNameExA', 'FindAtomA', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineW', 'InterlockedIncrement', 'CopyFileA', 'ZombifyActCtx', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapValidate', 'ExitThread', 'GlobalUnfix', 'GetProcessHeap', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'SetLastError', 'ExitProcess', 'GetSystemTime', 'SetLocalTime', 'EnumCalendarInfoExW', 'OpenSemaphoreW', 'DebugActiveProcess', 'lstrcmpA', 'GetPrivateProfileSectionNamesA', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'HeapLock', 'FindCloseChangeNotification', 'CreateActCtxA', 'GetMailslotInfo', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceA', 'WriteConsoleA', 'VirtualProtect', 'FreeEnvironmentStringsW', 'SetMailslotInfo', 'lstrcpyA', 'VerLanguageNameW', 'UnlockFile', 'SetSystemTime', 'GetFileType', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'GetOverlappedResult', 'FindAtomW', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputA', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lclose', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'HeapSize', 'MoveFileW', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringW', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceA', 'EnterCriticalSection', 'InitAtomTable', 'VirtualAlloc', 'GetBinaryTypeA', 'GetSystemWindowsDirectoryA', 'GetLastError', 'CreateFileA', 'DeleteFileA', 'RaiseException', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'WriteFile', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'GetFileSecurityW', 'WinHttpReadData'], ['EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetProcessHeap', 'CreateFileA', 'CloseHandle', 'HeapWalk', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'SetFileTime', 'CreateNamedPipeA', 'ConnectNamedPipe', 'DisconnectNamedPipe', 'VirtualAlloc', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW', 'RaiseException'], ['CopyFileA', 'SetFileAttributesA', 'FindClose', 'GetPrivateProfileStringA', 'LocalAlloc', 'WritePrivateProfileStringA', 'GetSystemInfo', 'GetModuleFileNameA', 'GetPrivateProfileSectionA', 'CompareStringA', 'GetUserDefaultUILanguage', 'GetVersionExA', 'CloseHandle', 'GetVersion', 'LocalFree', 'DeleteFileA', 'FreeResource', 'MapViewOfFile', 'UnmapViewOfFile', '_llseek', 'FreeLibrary', 'LoadResource', '_lwrite', 'GetProcAddress', '_lclose', 'GetTickCount', 'EnumResourceTypesA', 'FindResourceExA', 'GlobalAlloc', 'SizeofResource', 'EnumResourceLanguagesA', 'GlobalUnlock', 'SetLastError', 'GlobalFree', 'GetTempFileNameA', 'CreateFileMappingA', 'MoveFileA', 'LockResource', '_lread', 'LoadLibraryExA', 'EnumResourceNamesA', 'ReadFile', 'GetTempPathA', 'GetCurrentDirectoryA', 'GetModuleHandleW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrcmpiA', 'GetLastError', 'FindFirstFileA', 'CreateDirectoryA', 'GlobalLock', 'GetShortPathNameA', 'CreateFileW', 'GetLocaleInfoW', 'WriteConsoleW', 'SetStdHandle', 'VirtualQuery', 'SetThreadStackGuarantee', 'VirtualAlloc', 'VirtualProtect', 'GetStringTypeW', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'Sleep', 'FlushFileBuffers', 'LoadLibraryExW', 'InitializeCriticalSectionAndSpinCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'LCMapStringW', 'OpenEventA', 'WaitForSingleObject', 'GetModuleHandleA', 'LoadLibraryA', 'CreateFileMappingW', 'CreateProcessA', 'GetExitCodeProcess', 'GetFileAttributesA', 'GetPrivateProfileIntA', 'WriteFile', 'GetFileInformationByHandle', 'FormatMessageA', 'FindResourceExW', 'GetSystemDefaultUILanguage', 'SearchPathW', 'IsDBCSLeadByte', 'WritePrivateProfileSectionA', 'lstrlenA', 'lstrcmpA', 'CreateFileA', 'GetSystemTime', 'GetFullPathNameA', 'GetCommandLineA', 'GetVersionExW', 'GetStartupInfoW', 'HeapFree', 'HeapAlloc', 'SetUnhandledExceptionFilter', 'ExitProcess', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'GetCurrentThreadId', 'FlsAlloc', 'HeapSetInformation', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'OutputDebugStringA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'CreateFontIndirectA', 'DeleteObject', 'GetObjectA', 'GetStockObject', 'GetDeviceCaps', 'GetWindowRect', 'CheckDlgButton', 'ShowWindow', 'IsDlgButtonChecked', 'CheckRadioButton', 'GetDlgItemTextA', 'GetWindowLongPtrA', 'SendDlgItemMessageA', 'MsgWaitForMultipleObjects', 'LoadStringA', 'GetParent', 'MessageBeep', 'CharNextA', 'SetFocus', 'SendMessageA', 'GetDC', 'MessageBoxA', 'PeekMessageA', 'ReleaseDC', 'GetDlgItem', 'SetWindowLongPtrA', 'PostMessageA', 'DispatchMessageA', 'GetSystemMetrics', 'EnableWindow', 'CallWindowProcA', 'SetDlgItemTextA', 'CharPrevA', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'RtlUnwindEx', 'DestroyPropertySheetPage', 'CreatePropertySheetPageA', 'PropertySheetA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'VerQueryValueA', 'CheckSumMappedFile', 'RegQueryValueExW', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyExW'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetSystemWindowsDirectoryA', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['GetProcAddress', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'ReadFile', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'CloseHandle', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'GetACP', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'WriteConsoleW', 'HeapSize', 'SetEndOfFile', 'DecodePointer'], ['memset', 'wcsncmp', 'memmove', 'wcsncpy', 'wcsstr', '_wcsnicmp', '_wcsdup', 'free', '_wcsicmp', 'wcslen', 'wcscpy', 'wcscmp', 'memcpy', 'tolower', 'wcscat', 'malloc', 'GetModuleHandleW', 'HeapCreate', 'GetStdHandle', 'HeapDestroy', 'ExitProcess', 'WriteFile', 'GetTempFileNameW', 'LoadLibraryExW', 'EnumResourceTypesW', 'FreeLibrary', 'RemoveDirectoryW', 'GetExitCodeProcess', 'EnumResourceNamesW', 'GetCommandLineW', 'LoadResource', 'SizeofResource', 'FreeResource', 'FindResourceW', 'GetNativeSystemInfo', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'EnterCriticalSection', 'CloseHandle', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'TerminateThread', 'CreateThread', 'Sleep', 'GetProcAddress', 'GetVersionExW', 'WideCharToMultiByte', 'HeapAlloc', 'HeapFree', 'LoadLibraryW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetModuleFileNameW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GetCurrentProcess', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'HeapSize', 'MultiByteToWideChar', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTempPathW', 'DeleteFileW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'CreateFileW', 'SetFilePointer', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TlsAlloc', 'HeapReAlloc', 'DeleteCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetLastError', 'SetLastError', 'UnregisterWait', 'GetCurrentThread', 'DuplicateHandle', 'RegisterWaitForSingleObject', 'CharUpperW', 'CharLowerW', 'MessageBoxW', 'DefWindowProcW', 'DestroyWindow', 'GetWindowLongW', 'GetWindowTextLengthW', 'GetWindowTextW', 'UnregisterClassW', 'LoadIconW', 'LoadCursorW', 'RegisterClassExW', 'IsWindowEnabled', 'EnableWindow', 'GetSystemMetrics', 'CreateWindowExW', 'SetWindowLongW', 'SendMessageW', 'SetFocus', 'CreateAcceleratorTableW', 'SetForegroundWindow', 'BringWindowToTop', 'GetMessageW', 'TranslateAcceleratorW', 'TranslateMessage', 'DispatchMessageW', 'DestroyAcceleratorTable', 'PostMessageW', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'IsWindowVisible', 'EnumWindows', 'SetWindowPos', 'GetStockObject', 'InitCommonControlsEx', 'ShellExecuteExW', 'SHGetFolderLocation', 'SHGetPathFromIDListW', 'timeBeginPeriod', 'CoInitialize', 'CoTaskMemFree', 'PathAddBackslashW', 'PathRenameExtensionW', 'PathQuoteSpacesW', 'PathRemoveArgsW', 'PathRemoveBackslashW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegSaveKeyW', 'ImageList_Add', 'Pie', 'AlphaBlend', 'IsEqualGUID', 'VariantCopy', 'ExtractIconW', 'GetDC', 'VerQueryValueW', 'OpenPrinterW'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'WriteConsoleOutputCharacterW', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'UnregisterWait', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'FillConsoleOutputCharacterA', 'CreateMailslotA', 'TerminateProcess', 'GetLastError', 'GetVersionExA', 'FreeResource', 'EnumResourceNamesA', 'FindNextFileA', 'CopyFileExW', 'BuildCommDCBA', 'SetDefaultCommConfigA', 'SetCommConfig', 'WritePrivateProfileStructW', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'SearchPathA', 'GetThreadTimes', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'GlobalAlloc', 'SetThreadIdealProcessor', 'GetProfileSectionW', 'DeleteFileW', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'ContinueDebugEvent', 'EndUpdateResourceW', 'SetLastError', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'FatalAppExitA', 'SetSystemTime', 'OpenFileMappingW', 'lstrcmpW', 'WriteFileGather', 'SetLocaleInfoW', 'DisableThreadLibraryCalls', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetACP', 'GlobalFindAtomW', 'lstrcatW', 'GetPrivateProfileStringW', 'SetMailslotInfo', 'CreateActCtxW', 'GetPrivateProfileIntW', '_lwrite', 'OutputDebugStringW', 'CreateNamedPipeW', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'DebugActiveProcess', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringA', 'GetDriveTypeA', 'GetFileAttributesExA', 'LocalFileTimeToFileTime', 'MoveFileW', 'GetVolumePathNameW', 'EnumDateFormatsA', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'GetStringTypeExW', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'GetCompressedFileSizeW', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'QueryInformationJobObject', 'GetConsoleAliasExesW', 'FlushConsoleInputBuffer', 'OpenMutexA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'DebugBreak', 'OutputDebugStringA', 'LoadLibraryW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'InitiateSystemShutdownW'], ['WSACleanup', 'gethostname', 'gethostbyname', 'closesocket', 'sendto', 'recv', 'recvfrom', 'WSAStartup', 'ioctlsocket', 'setsockopt', 'select', '__WSAFDIsSet', 'getsockopt', 'WSAGetLastError', 'socket', 'bind', 'getsockname', 'SetThreadPriority', 'GetCurrentThread', 'CloseHandle', 'DeviceIoControl', 'SleepEx', 'ResumeThread', 'TerminateThread', 'WaitForMultipleObjects', 'GetVersion', 'ReleaseSemaphore', 'InterlockedDecrement', 'InterlockedIncrement', 'CreateFileA', 'GetVersionExA', 'SetErrorMode', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'CreateMutexA', 'GetSystemTimeAsFileTime', 'lstrcatA', 'GetComputerNameA', 'CreateSemaphoreA', 'GetCurrentProcess', 'MultiByteToWideChar', 'WaitForSingleObject', 'GetSystemTime', 'CreateMailslotA', 'WriteFile', 'ReadFile', 'GetMailslotInfo', 'UnmapViewOfFile', 'lstrcmpiA', 'MapViewOfFile', 'CreateFileMappingA', 'HeapAlloc', 'GetProcessHeap', 'lstrcpynA', 'GetFileSize', 'HeapFree', 'SetEvent', 'CreateEventA', 'FreeLibraryAndExitThread', 'GetLastError', 'GetWindowsDirectoryA', 'FindClose', 'FileTimeToDosDateTime', 'FileTimeToLocalFileTime', 'FindFirstFileA', 'FindNextFileA', 'GetSystemDirectoryA', 'CopyFileA', 'DeleteFileA', 'SetFileTime', 'LocalFree', 'LocalAlloc', 'SetFileAttributesA', 'GetFileTime', 'GetFileAttributesA', 'FindCloseChangeNotification', 'FindNextChangeNotification', 'RemoveDirectoryA', 'FindFirstChangeNotificationA', 'CreateDirectoryA', 'GetModuleHandleA', 'WideCharToMultiByte', 'GetLocalTime', 'GetDriveTypeA', 'GetVolumeInformationA', 'ResetEvent', 'WaitForSingleObjectEx', 'SetFilePointer', 'LocalReAlloc', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InterlockedExchange', 'lstrcpyW', 'lstrlenW', 'lstrcmpW', 'LoadLibraryW', 'GetDiskFreeSpaceA', 'GetLogicalDriveStringsA', 'OpenProcess', 'GetTempPathA', 'LocalFileTimeToFileTime', 'lstrcmpA', 'FindFirstFileW', 'CopyFileW', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'RemoveDirectoryW', 'CreateProcessA', 'CreateProcessW', 'GetStartupInfoA', 'GetStartupInfoW', 'MoveFileA', 'MoveFileW', 'WritePrivateProfileStringA', 'MoveFileExA', 'MoveFileExW', 'GetFileAttributesW', 'SetFileAttributesW', 'FindNextFileW', 'CompareFileTime', 'GetCurrentDirectoryA', 'GetCurrentDirectoryW', 'SetCurrentDirectoryA', 'SetCurrentDirectoryW', 'Sleep', 'lstrlenA', 'lstrcpyA', 'GetTickCount', 'GlobalAlloc', 'DosDateTimeToFileTime', 'CharUpperW', 'CharUpperA', 'MessageBoxA', 'SetWindowsHookExA', 'UnhookWindowsHookEx', 'ExitWindowsEx', 'wsprintfA', 'EnumWindows', 'GetWindowTextA', 'GetProcessWindowStation', 'GetThreadDesktop', 'OpenWindowStationA', 'SetProcessWindowStation', 'OpenDesktopA', 'SetThreadDesktop', 'CloseWindowStation', 'CloseDesktop', 'CallNextHookEx', 'GetWindowThreadProcessId', 'RegQueryInfoKeyA', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RevertToSelf', 'LogonUserA', 'OpenProcessToken', 'ImpersonateLoggedOnUser', 'GetUserNameA', 'RegNotifyChangeKeyValue', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'OpenSCManagerA', 'CloseServiceHandle', 'RegEnumValueW', 'RegEnumValueA', 'RegEnumKeyExW', 'RegEnumKeyExA', 'RegQueryInfoKeyW', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'rand', '_endthreadex', '_beginthreadex', '_except_handler3', 'memset', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'memcpy', 'time', '_ftol', 'memcmp', 'memmove', 'qsort', '_stricmp', 'wcscmp', 'free', 'strstr', 'malloc', 'strcat', 'realloc', 'strlen', 'atol', 'strcpy', 'isdigit', 'sprintf', 'strcmp', '_strupr', 'exit', 'wcslen', 'wcsstr', '__dllonexit', '_onexit', '_initterm', '_adjust_fdiv', 'srand'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'mouse_event', 'keybd_event', 'WindowFromPoint', 'WaitMessage', 'VkKeyScanA', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'ToAscii', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWorkStation', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsClipboardFormatAvailable', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastInputInfo', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumDisplayDevicesA', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteProcessMemory', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualProtect', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'VerLanguageNameA', 'UnmapViewOfFile', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetThreadContext', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'PeekNamedPipe', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LocalFileTimeToFileTime', 'LocalAlloc', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadReadPtr', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GlobalUnlock', 'GlobalMemoryStatus', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLangID', 'GetTickCount', 'GetThreadLocale', 'GetThreadContext', 'GetTempPathA', 'GetSystemPowerStatus', 'GetSystemDirectoryA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitThread', 'ExitProcess', 'EnumResourceNamesA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateRemoteThread', 'CreateProcessA', 'CreatePipe', 'CreateMutexA', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'Beep', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueA', 'LookupPrivilegeNameA', 'LookupPrivilegeDisplayNameA', 'LookupAccountSidA', 'IsValidSid', 'GetUserNameA', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'GetCurrentHwProfileA', 'AdjustTokenPrivileges', '__WSAFDIsSet', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'gethostname', 'getservbyname', 'gethostbyname', 'gethostbyaddr', 'socket', 'shutdown', 'sendto', 'send', 'select', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'getsockname', 'connect', 'closesocket', 'bind', 'accept', 'Sleep', 'CoTaskMemFree', 'StringFromCLSID', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHFileOperationA', 'DragQueryFileA', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CoTaskMemFree', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'URLDownloadToFileA', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA', 'InternetConnectA', 'InternetCloseHandle', 'HttpQueryInfoA', 'FtpPutFileA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'waveInUnprepareHeader', 'waveInStart', 'waveInReset', 'waveInPrepareHeader', 'waveInOpen', 'waveInClose', 'waveInAddBuffer', 'PlaySoundA', 'mciSendStringA', 'Netbios', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipDeleteGraphics', 'GdipCreateBitmapFromHBITMAP', 'GdipCreateBitmapFromScan0', 'GdipGetImagePixelFormat', 'GdipGetImageGraphicsContext', 'GdipSaveImageToStream', 'GdipDisposeImage', 'GdiplusShutdown', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'StartServiceA', 'QueryServiceStatus', 'OpenServiceA', 'OpenSCManagerA', 'EnumServicesStatusA', 'DeleteService', 'CreateServiceA', 'ControlService', 'CloseServiceHandle', 'acmStreamUnprepareHeader', 'acmStreamPrepareHeader', 'acmStreamConvert', 'acmStreamReset', 'acmStreamSize', 'acmStreamClose', 'acmStreamOpen', 'NtQuerySystemInformation', 'NetApiBufferFree', 'NetShareGetInfo', 'NetShareEnum', 'WSAIoctl', 'SHGetFolderPathA', 'NtUnmapViewOfSection', 'EnumDisplayMonitors', 'GetMonitorInfoA', 'SHEmptyRecycleBinA', 'capGetDriverDescriptionA'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'SysFreeString', 'CharNextW'], ['OpenProcess', 'VirtualAlloc', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpiW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'OpenThread', 'GlobalAlloc', 'CreateFileW', 'SetFilePointerEx', 'GetFileSizeEx', 'ReadConsoleW', 'ReadFile', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapQueryInformation', 'GetCurrentThreadId', 'GetCurrentProcessId', 'Process32NextW', 'CloseHandle', 'HeapReAlloc', 'GetStringTypeW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'SetConsoleCtrlHandler', 'WriteConsoleW', 'OutputDebugStringW', 'GetCurrentThread', 'GetFileType', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsDebuggerPresent', 'RaiseException', 'MultiByteToWideChar', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RtlPcToFileHeader', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'HeapSize', 'HeapValidate', 'GetSystemInfo', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'RtlUnwind', 'DefWindowProcW', 'CreateWindowExW', 'DestroyWindow', 'SetWindowLongW', 'SetWindowLongPtrW', 'GetMenuBarInfo', 'RegisterClassW', 'DuplicateTokenEx', 'OpenProcessToken', 'CreateProcessWithTokenW', 'NtSuspendThread', 'NtOpenThread', 'NtFreeVirtualMemory', 'NtQueryVirtualMemory', 'NtGetContextThread', 'NtAllocateVirtualMemory', 'RtlInitUnicodeString', 'RtlInitAnsiString', 'NtQuerySystemInformation', 'NtClose', 'NtResumeThread', 'NtSetContextThread', 'NtFlushInstructionCache', 'LdrGetDllHandle', 'LdrGetProcedureAddress', 'RtlCaptureContext', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'NtProtectVirtualMemory'], ['Rectangle', 'CoGetApartmentType', 'OleFlushClipboard', 'OleInitialize', 'CoGetObjectContext', 'CreateFileW', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'GetModuleHandleA', 'FreeConsole', 'GetModuleHandleW', 'RaiseException', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'MultiByteToWideChar', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableSRW', 'InitOnceComplete', 'InitOnceBeginInitialize', 'GetStringTypeW', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'TryAcquireSRWLockExclusive', 'WideCharToMultiByte', 'CloseHandle', 'WaitForSingleObjectEx', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetSystemTimeAsFileTime', 'GetProcAddress', 'GetCPInfo', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'InitializeSListHead', 'SetEnvironmentVariableW', 'RtlUnwind', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'WriteConsoleW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'LookupAccountNameA', 'GetUserNameA', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'VirtualQuery', 'TerminateProcess', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesA', 'SetErrorMode', 'SetCurrentDirectoryA', 'RemoveDirectoryA', 'ReadFile', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OpenProcess', 'MulDiv', 'MoveFileA', 'LocalFileTimeToFileTime', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemDirectoryA', 'GetStringTypeExA', 'GetStdHandle', 'GetShortPathNameA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeviceIoControl', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CopyFileA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'SelectObject', 'MoveToEx', 'LineTo', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'DeleteObject', 'CreateSolidBrush', 'CreatePen', 'CreateFontA', 'CreateWindowExA', 'UnregisterClassA', 'TranslateMessage', 'SystemParametersInfoA', 'ShowWindow', 'SetWindowPos', 'SetWindowLongA', 'SetTimer', 'SetFocus', 'SetActiveWindow', 'SendMessageA', 'ReleaseDC', 'RegisterWindowMessageA', 'RegisterClassA', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'MessageBoxA', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'KillTimer', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowLongA', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetWindow', 'GetMessageA', 'GetFocus', 'GetDesktopWindow', 'GetDC', 'GetClientRect', 'GetActiveWindow', 'FindWindowA', 'FillRect', 'EnumWindows', 'EndPaint', 'EnableWindow', 'EnableMenuItem', 'DrawIcon', 'DispatchMessageA', 'DefWindowProcA', 'BeginPaint', 'CharNextA', 'CharToOemA', 'Sleep', 'ShellExecuteA', 'InternetSetOptionA', 'InternetGetLastResponseInfoA', 'InternetConnectA', 'HttpSendRequestA', 'HttpOpenRequestA', 'InitCommonControls'], ['HeapAlloc', 'GetProcessHeap', 'CreateFileA', 'GetFileSize', 'WriteFile', 'ReadFile', 'MultiByteToWideChar', 'CloseHandle', 'GetFullPathNameW', 'FindFirstFileExW', 'FindClose', 'FindNextFileW', 'LocalAlloc', 'GetVersionExA', 'LocalFree', 'Sleep', 'GlobalMemoryStatus', 'GetFileAttributesA', 'SetFilePointer', 'MapViewOfFile', 'UnmapViewOfFile', 'SystemTimeToFileTime', 'GetTickCount', 'FileTimeToSystemTime', 'GetLocalTime', 'CreateFileMappingA', 'GetFileInformationByHandle', 'WriteConsoleW', 'SetEndOfFile', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'FileTimeToLocalFileTime', 'GetLastError', 'FindFirstFileExA', 'FindNextFileA', 'EncodePointer', 'DecodePointer', 'HeapFree', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'GetProcAddress', 'HeapSize', 'ExitProcess', 'HeapCreate', 'GetStdHandle', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'GetTimeZoneInformation', 'LCMapStringW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetStringTypeW', 'HeapReAlloc', 'LoadLibraryW', 'CompareStringW', 'CreateFileW', 'GetDesktopWindow', 'NetWkstaGetInfo', 'NetApiBufferFree', 'DsRoleGetPrimaryDomainInformation'], ['SetupDefaultQueueCallbackW', 'VarI2FromDate', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleW'], ['GetDefaultCommConfigW', 'InterlockedIncrement', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'GetStringTypeExW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'RaiseException', 'EnumSystemLocalesA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'EnterCriticalSection', 'GetStringTypeA', 'DnsHostnameToComputerNameA', 'GetFileType', 'GetModuleFileNameA', 'LoadLibraryExA', 'UpdateResourceW', 'CreateMailslotA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'SetThreadContext', 'GetLocaleInfoA', 'GetComputerNameA', 'LoadLibraryA', 'GetVolumeNameForVolumeMountPointA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'CloseEventLog'], ['SHGetFolderPathA', 'wsprintfA', 'wsprintfW', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpSetOption', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpConnect', 'WinHttpQueryOption', 'WinHttpOpen', 'WinHttpSetStatusCallback', 'WinHttpReceiveResponse', 'WinHttpQueryDataAvailable', 'WinHttpCloseHandle', 'GetProcessHeap', 'CloseHandle', 'GetComputerNameExA', 'VirtualProtect', 'VirtualAlloc', 'lstrcatA', 'lstrcpyA', 'GetTempPathA', 'CreateDirectoryA', 'LoadLibraryA', 'GetProcAddress', 'GetComputerNameExW', 'GetTickCount64', 'SwitchToThread', 'GetLastError', 'Sleep', 'ExitProcess', 'CreateThread', 'HeapAlloc', 'HeapFree', 'WriteFile', 'CreateFileA', 'HeapReAlloc', 'GetUserNameA', 'LookupAccountNameW', 'memset'], ['HeapFree', 'RegCloseKey', 'SHGetFolderPathW', 'WinHttpQueryHeaders', 'CryptUnprotectData', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'ShellExecuteA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'wsprintfA', 'LoadUserProfileA', 'UnloadUserProfile', 'InternetCrackUrlA', 'InternetCreateUrlA', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup'], ['FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'FillConsoleOutputCharacterA', 'CreateMailslotA', 'TerminateProcess', 'GetLastError', 'GetVersionExA', 'FreeResource', 'EnumResourceNamesA', 'FindNextFileA', 'CopyFileExW', 'BuildCommDCBA', 'SetDefaultCommConfigA', 'SetCommConfig', 'WritePrivateProfileStructW', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'SearchPathA', 'GetThreadTimes', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'GlobalAlloc', 'SetThreadIdealProcessor', 'GetProfileSectionW', 'DeleteFileW', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'ContinueDebugEvent', 'EndUpdateResourceW', 'SetLastError', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'FatalAppExitA', 'SetSystemTime', 'OpenFileMappingA', 'lstrcmpW', 'WriteFileGather', 'SetLocaleInfoW', 'VirtualAllocEx', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetACP', 'GlobalFindAtomW', 'lstrcatW', 'GetPrivateProfileStringW', 'SetMailslotInfo', 'CreateActCtxW', 'GetPrivateProfileIntW', '_lwrite', 'OutputDebugStringW', 'CreateNamedPipeW', 'GetAtomNameA', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'DebugActiveProcess', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringA', 'GetDriveTypeA', 'GetFileAttributesExA', 'LocalFileTimeToFileTime', 'MoveFileW', 'GetVolumePathNameW', 'EnumDateFormatsA', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'GetStringTypeExW', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'GetCompressedFileSizeW', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'QueryInformationJobObject', 'GetConsoleAliasExesW', 'FlushConsoleInputBuffer', 'OpenMutexA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'DebugBreak', 'OutputDebugStringA', 'LoadLibraryW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'InitiateSystemShutdownW'], ['GetModuleFileNameW', 'lstrcpyW', 'CreateFileW', 'VirtualAlloc', 'ReadFile', 'Sleep', 'GetSystemTime', 'GetModuleHandleA', 'VirtualProtect', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'RtlUnwind', 'HeapSize', 'MultiByteToWideChar', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW'], ['AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount64', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringA', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'Sleep', 'SuspendThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'LoadStringW', 'RegQueryValueExW', 'ShellExecuteW', 'socket', 'GetAdaptersInfo', 'WTSUnRegisterSessionNotification'], ['GetLastError', 'HeapAlloc', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleHandleA', 'ExitProcess', 'CreateEventA', 'CloseHandle', 'GetTickCount', 'VirtualFree', 'VirtualAlloc', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'WaitForSingleObject', 'SetEvent', 'memcpy', 'memset', 'RtlUnwind', 'NtQueryVirtualMemory'], ['CreateProcessA', 'CreateRemoteThread', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'WriteProcessMemory', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_snprintf', '_unlock', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleA', 'MessageBoxW', 'GetUserNameA', 'SHGetDiskFreeSpaceA', 'DSA_Create', '_CorExeMain'], ['MoveFileExA', 'AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'lstrlenW', 'GetConsoleAliasesLengthW', 'GetCPInfoExW', 'GetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'SetCalendarInfoW', 'MoveFileA', 'GetModuleHandleA', 'VirtualProtect', 'SetFilePointer', 'GetStdHandle', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['FreeSid', 'CryptUnprotectData', 'PatBlt', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'acmStreamSize', '_gcvt', 'NetShareEnum', 'RtlSetProcessIsCritical', 'CoInitialize', 'VariantCopy', 'IsPwrShutdownAllowed', 'SHGetMalloc', 'SHGetFolderPathA', 'GetDC', 'InternetOpenA', 'waveInOpen', 'send'], ['SetEnvironmentVariableA', 'WriteConsoleW', 'GetTimeZoneInformation', 'LCMapStringW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetConsoleMode', 'GetConsoleCP', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'CloseHandle', 'UnhandledExceptionFilter', 'GetStringTypeW', 'QueryPerformanceCounter', 'HeapCreate', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'SetUnhandledExceptionFilter', 'GetFileType', 'SetStdHandle', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapReAlloc', 'RaiseException', 'ExitThread', 'ExitProcess', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'HeapFree', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'FindResourceExW', 'VirtualProtect', 'GetNumberFormatW', 'SearchPathW', 'GetProfileIntW', 'GetTickCount', 'InitializeCriticalSectionAndSpinCount', 'GetTempFileNameW', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'SetErrorMode', 'FileTimeToSystemTime', 'lstrlenA', 'GlobalGetAtomNameW', 'GetFullPathNameW', 'GetVolumeInformationW', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'GlobalFindAtomW', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'GetExitCodeThread', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'CompareStringW', 'GlobalFlags', 'InterlockedDecrement', 'ReleaseActCtx', 'CreateActCtxW', 'GetCurrentDirectoryW', 'GlobalFree', 'CopyFileW', 'GlobalSize', 'GlobalUnlock', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GlobalAddAtomW', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'ResumeThread', 'SetThreadPriority', 'lstrcmpA', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'ActivateActCtx', 'DeactivateActCtx', 'SetLastError', 'WideCharToMultiByte', 'GlobalLock', 'GlobalAlloc', 'InterlockedExchange', 'ReadFile', 'GetVersionExW', 'GetCurrentProcess', 'MultiByteToWideChar', 'CreateThread', 'LoadLibraryW', 'FreeLibrary', 'GetProcAddress', 'SetFilePointer', 'FlushFileBuffers', 'SetFileAttributesW', 'FindNextFileW', 'GetModuleHandleW', 'GetFileSize', 'GetLastError', 'GetPrivateProfileStringW', 'GetWindowsDirectoryW', 'lstrcatW', 'GetVersion', 'GetTempPathW', 'Sleep', 'GetModuleFileNameW', 'lstrcpyW', 'lstrcmpW', 'lstrcpynW', 'GetCurrentProcessId', 'DeleteFileW', 'RemoveDirectoryW', 'FindFirstFileW', 'FindClose', 'lstrlenW', 'CreateFileW', 'WriteFile', 'FreeResource', 'lstrcmpiW', 'OpenProcess', 'OutputDebugStringW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WaitForSingleObject', 'TerminateProcess', 'LocalReAlloc', 'IsClipboardFormatAvailable', 'SetMenuDefaultItem', 'PostThreadMessageW', 'CreateMenu', 'IsMenu', 'UpdateLayeredWindow', 'EnableScrollBar', 'UnionRect', 'MonitorFromPoint', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcW', 'DefFrameProcW', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadImageW', 'InsertMenuItemW', 'TranslateAcceleratorW', 'LockWindowUpdate', 'BringWindowToTop', 'SetCursorPos', 'SetRect', 'CreateAcceleratorTableW', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'MapVirtualKeyW', 'ToUnicodeEx', 'CopyAcceleratorTableW', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'DrawStateW', 'MessageBeep', 'GetSystemMenu', 'LoadMenuW', 'SetClassLongW', 'GetAsyncKeyState', 'NotifyWinEvent', 'CreatePopupMenu', 'DestroyAcceleratorTable', 'SetParent', 'RedrawWindow', 'SetWindowRgn', 'IsZoomed', 'OffsetRect', 'IsRectEmpty', 'IntersectRect', 'UnregisterClassW', 'DestroyMenu', 'GetMenuItemInfoW', 'InflateRect', 'CharUpperW', 'DestroyIcon', 'IsIconic', 'ShowWindow', 'MoveWindow', 'IsDialogMessageW', 'CheckDlgButton', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetClassLongW', 'SetPropW', 'GetPropW', 'CopyIcon', 'IsWindow', 'SetFocus', 'GetWindowTextLengthW', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'TranslateMessage', 'DispatchMessageW', 'PeekMessageW', 'PostMessageW', 'GetWindowThreadProcessId', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'CreateWindowExW', 'GetClassInfoExW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetWindowPlacement', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'SetWindowPos', 'WaitMessage', 'ReleaseCapture', 'GetCapture', 'WindowFromPoint', 'SetCapture', 'GetSysColorBrush', 'GetClassInfoW', 'DefWindowProcW', 'MapWindowPoints', 'GetClientRect', 'LoadCursorW', 'SetLayeredWindowAttributes', 'GetSystemMetrics', 'EnumDisplayMonitors', 'SystemParametersInfoW', 'GetMonitorInfoW', 'SetRectEmpty', 'CopyRect', 'KillTimer', 'SetTimer', 'InvalidateRect', 'UpdateWindow', 'CharUpperBuffW', 'GetDoubleClickTime', 'GetIconInfo', 'IsCharLowerW', 'GetKeyNameTextW', 'MapVirtualKeyExW', 'SubtractRect', 'HideCaret', 'GetNextDlgGroupItem', 'MapDialogRect', 'DrawIcon', 'DestroyCursor', 'GetWindowRgn', 'GetDesktopWindow', 'RealChildWindowFromPoint', 'GetWindow', 'GetDlgCtrlID', 'GetWindowRect', 'GetClassNameW', 'PtInRect', 'SetWindowTextW', 'GetSysColor', 'EndPaint', 'FrameRect', 'GetUpdateRect', 'GetMenuDefaultItem', 'OpenClipboard', 'CopyImage', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'GetForegroundWindow', 'RegisterClipboardFormatW', 'GetWindowTextW', 'EnumWindows', 'wsprintfW', 'PostQuitMessage', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'RemovePropW', 'ModifyMenuW', 'SendMessageW', 'GetParent', 'GetFocus', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'GetMessageW', 'CallNextHookEx', 'SetWindowsHookExW', 'SetCursor', 'ShowOwnedPopups', 'MessageBoxW', 'EnableWindow', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongW', 'RemoveMenu', 'GetSubMenu', 'GetMenuItemCount', 'InsertMenuW', 'GetMenuItemID', 'AppendMenuW', 'GetMenuStringW', 'DeleteMenu', 'UnhookWindowsHookEx', 'FillRect', 'TabbedTextOutW', 'DrawTextW', 'DrawTextExW', 'GrayStringW', 'ScreenToClient', 'ClientToScreen', 'GetDC', 'ReleaseDC', 'GetWindowDC', 'BeginPaint', 'InvertRect', 'SetDIBColorTable', 'RealizePalette', 'StretchBlt', 'SetPixel', 'Rectangle', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'GetSystemPaletteEntries', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'EnumFontFamiliesExW', 'GetTextFaceW', 'SetPixelV', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'GetRgnBox', 'OffsetRgn', 'Polygon', 'Ellipse', 'Polyline', 'CreateEllipticRgn', 'GetTextColor', 'GetBkColor', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'CreateDIBSection', 'DPtoLP', 'PatBlt', 'CombineRgn', 'SetRectRgn', 'GetTextExtentPoint32W', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'GetTextMetricsW', 'CreateRectRgnIndirect', 'CreateCompatibleBitmap', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateHatchBrush', 'CreateSolidBrush', 'CreatePen', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreateCompatibleDC', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectW', 'CreateRectRgn', 'SelectClipRgn', 'DeleteObject', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'CreateBitmap', 'GetDeviceCaps', 'CopyMetaFileW', 'CreateDCW', 'SaveDC', 'RestoreDC', 'SetBkColor', 'SetTextColor', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetWindowOrgEx', 'TransparentBlt', 'AlphaBlend', 'GetFileTitleW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'RegSetValueExW', 'RegQueryValueExW', 'RegFlushKey', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryValueW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegDeleteValueW', 'LookupAccountNameW', 'GetLengthSid', 'InitializeAcl', 'AddAccessAllowedAce', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'OpenProcessToken', 'GetTokenInformation', 'SetSecurityDescriptorOwner', 'SetFileSecurityW', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'LookupAccountSidW', 'FreeSid', 'RegCloseKey', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHAppBarMessage', 'DragQueryFileW', 'DragFinish', 'SHGetFileInfoW', 'ShellExecuteW', 'SHGetSpecialFolderPathW', 'ShellExecuteExW', 'SHBrowseForFolderW', 'ImageList_GetIconSize', 'PathIsUNCW', 'PathStripToRootW', 'PathFindFileNameW', 'PathFindExtensionW', 'PathFileExistsW', 'SHDeleteValueW', 'SHDeleteKeyW', 'PathRemoveFileSpecW', 'DoDragDrop', 'CreateStreamOnHGlobal', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'RegisterDragDrop', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'OleGetClipboard', 'RevokeDragDrop', 'CoLockObjectExternal', 'CoTaskMemFree', 'CoCreateGuid', 'CoInitializeEx', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitializeSecurity', 'SysStringLen', 'SysAllocStringLen', 'VariantChangeType', 'SysAllocString', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'VarBstrFromDate', 'SysFreeString', 'VariantInit', 'VariantClear', 'GetErrorInfo', 'EnumProcessModules', 'EnumProcesses', 'GetModuleBaseNameW', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipDrawImageI', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ImmReleaseContext', 'ImmGetContext', 'ImmGetOpenStatus', 'PlaySoundW'], ['SetWindowLongW', 'GetCursorPos', 'DestroyWindow', 'RegisterClassW', 'ReleaseDC', 'SendMessageW', 'PostMessageW', 'MoveWindow', 'SetWindowTextW', 'UnregisterClassA', 'GetMenuStringW', 'SetCapture', 'CreateWindowExW', 'LoadStringW', 'InflateRect', 'DefWindowProcW', 'DestroyMenu', 'CreateWindowExA', 'SetWindowPos', 'GetCurrentProcess', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringA', 'IsBadWritePtr', 'HeapReAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'UnhandledExceptionFilter', 'FatalAppExitA', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'WriteFile', 'HeapFree', 'VirtualFree', 'HeapDestroy', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'VirtualAlloc', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'LocalSize', 'LocalAlloc', 'FindResourceA', 'GetModuleHandleW', 'MultiByteToWideChar', 'FreeLibrary', 'HeapCreate', 'LCMapStringW', 'HeapAlloc', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'TerminateProcess', 'RtlUnwind', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'GetLastError', 'GetCurrentThread', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte'], ['Sleep', 'GetSystemDirectoryA', 'GetEnvironmentVariableA', 'VirtualProtect', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetCurrentThreadId', 'RaiseException', 'RtlUnwind', 'GetModuleFileNameW', 'GetModuleHandleExW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapValidate', 'GetSystemInfo', 'GetLastError', 'ExitProcess', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetTimeZoneInformation', 'GetProcessHeap', 'GetFileType', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'CreateThread', 'LoadLibraryExW', 'OutputDebugStringA', 'WriteConsoleW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapAlloc', 'FreeLibrary', 'CompareStringW', 'LCMapStringW', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'FlushFileBuffers', 'SetEnvironmentVariableA', 'SetStdHandle', 'CloseHandle', 'CreateFileW', 'LoadLibraryExA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetAce', 'ImageList_Remove', 'GetSaveFileNameW', 'LineTo', 'IcmpSendEcho', 'WNetGetConnectionW', 'CoGetObject', 'OleLoadPicture', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'connect'], ['GetModuleHandleA', 'DefWindowProcA', 'RegQueryValueA', 'SHGetDiskFreeSpaceExW', 'CreateStatusWindowA', '_CorExeMain'], ['InterlockedIncrement', 'OpenJobObjectA', 'ZombifyActCtx', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'LoadLibraryW', 'GetCalendarInfoW', 'CreateEventA', 'WriteConsoleW', 'GetModuleFileNameW', 'GetOverlappedResult', 'FreeLibraryAndExitThread', 'SetLastError', 'GetProcAddress', 'lstrcpynA', 'CreateConsoleScreenBuffer', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'LocalAlloc', 'MoveFileA', 'GetModuleFileNameA', 'EnumDateFormatsW', 'GetShortPathNameW', 'GetLongPathNameA', 'HeapSize', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapAlloc', 'HeapCreate', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'RtlUnwind', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'IsProcessorFeaturePresent', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'CloseHandle', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'RaiseException', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'HeapReAlloc', 'SetFilePointer', 'CreateFileW', 'OleInitialize', 'WinHttpCheckPlatform'], ['CreateEnvironmentBlock', 'DestroyEnvironmentBlock', '?sampleSize@QAudioFormat@@QEBAHXZ', '?setCodec@QAudioFormat@@QEAAXAEBVQString@@@Z', '?codec@QAudioFormat@@QEBA?AVQString@@XZ', '?setByteOrder@QAudioFormat@@QEAAXW4Endian@1@@Z', '?byteOrder@QAudioFormat@@QEBA?AW4Endian@1@XZ', '?setSampleType@QAudioFormat@@QEAAXW4SampleType@1@@Z', '?sampleType@QAudioFormat@@QEBA?AW4SampleType@1@XZ', '??0QAudioDeviceInfo@@QEAA@AEBV0@@Z', '??0QAudioDeviceInfo@@QEAA@XZ', '??1QAudioDeviceInfo@@QEAA@XZ', '??4QAudioDeviceInfo@@QEAAAEAV0@AEBV0@@Z', '?isNull@QAudioDeviceInfo@@QEBA_NXZ', '?deviceName@QAudioDeviceInfo@@QEBA?AVQString@@XZ', '?isFormatSupported@QAudioDeviceInfo@@QEBA_NAEBVQAudioFormat@@@Z', '?nearestFormat@QAudioDeviceInfo@@QEBA?AVQAudioFormat@@AEBV2@@Z', '?supportedCodecs@QAudioDeviceInfo@@QEBA?AVQStringList@@XZ', '?supportedSampleRates@QAudioDeviceInfo@@QEBA?AV?$QList@H@@XZ', '?supportedChannelCounts@QAudioDeviceInfo@@QEBA?AV?$QList@H@@XZ', '?supportedSampleSizes@QAudioDeviceInfo@@QEBA?AV?$QList@H@@XZ', '?supportedByteOrders@QAudioDeviceInfo@@QEBA?AV?$QList@W4Endian@QAudioFormat@@@@XZ', '?supportedSampleTypes@QAudioDeviceInfo@@QEBA?AV?$QList@W4SampleType@QAudioFormat@@@@XZ', '??0QAudioFormat@@QEAA@XZ', '??1QAudioFormat@@QEAA@XZ', '?setSampleRate@QAudioFormat@@QEAAXH@Z', '?sampleRate@QAudioFormat@@QEBAHXZ', '?setSampleSize@QAudioFormat@@QEAAXH@Z', '?channelCount@QAudioFormat@@QEBAHXZ', '?availableDevices@QAudioDeviceInfo@@SA?AV?$QList@VQAudioDeviceInfo@@@@W4Mode@QAudio@@@Z', '?setChannelCount@QAudioFormat@@QEAAXH@Z', '?rowsAboutToBeRemoved@QAbstractItemView@@MEAAXAEBVQModelIndex@@HH@Z', '?rowsInserted@QAbstractItemView@@MEAAXAEBVQModelIndex@@HH@Z', '?dataChanged@QAbstractItemView@@MEAAXAEBVQModelIndex@@0AEBV?$QVector@H@@@Z', '?edit@QAbstractItemView@@MEAA_NAEBVQModelIndex@@W4EditTrigger@1@PEAVQEvent@@@Z', '?selectAll@QAbstractItemView@@UEAAXXZ', '?reset@QAbstractItemView@@UEAAXXZ', '?inputMethodQuery@QAbstractItemView@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?keyboardSearch@QAbstractItemView@@UEAAXAEBVQString@@@Z', '?setTextElideMode@QAbstractItemView@@QEAAXW4TextElideMode@Qt@@@Z', '?setDragDropOverwriteMode@QAbstractItemView@@QEAAX_N@Z', '?setEditTriggers@QAbstractItemView@@QEAAXV?$QFlags@W4EditTrigger@QAbstractItemView@@@@@Z', '?setSelectionBehavior@QAbstractItemView@@QEAAXW4SelectionBehavior@1@@Z', '?setSelectionMode@QAbstractItemView@@QEAAXW4SelectionMode@1@@Z', '?keyPressEvent@QAbstractScrollArea@@MEAAXPEAVQKeyEvent@@@Z', '?dropEvent@QAbstractScrollArea@@MEAAXPEAVQDropEvent@@@Z', '?dragLeaveEvent@QAbstractScrollArea@@MEAAXPEAVQDragLeaveEvent@@@Z', '?dragMoveEvent@QAbstractScrollArea@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragEnterEvent@QAbstractScrollArea@@MEAAXPEAVQDragEnterEvent@@@Z', '?contextMenuEvent@QAbstractScrollArea@@MEAAXPEAVQContextMenuEvent@@@Z', '?wheelEvent@QAbstractScrollArea@@MEAAXPEAVQWheelEvent@@@Z', '?mouseMoveEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?paintEvent@QAbstractScrollArea@@MEAAXPEAVQPaintEvent@@@Z', '?viewportEvent@QAbstractScrollArea@@MEAA_NPEAVQEvent@@@Z', '?setupViewport@QAbstractScrollArea@@UEAAXPEAVQWidget@@@Z', '?sizeHint@QAbstractScrollArea@@UEBA?AVQSize@@XZ', '?minimumSizeHint@QAbstractScrollArea@@UEBA?AVQSize@@XZ', '?spacerItem@QLayoutItem@@UEAAPEAVQSpacerItem@@XZ', '?widget@QLayoutItem@@UEAAPEAVQWidget@@XZ', '?hitButton@QPushButton@@MEBA_NAEBVQPoint@@@Z', '?focusOutEvent@QPushButton@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QPushButton@@MEAAXPEAVQFocusEvent@@@Z', '?keyPressEvent@QPushButton@@MEAAXPEAVQKeyEvent@@@Z', '?paintEvent@QPushButton@@MEAAXPEAVQPaintEvent@@@Z', '?event@QPushButton@@MEAA_NPEAVQEvent@@@Z', '?minimumSizeHint@QPushButton@@UEBA?AVQSize@@XZ', '?sizeHint@QPushButton@@UEBA?AVQSize@@XZ', '??1QPushButton@@UEAA@XZ', '??0QPushButton@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QPushButton@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QPushButton@@UEAAPEAXPEBD@Z', '?metaObject@QPushButton@@UEBAPEBUQMetaObject@@XZ', '?childEvent@QLayout@@MEAAXPEAVQChildEvent@@@Z', '?layout@QLayout@@UEAAPEAV1@XZ', '?controlTypes@QLayout@@UEBA?AV?$QFlags@W4ControlType@QSizePolicy@@@@XZ', '?isEmpty@QLayout@@UEBA_NXZ', '?indexOf@QLayout@@UEBAHPEAVQWidget@@@Z', '?geometry@QLayout@@UEBA?AVQRect@@XZ', '?changeEvent@QFrame@@MEAAXPEAVQEvent@@@Z', '?setFrameShadow@QFrame@@QEAAXW4Shadow@1@@Z', '?setFrameShape@QFrame@@QEAAXW4Shape@1@@Z', '?viewportSizeHint@QScrollArea@@MEBA?AVQSize@@XZ', '?scrollContentsBy@QScrollArea@@MEAAXHH@Z', '?resizeEvent@QScrollArea@@MEAAXPEAVQResizeEvent@@@Z', '?eventFilter@QScrollArea@@MEAA_NPEAVQObject@@PEAVQEvent@@@Z', '?event@QScrollArea@@MEAA_NPEAVQEvent@@@Z', '?focusNextPrevChild@QScrollArea@@UEAA_N_N@Z', '?sizeHint@QScrollArea@@UEBA?AVQSize@@XZ', '?setWidgetResizable@QScrollArea@@QEAAX_N@Z', '?setWidget@QScrollArea@@QEAAXPEAVQWidget@@@Z', '??1QScrollArea@@UEAA@XZ', '??0QScrollArea@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QScrollArea@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QScrollArea@@UEAAPEAXPEBD@Z', '?metaObject@QScrollArea@@UEBAPEBUQMetaObject@@XZ', '?event@QStatusBar@@MEAA_NPEAVQEvent@@@Z', '?resizeEvent@QStatusBar@@MEAAXPEAVQResizeEvent@@@Z', '?paintEvent@QStatusBar@@MEAAXPEAVQPaintEvent@@@Z', '?showEvent@QStatusBar@@MEAAXPEAVQShowEvent@@@Z', '??1QStatusBar@@UEAA@XZ', '??0QStatusBar@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QStatusBar@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QStatusBar@@UEAAPEAXPEBD@Z', '?metaObject@QStatusBar@@UEBAPEBUQMetaObject@@XZ', '?staticMetaObject@QAbstractButton@@2UQMetaObject@@B', '?timerEvent@QAbstractButton@@MEAAXPEAVQTimerEvent@@@Z', '?changeEvent@QAbstractButton@@MEAAXPEAVQEvent@@@Z', '?mouseMoveEvent@QAbstractButton@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QAbstractButton@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QAbstractButton@@MEAAXPEAVQMouseEvent@@@Z', '?keyReleaseEvent@QAbstractButton@@MEAAXPEAVQKeyEvent@@@Z', '?nextCheckState@QAbstractButton@@MEAAXXZ', '?checkStateSet@QAbstractButton@@MEAAXXZ', '?clicked@QAbstractButton@@QEAAX_N@Z', '?setText@QAbstractButton@@QEAAXAEBVQString@@@Z', '?event@QMainWindow@@MEAA_NPEAVQEvent@@@Z', '?contextMenuEvent@QMainWindow@@MEAAXPEAVQContextMenuEvent@@@Z', '?createPopupMenu@QMainWindow@@UEAAPEAVQMenu@@XZ', '?setCentralWidget@QMainWindow@@QEAAXPEAVQWidget@@@Z', '?setStatusBar@QMainWindow@@QEAAXPEAVQStatusBar@@@Z', '??1QMainWindow@@UEAA@XZ', '??0QMainWindow@@QEAA@PEAVQWidget@@V?$QFlags@W4WindowType@Qt@@@@@Z', '?qt_metacall@QMainWindow@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QMainWindow@@UEAAPEAXPEBD@Z', '?metaObject@QMainWindow@@UEBAPEBUQMetaObject@@XZ', '?currentChanged@QTableView@@MEAAXAEBVQModelIndex@@0@Z', '?selectionChanged@QTableView@@MEAAXAEBVQItemSelection@@0@Z', '?isIndexHidden@QTableView@@MEBA_NAEBVQModelIndex@@@Z', '?horizontalScrollbarAction@QTableView@@MEAAXH@Z', '?verticalScrollbarAction@QTableView@@MEAAXH@Z', '?sizeHintForColumn@QTableView@@MEBAHH@Z', '?sizeHintForRow@QTableView@@MEBAHH@Z', '?viewportSizeHint@QTableView@@MEBA?AVQSize@@XZ', '?updateGeometries@QTableView@@MEAAXXZ', '?selectedIndexes@QTableView@@MEBA?AV?$QList@VQModelIndex@@@@XZ', '?visualRegionForSelection@QTableView@@MEBA?AVQRegion@@AEBVQItemSelection@@@Z', '?setSelection@QTableView@@MEAAXAEBVQRect@@V?$QFlags@W4SelectionFlag@QItemSelectionModel@@@@@Z', '?moveCursor@QTableView@@MEAA?AVQModelIndex@@W4CursorAction@QAbstractItemView@@V?$QFlags@W4KeyboardModifier@Qt@@@@@Z', '?verticalOffset@QTableView@@MEBAHXZ', '?horizontalOffset@QTableView@@MEBAHXZ', '?timerEvent@QTableView@@MEAAXPEAVQTimerEvent@@@Z', '?paintEvent@QTableView@@MEAAXPEAVQPaintEvent@@@Z', '?viewOptions@QTableView@@MEBA?AVQStyleOptionViewItem@@XZ', '?scrollContentsBy@QTableView@@MEAAXHH@Z', '?indexAt@QTableView@@UEBA?AVQModelIndex@@AEBVQPoint@@@Z', '?scrollTo@QTableView@@UEAAXAEBVQModelIndex@@W4ScrollHint@QAbstractItemView@@@Z', '?visualRect@QTableView@@UEBA?AVQRect@@AEBVQModelIndex@@@Z', '?setCornerButtonEnabled@QTableView@@QEAAX_N@Z', '?setWordWrap@QTableView@@QEAAX_N@Z', '?verticalHeader@QTableView@@QEBAPEAVQHeaderView@@XZ', '?updateEditorGeometries@QAbstractItemView@@MEAAXXZ', '?doItemsLayout@QTableView@@UEAAXXZ', '?setSelectionModel@QTableView@@UEAAXPEAVQItemSelectionModel@@@Z', '?setRootIndex@QTableView@@UEAAXAEBVQModelIndex@@@Z', '?setModel@QTableWidget@@EEAAXPEAVQAbstractItemModel@@@Z', '?dropEvent@QTableWidget@@MEAAXPEAVQDropEvent@@@Z', '?supportedDropActions@QTableWidget@@MEBA?AV?$QFlags@W4DropAction@Qt@@@@XZ', '?dropMimeData@QTableWidget@@MEAA_NHHPEBVQMimeData@@W4DropAction@Qt@@@Z', '?mimeData@QTableWidget@@MEBAPEAVQMimeData@@V?$QList@PEAVQTableWidgetItem@@@@@Z', '?mimeTypes@QTableWidget@@MEBA?AVQStringList@@XZ', '?event@QTableWidget@@MEAA_NPEAVQEvent@@@Z', '?clearContents@QTableWidget@@QEAAXXZ', '?setSortingEnabled@QTableWidget@@QEAAX_N@Z', '?verticalScrollbarValueChanged@QAbstractItemView@@MEAAXH@Z', '?horizontalHeaderItem@QTableWidget@@QEBAPEAVQTableWidgetItem@@H@Z', '?setItem@QTableWidget@@QEAAXHHPEAVQTableWidgetItem@@@Z', '?columnCount@QTableWidget@@QEBAHXZ', '?setColumnCount@QTableWidget@@QEAAXH@Z', '?setRowCount@QTableWidget@@QEAAXH@Z', '??1QTableWidget@@UEAA@XZ', '??0QTableWidget@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QTableWidget@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QTableWidget@@UEAAPEAXPEBD@Z', '?metaObject@QTableWidget@@UEBAPEBUQMetaObject@@XZ', '?focusNextPrevChild@QWidget@@MEAA_N_N@Z', '?inputMethodQuery@QWidget@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?inputMethodEvent@QWidget@@MEAAXPEAVQInputMethodEvent@@@Z', '?sharedPainter@QWidget@@MEBAPEAVQPainter@@XZ', '?horizontalScrollbarValueChanged@QAbstractItemView@@MEAAXH@Z', '?initPainter@QWidget@@MEBAXPEAVQPainter@@@Z', '?metric@QWidget@@MEBAHW4PaintDeviceMetric@QPaintDevice@@@Z', '?changeEvent@QWidget@@MEAAXPEAVQEvent@@@Z', '?nativeEvent@QWidget@@MEAA_NAEBVQByteArray@@PEAXPEAJ@Z', '?hideEvent@QWidget@@MEAAXPEAVQHideEvent@@@Z', '?showEvent@QWidget@@MEAAXPEAVQShowEvent@@@Z', '?dropEvent@QWidget@@MEAAXPEAVQDropEvent@@@Z', '?dragLeaveEvent@QWidget@@MEAAXPEAVQDragLeaveEvent@@@Z', '?dragMoveEvent@QWidget@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragEnterEvent@QWidget@@MEAAXPEAVQDragEnterEvent@@@Z', '?actionEvent@QWidget@@MEAAXPEAVQActionEvent@@@Z', '?tabletEvent@QWidget@@MEAAXPEAVQTabletEvent@@@Z', '?contextMenuEvent@QWidget@@MEAAXPEAVQContextMenuEvent@@@Z', '?closeEvent@QWidget@@MEAAXPEAVQCloseEvent@@@Z', '?resizeEvent@QWidget@@MEAAXPEAVQResizeEvent@@@Z', '?moveEvent@QWidget@@MEAAXPEAVQMoveEvent@@@Z', '?paintEvent@QWidget@@MEAAXPEAVQPaintEvent@@@Z', '?leaveEvent@QWidget@@MEAAXPEAVQEvent@@@Z', '?enterEvent@QWidget@@MEAAXPEAVQEvent@@@Z', '?focusOutEvent@QWidget@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QWidget@@MEAAXPEAVQFocusEvent@@@Z', '?keyReleaseEvent@QWidget@@MEAAXPEAVQKeyEvent@@@Z', '?keyPressEvent@QWidget@@MEAAXPEAVQKeyEvent@@@Z', '?wheelEvent@QWidget@@MEAAXPEAVQWheelEvent@@@Z', '?mouseMoveEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?event@QWidget@@MEAA_NPEAVQEvent@@@Z', '?paintEngine@QWidget@@UEBAPEAVQPaintEngine@@XZ', '?hasHeightForWidth@QWidget@@UEBA_NXZ', '?heightForWidth@QWidget@@UEBAHH@Z', '?setSizePolicy@QWidget@@QEAAXVQSizePolicy@@@Z', '?sizePolicy@QWidget@@QEBA?AVQSizePolicy@@XZ', '?minimumSizeHint@QWidget@@UEBA?AVQSize@@XZ', '?sizeHint@QWidget@@UEBA?AVQSize@@XZ', '?setGeometry@QWidget@@QEAAXAEBVQRect@@@Z', '?setVisible@QWidget@@UEAAX_N@Z', '?setWindowTitle@QWidget@@QEAAXAEBVQString@@@Z', '?setEnabled@QWidget@@QEAAX_N@Z', '?devType@QWidget@@UEBAHXZ', '??1QWidget@@UEAA@XZ', '??0QWidget@@QEAA@PEAV0@V?$QFlags@W4WindowType@Qt@@@@@Z', '?qt_metacall@QWidget@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QWidget@@UEAAPEAXPEBD@Z', '?metaObject@QWidget@@UEBAPEBUQMetaObject@@XZ', '?staticMetaObject@QComboBox@@2UQMetaObject@@B', '?setHighlightSections@QHeaderView@@QEAAX_N@Z', '?write@QTableWidgetItem@@UEBAXAEAVQDataStream@@@Z', '?read@QTableWidgetItem@@UEAAXAEAVQDataStream@@@Z', '??MQTableWidgetItem@@UEBA_NAEBV0@@Z', '?setData@QTableWidgetItem@@UEAAXHAEBVQVariant@@@Z', '?data@QTableWidgetItem@@UEBA?AVQVariant@@H@Z', '?clone@QTableWidgetItem@@UEBAPEAV1@XZ', '??1QTableWidgetItem@@UEAA@XZ', '??0QTableWidgetItem@@QEAA@H@Z', '??0QTableWidgetItem@@QEAA@AEBVQString@@H@Z', '?inputMethodEvent@QComboBox@@MEAAXPEAVQInputMethodEvent@@@Z', '?contextMenuEvent@QComboBox@@MEAAXPEAVQContextMenuEvent@@@Z', '?wheelEvent@QComboBox@@MEAAXPEAVQWheelEvent@@@Z', '?keyReleaseEvent@QComboBox@@MEAAXPEAVQKeyEvent@@@Z', '?keyPressEvent@QComboBox@@MEAAXPEAVQKeyEvent@@@Z', '?mouseReleaseEvent@QComboBox@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QComboBox@@MEAAXPEAVQMouseEvent@@@Z', '?hideEvent@QComboBox@@MEAAXPEAVQHideEvent@@@Z', '?showEvent@QComboBox@@MEAAXPEAVQShowEvent@@@Z', '?paintEvent@QComboBox@@MEAAXPEAVQPaintEvent@@@Z', '?resizeEvent@QComboBox@@MEAAXPEAVQResizeEvent@@@Z', '?changeEvent@QComboBox@@MEAAXPEAVQEvent@@@Z', '?focusOutEvent@QComboBox@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QComboBox@@MEAAXPEAVQFocusEvent@@@Z', '?activated@QComboBox@@QEAAXH@Z', '?setCurrentIndex@QComboBox@@QEAAXH@Z', '?clear@QComboBox@@QEAAXXZ', '?inputMethodQuery@QComboBox@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?event@QComboBox@@UEAA_NPEAVQEvent@@@Z', '?hidePopup@QComboBox@@UEAAXXZ', '?showPopup@QComboBox@@UEAAXXZ', '?minimumSizeHint@QComboBox@@UEBA?AVQSize@@XZ', '?sizeHint@QComboBox@@UEBA?AVQSize@@XZ', '?setItemText@QComboBox@@QEAAXHAEBVQString@@@Z', '?itemData@QComboBox@@QEBA?AVQVariant@@HH@Z', '?itemText@QComboBox@@QEBA?AVQString@@H@Z', '?count@QComboBox@@QEBAHXZ', '??1QComboBox@@UEAA@XZ', '??0QComboBox@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QComboBox@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QComboBox@@UEAAPEAXPEBD@Z', '?metaObject@QComboBox@@UEBAPEBUQMetaObject@@XZ', '?focusNextPrevChild@QLabel@@MEAA_N_N@Z', '?focusOutEvent@QLabel@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QLabel@@MEAAXPEAVQFocusEvent@@@Z', '?contextMenuEvent@QLabel@@MEAAXPEAVQContextMenuEvent@@@Z', '?mouseReleaseEvent@QLabel@@MEAAXPEAVQMouseEvent@@@Z', '?mouseMoveEvent@QLabel@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QLabel@@MEAAXPEAVQMouseEvent@@@Z', '?changeEvent@QLabel@@MEAAXPEAVQEvent@@@Z', '?paintEvent@QLabel@@MEAAXPEAVQPaintEvent@@@Z', '?keyPressEvent@QLabel@@MEAAXPEAVQKeyEvent@@@Z', '?event@QLabel@@MEAA_NPEAVQEvent@@@Z', '?clear@QLabel@@QEAAXXZ', '?setText@QLabel@@QEAAXAEBVQString@@@Z', '?heightForWidth@QLabel@@UEBAHH@Z', '?minimumSizeHint@QLabel@@UEBA?AVQSize@@XZ', '?sizeHint@QLabel@@UEBA?AVQSize@@XZ', '?setWordWrap@QLabel@@QEAAX_N@Z', '?setAlignment@QLabel@@QEAAXV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?setTextFormat@QLabel@@QEAAXW4TextFormat@Qt@@@Z', '??1QLabel@@UEAA@XZ', '??0QLabel@@QEAA@PEAVQWidget@@V?$QFlags@W4WindowType@Qt@@@@@Z', '?qt_metacall@QLabel@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QLabel@@UEAAPEAXPEBD@Z', '?metaObject@QLabel@@UEBAPEBUQMetaObject@@XZ', '?setText@QTableWidgetItem@@QEAAXAEBVQString@@@Z', '?setTextAlignment@QTableWidgetItem@@QEAAXH@Z', '?addItem@QComboBox@@QEAAXAEBVQString@@AEBVQVariant@@@Z', '?resize@QWidget@@QEAAXHH@Z', '?setVerticalStretch@QSizePolicy@@QEAAXH@Z', '?setHorizontalStretch@QSizePolicy@@QEAAXH@Z', '??0QSizePolicy@@QEAA@W4Policy@0@0W4ControlType@0@@Z', '?exec@QApplication@@SAHXZ', '??1QApplication@@UEAA@XZ', '??0QApplication@@QEAA@AEAHPEAPEADH@Z', '?show@QWidget@@QEAAXXZ', '?staticMetaObject@QMainWindow@@2UQMetaObject@@B', '?closeEditor@QAbstractItemView@@MEAAXPEAVQWidget@@W4EndEditHint@QAbstractItemDelegate@@@Z', '?commitData@QAbstractItemView@@MEAAXPEAVQWidget@@@Z', '?editorDestroyed@QAbstractItemView@@MEAAXPEAVQObject@@@Z', '?selectionCommand@QAbstractItemView@@MEBA?AV?$QFlags@W4SelectionFlag@QItemSelectionModel@@@@AEBVQModelIndex@@PEBVQEvent@@@Z', '?startDrag@QAbstractItemView@@MEAAXV?$QFlags@W4DropAction@Qt@@@@@Z', '?focusNextPrevChild@QAbstractItemView@@MEAA_N_N@Z', '?viewportEvent@QAbstractItemView@@MEAA_NPEAVQEvent@@@Z', '?mousePressEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?mouseMoveEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?dragEnterEvent@QAbstractItemView@@MEAAXPEAVQDragEnterEvent@@@Z', '?dragMoveEvent@QAbstractItemView@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragLeaveEvent@QAbstractItemView@@MEAAXPEAVQDragLeaveEvent@@@Z', '?focusInEvent@QAbstractItemView@@MEAAXPEAVQFocusEvent@@@Z', '?focusOutEvent@QAbstractItemView@@MEAAXPEAVQFocusEvent@@@Z', '?keyPressEvent@QAbstractItemView@@MEAAXPEAVQKeyEvent@@@Z', '?resizeEvent@QAbstractItemView@@MEAAXPEAVQResizeEvent@@@Z', '?inputMethodEvent@QAbstractItemView@@MEAAXPEAVQInputMethodEvent@@@Z', '?eventFilter@QAbstractItemView@@MEAA_NPEAVQObject@@PEAVQEvent@@@Z', '?metaObject@QGridLayout@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QGridLayout@@UEAAPEAXPEBD@Z', '?qt_metacall@QGridLayout@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QGridLayout@@QEAA@XZ', '??0QGridLayout@@QEAA@PEAVQWidget@@@Z', '??1QGridLayout@@UEAA@XZ', '?sizeHint@QGridLayout@@UEBA?AVQSize@@XZ', '?minimumSize@QGridLayout@@UEBA?AVQSize@@XZ', '?maximumSize@QGridLayout@@UEBA?AVQSize@@XZ', '?hasHeightForWidth@QGridLayout@@UEBA_NXZ', '?heightForWidth@QGridLayout@@UEBAHH@Z', '?minimumHeightForWidth@QGridLayout@@UEBAHH@Z', '?expandingDirections@QGridLayout@@UEBA?AV?$QFlags@W4Orientation@Qt@@@@XZ', '?invalidate@QGridLayout@@UEAAXXZ', '?addWidget@QGridLayout@@QEAAXPEAVQWidget@@HHHHV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?addLayout@QGridLayout@@QEAAXPEAVQLayout@@HHHHV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?itemAt@QGridLayout@@UEBAPEAVQLayoutItem@@H@Z', '?takeAt@QGridLayout@@UEAAPEAVQLayoutItem@@H@Z', '?count@QGridLayout@@UEBAHXZ', '?setGeometry@QGridLayout@@UEAAXAEBVQRect@@@Z', '?addItem@QGridLayout@@MEAAXPEAVQLayoutItem@@@Z', '?metaObject@QLineEdit@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QLineEdit@@UEAAPEAXPEBD@Z', '?qt_metacall@QLineEdit@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QLineEdit@@QEAA@PEAVQWidget@@@Z', '??1QLineEdit@@UEAA@XZ', '?sizeHint@QLineEdit@@UEBA?AVQSize@@XZ', '?minimumSizeHint@QLineEdit@@UEBA?AVQSize@@XZ', '?setText@QLineEdit@@QEAAXAEBVQString@@@Z', '?mousePressEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?mouseMoveEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?keyPressEvent@QLineEdit@@MEAAXPEAVQKeyEvent@@@Z', '?focusInEvent@QLineEdit@@MEAAXPEAVQFocusEvent@@@Z', '?focusOutEvent@QLineEdit@@MEAAXPEAVQFocusEvent@@@Z', '?paintEvent@QLineEdit@@MEAAXPEAVQPaintEvent@@@Z', '?dragEnterEvent@QLineEdit@@MEAAXPEAVQDragEnterEvent@@@Z', '?dragMoveEvent@QLineEdit@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragLeaveEvent@QLineEdit@@MEAAXPEAVQDragLeaveEvent@@@Z', '?dropEvent@QLineEdit@@MEAAXPEAVQDropEvent@@@Z', '?changeEvent@QLineEdit@@MEAAXPEAVQEvent@@@Z', '?contextMenuEvent@QLineEdit@@MEAAXPEAVQContextMenuEvent@@@Z', '?inputMethodEvent@QLineEdit@@MEAAXPEAVQInputMethodEvent@@@Z', '?inputMethodQuery@QLineEdit@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?event@QLineEdit@@UEAA_NPEAVQEvent@@@Z', '?addWidget@QBoxLayout@@QEAAXPEAVQWidget@@HV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?addItem@QBoxLayout@@UEAAXPEAVQLayoutItem@@@Z', '?sizeHint@QBoxLayout@@UEBA?AVQSize@@XZ', '?minimumSize@QBoxLayout@@UEBA?AVQSize@@XZ', '?maximumSize@QBoxLayout@@UEBA?AVQSize@@XZ', '?hasHeightForWidth@QBoxLayout@@UEBA_NXZ', '?heightForWidth@QBoxLayout@@UEBAHH@Z', '?minimumHeightForWidth@QBoxLayout@@UEBAHH@Z', '?expandingDirections@QBoxLayout@@UEBA?AV?$QFlags@W4Orientation@Qt@@@@XZ', '?invalidate@QBoxLayout@@UEAAXXZ', '?itemAt@QBoxLayout@@UEBAPEAVQLayoutItem@@H@Z', '?takeAt@QBoxLayout@@UEAAPEAVQLayoutItem@@H@Z', '?count@QBoxLayout@@UEBAHXZ', '?setGeometry@QBoxLayout@@UEAAXAEBVQRect@@@Z', '?metaObject@QVBoxLayout@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QVBoxLayout@@UEAAPEAXPEBD@Z', '?qt_metacall@QVBoxLayout@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QVBoxLayout@@QEAA@PEAVQWidget@@@Z', '??1QVBoxLayout@@UEAA@XZ', '?metaObject@QTabWidget@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QTabWidget@@UEAAPEAXPEBD@Z', '?qt_metacall@QTabWidget@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QTabWidget@@QEAA@PEAVQWidget@@@Z', '??1QTabWidget@@UEAA@XZ', '?addTab@QTabWidget@@QEAAHPEAVQWidget@@AEBVQString@@@Z', '?setTabText@QTabWidget@@QEAAXHAEBVQString@@@Z', '?indexOf@QTabWidget@@QEBAHPEAVQWidget@@@Z', '?sizeHint@QTabWidget@@UEBA?AVQSize@@XZ', '?minimumSizeHint@QTabWidget@@UEBA?AVQSize@@XZ', '?heightForWidth@QTabWidget@@UEBAHH@Z', '?hasHeightForWidth@QTabWidget@@UEBA_NXZ', '?setCurrentIndex@QTabWidget@@QEAAXH@Z', '?tabInserted@QTabWidget@@MEAAXH@Z', '?tabRemoved@QTabWidget@@MEAAXH@Z', '?showEvent@QTabWidget@@MEAAXPEAVQShowEvent@@@Z', '?resizeEvent@QTabWidget@@MEAAXPEAVQResizeEvent@@@Z', '?keyPressEvent@QTabWidget@@MEAAXPEAVQKeyEvent@@@Z', '?paintEvent@QTabWidget@@MEAAXPEAVQPaintEvent@@@Z', '?changeEvent@QTabWidget@@MEAAXPEAVQEvent@@@Z', '?event@QTabWidget@@MEAA_NPEAVQEvent@@@Z', '?updateEditorData@QAbstractItemView@@MEAAXXZ', '?setHorizontalHeaderItem@QTableWidget@@QEAAXHPEAVQTableWidgetItem@@@Z', '?horizontalHeader@QTableView@@QEBAPEAVQHeaderView@@XZ', '?redirected@QWidget@@MEBAPEAVQPaintDevice@@PEAVQPoint@@@Z', '?disconnectNotify@QObject@@MEAAXAEBVQMetaMethod@@@Z', '?connectNotify@QObject@@MEAAXAEBVQMetaMethod@@@Z', '?customEvent@QObject@@MEAAXPEAVQEvent@@@Z', '?childEvent@QObject@@MEAAXPEAVQChildEvent@@@Z', '?timerEvent@QObject@@MEAAXPEAVQTimerEvent@@@Z', '?setObjectName@QObject@@QEAAXAEBVQString@@@Z', '?objectName@QObject@@QEBA?AVQString@@XZ', '?eventFilter@QObject@@UEAA_NPEAV1@PEAVQEvent@@@Z', '?event@QObject@@UEAA_NPEAVQEvent@@@Z', '?number@QByteArray@@SA?AV1@_JH@Z', '?mid@QByteArray@@QEBA?AV1@HH@Z', '?clear@QByteArray@@QEAAXXZ', '?writableLocation@QStandardPaths@@SA?AVQString@@W4StandardLocation@1@@Z', '?mid@QContainerImplHelper@QtPrivate@@SA?AW4CutResult@12@HPEAH0@Z', '?open@QFile@@UEAA_NV?$QFlags@W4OpenModeFlag@QIODevice@@@@@Z', '?setFileName@QFile@@QEAAXAEBVQString@@@Z', '??1QFile@@UEAA@XZ', '??0QFile@@QEAA@XZ', '?shared_null@QListData@@2UData@1@B', '?toInt@QString@@QEBAHPEA_NH@Z', '?utf16@QString@@QEBAPEBGXZ', '?arg@QString@@QEBA?AV1@AEBV1@HVQChar@@@Z', '?registerNormalizedType@QMetaType@@SAHAEBVQByteArray@@P6AXPEAX@ZP6APEAX1PEBX@ZHV?$QFlags@W4TypeFlag@QMetaType@@@@PEBUQMetaObject@@@Z', '?dynamicMetaObject@QObjectData@@QEBAPEAUQMetaObject@@XZ', '?setApplicationName@QCoreApplication@@SAXAEBVQString@@@Z', '??0QChar@@QEAA@UQLatin1Char@@@Z', '??1QByteArray@@QEAA@XZ', '?size@QByteArray@@QEBAHXZ', '?data@QByteArray@@QEAAPEADXZ', '?constData@QByteArray@@QEBAPEBDXZ', '??0QByteArray@@QEAA@AEBV0@@Z', '??YQByteArray@@QEAAAEAV0@AEBV0@@Z', '??4QString@@QEAAAEAV0@$$QEAV0@@Z', '??YQString@@QEAAAEAV0@VQChar@@@Z', '??YQString@@QEAAAEAV0@AEBV0@@Z', '?toLocal8Bit@QString@@QEGBA?AVQByteArray@@XZ', '?toLocal8Bit@QString@@QEHAA?AVQByteArray@@XZ', '?fromUtf8@QString@@SA?AV1@PEBDH@Z', '??0QString@@QEAA@PEBD@Z', '??4QString@@QEAAAEAV0@PEBD@Z', '??0QString@@QEAA@AEBV0@@Z', '?arg@QString@@QEBA?AV1@HHHVQChar@@@Z', '??0QString@@QEAA@XZ', '??1QString@@QEAA@XZ', '??8QString@@QEBA_NPEBD@Z', '?dispose@QListData@@QEAAXXZ', '?connectImpl@QObject@@CA?AVConnection@QMetaObject@@PEBV1@PEAPEAX01PEAVQSlotObjectBase@QtPrivate@@W4ConnectionType@Qt@@PEBHPEBU3@@Z', '?write@QIODevice@@QEAA_JAEBVQByteArray@@@Z', '??0QVariant@@QEAA@XZ', '?instance@QCoreApplication@@SAPEAV1@XZ', '?detach@QListData@@QEAAPEAUData@1@H@Z', '?realloc@QListData@@QEAAXH@Z', '?dispose@QListData@@SAXPEAUData@1@@Z', '?arguments@QCoreApplication@@SA?AVQStringList@@XZ', '?applicationDirPath@QCoreApplication@@SA?AVQString@@XZ', '?translate@QCoreApplication@@SA?AVQString@@PEBD00H@Z', '??0QVariant@@QEAA@HPEBXI@Z', '??1QVariant@@QEAA@XZ', '?userType@QVariant@@QEBAHXZ', '?convert@QVariant@@QEBA_NHPEAX@Z', '?constData@QVariant@@QEBAPEBXXZ', '??1QDateTime@@QEAA@XZ', '?toString@QDateTime@@QEBA?AVQString@@AEBV2@@Z', '?currentDateTime@QDateTime@@SA?AV1@XZ', '?hash@QCryptographicHash@@SA?AVQByteArray@@AEBV2@W4Algorithm@1@@Z', '?tr@QMetaObject@@QEBA?AVQString@@PEBD0H@Z', '?normalizedType@QMetaObject@@SA?AVQByteArray@@PEBD@Z', '?connectSlotsByName@QMetaObject@@SAXPEAVQObject@@@Z', '??1Connection@QMetaObject@@QEAA@XZ', '?toNativeSeparators@QDir@@SA?AVQString@@AEBV2@@Z', '?separator@QDir@@SA?AVQChar@@XZ', '?tempPath@QDir@@SA?AVQString@@XZ', '?readAll@QIODevice@@QEAA?AVQByteArray@@XZ', '?close@QFileDevice@@UEAAXXZ', 'WideCharToMultiByte', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'RtlCaptureContext', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetCommandLineW', 'LocalFree', 'GetSystemTimeAsFileTime', 'UnhandledExceptionFilter', 'CreateProcessW', 'GetProcAddress', 'CloseHandle', 'LoadLibraryA', 'Sleep', 'WaitForSingleObject', 'WriteFile', 'GetCurrentProcess', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'SetUnhandledExceptionFilter', 'OpenProcessToken', '__CxxFrameHandler4', '__current_exception_context', 'memset', '_CxxThrowException', '__std_exception_destroy', '__std_exception_copy', '__C_specific_handler', 'memcpy', '__std_terminate', '__current_exception', '_exit', '_set_app_type', '_c_exit', '_cexit', 'terminate', '_initterm_e', '_crt_atexit', '_seh_filter_exe', '_register_onexit_function', '_initterm', '_get_narrow_winmain_command_line', '_initialize_narrow_environment', 'exit', '_initialize_onexit_table', '_configure_narrow_argv', '_register_thread_local_exe_atexit_callback', 'srand', 'rand', '_time64', 'free', '_callnewh', '_set_new_mode', 'malloc', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', 'CommandLineToArgvW'], ['RegCloseKey', 'GetAdaptersInfo', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'NetShareEnum', 'NtQueryObject', 'EnumProcesses', 'RmGetList', 'ShowWindow', 'select'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'memset'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtCreatePen', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'MulDiv'], ['LoadLibraryA', 'lstrcatA', 'GetComputerNameExA', 'WriteProfileSectionW', 'GetNumaProcessorNode', 'FindFirstVolumeW', 'SetConsoleCursorInfo', 'HeapUnlock', 'FindFirstChangeNotificationA', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'FileTimeToDosDateTime', 'EnumResourceTypesA', 'EnumResourceNamesW', 'ExitProcess', 'TerminateProcess', 'ActivateActCtx', 'GetVersionExW', 'VerifyVersionInfoA', 'SetConsoleOutputCP', 'ResetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExA', 'ReadConsoleOutputCharacterW', 'GetDefaultCommConfigW', 'VerLanguageNameA', '_hread', 'GetCommConfig', 'WritePrivateProfileStructA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindVolumeClose', 'LeaveCriticalSection', 'WriteConsoleInputW', 'CancelWaitableTimer', 'SetComputerNameExA', 'FindAtomW', 'ReleaseMutex', 'LocalUnlock', 'CallNamedPipeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LocalAlloc', 'TlsSetValue', 'GetCommandLineW', 'InterlockedIncrement', 'CopyFileA', 'AddRefActCtx', 'OutputDebugStringW', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetVersionExA', 'HeapValidate', '_hwrite', 'GetWindowsDirectoryA', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetSystemWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'GetLastError', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'GetTickCount', 'OpenFileMappingW', 'ContinueDebugEvent', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'SetMailslotInfo', 'AddConsoleAliasA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringA', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointW', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'SetProcessAffinityMask', 'EnumResourceNamesA', 'GetThreadContext', 'GetLongPathNameA', 'SetConsoleTextAttribute', 'LoadLibraryW', 'EndUpdateResourceW', 'MoveFileW', 'ReadConsoleW', 'WriteConsoleA', 'InterlockedFlushSList', 'WritePrivateProfileSectionA', 'GetPrivateProfileStructA', 'DeleteCriticalSection', 'GetPrivateProfileSectionNamesA', 'GetDriveTypeW', 'GetFileAttributesExW', 'LocalFileTimeToFileTime', 'GetVolumePathNameW', 'GetConsoleMode', 'HeapSetInformation', 'GetComputerNameA', 'ProcessIdToSessionId', 'ReadProcessMemory', 'MoveFileExW', 'DisableThreadLibraryCalls', 'GlobalFix', 'GlobalDeleteAtom', 'FormatMessageA', 'GetEnvironmentStrings', 'InterlockedExchangeAdd', 'WaitNamedPipeW', 'GetPrivateProfileStructW', 'GetExitCodeProcess', 'GetSystemTimeAsFileTime', 'GetLocalTime', 'EnumCalendarInfoExA', 'FreeEnvironmentStringsA', 'CreateIoCompletionPort', 'OpenSemaphoreA', 'GetMailslotInfo', 'GetCommProperties', 'lstrcpyA', 'HeapWalk', 'LockFile', 'EndUpdateResourceA', 'GetConsoleCP', 'GetConsoleAliasW', 'GetNumberOfConsoleInputEvents', 'GetQueuedCompletionStatus', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputA', 'CreateMailslotW', 'SetCommState', 'FileTimeToLocalFileTime', 'IsDebuggerPresent', 'GetSystemTimeAdjustment', '_lread', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetModuleHandleW', 'GetPrivateProfileStringA', 'WriteConsoleOutputCharacterA', 'GetFileInformationByHandle', 'GetProfileStringW', 'MoveFileA', 'CreateActCtxW', 'GetSystemDefaultUILanguage', 'LocalLock', 'SetCommMask', 'SetMessageWaitingIndicator', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetProcessShutdownParameters', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'DeleteAtom', 'AddAtomW', 'WriteConsoleOutputCharacterW', 'QueryDosDeviceA', 'GetConsoleAliasExesW', 'GetBinaryTypeA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'Sleep', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'SetStdHandle', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'OemToCharW'], ['RpcServerUnregisterIf', 'RpcServerListen', 'RpcServerRegisterIfEx', 'NdrServerCall2', 'RpcMgmtStopServerListening', 'RpcServerUseProtseqEpA', 'CryptDecodeObjectEx', 'CryptStringToBinaryA', 'CryptBinaryToStringA', 'CryptEncodeObjectEx', 'GetCurrentProcess', 'TerminateProcess', 'LocalFree', 'LocalAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlUnwind', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'PostMessageA', 'wsprintfW', 'wsprintfA', 'ShowWindow', 'UpdateWindow', 'CredReadA', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegEnumKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'CredFree', 'CredDeleteA', 'CredWriteA', 'LsaNtStatusToWinError', 'LsaQueryInformationPolicy', 'LsaOpenPolicy', 'LsaClose', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'IsValidSid', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptDecrypt', 'CryptEncrypt', 'CryptImportKey', 'CryptGenRandom', 'CryptGetHashParam', 'CryptDestroyKey', 'CryptAcquireContextA', 'CryptReleaseContext', 'SHGetFolderPathA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'SafeArrayAccessData', 'SafeArrayCreateVector', 'VariantClear', 'SafeArrayUnaccessData', 'SysFreeString', 'SysAllocString', 'VariantInit'], ['QueryPerformanceCounter', 'SetCursor', 'SHGetFolderPathA', '?uncaught_exception@std@@YA_NXZ', 'ImmSetCompositionWindow', 'memchr', '_except1', '_seh_filter_dll', 'fread', 'atoi', '_stricmp', 'rand', 'free', '_lock_file', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetProcAddress', 'FreeLibrary', 'ReadFile', 'WriteFile', 'DeviceIoControl', 'CreateFileA', 'Sleep', 'CreateDirectoryW', 'OpenEventA', 'GetProcessWorkingSetSize', 'Process32First', 'OutputDebugStringA', 'FindResourceA', 'LocalAlloc', 'Module32First', 'GetModuleHandleA', 'CreateToolhelp32Snapshot', 'GlobalAlloc', 'GlobalFree', 'GetPriorityClass', 'LocalFree', 'GlobalUnlock', 'SetEndOfFile', 'ReadConsoleW', 'HeapSize', 'SetFilePointerEx', 'CreateFileW', 'FlushFileBuffers', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'GetTimeZoneInformation', 'SetStdHandle', 'GetConsoleMode', 'ResetEvent', 'SetEnvironmentVariableA', 'WaitForSingleObjectEx', 'OutputDebugStringW', 'GetStringTypeW', 'HeapReAlloc', 'LCMapStringW', 'CompareStringW', 'HeapAlloc', 'HeapFree', 'GetACP', 'ExitProcess', 'WideCharToMultiByte', 'MultiByteToWideChar', 'WriteConsoleW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetFileType', 'GetStdHandle', 'LoadLibraryExW', 'IsWow64Process', 'QueryPerformanceCounter', 'FormatMessageA', 'GetCurrentProcessId', 'VerSetConditionMask', 'GetOverlappedResult', 'CancelIoEx', 'QueryPerformanceFrequency', 'GetVersionExA', 'ReleaseMutex', 'CreateMutexA', 'GetCurrentProcess', 'VerifyVersionInfoA', 'CreateEventA', 'InterlockedIncrement', 'CreateThread', 'CloseHandle', 'InterlockedExchange', 'SetEvent', 'GetLastError', 'WaitForSingleObject', 'WaitForMultipleObjects', 'InterlockedDecrement', 'SetLastError', 'TlsFree', 'TlsAlloc', 'InitializeConditionVariable', 'WakeAllConditionVariable', 'TlsSetValue', 'TryEnterCriticalSection', 'SleepConditionVariableCS', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'EncodePointer', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TlsGetValue', 'SleepEx', 'DeleteCriticalSection', 'GetCurrentThreadId', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetConsoleCP', 'DecodePointer', 'GetCursorPos', 'BeginPaint', 'ReleaseDC', 'RegisterClipboardFormatA', 'GetDCEx', 'EndPaint', 'ReleaseCapture', 'EnableMenuItem', 'SetScrollPos', 'GetSysColorBrush', 'PostQuitMessage', 'SetRect', 'GetDlgItem', 'GetClientRect', 'SystemParametersInfoA', 'InvalidateRect', 'GetMenuCheckMarkDimensions', 'GetKeyState', 'LoadImageA', 'GetWindowRect', 'CreateDialogParamA', 'DestroyWindow', 'GetDC', 'SetWindowPos', 'PostMessageA', 'GetCursor', 'GetSystemMetrics', 'wsprintfA', 'OpenClipboard', 'OffsetRect', 'RedrawWindow', 'LoadCursorA', 'DrawTextA', 'CloseClipboard', 'EmptyClipboard', 'DefMDIChildProcA', 'MapWindowPoints', 'FrameRect', 'DrawFocusRect', 'MessageBoxA', 'GetSysColor', 'MoveWindow', 'IsDlgButtonChecked', 'DefWindowProcA', 'LockWindowUpdate', 'SetFocus', 'SetDlgItemTextA', 'SendMessageA', 'SetCapture', 'SetClipboardData', 'SetCursor', 'CreateDIBSection', 'GdiAlphaBlend', 'PatBlt', 'EnumFontsA', 'GetStockObject', 'GetDeviceGammaRamp', 'GetDIBits', 'GetDeviceCaps', 'CreateRectRgn', 'SetTextColor', 'DeleteObject', 'GdiComment', 'CombineRgn', 'GetObjectA', 'SelectObject', 'AddAccessAllowedAce', 'MakeSelfRelativeSD', 'GetSecurityDescriptorLength', 'GetLengthSid', 'SetFileSecurityA', 'InitializeAcl', 'InitializeSecurityDescriptor', 'CheckTokenMembership', 'SetSecurityDescriptorDacl', 'GetAce', 'AllocateAndInitializeSid', 'SetEntriesInAclW', 'IsValidSecurityDescriptor', 'FreeSid', 'GetTokenInformation', 'ShellExecuteA', 'CreateILockBytesOnHGlobal', 'CreateStreamOnHGlobal', 'StgCreateDocfileOnILockBytes', 'OleCreateStaticFromData', 'CoUninitialize', 'OleDuplicateData', 'OleSetContainedObject', 'CoInitialize', 'ReleaseStgMedium', 'OleGetClipboard', 'glClearColor', 'glHint', 'glLoadIdentity', 'glColor3f', 'glDepthFunc', 'glClear', 'glGetIntegerv', 'glGetString', 'glFlush', 'wglGetCurrentDC', 'wglGetProcAddress', 'glClearDepth', 'glShadeModel', 'glScalef', 'glEnable', 'FlatSB_GetScrollInfo', 'ImageList_DragShowNolock', 'FlatSB_GetScrollRange', 'FlatSB_GetScrollProp', 'FlatSB_EnableScrollBar', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'SetupBackupErrorA', 'IsThemePartDefined', 'IsThemeBackgroundPartiallyTransparent', 'acmDriverClose', 'NetWkstaUserGetInfo', 'TcEnumerateInterfaces'], ['SetLastError', 'GetCurrentProcess', 'SwitchToFiber', 'Sleep', 'GetLastError', 'lstrcpyA', 'LoadLibraryW', 'HeapAlloc', 'GetProcAddress', 'ExitProcess', 'GetProcessHeap', 'ConvertThreadToFiber', 'GetDllDirectoryW', 'GetProcessHandleCount', 'CreateFiber', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'LCMapStringW', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'DecodePointer', 'MessageBoxW', 'GetForegroundWindow', 'CoInitialize', 'CoUninitialize'], ['_chmod', '_close', '_fstat', '_isatty', '_mkdir', '_open', '_read', '_stat', '_strdup', '_strrev', '_unlink', '_utime', '_write', '__getmainargs', '__lc_codepage', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_filbuf', '_flsbuf', '_iob', '_isctype', '_onexit', '_pctype', '_setjmp', '_setmode', '_stricmp', '_vsnprintf', '_winmajor', 'abort', 'atexit', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetc', 'fgets', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'localeconv', 'localtime', 'longjmp', 'malloc', 'mbstowcs', 'memcmp', 'memcpy', 'memmove', 'memset', 'perror', 'printf', 'realloc', 'remove', 'setlocale', 'signal', 'sprintf', 'sqrt', 'sscanf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strcspn', 'strftime', 'strlen', 'strncmp', 'strncpy', 'strrchr', 'strspn', 'strstr', 'strtol', 'strtoul', 'time', 'vfprintf', 'wcslen', 'wcstombs', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'GetUserNameA', 'InitializeSecurityDescriptor', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryInfoKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorSacl', 'CryptUnprotectData', 'FindCloseUrlCache', 'FindFirstUrlCacheEntryA', 'FindNextUrlCacheEntryA', 'WSAStartup', 'closesocket', 'connect', 'htons', 'inet_addr', 'recv', 'send', 'socket', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'GetDeviceCaps', 'GetObjectA', 'SelectObject', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateMutexA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDriveTypeA', 'GetEnvironmentVariableA', 'GetFileAttributesA', 'GetFileSize', 'GetFileTime', 'GetLastError', 'GetLocalTime', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAdjustment', 'GetTempPathA', 'GetThreadTimes', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'GetWindowsDirectoryA', 'GlobalMemoryStatus', 'InitializeCriticalSection', 'InterlockedExchange', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MapViewOfFile', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReadFile', 'SetConsoleMode', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetFileTime', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'UnmapViewOfFile', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'lstrcpyA', 'lstrlenA', 'lstrlenW', 'ShellExecuteA', 'ShellExecuteExA', 'FindWindowA', 'GetAsyncKeyState', 'GetCapture', 'GetClipboardOwner', 'GetCursorPos', 'GetDC', 'GetForegroundWindow', 'GetMessageA', 'GetQueueStatus', 'GetWindowTextA', 'GetWindowTextLengthA', 'ReleaseDC', 'SendMessageA', 'wsprintfA'], ['GetModuleFileNameW', 'lstrcmpiW', 'MultiByteToWideChar', 'GetLastError', 'FormatMessageA', 'LocalFree', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'CreateProcessW', 'SetEndOfFile', 'WriteConsoleW', 'CreateFileW', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'InitializeCriticalSectionEx', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'InterlockedFlushSList', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'GetStdHandle', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'WriteFile', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'ReadConsoleW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'HeapReAlloc', 'SetStdHandle', 'HeapSize', 'PathRemoveFileSpecW'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'lstrcmpW', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxW', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameW', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'GetStringTypeExA', 'EnumSystemLocalesA', 'CallNamedPipeW', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetConsoleAliasExesLengthW', 'GetTickCount', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['GetLastError', 'CreateFileA', 'WriteFile', 'CloseHandle', 'GetModuleFileNameA', 'SetFileAttributesA', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryA', 'Sleep', 'GetProcessHeap', 'SetEndOfFile', 'WriteConsoleW', 'LoadLibraryW', 'SetStdHandle', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'GetStringTypeW', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'HeapSize', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'GetCPInfo', 'RaiseException', 'LCMapStringW', 'IsProcessorFeaturePresent', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'ExitProcess', 'ReadFile', 'FreeEnvironmentStringsW', 'CreateFileW', 'LoadStringA', 'LoadAcceleratorsA', 'GetMessageA', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'EndDialog', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcA', 'DestroyWindow', 'DialogBoxParamA', 'UpdateWindow', 'ShowWindow', 'CreateWindowExA', 'RegisterClassExA', 'LoadCursorA', 'LoadIconA', 'InternetOpenUrlA', 'InternetCloseHandle', 'InternetReadFile', 'InternetOpenA', 'URLDownloadToFileA'], ['?_Getcat@?$codecvt@DDU_Mbstatet@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?unshift@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PAD1AAPAD@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QBE?AVlocale@2@XZ', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '?in@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?out@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '?good@ios_base@std@@QBE_NXZ', '?always_noconv@codecvt_base@std@@QBE_NXZ', '??Bid@locale@std@@QAEIXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?_Xlength_error@std@@YAXPBD@Z', '?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z', '?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A', '?uncaught_exception@std@@YA_NXZ', '?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ', '??0_Lockit@std@@QAE@H@Z', '??1_Lockit@std@@QAE@XZ', '_except_handler4_common', 'memset', '__current_exception_context', 'memmove', '_CxxThrowException', '__std_terminate', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', '__current_exception', 'memcpy', '_fseeki64', 'fread', 'fsetpos', 'ungetc', '__p__commode', 'fgetpos', 'fwrite', '_get_stream_buffer_pointers', '_set_fmode', 'setvbuf', 'fgetc', 'fflush', 'fputc', 'fclose', '_set_app_type', '_seh_filter_exe', '_get_initial_narrow_environment', '_initterm', '_initterm_e', '_cexit', '_exit', '__p___argc', '__p___argv', '_c_exit', '_register_thread_local_exe_atexit_callback', '_crt_atexit', '_invalid_parameter_noinfo_noreturn', 'terminate', '_register_onexit_function', '_controlfp_s', '_initialize_onexit_table', '_initialize_narrow_environment', '_configure_narrow_argv', 'exit', 'system', '_unlock_file', '_lock_file', 'malloc', '_callnewh', '_set_new_mode', 'free', '__setusermatherr', '_configthreadlocale', 'UnhandledExceptionFilter', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleHandleW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter'], ['HeapReAlloc', 'RtlUnwind', 'GetStringTypeW', 'LoadLibraryW', 'OutputDebugStringW', 'WriteConsoleW', 'OutputDebugStringA', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'DeleteCriticalSection', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetModuleFileNameA', 'ExitProcess', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'RaiseException', 'HeapSize', 'EnterCriticalSection', 'LCMapStringW', 'IsProcessorFeaturePresent', 'IsBadReadPtr', 'HeapValidate', 'SetLastError', 'GetModuleHandleW', 'GetProcAddress', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'IsValidCodePage', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetModuleFileNameW', 'EncodePointer', 'DecodePointer', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineA', 'MultiByteToWideChar', 'HeapQueryInformation', 'HeapFree', 'SetStdHandle', 'FlushFileBuffers', 'lstrcpyA', 'LocalFree', 'GetCurrentProcessId', 'CloseHandle', 'GetCurrentThreadId', 'CreateMutexA', 'LocalAlloc', 'OpenMutexA', 'CreateFileA', 'GetLastError', 'GlobalUnlock', 'ReadFile', 'HeapCreate', 'CreateEventA', 'WideCharToMultiByte', 'GlobalAlloc', 'InitializeCriticalSection', 'WriteFile', 'GetProcessHeap', 'SetEvent', 'WaitForSingleObject', 'GlobalLock', 'GetQueuedCompletionStatus', 'HeapAlloc', 'GetFileSize', 'LeaveCriticalSection', 'CreateFileW', 'GetWindowThreadProcessId', 'RegisterClassA', 'GetWindow', 'MoveWindow', 'SetCursor', 'GetMessageA', 'UpdateLayeredWindow', 'DestroyWindow', 'ActivateKeyboardLayout', 'TranslateMDISysAccel', 'SetDlgItemTextA', 'DestroyIcon', 'DialogBoxParamA', 'GetDlgItemTextA', 'LoadCursorA', 'DestroyMenu', 'EnableWindow', 'UpdateWindow', 'LoadImageA', 'EndPaint', 'GetWindowRect', 'InsertMenuItemA', 'DdeCreateStringHandleA', 'PostQuitMessage', 'SendDlgItemMessageA', 'DrawTextW', 'DrawTextA', 'GetSubMenu', 'LoadBitmapA', 'GetParent', 'LoadMenuA', 'LoadIconA', 'DefFrameProcA', 'wsprintfA', 'GetClientRect', 'GetWindowTextLengthA', 'SendMessageA', 'BeginPaint', 'GetDC', 'TranslateMessage', 'GetWindowTextA', 'TrackPopupMenuEx', 'SetRect', 'SetWindowLongA', 'MessageBoxA', 'UnionRect', 'InvalidateRect', 'DdeCreateDataHandle', 'GetWindowLongA', 'CreateWindowExA', 'ReleaseDC', 'TranslateAcceleratorA', 'GetDlgItem', 'EndDialog', 'DefWindowProcA', 'GetCursorPos', 'LoadAcceleratorsA', 'ShowWindow', 'CreatePopupMenu', 'IsDlgButtonChecked', 'IsWindow', 'CreateWindowExW', 'DispatchMessageA', 'CheckRadioButton', 'MessageBoxW', 'ReleaseCapture', 'GetSystemMetrics', 'DdeNameService', 'SetWindowTextA', 'GetDeviceCaps', 'CreateFontIndirectA', 'CreateBitmap', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Rectangle', 'GdiSetBatchLimit', 'CreateFontA', 'SaveDC', 'CreateFontW', 'CreateRectRgn', 'GetObjectA', 'GetStockObject', 'RestoreDC', 'CreateSolidBrush', 'EnumFontsA', 'TextOutA', 'CreateDIBSection', 'DeleteDC', 'SetTextColor', 'BitBlt', 'GetTextExtentPoint32A', 'Ellipse', 'FillRgn', 'GetOpenFileNameA', 'CoTaskMemFree', 'CreateStreamOnHGlobal', 'CoTaskMemAlloc', 'OleSavePictureFile', 'OleLoadPicture', 'CertGetNameStringA', 'ImageList_ReplaceIcon', 'GdiplusStartup', 'GdipCreateFromHDC', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromFile', 'GdipDisposeImage', 'GdipDeleteGraphics', 'EnumerateSecurityPackagesA'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['CoCreateInstance', 'CLSIDFromString', 'CoInitialize', 'CoUninitialize', 'SysAllocString', 'DeleteUrlCacheEntry', 'FindFirstUrlCacheEntryA', 'FindNextUrlCacheEntryA', 'ExitProcess', 'ExpandEnvironmentStringsA', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetExitCodeThread', 'GetFileSize', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'GetProcAddress', 'GetSystemDirectoryA', 'GetTempPathA', 'GetTickCount', 'GetVersion', 'GetVersionExA', 'GetWindowsDirectoryA', 'GlobalMemoryStatus', 'CopyFileA', 'InterlockedIncrement', 'IsBadReadPtr', 'IsBadWritePtr', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'OpenMutexA', 'CreateFileA', 'ReadFile', 'RtlUnwind', 'SetFilePointer', 'CreateMutexA', 'Sleep', 'TerminateProcess', 'VirtualQuery', 'CreateProcessA', 'WaitForSingleObject', 'WideCharToMultiByte', 'WinExec', 'WriteFile', 'lstrlenA', 'lstrlenW', 'CreateThread', 'DeleteFileA', 'GetWindowTextA', 'GetWindowRect', 'FindWindowA', 'GetWindow', 'GetClassNameA', 'SetFocus', 'GetForegroundWindow', 'LoadCursorA', 'LoadIconA', 'SetTimer', 'RegisterClassA', 'MessageBoxA', 'GetMessageA', 'GetWindowLongA', 'SetWindowLongA', 'CreateDesktopA', 'SetThreadDesktop', 'GetThreadDesktop', 'TranslateMessage', 'DispatchMessageA', 'SendMessageA', 'PostQuitMessage', 'ShowWindow', 'CreateWindowExA', 'DestroyWindow', 'MoveWindow', 'DefWindowProcA', 'CallWindowProcA', 'GetStockObject', 'SetBkColor', 'SetTextColor', 'CreateBrushIndirect', 'CreateFontA', 'GetUserNameA', 'RegCreateKeyExA', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'GetSecurityInfo', 'SetSecurityInfo', 'SetEntriesInAclA', '__GetMainArgs', '_sleep', '_stricmp', 'atoi', 'exit', 'memcpy', 'memset', 'printf', 'raise', 'rand', 'signal', 'sprintf', 'srand', 'sscanf', 'strcat', 'strchr', 'strncmp', 'vsprintf'], ['SetFileAttributesA', 'FindClose', 'FindNextFileA', 'RemoveDirectoryA', 'FindFirstFileA', 'Sleep', 'LocalAlloc', 'GetLocalTime', 'WaitForSingleObject', 'CreateThread', 'CloseHandle', 'GlobalFree', 'GlobalAlloc', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'OutputDebugStringA', 'LeaveCriticalSection', 'EnterCriticalSection', 'WaitForMultipleObjects', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetLocaleInfoA', 'GetVersionExA', 'GetModuleFileNameA', 'GetSystemDirectoryA', 'GetTickCount', 'ShowWindow', 'DialogBoxParamA', 'SetServiceStatus', 'SystemTimeToVariantTime', '_stricmp', '_adjust_fdiv', 'strncpy', 'strstr', 'sprintf', 'rand', 'srand', '__CxxFrameHandler', 'strncmp', '??2@YAPAXI@Z', '_endthreadex', 'fclose', 'fread', 'fopen', 'fwrite', '_strupr', 'free', 'malloc', '??0exception@@QAE@ABV0@@Z', '??1exception@@UAE@XZ', '??0exception@@QAE@ABQBD@Z', '_CxxThrowException', '_except_handler3', '_EH_prolog', 'memset', 'memcpy', '??1type_info@@UAE@XZ', '_initterm'], ['VirtualProtect', 'VirtualAlloc', 'GetModuleHandleA', 'Sleep', 'GetProcAddress', 'GetConsoleWindow', 'HeapReAlloc', 'HeapSize', 'FlushFileBuffers', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'EncodePointer', 'RaiseException', 'GetLastError', 'SetLastError', 'RtlUnwind', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateFileW', 'GetFileType', 'CloseHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetStdHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'GetCommandLineA', 'GetCommandLineW', 'GetACP', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'SetStdHandle', 'SetEndOfFile', 'ReadFile', 'ReadConsoleW', 'SetFilePointerEx', 'WriteConsoleW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'GetStringTypeW', 'GetProcessHeap', 'DecodePointer', 'ShowWindow', 'MessageBoxA'], ['SysFreeString', 'RegQueryValueExW', 'CharNextW', 'GetVersion', 'GetProcAddress', 'SetClassLongW', 'UnrealizeObject', 'VerQueryValueW', 'GetVersionExW', 'GetVersion', 'RegUnLoadKeyW', 'Sleep', 'NetApiBufferFree', 'SafeArrayPtrOfIndex', 'GetErrorInfo', 'OleUninitialize', 'WSACleanup', 'Shell_NotifyIconW', 'InitializeFlatSB', 'EnumDisplayMonitors', 'memset', 'InternetGetConnectedState', 'HlinkNavigateString', 'SHGetFolderPathW', 'OpenPrinterW', 'GetDefaultPrinterW', 'MagSetImageScalingCallback', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetConsoleAliasA', 'GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetTapeParameters', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'GetCalendarInfoW', 'HeapDestroy', 'DnsHostnameToComputerNameW', 'FindNextVolumeW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'ReadConsoleA', 'EnumSystemLocalesA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'ReadFileEx', 'ResetEvent', 'InterlockedExchangeAdd', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'OpenEventA', 'GetDefaultCommConfigA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'RequestWakeupLatency', 'FatalAppExitA', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'WriteConsoleOutputW', 'GetConsoleAliasesLengthW', 'SetThreadContext', 'GetLargestConsoleWindowSize', 'GetTempFileNameW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsW', 'GetCharABCWidthsI'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'GetPrivateProfileIntW', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'SetConsoleCursorPosition', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedFlushSList', 'GetCommState', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'WriteProfileSectionA', 'RemoveDirectoryA', 'SetStdHandle', 'LocalAlloc', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'QueryPerformanceFrequency', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'DeleteFileW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'VerSetConditionMask', 'InterlockedIncrement', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'RaiseException', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['LoadLibraryW', 'GetProcAddress', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'RtlCaptureContext', '__std_type_info_destroy_list', 'memcmp', '__C_specific_handler', 'memset', 'malloc', 'free', '_execute_onexit_table', '_cexit', '_configure_narrow_argv', '_seh_filter_dll', '_initterm_e', '_initterm', '_initialize_onexit_table', '_initialize_narrow_environment'], ['QueryPerformanceCounter', 'GetLastError', 'lstrcatW', 'lstrcmpiW', 'lstrcpyW', 'CreateThread', 'WaitForSingleObject', 'lstrlenW', 'lstrcmpiA', 'LoadLibraryA', 'GetProcAddress', 'HeapReAlloc', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'HeapAlloc', 'GetCurrentThreadId', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'HeapFree', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'Sleep', 'HeapSize', 'GetModuleHandleW', 'ExitProcess', 'RtlUnwindEx', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'GetTickCount', 'GetCurrentProcessId', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'wsprintfW', 'wsprintfA', 'StrTrimW'], ['CreateSemaphoreW', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetLastError', 'GetModuleFileNameW', 'GetStartupInfoW', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'ReleaseSemaphore', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__iob_func', '__set_app_type', '__setusermatherr', '__wgetmainargs', '__winitenv', '_amsg_exit', '_assert', '_cexit', '_commode', '_errno', '_fmode', '_initterm', '_onexit', '_wcmdln', '_wcsicmp', '_wgetenv', 'abort', 'calloc', 'exit', 'fprintf', 'fputwc', 'free', 'fwprintf', 'fwrite', 'localeconv', 'malloc', 'memcpy', 'memset', 'realloc', 'signal', 'strcat', 'strerror', 'strlen', 'strncmp', 'strstr', 'vfprintf', 'wcscat', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsstr'], ['CreateThread', 'Sleep', 'lstrlenA', 'lstrcpynA', 'WinExec', 'LoadLibraryA', 'CloseHandle', 'WaitForSingleObject', 'GlobalMemoryStatusEx', 'GetSystemInfo', 'lstrcpyA', 'GetSystemDefaultUILanguage', 'CreateProcessA', 'TerminateProcess', 'GetTickCount', 'GetProcAddress', 'ExitThread', 'GetStartupInfoA', 'GetModuleHandleA', 'wsprintfA', 'RegOpenKeyExA', 'send', 'select', '__WSAFDIsSet', 'WSAStartup', 'setsockopt', 'WSAIoctl', 'socket', 'htons', 'inet_ntoa', 'closesocket', 'recv', 'connect', 'inet_addr', 'sendto', 'WSACleanup', 'htonl', 'GetAdaptersInfo', 'GetIfTable', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'realloc', 'malloc', 'strlen', 'atoi', 'strncpy', 'strcspn', 'memset', 'strstr', 'strcpy', 'memcpy', 'sprintf', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'strcmp', 'free', '_exit', '_XcptFilter', 'exit'], ['Sleep', 'WinExec', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'GetLastError', 'LoadLibraryW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapFree', 'SetHandleCount', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'IsProcessorFeaturePresent', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW'], ['CreateFileA', 'WriteFile', 'CloseHandle', 'GetModuleFileNameA', 'CreateMutexA', 'GetLastError', 'LoadLibraryA', 'GetProcAddress', 'Sleep', 'FlushFileBuffers', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetLocaleInfoA', 'GetFileAttributesA', 'GetModuleHandleW', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'RtlUnwindEx', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'HeapValidate', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsSetValue', 'GetCurrentThreadId', 'FlsAlloc', 'FlsFree', 'SetLastError', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'RtlPcToFileHeader', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapSetInformation', 'HeapCreate', 'HeapAlloc', 'HeapReAlloc', 'HeapQueryInformation', 'HeapFree', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSection'], ['CreateFileA', 'FindFirstFileA', 'FindNextFileA', 'LockFile', 'UnlockFile', 'CloseHandle', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'FreeLibrary', 'GetModuleFileNameA', 'GetModuleHandleExA', 'GetProcAddress', 'CreateFileMappingA', 'LoadLibraryA', 'CreateActCtxA', 'ReleaseActCtx', 'ActivateActCtx', 'DeactivateActCtx'], ['GetCurrentHwProfileA', 'CryptStringToBinaryA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_putenv', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strcpy', 'strerror', 'strlen', 'strncmp', 'strstr', 'strtoul', 'vfprintf', 'wcslen', 'SHGetFolderPathA', 'SHGetValueA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExW', '__current_exception_context', 'accept', '_lock_file', '_configthreadlocale', '_time64', '_register_onexit_function', '__setusermatherr', 'srand', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', 'SHGetDiskFreeSpaceA', '__stdio_common_vfprintf', 'free', 'PropertySheet'], ['GetModuleHandleA', 'MessageBoxW', 'RegOpenKeyA', 'CreateFontW', 'FindTextW', 'PathMakeUniqueName'], ['ImageList_LoadImageA', 'ImageList_Destroy', 'CreateThread', 'CreateEventA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'IsDBCSLeadByte', 'lstrcmpA', 'MulDiv', 'GlobalUnlock', 'GlobalLock', 'SetLastError', 'FreeLibrary', 'SizeofResource', 'LoadResource', 'LoadLibraryExA', 'GetModuleHandleA', 'Sleep', 'GetCommandLineA', 'GlobalFree', 'GlobalHandle', 'LockResource', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'LocalFree', 'LocalAlloc', 'FormatMessageA', 'GetExitCodeThread', 'CallNamedPipeA', 'WaitNamedPipeA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'IsValidCodePage', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'ReadFile', 'SetEndOfFile', 'GetLocaleInfoW', 'SetEvent', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetTimeZoneInformation', 'GetOEMCP', 'GetCPInfo', 'SetFilePointer', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CreateFileW', 'CreateFileA', 'SetHandleCount', 'SetStdHandle', 'HeapSize', 'GetCurrentThread', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetStdHandle', 'ExitProcess', 'FatalAppExitA', 'HeapCreate', 'HeapDestroy', 'GetStartupInfoA', 'GetDateFormatA', 'GetTimeFormatA', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'GetFileType', 'PeekNamedPipe', 'GetFileInformationByHandle', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetSystemTimeAsFileTime', 'FindResourceA', 'GlobalAlloc', 'FlushInstructionCache', 'lstrcmpiA', 'lstrlenA', 'InterlockedDecrement', 'InterlockedIncrement', 'WaitForSingleObject', 'CloseHandle', 'SetConsoleCtrlHandler', 'LoadLibraryW', 'HeapReAlloc', 'RtlUnwind', 'GetCurrentProcess', 'GetLastError', 'DeleteCriticalSection', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'RaiseException', 'lstrlenW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'VirtualQuery', 'GetSystemInfo', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'IsProcessorFeaturePresent', 'LoadLibraryA', 'GetProcAddress', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'InterlockedCompareExchange', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'UnregisterClassA', 'SendMessageA', 'PostThreadMessageA', 'CharNextA', 'DestroyWindow', 'SetWindowLongA', 'GetWindowLongA', 'ShowWindow', 'DefWindowProcA', 'GetSysColor', 'MoveWindow', 'SetWindowPos', 'GetClientRect', 'ClientToScreen', 'ScreenToClient', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'CheckDlgButton', 'PeekMessageA', 'GetActiveWindow', 'DialogBoxIndirectParamA', 'LoadMenuA', 'GetSubMenu', 'GetCursorPos', 'TrackPopupMenu', 'DestroyMenu', 'MessageBoxA', 'SetWindowContextHelpId', 'MapDialogRect', 'EndDialog', 'CreateDialogIndirectParamA', 'RegisterWindowMessageA', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetWindowTextA', 'GetMessageA', 'DispatchMessageA', 'CreateAcceleratorTableA', 'CreateWindowExA', 'RegisterClassExA', 'LoadCursorA', 'GetClassInfoExA', 'IsWindow', 'GetDesktopWindow', 'GetFocus', 'GetWindow', 'SetFocus', 'DestroyAcceleratorTable', 'BeginPaint', 'EndPaint', 'CallWindowProcA', 'FillRect', 'ReleaseCapture', 'GetClassNameA', 'GetDlgItem', 'GetParent', 'IsChild', 'SetCapture', 'RedrawWindow', 'InvalidateRgn', 'GetObjectA', 'CreateSolidBrush', 'GetDeviceCaps', 'BitBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'DeleteObject', 'DeleteDC', 'GetStockObject', 'GetOpenFileNameA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCloseKey', 'RegEnumKeyExA', 'RegQueryInfoKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegOpenKeyExW', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'CoSuspendClassObjects', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoTaskMemFree', 'CoCreateInstance', 'StringFromGUID2', 'OleLockRunning', 'CoGetClassObject', 'CLSIDFromProgID', 'CLSIDFromString', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoResumeClassObjects', 'CoInitializeEx', 'OleInitialize', 'OleRun', 'OleUninitialize', 'CreateErrorInfo', 'SetErrorInfo', 'VariantChangeType', 'SysStringLen', 'SysFreeString', 'SysAllocStringLen', 'SysAllocString', 'LoadTypeLib', 'UnRegisterTypeLib', 'RegisterTypeLib', 'VarUI4FromStr', 'LoadRegTypeLib', 'SysStringByteLen', 'VariantInit', 'VariantClear', 'OleCreateFontIndirect', 'VariantCopy', 'SysAllocStringByteLen', 'DosDateTimeToVariantTime', 'VarAdd', 'GetErrorInfo'], ['GetPrivateProfileStringW', 'WriteFile', 'GetProcessTimes', 'LoadLibraryW', 'SizeofResource', 'GetStringTypeExW', 'FileTimeToSystemTime', 'IsBadStringPtrA', 'LCMapStringA', 'GetLastError', 'BackupWrite', 'GlobalFree', 'GetAtomNameA', 'WriteConsoleA', 'GetProcessId', 'LocalAlloc', 'CreateHardLinkW', 'GetCurrentConsoleFont', 'SetConsoleTitleW', 'OpenFileMappingW', 'BuildCommDCBA', 'VirtualProtect', 'OpenFileMappingA', 'EnumSystemLocalesW', 'GetTickCount', 'GetNamedPipeHandleStateA', 'GetCurrentProcess', 'lstrlenA', 'CreateFileA', 'DosDateTimeToFileTime', 'GetCommandLineW', 'DebugActiveProcess', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'MultiByteToWideChar', 'InterlockedCompareExchange', 'InterlockedExchange', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'DebugBreak', 'GetStdHandle', 'OutputDebugStringA', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetStringTypeA', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoW', 'SetStdHandle', 'GetConsoleOutputCP', 'SetFilePointer', 'GetModuleHandleA', 'CloseHandle'], ['ZombifyActCtx', 'HeapFree', 'AddConsoleAliasW', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'GetPrivateProfileIntA', 'GetSystemDirectoryW', 'WideCharToMultiByte', 'LoadLibraryW', 'LocalShrink', 'FreeConsole', 'GetVersionExW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'lstrlenW', 'ReadConsoleA', 'SetLastError', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'SetConsoleCtrlHandler', 'GetModuleFileNameA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'SetCalendarInfoA', 'GetDefaultCommConfigW', 'CloseHandle', 'CreateFileA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'DeleteCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'SetFilePointer', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'WriteConsoleA', 'GetConsoleOutputCP', 'ChildWindowFromPoint', 'AlphaBlend'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'SendMessageW', 'RegisterClassW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetSystemMetrics', 'GetWindow', 'FindWindowW', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UnmapViewOfFile', 'TerminateProcess', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetThreadPriority', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetEvent', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseSemaphore', 'ReadFile', 'RaiseException', 'QueryDosDeviceW', 'IsDebuggerPresent', 'MapViewOfFile', 'LocalFree', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDrives', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateSemaphoreA', 'CreateProcessW', 'CreateFileMappingW', 'CreateFileW', 'CreateEventA', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'IsValidSid', 'Sleep', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'memset', 'memmove', 'memcpy', '_beginthreadex'], ['GetCommandLineA', 'CreateFileA', 'FindFirstFileA', 'FindNextFileA', 'GetFileAttributesA', 'GetFileInformationByHandle', 'WriteFile', 'CloseHandle', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetCurrentThreadId', 'GetModuleFileNameA', 'GetModuleHandleExA', 'GetProcAddress', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'LoadLibraryA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'MoveFileExW', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'VirtualUnlock', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'ExitThread', 'GetModuleFileNameW', 'VirtualAlloc', 'TerminateProcess', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'lstrlenW', 'CloseHandle', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['GetFullPathNameW', 'GetEnvironmentVariableW', 'SetVolumeLabelA', 'SetupComm', 'lstrlenA', 'EnumDateFormatsExW', 'GetProcessIoCounters', 'WriteConsoleOutputCharacterA', 'HeapAlloc', 'GetQueuedCompletionStatus', 'FindFirstFileExW', 'GetTickCount', 'WideCharToMultiByte', 'SizeofResource', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'GetWriteWatch', 'SetConsoleCursorPosition', 'GetAtomNameW', 'GetModuleFileNameW', 'IsBadStringPtrA', 'GetLastError', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'SetConsoleCtrlHandler', 'SetProcessWorkingSetSize', 'GetDefaultCommConfigA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'VirtualProtect', 'CompareStringA', 'GetWindowsDirectoryW', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'OpenFileMappingA', 'AreFileApisANSI', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCaretPos'], ['LocalFlags', 'GlobalAlloc', 'LoadLibraryW', 'InterlockedPopEntrySList', 'LeaveCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'GetVolumePathNameA', 'GetConsoleAliasesW', 'FillConsoleOutputCharacterW', 'GetLongPathNameW', 'SetLastError', 'SetStdHandle', 'LoadLibraryA', 'SetCalendarInfoW', 'IsWow64Process', 'MoveFileA', 'WriteProfileSectionW', 'GetModuleFileNameA', 'GetConsoleTitleW', 'VirtualProtect', 'GetFileAttributesExW', 'GetCPInfoExA', 'GetFileInformationByHandle', 'CreateFileW', 'HeapSize', 'SetConsoleTextAttribute', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasesLengthW', 'FreeResource', 'FlushFileBuffers', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'RaiseException', 'RtlUnwind', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'HeapReAlloc', 'CloseHandle', 'ClientToScreen', 'GetTextExtentExPointA', 'IsTokenRestricted', 'ClearEventLogW', 'OleInitialize'], ['VirtualAlloc', 'GetModuleHandleA', 'GetSubMenu', 'GetMenu', 'IsWindowEnabled', 'GetLastActivePopup', 'GetForegroundWindow', 'RegisterClassA', 'CreateWindowExW', 'GetClassInfoA', 'GetClassInfoW', 'GetDlgCtrlID', 'GetTopWindow', 'AdjustWindowRectEx', 'CharPrevA', 'DestroyWindow', 'IsCharAlphaNumericA', 'CharNextA', 'GetDC', 'ReleaseDC', 'MapDialogRect', 'MessageBoxW', 'ShowWindow', 'LoadMenuW', 'GetCursorPos', 'GetKeyState', 'EnableMenuItem', 'SetMenuDefaultItem', 'CheckMenuItem', 'TranslateAcceleratorW', 'BringWindowToTop', 'UpdateWindow', 'RegisterWindowMessageW', 'UnregisterClassW', 'SetWindowPos', 'GetWindowPlacement', 'IsIconic', 'DialogBoxIndirectParamW', 'EndDialog', 'GetDlgItem', 'CheckDlgButton', 'IsDlgButtonChecked', 'CharNextW', 'SetFocus', 'GetActiveWindow', 'SetForegroundWindow', 'GetWindowTextW', 'GetWindowTextLengthW', 'MapWindowPoints', 'FindWindowW', 'GetShellWindow', 'GetWindowThreadProcessId', 'GetWindow', 'MonitorFromWindow', 'GetMonitorInfoW', 'DrawIconEx', 'SetCursor', 'FindWindowExW', 'GetWindowDC', 'DispatchMessageW', 'PeekMessageW', 'IntersectRect', 'MonitorFromRect', 'SetClipboardViewer', 'ChangeClipboardChain', 'OpenClipboard', 'CloseClipboard', 'SetClipboardData', 'GetClipboardData', 'EmptyClipboard', 'TranslateMessage', 'GetMenuStringW', 'InflateRect', 'ModifyMenuW', 'GetMenuItemID', 'GetMenuItemCount', 'InsertMenuW', 'AppendMenuW', 'RemoveMenu', 'GetMenuItemInfoW', 'GetMenuDefaultItem', 'DrawStateW', 'DestroyIcon', 'DestroyMenu', 'OpenInputDesktop', 'CloseDesktop', 'GetUserObjectInformationW', 'ExitWindowsEx', 'wsprintfW', 'CreatePopupMenu', 'DrawTextW', 'DefWindowProcW', 'DrawMenuBar', 'CharLowerW', 'SetWindowRgn', 'GetWindowRgn', 'MoveWindow', 'SetRectEmpty', 'LoadBitmapW', 'AttachThreadInput', 'GetClassNameW', 'EnumChildWindows', 'PostThreadMessageW', 'SetClassLongW', 'CharToOemW', 'CharUpperW', 'IsCharAlphaNumericW', 'DrawIcon', 'RegisterClassW', 'SetCapture', 'ReleaseCapture', 'BeginPaint', 'EndPaint', 'WindowFromPoint', 'GetIconInfo', 'wvsprintfW', 'GetQueueStatus', 'MsgWaitForMultipleObjects', 'GetProcessWindowStation', 'MessageBoxA', 'CopyRect', 'SystemParametersInfoW', 'SetWindowLongW', 'SetWindowTextW', 'KillTimer', 'SetTimer', 'GetDesktopWindow', 'IsWindowVisible', 'GetParent', 'GetWindowLongW', 'CreateMenu', 'IsRectEmpty', 'SetRect', 'FillRect', 'DrawFocusRect', 'GetSysColor', 'ScreenToClient', 'ClientToScreen', 'GetScrollPos', 'RedrawWindow', 'IsWindow', 'DrawEdge', 'LoadCursorW', 'InvalidateRect', 'PostMessageW', 'GetClientRect', 'GetSystemMetrics', 'LoadIconW', 'PtInRect', 'GetWindowRect', 'EnableWindow', 'GetMenuState', 'SendMessageW', 'LoadImageW', 'CloseWindow', 'LoadCursorFromFileA', 'GetWindowContextHelpId', 'GetSysColorBrush', 'GetMenuCheckMarkDimensions', 'CountClipboardFormats', 'LoadCursorFromFileW', 'PaintDesktop', 'IsGUIThread', 'CopyIcon', 'EndMenu', 'GetKeyboardLayout', 'GetFocus', 'SetBkMode', 'SetViewportOrgEx', 'CreateFontIndirectW', 'SetBkColor', 'ExtTextOutW', 'GetStockObject', 'GetObjectW', 'CreateSolidBrush', 'GetDeviceCaps', 'BitBlt', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'CreateCompatibleBitmap', 'SelectObject', 'CreateMetaFileA', 'BeginPath', 'GetDCBrushColor', 'GetTextAlign', 'GetLayout', 'SwapBuffers', 'GetMapMode', 'RealizePalette', 'GetPixelFormat', 'CreatePatternBrush', 'SetMetaRgn', 'RegOpenKeyExA', 'RegQueryValueExW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'LresultFromObject', 'sndPlaySoundA'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegCloseKey', 'CharNextA'], ['GetModuleHandleA', 'CreateWindowExA', 'RegOpenKeyExW', 'InitMUILanguage', '_CorExeMain', 'SHGetIconOverlayIndexA'], ['GetLocalTime', 'GetProcAddress', 'GetThreadLocale', 'DeleteCriticalSection', 'RaiseException', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'LoadLibraryExW', 'RtlUnwind', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'GetLastError', 'LCMapStringW', 'GetCPInfo', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'HeapReAlloc', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'SetConsoleCtrlHandler', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'FlushFileBuffers', 'CloseHandle', 'SetUnhandledExceptionFilter', 'IsBadCodePtr', 'GetStringTypeA', 'GetStringTypeW', 'IsValidLocale', 'IsValidCodePage', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'VirtualProtect', 'GetSystemInfo', 'VirtualQuery', 'GetProcessHeap', 'FreeLibrary', 'GetOEMCP', 'ReadFile', 'SetStdHandle', 'GetTimeFormatA', 'GetDateFormatA', 'GetLocaleInfoW', 'GetTimeZoneInformation', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'WaitForSingleObject', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetEvent', 'OpenEventA', 'lstrlenA', 'lstrcpyA', 'lstrcpyW', 'OutputDebugStringW', 'lstrcpynW', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateFileMappingA', 'GetCurrentThread', 'GetVersion', 'OpenFileMappingA', 'GetModuleFileNameW', 'GetVersionExA', 'DispatchMessageW', 'TranslateMessage', 'GetMessageA', 'GetMessageW', 'IsWindowUnicode', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'DispatchMessageA', 'UnregisterClassA', 'SetThreadToken', 'AllocateLocallyUniqueId', 'RevertToSelf', 'OpenThreadToken', 'CoMarshalInterface', 'CreateStreamOnHGlobal', 'CoUnmarshalInterface', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoReleaseMarshalData'], ['DisconnectNamedPipe', 'EnterCriticalSection', 'ExitProcess', 'FlushFileBuffers', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetFileSize', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetVersionExA', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InterlockedDecrement', 'DeviceIoControl', 'IsDBCSLeadByte', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringA', 'QueryPerformanceCounter', 'ReadFile', 'RtlUnwind', 'SetEnvironmentVariableA', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VirtualFree', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcmpiA', 'DeleteCriticalSection', 'CreateThread', 'CreateNamedPipeA', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'ConnectNamedPipe', 'CompareStringW', 'CompareStringA', 'GetModuleHandleA', 'CloseHandle', 'SetErrorMode', 'InterlockedIncrement', 'VirtualAlloc', 'InitializeCriticalSectionAndSpinCount', 'GetModuleHandleW', 'CharUpperW', 'GetClipboardSequenceNumber', 'LoadIconA', 'Rectangle', 'RectInRegion', 'PATHOBJ_vGetBounds', 'HT_Get8BPPMaskPalette', 'GetCharacterPlacementW', 'GdiSetPixelFormat', 'GdiDllInitialize', 'EngTextOut', 'GetStockObject', 'SetDIBitsToDevice', 'RegQueryValueExA', 'RegOpenKeyExA', 'SHGetDesktopFolder', 'SHGetPathFromIDListW', 'SHPathPrepareForWriteA', 'SHPathPrepareForWriteW'], ['HeapFree', 'GetTickCount', 'Sleep', 'GetModuleHandleA', 'GetProcAddress', 'AddVectoredExceptionHandler', 'SetThreadStackGuarantee', 'GetLastError', 'GetCurrentThread', 'GetProcessHeap', 'HeapAlloc', 'HeapReAlloc', 'CloseHandle', 'TryAcquireSRWLockExclusive', 'ReleaseSRWLockExclusive', 'GetStdHandle', 'GetConsoleMode', 'WaitForSingleObject', 'MultiByteToWideChar', 'WriteConsoleW', 'SetLastError', 'WaitForSingleObjectEx', 'LoadLibraryA', 'CreateMutexA', 'GetCurrentProcess', 'ReleaseMutex', 'RtlLookupFunctionEntry', 'GetModuleHandleW', 'FormatMessageW', 'AcquireSRWLockExclusive', 'GetCurrentDirectoryW', 'RtlCaptureContext', 'AcquireSRWLockShared', 'ReleaseSRWLockShared', 'GetEnvironmentVariableW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'GetLastInputInfo', 'NtWriteFile', 'RtlNtStatusToDosError', '__current_exception_context', '__current_exception', 'memmove', '__C_specific_handler', 'memset', 'memcpy', '__CxxFrameHandler3', 'memcmp', '_register_thread_local_exe_atexit_callback', '__p___argv', '__p___argc', '_seh_filter_exe', '_exit', '_initialize_onexit_table', '_c_exit', '_crt_atexit', 'terminate', 'exit', '_set_app_type', '_register_onexit_function', '_cexit', '_initterm', '_initterm_e', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', '_set_new_mode', 'free'], ['SetupDiDestroyDeviceInfoList', 'SetupDiOpenDevRegKey', 'SetupDiGetDeviceRegistryPropertyW', 'SetupDiEnumDeviceInfo', 'SetupDiGetClassDevsW', 'GetTickCount', 'FileTimeToLocalFileTime', 'GetFileAttributesW', 'GetFileTime', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'ExitProcess', 'ExitThread', 'CreateThread', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'FileTimeToSystemTime', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetThreadLocale', 'lstrlenA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'FormatMessageW', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'GetModuleHandleA', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomW', 'CreateEventW', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'GlobalUnlock', 'lstrlenW', 'WritePrivateProfileStringW', 'FreeResource', 'GlobalFree', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'MultiByteToWideChar', 'ReadFile', 'WriteFile', 'WideCharToMultiByte', 'SetCommState', 'GetCommState', 'SetCommTimeouts', 'GetCommTimeouts', 'CreateFileW', 'CloseHandle', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'Sleep', 'HeapCreate', 'CharUpperW', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetWindowThreadProcessId', 'GetLastActivePopup', 'MessageBoxW', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetSysColorBrush', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'SetFocus', 'CharNextW', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GetWindow', 'SetWindowContextHelpId', 'GetParent', 'MapDialogRect', 'SetWindowPos', 'PostQuitMessage', 'PostMessageW', 'EnableWindow', 'SendMessageW', 'LoadBitmapW', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'SetWindowLongW', 'GetWindowLongW', 'AppendMenuW', 'GetSystemMenu', 'LoadIconW', 'UnregisterClassA', 'ExtSelectClipRgn', 'DeleteDC', 'Escape', 'GetStockObject', 'GetDeviceCaps', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetMapMode', 'TextOutW', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'GetClipBox', 'CreateRectRgnIndirect', 'CreateBitmap', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'GetObjectW', 'SetBkColor', 'SelectObject', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegDeleteKeyW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegCloseKey', 'InitCommonControlsEx', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysFreeString', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen'], ['WSAStartup', 'inet_addr', 'gethostbyaddr', 'WSAGetLastError', 'recv', 'socket', 'connect', 'closesocket', 'send', 'LoadLibraryA', 'TerminateThread', 'GetSystemTime', 'ExitProcess', 'lstrlenA', 'MultiByteToWideChar', 'Sleep', 'GetProcAddress', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'SysAllocStringLen', 'SysFreeString'], ['VirtualProtect', 'Sleep', 'GetTempPathA', 'VirtualQuery', 'GetSystemInfo', 'RaiseException', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'CreateFileW', 'GetFileType', 'CloseHandle', 'DuplicateHandle', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetEndOfFile', 'ReadFile', 'ReadConsoleW', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetCommandLineA', 'GetCommandLineW', 'GetStringTypeW', 'WriteConsoleW', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'LoadLibraryExA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA'], ['UnmapViewOfFile', 'lstrcatA', 'OpenProcess', 'HeapSize', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'GetFileInformationByHandle', 'CopyFileA', 'GetLastError', 'QueryFullProcessImageNameA', 'CreateFileA', 'FileTimeToSystemTime', 'LoadLibraryA', 'LockResource', 'Process32Next', 'lstrcpyA', 'HeapReAlloc', 'CloseHandle', 'RaiseException', 'FindResourceExW', 'LoadResource', 'WaitForSingleObject', 'HeapAlloc', 'GetLocalTime', 'DecodePointer', 'HeapDestroy', 'GetProcAddress', 'CreateFileMappingA', 'GetFileSize', 'DeleteCriticalSection', 'GetProcessHeap', 'SystemTimeToFileTime', 'FreeLibrary', 'MapViewOfFile', 'HeapFree', 'FlushFileBuffers', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'CreateMutexA', 'GetEnvironmentVariableA', 'InitializeCriticalSectionEx', 'SetFilePointer', 'LeaveCriticalSection', 'WriteFile', 'FindResourceW', 'EnterCriticalSection', 'SizeofResource', 'GetModuleFileNameA', 'ReadFile', 'GetStringTypeW', 'ReadConsoleW', 'GetTimeZoneInformation', 'GetFileType', 'GetFileSizeEx', 'GetConsoleMode', 'GetConsoleCP', 'LCMapStringW', 'CompareStringW', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'GetModuleFileNameW', 'GetCPInfo', 'GetModuleHandleExW', 'ExitProcess', 'VirtualQuery', 'VirtualProtect', 'GetTickCount', 'GetShortPathNameA', 'WriteConsoleW', 'VirtualAlloc', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'RemoveDirectoryW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'SetLastError', 'GetModuleHandleW', 'WideCharToMultiByte', 'FormatMessageW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'OutputDebugStringW', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RtlUnwind', 'EncodePointer', 'LoadLibraryExW', 'GetSystemInfo', 'GetDC', 'GetSystemMetrics', 'ReleaseDC', 'ShowWindow', 'FindWindowA', 'GetDesktopWindow', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'BitBlt', 'RegGetValueA', 'RegOpenKeyExA', 'ShellExecuteA', 'PathFindExtensionW', 'PathFindExtensionA', 'GdiplusStartup', 'GdipSaveImageToFile', 'GdipCreateBitmapFromScan0', 'GdiplusShutdown', 'GdipGetImageEncoders', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipGetImageEncodersSize', 'InternetCloseHandle', 'InternetOpenA', 'InternetConnectA', 'HttpSendRequestExA', 'HttpEndRequestA', 'InternetWriteFile', 'HttpOpenRequestA', 'CryptUnprotectData', 'URLDownloadToFileA'], ['GetFullPathNameW', 'GetEnvironmentVariableW', 'HeapReAlloc', 'SetVolumeLabelA', 'IsBadStringPtrW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetDefaultCommConfigW', 'GetProcessIoCounters', 'ClearCommError', 'GetQueuedCompletionStatus', 'GetNumaAvailableMemoryNode', 'GetTickCount', 'GetWindowsDirectoryA', 'GetPriorityClass', 'GlobalAlloc', 'GetThreadSelectorEntry', 'SizeofResource', 'GetWriteWatch', 'SetConsoleCursorPosition', 'MultiByteToWideChar', 'FindFirstFileExA', 'GetLastError', 'EnumDateFormatsExA', 'EnumSystemCodePagesW', 'SetFileApisToOEM', 'GetAtomNameA', 'LoadLibraryA', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'VirtualProtect', 'CompareStringA', 'SetCalendarInfoA', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'FindNextVolumeA', 'CreateFileA', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'HeapAlloc', 'VirtualAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CloseHandle', 'GetCaretPos'], ['LoadLibraryA', 'GetModuleHandleA', 'InterlockedCompareExchange', 'OpenWaitableTimerW', 'CreateEventA', 'ReadConsoleInputW', 'WaitNamedPipeA', 'SetVolumeMountPointA', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesA', 'GetModuleFileNameW', 'IsBadCodePtr', 'LoadLibraryW', 'DeleteFileW', 'SearchPathA', 'VirtualAlloc', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasA', 'GetShortPathNameA', 'GetPrivateProfileStringW', 'PeekConsoleInputA', 'GlobalGetAtomNameA', 'GetProcAddress', 'GetUserDefaultLangID', 'GetConsoleAliasW', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameA', 'lstrcpynA', 'AddAtomA', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameA', 'FoldStringW', 'OpenWaitableTimerA', 'ResetEvent', 'GlobalWire', 'GetComputerNameA', 'GetVersionExW', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'GetFileAttributesExW', 'SetComputerNameA', 'GetFileAttributesA', 'ReadConsoleA', 'GetVolumePathNameW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap'], ['DecodePointer', 'CreateThread', 'SetEvent', 'WaitForSingleObject', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'Sleep', 'CreateTimerQueue', 'CreateEventW', 'CreateTimerQueueTimer', 'DeleteTimerQueueTimer', 'DeleteTimerQueue', 'GetCurrentProcessId', 'CreateToolhelp32Snapshot', 'Process32NextW', 'SetConsoleCtrlHandler', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'CreateFileA', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'GetFileAttributesW', 'CreateDirectoryW', 'CreateFileW', 'WriteFile', 'SetFileTime', 'CloseHandle', 'FindFirstFileW', 'GetModuleFileNameW', 'CreateProcessW', 'GetConsoleWindow', 'FindNextFileW', 'FindClose', 'OpenProcess', 'TerminateProcess', 'GetFileAttributesA', 'GetWindowsDirectoryW', 'GetCurrentProcess', 'GetSystemInfo', 'FileTimeToSystemTime', 'GetFileInformationByHandle', 'GetFileSize', 'UnmapViewOfFile', 'GetLocalTime', 'GetTickCount', 'SetEndOfFile', 'LoadLibraryW', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'GetTimeZoneInformation', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'RaiseException', 'DeleteFileW', 'WideCharToMultiByte', 'InitializeSListHead', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetVersionExW', 'GetModuleHandleA', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileType', 'MoveFileExW', 'LoadLibraryExW', 'FreeLibrary', 'GetStdHandle', 'GetCurrentThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetConsoleMode', 'SetEnvironmentVariableA', 'GetConsoleCP', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'CreateSemaphoreW', 'GetStartupInfoW', 'SetLastError', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetCurrentThreadId', 'GetStringTypeW', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'GetCPInfo', 'GetCommandLineA', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetLogicalProcessorInformation', 'ChangeTimerQueueTimer', 'GetModuleHandleW', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'TranslateMessage', 'GetSystemMetrics', 'GetDC', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'wsprintfW', 'ReleaseDC', 'DispatchMessageW', 'GetDesktopWindow', 'GetMessageW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'DeleteObject', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoCreateGuid', 'StringFromGUID2', 'GdipDisposeImage', 'GdipSaveImageToFile', 'GdiplusShutdown', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipFree', 'recv', 'inet_addr', 'htons', 'socket', 'WSAStartup', 'WSACleanup', 'closesocket', 'select', 'sendto', 'GetProcessMemoryInfo', 'QueryWorkingSet'], ['DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'InitializeCriticalSection', 'IsBadReadPtr', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'TlsGetValue', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', '_winmajor', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'malloc', 'memcpy', 'memmove', 'memset', 'signal', 'strcmp', 'vfprintf'], ['HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'FatalAppExitA', 'VirtualFree', 'HeapCreate', 'RaiseException', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetTimeZoneInformation', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'RtlUnwind', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetStringTypeExA', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetModuleHandleW', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentProcessId', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'MulDiv', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'CompareStringA', 'LoadLibraryA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'lstrlenA', 'LoadLibraryW', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'HeapDestroy', 'SizeofResource', 'SetTimer', 'KillTimer', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'GetSystemMenu', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'UnregisterClassA', 'GetDialogBaseUnits', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'DeleteMenu', 'LoadCursorA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'InsertMenuA', 'RemoveMenu', 'SetRect', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetSysColor', 'GetSysColorBrush', 'GetFocus', 'EnableWindow', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'PtInRect', 'SetWindowPlacement', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'GetMenuBarInfo', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'BringWindowToTop', 'TranslateAcceleratorA', 'InvalidateRect', 'RegisterWindowMessageA', 'SetRectEmpty', 'SendMessageA', 'ShowWindow', 'DrawIcon', 'IsIconic', 'GetClientRect', 'LoadIconA', 'GetSystemMetrics', 'GetWindow', 'CheckDlgButton', 'CheckRadioButton', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextA', 'SendDlgItemMessageA', 'SetDlgItemInt', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'IsDialogMessageA', 'GetWindowLongA', 'SetWindowTextA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetParent', 'SetWindowPos', 'ScrollWindowEx', 'SetFocus', 'IsWindowEnabled', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'IsWindow', 'IsChild', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'PolyDraw', 'CreateHatchBrush', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetBkColor', 'GetCurrentPositionEx', 'ArcTo', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'RectVisible', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'CreateSolidBrush', 'GetDCOrgEx', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'TextOutA', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueA', 'RegCloseKey', 'RegOpenKeyExW', 'RegDeleteValueA', 'ExtractIconA', 'DragFinish', 'DragQueryFileA', 'SHGetFileInfoA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveExtensionA', 'PathRemoveFileSpecW', 'StringFromGUID2', 'CoDisconnectObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'CoCreateInstance', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CLSIDFromString', 'CoUninitialize', 'CoInitializeEx', 'StringFromCLSID', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['HeapSize', 'GetProcessHeap', 'OpenProcess', 'GetCurrentProcessId', 'RaiseException', 'GetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'Sleep', 'FindClose', 'CloseHandle', 'CreateMutexA', 'OpenMutexA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CreateProcessA', 'GetTempPathA', 'CreateDirectoryA', 'RemoveDirectoryA', 'GetFullPathNameW', 'SetFileAttributesA', 'DeleteFileA', 'HeapFree', 'FindNextFileW', 'CopyFileA', 'GetVersionExA', 'WideCharToMultiByte', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'GetVersionExW', 'GetThreadTimes', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'HeapReAlloc', 'HeapAlloc', 'InterlockedDecrement', 'FindFirstFileW', 'DecodePointer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'SetEndOfFile', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'SetFilePointerEx', 'ReadFile', 'GetConsoleMode', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'SetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'InitializeSListHead', 'IsDebuggerPresent', 'MultiByteToWideChar', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'VirtualQuery', 'FreeLibrary', 'DuplicateHandle', 'GetCurrentThread', 'GetExitCodeThread', 'TryEnterCriticalSection', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'GetCPInfo', 'EncodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'OutputDebugStringW', 'LocalFree', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'GetFileType', 'WriteConsoleW', 'WriteFile', 'GetACP', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetDateFormatW', 'GetTimeFormatW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'WaitForSingleObject', 'GetExitCodeProcess', 'GetFileAttributesExW', 'FlushFileBuffers', 'GetConsoleCP', 'SendMessageA', 'DefWindowProcA', 'PostQuitMessage', 'wsprintfA', 'RegisterWindowMessageA', 'GetMessageA', 'TranslateMessage', 'IsWindowVisible', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'TrackPopupMenu', 'LoadIconA', 'LoadCursorA', 'GetCursorPos', 'SetForegroundWindow', 'DispatchMessageA', 'CreateSolidBrush', 'SetKernelObjectSecurity', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'ShellExecuteA', 'Shell_NotifyIconA', 'SHGetSpecialFolderPathA', 'CoInitializeSecurity', 'CoSetProxyBlanket', 'CoCreateInstance', 'CoInitializeEx', 'CoUninitialize', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysAllocString', 'InternetConnectA', 'InternetCloseHandle', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetOpenA', 'InternetReadFile', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['ReadConsoleInputW', 'VerifyVersionInfoW', 'GetCPInfoExA', 'CreateEventW', 'GetSystemDirectoryW', 'GetProcAddress', 'GlobalAlloc', 'DeleteTimerQueueTimer', 'OpenWaitableTimerA', 'GetFileAttributesW', 'EnumResourceTypesW', 'GetLongPathNameW', 'GetModuleHandleW', 'CreateTimerQueue', 'InterlockedCompareExchange', 'FindNextFileA', 'LocalFlags', 'WaitCommEvent', 'SleepEx', 'GetConsoleAliasW', 'MapUserPhysicalPagesScatter', 'PulseEvent', 'GetConsoleMode', 'AddAtomA', 'lstrcmpA', 'SetCalendarInfoA', 'GetSystemWindowsDirectoryA', 'GetComputerNameW', 'EnumTimeFormatsA', 'FileTimeToSystemTime', 'SetSystemTime', '_llseek', 'GetShortPathNameW', 'EnumCalendarInfoA', 'EnumCalendarInfoExW', 'FindNextFileW', 'CreateActCtxW', 'SetStdHandle', 'GetWindowsDirectoryW', 'FindFirstVolumeMountPointW', 'SetLastError', 'LoadLibraryA', 'WriteConsoleW', 'CloseHandle', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'MoveFileA', 'DeleteFileA', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'DecodePointer', 'HeapCreate', 'HeapFree', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'GetConsoleCP', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'LCMapStringW', 'GetStringTypeW', 'ReadFile', 'SetFilePointer', 'CreateFileW', 'LoadMenuW', 'GetComboBoxInfo', 'DefDlgProcA', 'GetListBoxInfo', 'GetCharWidth32A', 'LookupAccountSidW', 'FindExecutableA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'FreeSid', 'GetAdaptersAddresses', 'atof', 'GetProcessMemoryInfo', 'SHGetSpecialFolderPathA', 'ShowWindow', 'GetUserProfileDirectoryW', 'bind'], ['LoadLibraryW', 'ExitProcess', 'LockResource', 'GetProcAddress', 'WaitForSingleObject', 'FindResourceW', 'GetDateFormatW', 'GetModuleHandleW', 'GetVersionExW', 'OpenProcess', 'GetSystemTime', 'GetWindowsDirectoryW', 'CreateFileW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'SetStdHandle', 'WriteConsoleW', 'CloseHandle', 'SetFilePointer', 'GetStringTypeW', 'MultiByteToWideChar', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'WideCharToMultiByte', 'RtlUnwind', 'RaiseException', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'IsProcessorFeaturePresent', 'HeapFree', 'HeapAlloc', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'ImageList_Create', 'ImageList_GetIcon', 'ImageList_GetImageCount', 'ImageList_GetDragImage', 'ImageList_EndDrag', 'GetSaveFileNameW', 'FindTextW', 'GetOpenFileNameW', 'OleInitialize', 'OleUninitialize', 'GetThemeBackgroundRegion', 'DrawThemeText', 'CloseThemeData', 'OpenThemeData', 'OleTranslateColor', 'OleCreateFontIndirect', 'OleCreatePictureIndirect', 'OleLoadPicture', 'OleCreatePropertyFrameIndirect', 'OleCreatePropertyFrame', 'OleUIEditLinksW', 'OleUIBusyW', 'OleUIPromptUserW', 'OleUIAddVerbMenuW'], ['GetModuleFileNameW', 'WaitForSingleObject', 'Sleep', 'MoveFileExW', 'GetProcessHeap', 'SetEndOfFile', 'GetProcAddress', 'HeapAlloc', 'CloseHandle', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetModuleHandleA', 'GetCurrentProcess', 'HeapFree', 'GetWindowsDirectoryW', 'Wow64RevertWow64FsRedirection', 'GetFileAttributesW', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'SetStdHandle', 'WinExec', 'Wow64DisableWow64FsRedirection', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'RtlUnwind', 'CryptDeriveKey', 'CryptDestroyKey', 'CryptAcquireContextW', 'CryptDecrypt', 'CryptCreateHash', 'CryptHashData', 'CryptDestroyHash', 'CryptReleaseContext', 'SHGetKnownFolderPath', 'CoTaskMemFree', 'GetAdaptersInfo', 'PathGetDriveNumberW', 'PathCombineW', 'PathFindFileNameW', 'StrCmpIW'], ['GetModuleHandleA', 'DefWindowProcW', 'RegOpenKeyExW', 'ShellAboutW', 'PropertySheet', '_CorExeMain'], ['lstrcmpA', 'LocalFileTimeToFileTime', 'DosDateTimeToFileTime', 'CreateFileA', 'FreeResource', 'GlobalUnlock', 'LockResource', 'lstrcmpiA', 'SetFileTime', 'GetDiskFreeSpaceA', 'GetDriveTypeA', 'GetWindowsDirectoryA', 'GetTimeZoneInformation', 'GetFileAttributesA', 'SetFileAttributesA', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetLastError', 'IsDBCSLeadByte', 'lstrcpynA', 'lstrcatA', 'GetTickCount', 'lstrlenA', 'FindResourceA', 'LoadResource', 'lstrcpyA', 'GetFullPathNameA', 'GetFileType', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindFirstFileA', 'LoadLibraryA', 'GetProcAddress', 'FindClose', 'CompareStringA', 'FlushFileBuffers', 'CompareStringW', 'GetStringTypeW', 'GetStringTypeA', 'VirtualAlloc', 'HeapReAlloc', 'VirtualFree', 'HeapSize', 'HeapDestroy', 'GetOEMCP', 'HeapCreate', 'GetCPInfo', 'GetEnvironmentStringsW', 'GetACP', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetModuleHandleA', 'RtlUnwind', 'SetEndOfFile', 'UnhandledExceptionFilter', 'GetStdHandle', 'SetHandleCount', 'SetFilePointer', 'WriteFile', 'LCMapStringW', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'DeleteFileA', 'CreateDirectoryA', 'RemoveDirectoryA', 'SetEnvironmentVariableA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'SetStdHandle', 'MoveFileA', 'ReadFile', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'LCMapStringA', 'HeapAlloc', 'HeapFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'MessageBoxA', 'ShowWindow', 'InvalidateRect', 'GetSysColor', 'UpdateWindow', 'DispatchMessageA', 'SetWindowTextA', 'PeekMessageA', 'LoadStringA', 'TranslateMessage', 'DestroyWindow', 'SendMessageA', 'GetDlgItem', 'SendDlgItemMessageA', 'wsprintfA', 'DialogBoxParamA', 'CharNextA', 'EndDialog', 'FindWindowA', 'GetSystemMetrics', 'CharPrevA', 'GetWindowRect', 'SetCursor', 'MoveWindow', 'PostQuitMessage', 'CopyRect', 'DefWindowProcA', 'GetClientRect', 'LoadIconA', 'GetWindowTextA', 'FillRect', 'CreateDialogParamA', 'LoadCursorA', 'RegisterClassA', 'CreateSolidBrush', 'CreatePen', 'DeleteObject', 'MoveToEx', 'SelectObject', 'LineTo', 'ExtTextOutA', 'SetTextColor', 'SetBkColor', 'GetTextExtentPoint32A', 'RestoreDC', 'SaveDC'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'GetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'SetCalendarInfoW', 'MoveFileA', 'CreateEventW', 'GetModuleHandleA', 'VirtualProtect', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'HeapDestroy', 'LeaveCriticalSection', 'HeapCreate', 'EnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentProcessId', 'SetFileTime', 'WriteFile', 'GetFileAttributesW', 'CreateFileW', 'GetFileTime', 'SetFilePointer', 'HeapSize', 'CreateThread', 'OpenProcess', 'Sleep', 'ReadProcessMemory', 'Process32FirstW', 'GetSystemInfo', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetProcAddress', 'GetTickCount', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CloseHandle', 'GetShortPathNameW', 'SetLastError', 'GetLastError', 'OpenMutexW', 'GetModuleFileNameW', 'CopyFileW', 'TerminateThread', 'OutputDebugStringW', 'ExitProcess', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'CreateProcessW', 'CreateMutexW', 'FlushFileBuffers', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleW', 'SetStdHandle', 'RtlUnwind', 'LoadLibraryW', 'HeapReAlloc', 'IsValidCodePage', 'GetEnvironmentVariableW', 'VirtualQueryEx', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetConsoleMode', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'wsprintfW', 'wsprintfA', 'RegCreateKeyExW', 'LookupPrivilegeValueW', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'ShellExecuteW', 'SHGetFolderPathW', 'HttpSendRequestA', 'InternetCrackUrlA', 'InternetConnectA', 'InternetReadFile', 'InternetOpenA', 'InternetCloseHandle', 'InternetSetOptionA', 'HttpQueryInfoA', 'HttpOpenRequestA', 'wvnsprintfW'], ['WriteProfileSectionA', 'GetNumaHighestNodeNumber', 'FindFirstVolumeA', 'FlushConsoleInputBuffer', 'HeapLock', 'FindFirstChangeNotificationA', 'PulseEvent', 'GetNamedPipeHandleStateW', 'CompareFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateThread', 'SignalObjectAndWait', 'GetVersionExW', 'VerifyVersionInfoW', 'SetEvent', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBAndTimeoutsA', 'GetConsoleOutputCP', 'GetCompressedFileSizeA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', '_hread', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetWaitableTimer', 'SetComputerNameExW', 'FindAtomA', 'LoadResource', 'GetThreadTimes', 'CallNamedPipeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'GetModuleHandleA', 'LocalAlloc', 'VerifyVersionInfoA', 'GlobalWire', 'GetProfileSectionW', 'GetCommandLineA', 'InterlockedDecrement', 'FindFirstChangeNotificationW', 'GetCalendarInfoA', 'ReleaseActCtx', 'OutputDebugStringW', 'FormatMessageA', 'SetDllDirectoryW', 'SetPriorityClass', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalFix', 'GetVersionExA', 'HeapValidate', 'InterlockedCompareExchange', 'CopyFileA', 'GetLastError', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleTextAttribute', 'GetComputerNameExW', 'GetSystemWow64DirectoryW', 'GetStartupInfoW', 'ConnectNamedPipe', 'GetCPInfoExW', 'GetPrivateProfileSectionNamesA', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'CopyFileW', 'GetOEMCP', 'GetConsoleAliasW', 'lstrlenA', 'ReadConsoleA', 'WriteConsoleA', 'GetPrivateProfileSectionNamesW', 'FormatMessageW', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoA', 'SetThreadIdealProcessor', 'EnumDateFormatsExW', 'VerSetConditionMask', 'CreateConsoleScreenBuffer', 'GetSystemWindowsDirectoryW', 'GetProfileStringW', 'CreateIoCompletionPort', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', 'SetThreadContext', 'GetSystemTimeAdjustment', '_lwrite', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'GetWriteWatch', 'OpenSemaphoreW', 'GetModuleHandleW', 'DeleteAtom', 'LoadLibraryW', 'GetPrivateProfileStringW', 'TlsFree', 'GetProfileSectionA', 'CreateActCtxW', 'CreateJobSet', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingW', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'PeekNamedPipe', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'InitAtomTable', 'GetNumberFormatW', 'EnterCriticalSection', 'InitializeCriticalSection', 'AddAtomW', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'SetLastError', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'CreateFileA', 'GetBitmapBits'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SafeArrayUnaccessData', 'RegSetValueExA', 'WNetOpenEnumA', 'UnrealizeObject', 'WindowFromPoint', 'CreateStreamOnHGlobal', 'GetErrorInfo', 'ImageList_GetImageInfo', 'GetSaveFileNameA', 'CreateUrlCacheEntryA', 'ShellExecuteA', 'WSACleanup', 'SHGetSpecialFolderLocation'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'GetOpenFileNameA'], ['GetSystemInfo', 'VirtualAlloc', 'VirtualFree', 'VirtualQuery', 'CloseHandle', 'HeapCreate', 'HeapDestroy', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'Sleep', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'FlushInstructionCache', 'VirtualProtect', 'GetModuleHandleW', 'GetProcAddress', 'CreateToolhelp32Snapshot', 'Thread32First', 'Thread32Next', 'lstrcatA', 'lstrlenA', 'OpenMutexA', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateThread', 'StrStrA'], ['ScriptItemizeOpenType', 'ScriptString_pSize', 'ScriptGetFontProperties', 'ScriptGetGlyphABCWidth', 'ScriptXtoCP', 'ScriptShapeOpenType', 'ScriptStringCPtoX', 'ScriptCPtoX', 'RasHangUpA', 'RasGetErrorStringW', 'RasDialA', 'RasClearLinkStatistics', 'RasGetProjectionInfoA'], ['CryptUnprotectData', 'OutputDebugStringA', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'SetFilePointer', 'GetFullPathNameA', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'CreateFileW', 'GetFileAttributesW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetLastError', 'GetFileAttributesA', 'GetFileAttributesExW', 'OutputDebugStringW', 'CreateFileA', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'GetSystemInfo', 'LoadLibraryW', 'HeapAlloc', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'GetProcAddress', 'CreateFileMappingA', 'LocalFree', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'GetProcessHeap', 'SystemTimeToFileTime', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'SetHandleInformation', 'FindFirstFileA', 'Wow64DisableWow64FsRedirection', 'K32GetModuleFileNameExW', 'FindNextFileA', 'CreatePipe', 'PeekNamedPipe', 'lstrlenA', 'FindClose', 'GetCurrentDirectoryA', 'lstrcatA', 'OpenProcess', 'SetCurrentDirectoryA', 'CreateToolhelp32Snapshot', 'ProcessIdToSessionId', 'CopyFileA', 'Wow64RevertWow64FsRedirection', 'Process32NextW', 'Process32FirstW', 'CreateThread', 'CreateProcessA', 'CreateDirectoryA', 'WriteConsoleW', 'WriteFile', 'GetFullPathNameW', 'EnterCriticalSection', 'HeapFree', 'HeapCreate', 'TryEnterCriticalSection', 'ReadFile', 'AreFileApisANSI', 'GetDiskFreeSpaceW', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'SetStdHandle', 'GetCurrentDirectoryW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'InitializeSListHead', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'DecodePointer', 'GetCPInfo', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'InterlockedFlushSList', 'LoadLibraryExW', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetCurrentProcess', 'TerminateProcess', 'ExitProcess', 'GetModuleFileNameW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetTimeZoneInformation', 'GetStdHandle', 'RegQueryValueExA', 'RegEnumValueW', 'RegCloseKey', 'RegQueryInfoKeyW', 'GetUserNameW', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'LookupAccountNameW', 'SHGetFolderPathA', 'SHFileOperationA', 'HttpOpenRequestA', 'InternetWriteFile', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetOpenA', 'HttpAddRequestHeadersA', 'HttpSendRequestExW', 'HttpEndRequestA', 'InternetOpenW', 'BCryptOpenAlgorithmProvider', 'BCryptSetProperty', 'BCryptGenerateSymmetricKey', 'BCryptDecrypt'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegOpenKeyA', 'WriteProcessMemory', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtectEx', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'SystemTimeToFileTime', 'SizeofResource', 'SetThreadContext', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryW', 'SetCurrentDirectoryA', 'ResetEvent', 'RemoveDirectoryW', 'RemoveDirectoryA', 'ReadProcessMemory', 'ReadFile', 'QueryDosDeviceW', 'PostQueuedCompletionStatus', 'MultiByteToWideChar', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadWritePtr', 'IsBadStringPtrW', 'IsBadReadPtr', 'InitializeCriticalSection', 'GetWindowsDirectoryW', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetVersion', 'GetThreadLocale', 'GetThreadContext', 'GetTempPathW', 'GetTempPathA', 'GetTempFileNameW', 'GetTempFileNameA', 'GetSystemDirectoryW', 'GetSystemDirectoryA', 'GetStringTypeExW', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesW', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceW', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'CreateRemoteThread', 'CreateFileW', 'CreateFileA', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'CharLowerW', 'CharNextA', 'CharLowerA', 'CharUpperA', 'CharToOemA', 'Sleep', 'ActivateActCtx', 'CreateActCtxW', 'QueryDosDeviceW', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'RtlInitUnicodeString', 'RtlFreeUnicodeString', 'RtlFormatCurrentUserKeyPath', 'RtlDosPathNameToNtPathName_U', 'SHGetFolderPathW', 'SHGetFolderPathA', 'ZwProtectVirtualMemory', 'PathMatchSpecW', 'LdrGetProcedureAddress', 'RtlFreeUnicodeString', 'RtlInitAnsiString', 'RtlAnsiStringToUnicodeString', 'LdrLoadDll'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointA', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'GetTimeZoneInformation', 'GetSystemDirectoryA', 'GetDriveTypeW', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'FormatMessageW', 'SetDllDirectoryA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'WaitForDebugEvent', 'EndUpdateResourceW', 'GetLastError', 'GetSystemTime', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'TerminateThread', 'GetACP', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'EnterCriticalSection', 'GetConsoleAliasW', '_lwrite', 'GetOverlappedResult', 'CreateNamedPipeA', 'InterlockedDecrement', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'GetStringTypeW', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileA', 'GetCommMask', 'CloseHandle', 'EndUpdateResourceA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotW', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'CopyFileExA', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'CreateActCtxA', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ImpersonateSelf'], ['LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleHandleW', 'StrokePath', 'PathToRegion', 'GetStockObject'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetACP', 'lstrlenA', 'GetLastError', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'lstrcmpA', 'GetProcessId', 'GetCurrentThread', 'OleUIConvertA', 'OleUIConvertW', 'OleUIBusyA', 'OleUIBusyW', 'InitCommonControls', 'GetRelAbs', 'SHGetFolderLocation', 'midiInGetErrorTextW', 'DllRegisterServer', 'VerFindFileW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'DecodePointer', 'Sleep', 'GetCurrentThreadId', 'GetSystemInfo', 'VirtualProtect', 'GetSystemMetrics', 'GetConsoleWindow', 'GetCursorPos', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetProcAddress', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'GetCommandLineW', 'FindNextFileW', 'HeapFree', 'GetCPInfo', 'CompareStringW', 'GetConsoleMode', 'CloseHandle', 'VariantChangeTypeEx', 'RaiseException'], ['ExitProcess', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'GetSystemDirectoryW', 'DeleteCriticalSection', 'InitializeCriticalSectionEx', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'FormatMessageW', 'CreateFileW', 'SetLastError', 'CloseHandle', 'DeviceIoControl', 'GetProcAddress', 'GetModuleHandleW', 'FreeLibrary', 'MultiByteToWideChar', 'WriteFile', 'FindNextFileW', 'GetCurrentProcess', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwindEx', 'RtlPcToFileHeader', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'FindClose', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'RaiseException'], ['GetProcAddress', 'LoadLibraryA', 'CloseHandle', 'WriteFile', 'CreateDirectoryA', 'GetTempPathA', 'ReadFile', 'SetFilePointer', 'CreateFileA', 'GetModuleFileNameA', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'MultiByteToWideChar', 'GetStringTypeW', 'MessageBoxA', 'wsprintfA'], ['midiStreamOut', 'WSACleanup', 'CreateMutexA', 'IsZoomed', 'ExcludeClipRect', 'OpenPrinterA', 'RegQueryValueExA', 'ShellExecuteA', 'CLSIDFromProgID', 'UnRegisterTypeLib', 'ImageList_GetIcon', 'ChooseColorA', 'strncpy', 'GetInterfaceInfo', 'GetMappedFileNameW'], ['UpdateWindow', 'ShowWindow', 'SetWindowRgn', 'SetWindowLongA', 'SetLayeredWindowAttributes', 'SetDlgItemTextA', 'SetCursor', 'SendMessageA', 'MessageBoxA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'GetWindowLongA', 'GetDlgItemTextA', 'GetDlgItem', 'EndDialog', 'DialogBoxParamA', 'CallWindowProcA', 'FindResourceA', 'GetModuleHandleA', 'lstrlenA', 'WriteFile', 'UnmapViewOfFile', 'Sleep', 'SizeofResource', 'RtlZeroMemory', 'RtlMoveMemory', 'MapViewOfFile', 'LockResource', 'CloseHandle', 'CreateFileA', 'CreateFileMappingA', 'ExitProcess', 'FlushViewOfFile', 'LoadResource', 'GetSaveFileNameA', 'InitCommonControlsEx', 'CreatePatternBrush', 'ExtCreateRegion', 'ShellExecuteA', 'strncpy', 'GetInterfaceInfo', 'GetMappedFileNameW', 'RegQueryValueExA'], ['__WSAFDIsSet', 'setsockopt', 'ntohs', 'recvfrom', 'sendto', 'htons', 'WSACleanup', 'listen', 'WSAStartup', 'bind', 'closesocket', 'connect', 'socket', 'send', 'ioctlsocket', 'WSAGetLastError', 'accept', 'select', 'inet_addr', 'gethostbyname', 'gethostname', 'recv', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_ReplaceIcon', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_Destroy', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'WNetUseConnectionW', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'EnumProcesses', 'GetModuleBaseNameW', 'GetProcessMemoryInfo', 'EnumProcessModules', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'HeapAlloc', 'Sleep', 'GetCurrentThreadId', 'RaiseException', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'lstrlenW', 'lstrcpyW', 'lstrcmpiW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'FindNextFileW', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'GetProcessHeap', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'GetTempPathW', 'GetTempFileNameW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'SetErrorMode', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'DeviceIoControl', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetCurrentThread', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'LoadLibraryExW', 'HeapFree', 'WaitForSingleObject', 'CreateThread', 'DuplicateHandle', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetProcAddress', 'LoadLibraryA', 'FreeLibrary', 'GetModuleFileNameW', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'ExitProcess', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetTimeFormatW', 'GetDateFormatW', 'GetCommandLineW', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'HeapCreate', 'SetHandleCount', 'GetFileType', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'RtlUnwind', 'SetFilePointer', 'GetTimeZoneInformation', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'SetSystemPowerState', 'SetEnvironmentVariableA', 'SetRect', 'AdjustWindowRectEx', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'ReleaseCapture', 'SetCapture', 'WindowFromPoint', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'CheckMenuRadioItem', 'GetMenuItemID', 'GetMenuItemCount', 'SetClipboardData', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'SystemParametersInfoW', 'MonitorFromRect', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'GetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'MessageBoxW', 'DefWindowProcW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'UnregisterHotKey', 'SetMenuItemInfoW', 'CharLowerBuffW', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'keybd_event', 'ExitWindowsEx', 'GetFocus', 'DeleteObject', 'BeginPath', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'LineTo', 'AngleArc', 'DeleteDC', 'GetPixel', 'CreateDCW', 'MoveToEx', 'Ellipse', 'GetDeviceCaps', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'GetStockObject', 'PolyDraw', 'GetSaveFileNameW', 'GetOpenFileNameW', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'CloseServiceHandle', 'UnlockServiceDatabase', 'LockServiceDatabase', 'OpenSCManagerW', 'InitiateSystemShutdownExW', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetLengthSid', 'RegCloseKey', 'CopySid', 'LogonUserW', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'GetAce', 'SetSecurityDescriptorDacl', 'RegOpenKeyExW', 'RegQueryValueExW', 'AddAce', 'DragQueryPoint', 'ShellExecuteExW', 'SHGetFolderPathW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHBrowseForFolderW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHGetMalloc', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CoTaskMemAlloc', 'StringFromGUID2', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'IIDFromString', 'OleInitialize', 'CreateBindCtx', 'CLSIDFromProgID', 'OleUninitialize', 'CoSetProxyBlanket', 'CoCreateInstanceEx', 'CoInitializeSecurity', 'SysAllocString', 'OleLoadPicture', 'SafeArrayGetVartype', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'VarR8FromDec', 'VariantTimeToSystemTime', 'QueryPathOfRegTypeLib', 'VariantCopy', 'VariantInit', 'VariantClear', 'CreateStdDispatch', 'CreateDispTypeInfo', 'SafeArrayAllocDescriptorEx', 'SafeArrayAllocData', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'GetActiveObject', 'SysFreeString'], ['OpenServiceW', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'NtClose'], ['SHGetDiskFreeSpaceA', '_CorExeMain', 'RegQueryValueA', 'WaitMessage', 'GetModuleHandleA'], ['GetVersionExA', 'GlobalMemoryStatus', 'CreateProcessA', 'Sleep', 'FlushFileBuffers', 'LCMapStringW', 'LCMapStringA', 'SetStdHandle', 'LoadLibraryA', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'SetFilePointer', 'GetLastError', 'WriteFile', 'RtlUnwind', 'HeapAlloc', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'VirtualAlloc', 'HeapReAlloc', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'CloseHandle', 'URLDownloadToFileA', 'IcmpSendEcho2', 'IcmpCloseHandle', 'IcmpCreateFile', 'inet_addr', 'HttpAddRequestHeadersA', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenA', 'InternetConnectA', 'HttpOpenRequestA', 'HttpSendRequestA'], ['MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'GetMailslotInfo', 'lstrlenW', 'GetConsoleAliasesW', 'GetStdHandle', 'GetLastError', 'SetConsoleTextAttribute', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'AllocConsole', 'GetProcAddress', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ClientToScreen', 'ClearEventLogW'], ['GetCurrentProcess', 'Sleep', 'GetFileAttributesA', 'FreeConsole', 'VirtualProtectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'WriteConsoleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'CreateFileW', 'DecodePointer'], ['FreeConsole', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoW', 'CreateFileA', 'SelectObject', 'SetBkMode', 'DeleteObject', 'GetStockObject', 'GetObjectA', 'SetTextColor', 'CreateFontIndirectA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'ChooseFontW', 'RegDeleteKeyA'], ['GetDeviceGammaRamp', 'RectVisible', 'SelectFontLocal', 'CombineTransform', 'ExitProcess', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetCommandLineA', 'GetCurrentProcess', 'GetEnvironmentStringsW', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStringTypeA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'LoadLibraryA', 'MultiByteToWideChar', 'Sleep', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'lstrcpyA'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileW', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeW', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'SetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'GetModuleHandleA', 'VirtualProtect', 'SetCalendarInfoA', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'InitializeCriticalSectionAndSpinCount', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['GetProcAddress', 'GetModuleHandleA', 'MultiByteToWideChar', 'GetEnvironmentStringsW', 'QueryPerformanceFrequency', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA'], ['HeapFree', 'AddConsoleAliasW', 'LocalFlags', 'GetProcessHeap', 'ReadConsoleW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'GetSystemDirectoryW', 'WideCharToMultiByte', 'LoadLibraryW', 'FreeConsole', 'SetVolumeMountPointA', 'GetVersionExW', 'WriteConsoleW', 'lstrlenW', 'ReplaceFileA', 'ReadConsoleA', 'GetStdHandle', 'SetLastError', 'VirtualAlloc', 'GetAtomNameA', 'LoadLibraryA', 'SetConsoleCtrlHandler', 'GetModuleFileNameA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'ReleaseActCtx', 'GetDefaultCommConfigW', 'CloseHandle', 'CreateFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'HeapSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetLastError', 'WriteFile', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'FlushFileBuffers', 'ChildWindowFromPoint', 'CoRevokeMallocSpy', 'WinHttpCloseHandle', 'AlphaBlend'], ['AdjustTokenPrivileges', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameA', 'LookupPrivilegeValueA', 'RegCloseKey', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegFlushKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegSetValueExW', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'SetStretchBltMode', 'StretchBlt', 'CloseHandle', 'CreateFileW', 'CreateMutexA', 'CreateProcessA', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DeleteFileW', 'EnterCriticalSection', 'ExitProcess', 'ExpandEnvironmentStringsA', 'ExpandEnvironmentStringsW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcess', 'GetFileAttributesA', 'GetFileAttributesW', 'GetFileTime', 'GetLastError', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemPowerStatus', 'GetSystemTimeAsFileTime', 'GetThreadLocale', 'GetTickCount', 'GetVersionExA', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapFree', 'InitializeCriticalSection', 'InterlockedExchange', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'MultiByteToWideChar', 'OpenMutexA', 'OpenProcess', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'SetFileAttributesW', 'SetFileTime', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TerminateThread', 'TlsGetValue', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'lstrcmpA', 'lstrcpyA', 'lstrlenA', '_stricmp', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'bsearch', 'calloc', 'clock', 'fclose', 'fgetc', 'fopen', 'fputc', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'gmtime', 'localeconv', 'malloc', 'memcpy', 'qsort', 'raise', 'rand', 'realloc', 'setlocale', 'signal', 'srand', 'strlen', 'strtok', 'vfprintf', '_wcsnicmp', '_wtol', 'atoi', 'isalnum', 'mbstowcs', 'memchr', 'memcmp', 'memmove', 'sprintf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strncmp', 'strncpy', 'strstr', 'strtol', 'swprintf', 'toupper', 'wcscmp', 'wcscpy', 'wcslen', 'wcsncpy', 'wcsstr', 'wcstombs', 'ShellExecuteExW', 'ChildWindowFromPoint', 'CloseDesktop', 'CreateDesktopA', 'EnumDesktopWindows', 'FindWindowA', 'GetClassNameA', 'GetDC', 'GetDesktopWindow', 'GetLastInputInfo', 'GetMenuItemID', 'GetTopWindow', 'GetWindow', 'GetWindowLongA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowTextLengthA', 'GetWindowThreadProcessId', 'IsWindowVisible', 'MenuItemFromPoint', 'MoveWindow', 'OpenDesktopA', 'PostMessageA', 'PtInRect', 'RealGetWindowClassA', 'ReleaseDC', 'ScreenToClient', 'SendMessageA', 'SetThreadDesktop', 'SetWindowLongA', 'WindowFromPoint'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['WriteProfileSectionW', 'GetNumaHighestNodeNumber', 'FindFirstVolumeW', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationA', 'WaitForMultipleObjects', 'GetNamedPipeHandleStateW', 'FileTimeToDosDateTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'GetTimeZoneInformation', 'TerminateThread', 'WaitForMultipleObjectsEx', 'GetVersionExW', 'VerifyVersionInfoA', 'GetConsoleOutputCP', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasesLengthA', 'GetCompressedFileSizeW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', '_hread', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindVolumeClose', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetWaitableTimer', 'SetComputerNameExA', 'FindAtomA', 'ReleaseSemaphore', 'LocalUnlock', 'CallNamedPipeW', 'VirtualProtect', 'GlobalAlloc', 'TlsGetValue', 'GetCommandLineW', 'InterlockedDecrement', 'CopyFileA', 'AddRefActCtx', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalWire', 'GetVersionExA', 'HeapValidate', 'GetWindowsDirectoryA', 'GetStartupInfoW', 'ConnectNamedPipe', 'GetLastError', 'GetCalendarInfoA', 'GetComputerNameExW', 'SetLastError', 'GetSystemWow64DirectoryW', 'CopyFileExW', 'GetCPInfoExA', 'GetSystemWindowsDirectoryA', 'ContinueDebugEvent', 'InterlockedIncrement', 'CopyFileW', 'GetOEMCP', 'GetConsoleAliasA', 'EnumResourceNamesA', 'lstrlenA', 'LoadLibraryW', 'ReadConsoleA', 'WriteConsoleA', 'GetPrivateProfileSectionNamesA', 'FileTimeToSystemTime', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoExW', 'SetThreadIdealProcessor', 'GetConsoleAliasW', 'GetWindowsDirectoryW', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'LocalFileTimeToFileTime', 'CheckRemoteDebuggerPresent', 'GetSystemTimeAdjustment', '_lwrite', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetModuleHandleW', 'GetPrivateProfileStringA', 'GetProfileStringW', 'CreateActCtxA', 'GetUserDefaultLangID', 'IsProcessInJob', 'GetDevicePowerState', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingW', 'GetProcessHandleCount', 'SetUnhandledExceptionFilter', 'SetProcessShutdownParameters', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'InitAtomTable', 'AddAtomA', 'CreateFileA', 'WriteConsoleOutputCharacterW', 'InitializeCriticalSection', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'DebugBreak', 'LoadLibraryA', 'UnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'GetModuleHandleA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'CloseHandle', 'SetStdHandle', 'GetBitmapBits'], ['GetVolumeNameForVolumeMountPointA', 'GetFullPathNameA', 'GetEnvironmentVariableW', 'HeapReAlloc', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'EnumDateFormatsExW', 'ClearCommError', 'GetQueuedCompletionStatus', 'SetConsoleTextAttribute', 'FindFirstFileExW', 'GetTickCount', 'GetProcessTimes', 'GlobalAlloc', 'SizeofResource', 'EnumSystemCodePagesA', 'GetWriteWatch', 'SetConsoleCursorPosition', 'GetAtomNameW', 'GetModuleFileNameW', 'MultiByteToWideChar', 'IsBadStringPtrA', 'GetLastError', 'SetVolumeLabelW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'SetFileApisToANSI', 'GetDefaultCommConfigA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'VirtualProtect', 'CompareStringA', 'SetCalendarInfoA', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'FindNextVolumeA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'WideCharToMultiByte', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCaretPos'], ['WaitNamedPipeW', 'InitializeCriticalSection', 'GlobalAlloc', 'DnsHostnameToComputerNameW', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'GetComputerNameW', 'LoadLibraryA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'LoadLibraryExA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'UpdateResourceA', 'InterlockedIncrement', 'GetStringTypeA', 'GetLocaleInfoA', 'GetConsoleAliasesLengthW', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'RegQueryValueExA', 'CloseEventLog'], ['GetModuleHandleA', 'DefWindowProcW', 'RegOpenKeyExW', '_CorExeMain', 'SHGetDiskFreeSpaceExW', 'ImageList_Create'], ['GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'DisableThreadLibraryCalls', 'QueryPerformanceCounter', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetVersion', 'GetTickCount', 'InterlockedExchange', 'Sleep', 'InterlockedCompareExchange', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'SetUnhandledExceptionFilter', 'DdeQueryStringA', 'DdeGetLastError', 'DdeReconnect', 'DdeAbandonTransaction', 'DdeFreeDataHandle', 'DdeClientTransaction', 'DdeUninitialize', 'DdeDisconnect', 'DdeUnaccessData', 'DdeAccessData', 'DdeFreeStringHandle', 'DdeDisconnectList', 'DdeQueryNextServer', 'DdeCmpStringHandles', 'DdePostAdvise', 'DdeCreateDataHandle', 'DdeNameService', 'DdeCreateStringHandleA', 'DdeInitializeA'], ['MessageBoxW', 'GetSystemMetrics', 'GetSysColorBrush', 'FindWindowA', 'FreeLibrary', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'VirtualAlloc', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetLastError', 'GetCurrentProcessId', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'SetEnvironmentVariableW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'WriteConsoleW', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['SetFileAttributesW', 'GetFileTime', 'QueryDosDeviceW', 'GetACP', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'SetFilePointerEx', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'FileTimeToLocalFileTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'GetFileSizeEx', 'LoadLibraryA', 'ResetEvent', 'GetVolumeInformationW', 'FreeResource', 'GetVersion', 'GetDriveTypeW', 'RaiseException', 'MoveFileW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'GetTempPathW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'LCMapStringW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'CreateMutexA', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'GetComputerNameW', 'IsValidLocale', 'TlsSetValue', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'gethostbyaddr', 'WSAStartup', 'closesocket', 'socket', 'WSAIoctl', 'ShellExecuteW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CharUpperBuffA', 'CharUpperBuffW', 'CharNextW', 'MsgWaitForMultipleObjects', 'CharLowerBuffW', 'LoadStringW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'GetKeyboardLayoutList', 'MessageBoxW', 'GetIpNetTable', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'NetShareEnum', 'RegSetValueExW', 'RegOpenKeyW', 'RegQueryValueExW', 'GetUserNameW', 'RegCloseKey', 'RegOpenKeyExW'], ['GetModuleHandleA', 'RegisterClassExW', 'RegCloseKey', 'PathMakeUniqueName', 'ImageList_Create', '_CorExeMain'], ['LCMapStringW', 'MessageBoxW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['WTSEnumerateSessionsA', 'WTSFreeMemory', 'CloseHandle', 'GetVersionExA', 'GetModuleFileNameA', 'GetLastError', 'CreateProcessA', 'CreateEventA', 'Sleep', 'SetEvent', 'WaitForSingleObject', 'GetCurrentProcess', 'SetLastError', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetCommandLineA', 'HeapFree', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'HeapSize', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'CloseServiceHandle', 'RegCloseKey', 'ControlService', 'GetLengthSid', 'OpenSCManagerA', 'SetServiceStatus', 'QueryServiceStatus', 'DuplicateTokenEx', 'RegOpenKeyExA', 'ReportEventA', 'RegisterServiceCtrlHandlerExA', 'SetTokenInformation', 'DeregisterEventSource', 'CreateServiceA', 'RegQueryValueExA', 'DeleteService', 'StartServiceCtrlDispatcherA', 'CreateProcessAsUserA', 'OpenServiceA', 'RegisterEventSourceA', 'OpenProcessToken'], ['ExitProcess', 'GetCommandLineA', 'GetModuleHandleA', 'GetStartupInfoA', 'SetUnhandledExceptionFilter', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'atexit', 'malloc', 'signal', 'strcmp'], ['SizeofResource', 'LoadResource', 'FindResourceA', 'lstrlenA', 'CreateThread', 'Sleep', 'VirtualAlloc', 'SetStdHandle', 'WriteConsoleW', 'CloseHandle', 'HeapSize', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'GetLastError', 'MultiByteToWideChar', 'GetCurrentThreadId', 'FlsSetValue', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'EncodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'GetCurrentThread', 'FlsAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'WideCharToMultiByte', 'LCMapStringW', 'RtlUnwindEx', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'FatalAppExitA', 'GetUserDefaultLCID', 'GetLocaleInfoW', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'HeapAlloc', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'FreeLibrary', 'LoadLibraryW', 'WriteFile', 'GetModuleFileNameW', 'GetConsoleCP', 'CreateFileW', 'PropVariantClear', 'CLSIDFromString', 'SetErrorInfo', 'SafeArrayAccessData', 'CreateErrorInfo'], ['GetModuleHandleA', 'CreateCursor', 'GetUserNameW', 'PathMakeUniqueName', 'PropertySheet', '_CorExeMain'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBoxW', 'VariantChangeTypeEx', 'RaiseException'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'LocalFileTimeToFileTime', 'EnumResourceTypesA', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['FreeLibrary', 'GetCurrentProcess', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GlobalAlloc', 'LoadLibraryW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetSystemDirectoryA', 'GetBinaryTypeW', 'FindResourceW', 'InterlockedExchange', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'LoadLibraryA', 'MoveFileA', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'SetFileAttributesW', 'SetConsoleTitleA', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateAnonymousToken'], ['wnsprintfW', 'StrStrW', 'StrStrIW', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum', 'ReadFile', 'GetLogicalDrives', 'FindFirstFileW', 'GetFileSizeEx', 'FindNextFileW', 'lstrlenW', 'WriteFile', 'ExpandEnvironmentStringsW', 'TerminateProcess', 'GetUserDefaultLangID', 'GetModuleFileNameW', 'WaitForMultipleObjects', 'GetTempPathW', 'FindClose', 'CreateFileW', 'HeapAlloc', 'CreateToolhelp32Snapshot', 'GetLastError', 'Process32NextW', 'lstrcatW', 'Process32FirstW', 'CloseHandle', 'GetWindowsDirectoryW', 'SetFilePointerEx', 'GetFileSize', 'ExitProcess', 'CreateProcessW', 'lstrcpyW', 'GetTempFileNameW', 'lstrcmpiW', 'lstrcmpW', 'MoveFileW', 'HeapFree', 'lstrlenA', 'GetProcessHeap', 'OpenProcess', 'CreateThread', 'SystemParametersInfoW', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'CryptGenRandom', 'CryptReleaseContext', 'GetTokenInformation', 'CryptDestroyKey', 'CryptAcquireContextA', 'CryptEncrypt', 'CryptImportKey', 'CryptExportKey', 'CryptGenKey', 'SHGetFolderPathW', 'ShellExecuteW'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'HeapFree', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetFileAttributesW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'WriteConsoleW', 'CloseHandle', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'DefDlgProcW'], ['FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'CreateDirectoryExW', 'GetSystemDirectoryW', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventA', 'LeaveCriticalSection', 'LocalHandle', 'GetBinaryTypeW', 'CompareStringW', 'lstrlenW', 'ReplaceFileA', 'FreeLibraryAndExitThread', 'SetLastError', 'MapViewOfFile', 'AttachConsole', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'VirtualProtect', 'GetCPInfoExA', 'CloseHandle', 'BindIoCompletionCallback', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapFree', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'LoadLibraryA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'ClientToScreen'], ['InterlockedIncrement', 'InterlockedDecrement', 'SetMailslotInfo', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'CreateRemoteThread', 'GlobalAlloc', 'LoadLibraryW', 'GetLocaleInfoW', 'SwitchToFiber', 'Sleep', 'GetCalendarInfoW', 'GetVersionExW', 'IsBadStringPtrA', 'GetStringTypeExA', 'LCMapStringA', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'LoadLibraryA', 'UnhandledExceptionFilter', 'DnsHostnameToComputerNameA', 'FoldStringA', 'GetModuleFileNameA', 'SetConsoleTitleW', 'UpdateResourceW', 'GetFileTime', 'DeleteFileW', 'SetFileAttributesW', 'VirtualQuery', 'GetDefaultCommConfigW', 'GetComputerNameA', 'CreateFileA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'ExitProcess', 'GetStartupInfoW', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'CloseHandle', 'WriteFile', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'RaiseException', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration', 'AlphaBlend'], ['lstrcpyA', 'WaitForMultipleObjectsEx', 'CreateEventA', 'CreateWaitableTimerA', 'SetWaitableTimer', 'CancelWaitableTimer', 'GetModuleHandleW', 'FindResourceA', 'GetVersionExA', 'VerifyVersionInfoW', 'MultiByteToWideChar', 'WriteConsoleW', 'SetFilePointerEx', 'HeapReAlloc', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'CreatePipe', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'DecodePointer', 'GetFileType', 'LCMapStringW', 'HeapFree', 'GetACP', 'ExitProcess', 'WideCharToMultiByte', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'FreeLibrary', 'TlsFree', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemInfo', 'GetLocalTime', 'GetSystemTime', 'MulDiv', 'Beep', 'SetHandleInformation', 'CloseHandle', 'LoadResource', 'Sleep', 'WaitForSingleObject', 'SetEvent', 'GetLastError', 'HeapAlloc', 'HeapCreate', 'LocalFree', 'GetProcAddress', 'LocalAlloc', 'VerSetConditionMask', 'TlsSetValue', 'CreateFileW', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualQuery', 'EncodePointer', 'SetLastError', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'wsprintfA', 'ExitWindowsEx', 'DefWindowProcA', 'DefWindowProcW', 'SendMessageA', 'PostQuitMessage', 'CallWindowProcA', 'EnumDisplaySettingsA', 'LoadIconA', 'LoadCursorA', 'FindWindowExA', 'FindWindowA', 'GetParent', 'SetClassLongA', 'SetWindowLongA', 'FillRect', 'GetSysColorBrush', 'GetSysColor', 'HideCaret', 'GetCursorPos', 'SetCursor', 'MessageBoxA', 'GetWindowRect', 'GetClientRect', 'GetWindowTextW', 'SetScrollRange', 'SetScrollPos', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'SetForegroundWindow', 'SwitchToThisWindow', 'SetMenuDefaultItem', 'GetMenuItemInfoA', 'InsertMenuItemA', 'TrackPopupMenu', 'AppendMenuA', 'GetSubMenu', 'CreatePopupMenu', 'LoadMenuA', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItem', 'CreateDialogIndirectParamA', 'BringWindowToTop', 'SetWindowPos', 'MoveWindow', 'ShowWindow', 'DestroyWindow', 'CreateWindowExA', 'GetClassInfoA', 'UnregisterClassA', 'RegisterClassW', 'TextOutW', 'TextOutA', 'CreateDIBSection', 'GetTextMetricsA', 'SetTextAlign', 'SetTextColor', 'SetBkColor', 'SelectObject', 'GetTextExtentPoint32A', 'GetTextExtentPointA', 'GetStockObject', 'GetDeviceCaps', 'DeleteObject', 'DeleteDC', 'CreateICA', 'CreateFontIndirectA', 'CreateCompatibleDC', 'ExtTextOutW', 'ChooseFontA', 'CoCreateInstance', 'CoInitialize', 'SafeArrayCreateVector', 'SafeArrayAccessData', 'SafeArrayDestroy', 'SysAllocString', 'OleLoadPicturePath', 'gethostname', 'NetApiBufferFree', 'NetWkstaTransportEnum', 'NetWkstaUserEnum', 'NetWkstaUserGetInfo', 'NetWkstaSetInfo', 'NetWkstaGetInfo', 'UnregisterGPNotification', 'UnloadUserProfile', 'glGetIntegerv', 'glTexImage2D', 'glBindTexture', 'glGenTextures', 'glTexParameteri', 'SetupDiDestroyDeviceInfoList', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInfo'], ['GetProcAddress', 'GetModuleHandleW', 'Sleep', 'RtlUnwindEx', 'GetCurrentThreadId', 'FlsSetValue', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'GetLastError', 'FlsAlloc', 'HeapFree', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'HeapReAlloc', 'WriteFile', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'HeapSize'], ['SetConsoleTextAttribute', 'CreateDirectoryExA', 'CallNamedPipeW', 'GetTickCount', 'CreateDirectoryExW', 'GlobalAlloc', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputA', 'FreeConsole', 'GetFileAttributesA', 'SetSystemPowerState', 'DisconnectNamedPipe', 'VirtualQuery', 'MoveFileW', 'DisableThreadLibraryCalls', 'GetConsoleScreenBufferInfo', 'GetFileType', 'GetNumberFormatW', 'GetPrivateProfileSectionNamesA', 'ContinueDebugEvent', 'FreeEnvironmentStringsW', 'FindNextFileW', 'BuildCommDCBA', 'VirtualProtect', 'GetFileTime', 'DeleteFileW', 'GetFileInformationByHandle', 'EnumResourceNamesW', 'GetPrivateProfileIntW', 'ExitProcess', 'CreateFileW', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'IsDebuggerPresent', 'GetLastError', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetStdHandle', 'DeleteCriticalSection', 'GetStartupInfoW', 'HeapAlloc', 'SetLastError', 'GetCurrentThreadId', 'GetProcessHeap', 'GetModuleFileNameA', 'WriteFile', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetConsoleCP', 'SetFilePointerEx', 'HeapReAlloc', 'LCMapStringW', 'ReadFile', 'ReadConsoleW', 'OutputDebugStringW', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleW', 'CloseHandle', 'GetEnhMetaFileHeader', 'SetICMProfileA', 'TransparentBlt'], ['DeleteFileA', 'CloseHandle', 'VirtualProtect', 'LoadLibraryA', 'ResetEvent', 'VirtualAlloc', 'GetStartupInfoA', 'CreateDirectoryA', 'GetEnvironmentVariableA', 'CreateProcessA', 'CreateSemaphoreA', 'Sleep', 'VirtualFree', 'GetTickCount', 'GetCurrentProcess', 'GetLastError', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetFileType', 'CreateFileA', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'SetStdHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'SetEndOfFile', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSection', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'WinVerifyTrust', 'SetClusterGroupNodeList', 'SetClusterNetworkName', 'SetClusterNetworkPriorityOrder', 'RemoveClusterResourceDependency', 'SetClusterGroupName', 'SetClusterResourceName', 'SetClusterQuorumResource', 'PauseClusterNode', 'RemoveClusterResourceNode', 'OpenClusterNode', 'RestoreClusterDatabase', 'RegisterClusterNotify', 'ResumeClusterNode', 'OpenClusterResource', 'OpenClusterNetwork', 'SetClusterName', 'OpenClusterNetInterface'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'VariantClear', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ReleaseActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExA', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'CopyFileA', 'ZombifyActCtx', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreW', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileType', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'GetConsoleAliasExesLengthA', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'GetOverlappedResult', 'WriteConsoleInputW', 'ChangeTimerQueueTimer', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'InitAtomTable', 'GetBinaryTypeA', 'LeaveCriticalSection', 'VirtualAlloc', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'WriteProfileSectionA', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetConsoleAliasA', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'ReadConsoleW', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthA', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'GetSystemWindowsDirectoryW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetCharWidth32A'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoExW', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'PtInRect', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetComboBoxInfo', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DrawTextExW', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'GetClassNameW', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'IsRectEmpty', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'GetMenuItemRect', 'CreateIconIndirect', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'MapVirtualKeyW', 'OffsetRect', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'SetScrollPos', 'GetScrollPos', 'InflateRect', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'ScrollWindow', 'GetLastActivePopup', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'GetDlgItem', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'CreateIcon', 'RemoveMenu', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SysFreeString', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysReAllocStringLen', 'SafeArrayCreate', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'ResizePalette', 'SetAbortProc', 'SetTextColor', 'GetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'GetBkMode', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetCurrentObject', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'SetGraphicsMode', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'GetViewportOrgEx', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'SetWorldTransform', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'CombineRgn', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'ExtCreateRegion', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetNearestPaletteIndex', 'CreateRoundRectRgn', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetTickCount', 'RegDeleteKeyA', 'ImageList_GetIconSize', 'GetFileTitleA', 'GetTextExtentPoint32A', 'GdipGetImageHeight', 'ImmGetOpenStatus', 'TransparentBlt', 'OleCreateMenuDescriptor', 'LresultFromObject', 'SysStringLen', 'SHGetPathFromIDListA', 'PathIsUNCA', 'EndDeferWindowPos', 'PlaySoundA', 'OpenPrinterA', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GetCurrentHwProfileA', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteObject', 'SelectObject', 'GdipAlloc', 'GdipCloneImage', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipFree', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipSaveImageToFile', 'GdiplusShutdown', 'GdiplusStartup', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DeleteFileA', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'feof', 'ferror', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'getc', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'wcscmp', 'wcslen', 'GetDC', 'GetSystemMetrics', 'ReleaseDC', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['GetDefaultCommConfigW', 'InterlockedIncrement', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'SetFileTime', 'LoadLibraryW', 'GetLocaleInfoW', 'SwitchToFiber', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'WriteConsoleW', 'CreateActCtxA', 'GetTempPathW', 'VerifyVersionInfoW', 'GetStdHandle', 'GetLongPathNameW', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'GetStringTypeA', 'WriteProfileSectionA', 'EnterCriticalSection', 'SetFileAttributesA', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'MoveFileA', 'GlobalGetAtomNameW', 'GetModuleFileNameA', 'LoadLibraryExA', 'GetConsoleTitleW', 'GetFileTime', 'SetCalendarInfoA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'LCMapStringW', 'GetLocaleInfoA', 'GetSystemDefaultLangID', 'GetVolumeNameForVolumeMountPointA', 'PeekConsoleInputW', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'MultiByteToWideChar', 'GetStringTypeW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration'], ['Sleep', 'GetSystemDirectoryA', 'GetModuleFileNameA', 'VirtualProtect', 'GetTempPathA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCurrentThreadId', 'GetCommandLineA', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'LCMapStringW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'HeapDestroy', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'GetLocaleInfoW', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'HeapReAlloc', 'LoadLibraryW', 'WriteConsoleW', 'SetStdHandle', 'CreateFileW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'OpenProcess', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetFolderPathA'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetLastError', 'lstrcmpA', 'lstrlenA', 'lstrcatA', 'GetCurrentThread', 'GetVersion', 'GetCurrentThreadId', 'GetProcessId', 'GetACP', 'InitCommonControls', 'OleUninitialize', 'OleInitialize', 'AddPrintProcessorW', 'GetOleaccVersionInfo', 'SHGetDiskFreeSpaceA'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'AllocConsole', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'GetProfileSectionA', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'ActivateActCtx', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetStringTypeExW', 'GetFileAttributesW', 'GetModuleFileNameW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetVolumePathNameA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'HeapSize', 'SetComputerNameA', 'GetTempFileNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'AddAtomA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'IsProcessorFeaturePresent', 'HeapCreate', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle'], ['CloseHandle', 'WriteFile', 'CreateFileA', 'GetProcAddress', 'LoadLibraryA', 'GetModuleFileNameA', 'MultiByteToWideChar', 'CreateDirectoryW', 'CreateProcessA', 'CopyFileA', 'Sleep', 'CreateDirectoryA', 'GetTempPathA', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryA', 'LocalFileTimeToFileTime', 'GetFileAttributesA', 'SetFileTime', 'SetStdHandle', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetVersion', 'ExitProcess', 'SetUnhandledExceptionFilter', 'HeapSize', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'GetModuleHandleA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'DisableThreadLibraryCalls', 'GetLastError', 'FlushFileBuffers', 'IsBadReadPtr', 'IsBadCodePtr', 'wsprintfA', 'ShellExecuteA', 'PathStripPathA'], ['CreateFileA', 'AddAtomW', 'GetConsoleWindow', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'ExitProcess', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'GetLocaleInfoW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetDesktopWindow', 'GetWindowThreadProcessId', 'ShowWindow', 'GetObjectA', 'GetStockObject', 'DeleteObject', 'SetBkMode', 'SetTextColor', 'CreateFontIndirectA', 'SelectObject', 'RegDeleteKeyA'], ['DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__dllonexit', '__mb_cur_max', '_amsg_exit', '_errno', '_initterm', '_iob', '_lock', '_onexit', '_strnicmp', 'fputc', 'free', 'fwrite', 'getenv', 'isspace', 'localeconv', 'malloc', 'memcpy', 'memset', 'setlocale', 'strchr', 'strerror', 'strlen', 'strncmp', '_unlock', 'abort', 'atoi', 'vfprintf', 'wcslen', 'calloc'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegEnumKeyW', 'ImageList_Add', 'PrintDlgW', 'Direct3DCreate9', 'Pie', 'memchr', 'NetWkstaGetInfo', 'OleDraw', 'VariantInit', 'SetupDiGetClassDevsA', 'ShellExecuteW', 'URLDownloadToFileW', 'GetDC', 'VerQueryValueW', 'timeGetTime', 'GetPrinterW'], ['PathMakeUniqueName', '_CorExeMain', 'GetUserNameA', 'GetDlgItem', 'GetModuleHandleA'], ['Process32First', 'Sleep', 'CreateProcessA', 'GetSystemDirectoryA', 'Process32Next', 'GetModuleFileNameA', 'GetModuleHandleA', 'VirtualProtect', 'CreateToolhelp32Snapshot', 'CloseHandle', 'GetCurrentProcessId', 'GetSystemTime', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'HeapCreate', 'HeapDestroy', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'SetFilePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryW', 'CreateFileA', 'SetStdHandle', 'IsProcessorFeaturePresent', 'FlushFileBuffers', 'HeapReAlloc', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeW', 'HeapSize', 'SetEndOfFile', 'GetProcessHeap', 'CreateFileW', 'GetFileAttributesA'], ['GetModuleHandleA', 'UpdateWindow', 'RegCloseKey', '_CorExeMain', 'SHGetIconOverlayIndexA', 'ImageList_SetBkColor'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'WNetGetConnectionA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder', 'ChooseColorA', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['RegCloseKey', 'ImageList_Add', 'SaveDC', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'VariantCopy', 'SHGetSpecialFolderPathA', 'GetDC', 'VerQueryValueA'], ['EndDialog', 'GetSystemMetrics', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcW', 'DestroyWindow', 'DialogBoxParamW', 'UpdateWindow', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'LoadIconW', 'DispatchMessageW', 'TranslateMessage', 'TranslateAcceleratorW', 'GetMessageW', 'LoadAcceleratorsW', 'LoadStringW', 'GetProcAddress', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'MultiByteToWideChar', 'LCMapStringW', 'WideCharToMultiByte', 'HeapReAlloc', 'RtlUnwind', 'LoadLibraryW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'HeapAlloc', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapFree', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapSize', 'LeaveCriticalSection', 'EnterCriticalSection'], ['GetModuleHandleA', 'GetCursor', 'RegQueryValueA', 'SHGetIconOverlayIndexA', '_CorExeMain', 'InitMUILanguage'], ['ClearEventLogW', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'ScreenToClient'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'InitCommonControls'], ['memset', 'memcpy', '_aullrem', '_aulldvrm', '_snwprintf', 'RtlNtStatusToDosError', '_snprintf', 'memmove', 'strncmp', 'memcmp', 'strcmp', 'mbstowcs', '_allshl', '_allrem', '_allmul', '_alldiv', '_aullshr', '_alldvrm', '_aulldiv', 'StrChrA', 'StrCmpNA', 'StrStrIA', 'PathCombineW', 'StrStrA', 'PathFindFileNameW', 'StrChrW', 'StrRChrA', 'StrStrW', 'CryptUnprotectData', 'CryptStringToBinaryA', 'LocalFree', 'HeapAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'SetEvent', 'Sleep', 'CreateEventA', 'HeapDestroy', 'HeapCreate', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'CreateThread', 'SwitchToThread', 'FindFirstFileW', 'lstrlenA', 'GetCurrentDirectoryW', 'FindClose', 'SetCurrentDirectoryW', 'FindNextFileW', 'lstrcpyW', 'WaitForSingleObject', 'GetVersion', 'WideCharToMultiByte', 'GetCurrentProcessId', 'ExpandEnvironmentStringsW', 'OpenProcess', 'TerminateProcess', 'SetLastError', 'Process32FirstW', 'Process32NextW', 'lstrcmpiW', 'CreateToolhelp32Snapshot', 'GetFileSize', 'FreeLibrary', 'LoadLibraryW', 'LeaveCriticalSection', 'GetFileAttributesA', 'GetFileAttributesW', 'ReadFile', 'CreateFileW', 'GetProcAddress', 'EnterCriticalSection', 'LoadLibraryA', 'AreFileApisANSI', 'GetSystemTime', 'GetTempPathA', 'lstrlenW', 'OutputDebugStringA', 'GetCurrentThreadId', 'MultiByteToWideChar', 'DeleteFileW', 'GetVersionExA', 'DeleteCriticalSection', 'GetFileAttributesExW', 'GetSystemInfo', 'GetDiskFreeSpaceA', 'DeleteFileA', 'CreateFileMappingW', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'LockFileEx', 'HeapSize', 'GetTempPathW', 'FlushFileBuffers', 'HeapValidate', 'GetVersionExW', 'FormatMessageW', 'InitializeCriticalSection', 'WriteFile', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'GetProcessHeap', 'UnlockFileEx', 'GetTickCount', 'OutputDebugStringW', 'LockFile', 'UnlockFile', 'InterlockedCompareExchange', 'QueryPerformanceCounter', 'SystemTimeToFileTime', 'SetEndOfFile', 'LocalAlloc', 'GetFullPathNameW', 'GetFullPathNameA', 'HeapReAlloc', 'CreateFileA', 'CreateMutexW', 'HeapCompact', 'SetFilePointer', 'TryEnterCriticalSection', 'MapViewOfFile', 'UnmapViewOfFile', 'RegQueryValueExW', 'CryptHashData', 'RegCloseKey', 'CryptDestroyHash', 'RegOpenKeyA', 'CryptCreateHash', 'CryptAcquireContextA', 'CryptReleaseContext', 'CryptGetHashParam', 'CreateStreamOnHGlobal'], ['GetModuleHandleA', 'DeleteFileA', 'CreateThread', 'LCMapStringW', 'GetStringTypeW', 'FindNextFileA', 'ReadFile', 'GetProcessHeap', 'SetEndOfFile', 'HeapReAlloc', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LoadLibraryW', 'LockResource', 'LoadLibraryA', 'FindClose', 'RemoveDirectoryA', 'GetProcAddress', 'FindFirstFileA', 'GetSystemDirectoryA', 'SizeofResource', 'LoadResource', 'Sleep', 'FindResourceA', 'CreateFileW', 'ExitProcess', 'HeapSize', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'EncodePointer', 'DecodePointer', 'RtlUnwind', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'GetModuleHandleW', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'CreateFileA', 'SetFilePointer', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'MoveWindow', 'GetMessageA', 'PostQuitMessage', 'LoadBitmapA', 'LoadIconA', 'GetDC', 'TranslateMessage', 'CreateWindowExA', 'DefWindowProcA', 'ShowWindow', 'DispatchMessageA', 'SystemParametersInfoA', 'GetSystemMetrics', 'LoadCursorA', 'RegisterClassA', 'SetPixel', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Ellipse', 'CreatePatternBrush', 'GetPixel', 'CreateSolidBrush', 'StretchBlt', 'CryptAcquireContextA', 'CryptGenRandom', 'SHDeleteKeyA', 'PlaySoundA'], ['GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'QueryDepthSList', 'GetVersionExW', 'VerifyVersionInfoW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExW', 'FindAtomA', 'GlobalDeleteAtom', 'SetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'LocalAlloc', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetSystemWindowsDirectoryW', 'GetACP', 'FindNextVolumeW', 'CreateActCtxA', 'GetConsoleAliasW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'ReadConsoleW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'GetCurrentActCtx', 'WriteProfileSectionA', 'SetLocaleInfoA', 'GetPrivateProfileStringW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetListBoxInfo', 'GetCharWidth32A', 'ImpersonateSelf'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'GetCurrentProcessId', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetTimeFormatW', 'GetDateFormatW', 'LocalFree', 'GetCurrentProcess', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'GetOEMCP', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetCommandLineA', 'VariantClear', 'GdipCreateBitmapFromStream', 'GdipAlloc', 'GdipCloneImage', 'GdipDisposeImage', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'QueryDepthSList', 'GetVersionExW', 'VerifyVersionInfoW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExW', 'FindAtomA', 'GlobalDeleteAtom', 'SetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'LocalAlloc', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetSystemWindowsDirectoryW', 'GetACP', 'FindNextVolumeW', 'CreateActCtxA', 'GetConsoleAliasW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'ReadConsoleW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'GetCurrentActCtx', 'InitializeCriticalSection', 'WriteProfileSectionA', 'SetLocaleInfoA', 'GetPrivateProfileStringW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetListBoxInfo', 'GetCharWidth32A', 'ImpersonateSelf'], ['ReadFile', 'FindNextVolumeMountPointA', 'SetEndOfFile', 'FindAtomA', 'GetEnvironmentVariableA', 'CreateFileA', 'ExitProcess', 'VirtualAlloc', 'MapViewOfFile', 'lstrcatA', 'CreateFileMappingA', 'acmFormatTagEnumA', 'acmDriverClose', 'acmDriverAddA', 'acmFilterEnumA', 'acmFilterTagDetailsW', 'acmFilterDetailsA', 'acmFilterChooseW', 'DeferWindowPos', 'LoadCursorFromFileA', 'MapVirtualKeyExA', 'DdeKeepStringHandle', 'wvsprintfW', 'GetWindowTextW', 'ResUtilSetExpandSzValue', 'ResUtilDupString', 'ResUtilStopService', 'ResUtilEnumProperties', 'ResUtilGetBinaryProperty', 'ResUtilGetSzProperty', 'ResUtilStopResourceService', 'ResUtilVerifyPrivatePropertyList', 'GopherGetLocatorTypeW', 'InternetCheckConnectionW', 'SetUrlCacheConfigInfoA', 'HttpQueryInfoA', 'GopherGetLocatorTypeA', 'InternetHangUp', 'RetrieveUrlCacheEntryFileW', 'HttpSendRequestExW', 'WNetGetLastErrorW', 'WNetConnectionDialog', 'WNetGetUniversalNameW', 'WNetCancelConnection2W', 'WNetGetUserA', 'RtmBlockConvertRoutesToStatic', 'RtmDeleteRouteTable', 'RtmGetRouteAge', 'RtmDeleteRoute', 'RtmCreateEnumerationHandle', 'RtmRegisterClient', 'MgmReleaseInterfaceOwnership'], ['VirtualAlloc', 'GetCurrentProcess', 'GetProcAddress', 'FreeLibrary', 'VirtualQuery', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetLastError', 'GetModuleHandleW', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RaiseException', 'IsDebuggerPresent', 'GetCurrentThreadId', 'TerminateProcess', '__std_type_info_destroy_list', '__current_exception', '__current_exception_context', 'memset', '_except_handler4_common', '__vcrt_GetModuleFileNameW', '__vcrt_GetModuleHandleW', '__vcrt_LoadLibraryExW', 'memcpy', '_exit', '_seh_filter_dll', '_initialize_onexit_table', '_register_onexit_function', '_execute_onexit_table', '_crt_atexit', '_crt_at_quick_exit', '_controlfp_s', 'terminate', '_wmakepath_s', '_wsplitpath_s', 'strcpy_s', '__stdio_common_vsprintf_s', 'exit', '_initterm_e', '_initterm', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '_set_app_type', '_seh_filter_exe', '_CrtDbgReportW', '_CrtDbgReport', 'strcat_s', '__p__commode', '_set_new_mode', '_configthreadlocale', '_register_thread_local_exe_atexit_callback', '_c_exit', '_cexit', '__p___argv', '__p___argc', 'wcscpy_s', '_set_fmode'], ['CheckSumMappedFile', 'GetProcessHeap', 'VirtualAlloc', 'SetFilePointer', 'FindClose', 'DeleteFileA', 'CloseHandle', 'VirtualFree', 'LoadLibraryA', 'GetModuleHandleA', 'GetSystemTimeAsFileTime', 'CreateFileA', 'FindFirstFileA', 'GetFileSize', 'MapViewOfFile', 'UnmapViewOfFile', 'GetLastError', 'CreateFileMappingA', 'WriteFile', 'ReadFile', 'lstrcatA', 'GetCurrentDirectoryW', 'FindNextFileA', 'GetSystemDirectoryA', 'FindFirstFileW', 'FindNextFileW', 'SetLastError', 'EnterCriticalSection', 'InitializeCriticalSection', 'Sleep', 'LeaveCriticalSection', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'InterlockedExchange', 'DeleteCriticalSection', 'MultiByteToWideChar', 'HeapAlloc', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetVersionExA', 'HeapReAlloc', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'LCMapStringW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapDestroy', 'HeapCreate', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile'], ['GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'MoveFileA'], ['memset', 'strncmp', 'memmove', 'strncpy', 'strstr', '_strnicmp', '_stricmp', 'strlen', 'strcmp', 'sprintf', 'fabs', 'ceil', 'malloc', 'floor', 'free', 'fclose', 'memcpy', 'strcpy', 'tolower', 'GetModuleHandleA', 'HeapCreate', 'RemoveDirectoryA', 'GetTempFileNameA', 'GetShortPathNameA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'HeapDestroy', 'ExitProcess', 'GetExitCodeProcess', 'GetNativeSystemInfo', 'FindResourceA', 'LoadResource', 'SizeofResource', 'HeapAlloc', 'HeapFree', 'Sleep', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'GetCurrentThreadId', 'GetCurrentProcessId', 'CloseHandle', 'InitializeCriticalSection', 'GetCommandLineA', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'SetEnvironmentVariableA', 'GetCurrentProcess', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetVersionExA', 'HeapReAlloc', 'SetLastError', 'TlsAlloc', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'SetFileAttributesA', 'DeleteFileA', 'GetTempPathA', 'CreateDirectoryA', 'WriteFile', 'CreateFileA', 'SetFilePointer', 'ReadFile', 'DeleteCriticalSection', 'CharLowerA', 'MessageBoxA', 'SendMessageA', 'PostMessageA', 'GetWindowThreadProcessId', 'IsWindowVisible', 'GetWindowLongA', 'GetForegroundWindow', 'IsWindowEnabled', 'EnableWindow', 'EnumWindows', 'SetWindowPos', 'DestroyWindow', 'GetDC', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetRect', 'DrawTextA', 'GetSystemMetrics', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'CreateWindowExA', 'CallWindowProcA', 'SetWindowLongA', 'SetFocus', 'RedrawWindow', 'RemovePropA', 'DefWindowProcA', 'SetPropA', 'GetParent', 'GetPropA', 'GetWindow', 'SetActiveWindow', 'UnregisterClassA', 'DestroyAcceleratorTable', 'LoadIconA', 'LoadCursorA', 'RegisterClassA', 'AdjustWindowRectEx', 'ShowWindow', 'CreateAcceleratorTableA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'GetMessageA', 'GetActiveWindow', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'GetFocus', 'GetClientRect', 'FillRect', 'EnumChildWindows', 'DefFrameProcA', 'GetWindowRect', 'IsChild', 'GetClassNameA', 'GetKeyState', 'DestroyIcon', 'RegisterWindowMessageA', 'GetStockObject', 'SelectObject', 'SetBkColor', 'SetTextColor', 'GetTextExtentPoint32A', 'CreateSolidBrush', 'DeleteObject', 'GetObjectA', 'CreateCompatibleDC', 'GetDIBits', 'DeleteDC', 'GetObjectType', 'CreateDIBSection', 'BitBlt', 'CreateBitmap', 'SetPixel', 'InitCommonControlsEx', 'CoInitialize', 'CoTaskMemFree', 'RevokeDragDrop', 'ShellExecuteExA', 'timeBeginPeriod', 'PathQuoteSpacesA', 'PathRenameExtensionA', 'PathAddBackslashA', 'PathUnquoteSpacesA'], ['RegOpenKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'RegCloseKey', 'RegQueryValueExA', 'CloseHandle', 'ExitProcess', 'CreateFileA', 'GetModuleHandleA', 'ExitThread', 'GetLastError', 'CreateMutexA', 'CompareStringW', 'CompareStringA', 'WriteFile', 'LCMapStringW', 'LCMapStringA', 'SetStdHandle', 'LoadLibraryA', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'GetOEMCP', 'GetACP', 'SetFilePointer', 'ReadFile', 'GetDiskFreeSpaceA', 'GlobalMemoryStatus', 'FlushFileBuffers', 'Sleep', 'GetCPInfo', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'GetProcAddress', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'LockResource', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'MultiByteToWideChar', 'GetStringTypeA', 'SetEnvironmentVariableA', 'MessageBoxA', 'GetDlgItemTextA', 'IsDlgButtonChecked', 'DialogBoxParamA', 'SetDlgItemTextA', 'EndDialog', 'CheckDlgButton', 'EnableWindow', 'GetDlgItem', 'GetWindowTextLengthA', 'inet_addr', 'GetOpenFileNameA'], ['sprintf', 'memcpy', 'memset', 'ExitProcess', 'CloseHandle', 'VirtualAlloc', 'CreateFileA', 'SetFilePointer', 'SetEndOfFile', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'WriteFile', 'GetLastError', 'EndDialog', 'MessageBoxA', 'GetDlgItemTextA', 'DialogBoxParamA'], ['GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'WinExec', 'GetCurrentProcessId', 'GetProcAddress', 'DeviceIoControl', 'CreateThread', 'FreeConsole', 'CloseHandle', 'LoadLibraryA', 'TerminateThread', 'CreateFileA', 'Sleep', 'OpenProcess', 'GetSystemTimeAsFileTime', 'GetWindow', 'GetWindowRect', 'GetDC', 'SetWindowPos', 'InvalidateRect', 'SetProcessDPIAware', 'GetDesktopWindow', 'LoadIconA', 'GetWindowDC', 'GetForegroundWindow', 'GetCursorPos', 'GetWindowLongA', 'DrawIcon', 'GetSystemMetrics', 'ReleaseDC', 'CreateCompatibleDC', 'PlgBlt', 'DeleteDC', 'TextOutW', 'SetTextColor', 'SetBkColor', 'DeleteObject', 'CreateSolidBrush', 'SelectObject', 'CreateCompatibleBitmap', 'BitBlt', 'StretchBlt', 'PlaySoundA', '__current_exception_context', '__CxxFrameHandler3', '__current_exception', '_except_handler4_common', 'memset', '_itoa_s', 'srand', 'rand', '_time64', 'strcat_s', 'free', 'malloc', '_set_new_mode', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_controlfp_s', 'terminate', '_register_thread_local_exe_atexit_callback', '_c_exit', '_seh_filter_exe', '_set_app_type', '_initialize_narrow_environment', '_cexit', '_get_initial_narrow_environment', '_configure_narrow_argv', '_initterm', '__p___argv', '__p___argc', '_initterm_e', '_exit', 'exit', '_libm_sse2_cos_precise', '_libm_sse2_acos_precise', '_libm_sse2_sin_precise', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale'], ['InterlockedDecrement', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'LoadLibraryA', 'RaiseException', 'DecodePointer', 'GetProcAddress', 'DeleteCriticalSection', 'CreateFileW', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LocalFree', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'CompareStringW', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'GetFileType', 'CloseHandle', 'VariantInit', 'SysFreeString', 'SysAllocString', 'VariantCopy', 'VariantClear', 'GetErrorInfo'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'EnumCalendarInfoExW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'SetConsoleMode', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'GetConsoleAliasExesLengthA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'DeleteFileW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'FindResourceExW', 'LoadLibraryA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['htons', 'WSAGetLastError', 'setsockopt', 'sendto', 'bind', 'socket', 'WSACleanup', 'WSAStartup', 'htonl', 'closesocket', 'ntohl', 'inet_ntoa', 'inet_addr', 'ntohs', 'recvfrom', 'select', '__WSAFDIsSet', 'SendARP', 'FlushIpNetTable', 'GetAdaptersInfo', 'SHCopyKeyW', 'SHDeleteKeyW', 'SetEvent', 'WaitForMultipleObjects', 'CreateWaitableTimerW', 'InitializeCriticalSection', 'OpenEventW', 'DeleteCriticalSection', 'LoadLibraryW', 'ReleaseMutex', 'LeaveCriticalSection', 'ResumeThread', 'ReleaseSemaphore', 'InterlockedExchange', 'ResetEvent', 'OpenWaitableTimerW', 'GetComputerNameA', 'SetWaitableTimer', 'DuplicateHandle', 'OpenSemaphoreW', 'SleepEx', 'GetVersion', 'GetTickCount', 'WaitForMultipleObjectsEx', 'TryEnterCriticalSection', 'Process32FirstW', 'ProcessIdToSessionId', 'HeapAlloc', 'Process32NextW', 'CompareFileTime', 'CreateToolhelp32Snapshot', 'HeapFree', 'WaitForSingleObject', 'GetProcessTimes', 'OpenProcess', 'ReadFile', 'CreateFileW', 'GetFileSizeEx', 'GetEnvironmentVariableW', 'FindFirstChangeNotificationW', 'WaitNamedPipeW', 'WriteFile', 'OpenMutexW', 'FindNextChangeNotification', 'GetCurrentDirectoryW', 'OpenFileMappingW', 'FindCloseChangeNotification', 'GetWindowsDirectoryW', 'GetOverlappedResult', 'SetProcessWorkingSetSize', 'GetTimeFormatW', 'FlushFileBuffers', 'GetLocalTime', 'CancelIo', 'GetDateFormatW', 'GetFileSize', 'SetFilePointer', 'SetEndOfFile', 'CopyFileW', 'QueryPerformanceCounter', 'GetStartupInfoA', 'GetFileType', 'CreateEventW', 'CreateFileMappingW', 'FreeLibrary', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateSemaphoreW', 'CreateMutexW', 'EnterCriticalSection', 'GetProcAddress', 'SetConsoleCtrlHandler', 'GetModuleFileNameW', 'Sleep', 'LocalAlloc', 'SetLastError', 'GetLastError', 'GetCurrentThread', 'OutputDebugStringW', 'LocalFree', 'CloseHandle', 'GetCurrentProcess', 'GetVersionExW', 'GetCurrentProcessId', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'GetProcessHeap', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCPInfo', 'GetModuleFileNameA', 'GetStdHandle', 'ExitProcess', 'GetModuleHandleA', 'HeapReAlloc', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetVersionExA', 'GetCommandLineA', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'MultiByteToWideChar', 'ExitThread', 'GetCurrentThreadId', 'CreateThread', 'LoadLibraryA', 'WaitForInputIdle', 'OpenServiceW', 'CryptAcquireContextW', 'CryptGenRandom', 'CryptReleaseContext', 'RegDeleteValueW', 'RegNotifyChangeKeyValue', 'StartServiceW', 'CreateProcessAsUserW', 'RevertToSelf', 'RegEnumKeyW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'LookupAccountSidW', 'ImpersonateLoggedOnUser', 'RegQueryValueExW', 'RegOpenKeyExW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'DeleteService', 'CloseServiceHandle', 'RegSetValueExW', 'CreateServiceW', 'RegCloseKey', 'ControlService', 'RegisterServiceCtrlHandlerW', 'SetServiceStatus', 'QueryServiceStatus', 'RegCreateKeyExW', 'FreeSid', 'GetSidSubAuthority', 'IsValidSid', 'AddAccessAllowedAce', 'GetSidIdentifierAuthority', 'AllocateAndInitializeSid', 'InitializeAcl', 'GetSecurityInfo', 'SetSecurityDescriptorDacl', 'AddAccessDeniedAce', 'InitializeSecurityDescriptor', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetLengthSid', 'IsValidSecurityDescriptor', 'CoFreeUnusedLibraries', 'WgxSetOid', 'WgxGetDot11SSID', 'WgxQueryOid', 'WgxGetDot11AssociationStatus', 'WgxGetDot11BSSID', 'WgxGetDot11AssociationParameters', 'WgxSendPacket', 'WgxInitialize', 'WgxCleanup', 'WgxSetLocalFilter', 'WgxDestroyLocalFilter', 'WgxSetOidDot11', 'WgxCreateLocalFilter', 'WgxSetLocalTrafficMode', 'WgxLocalFilterSetEthernetProtocol', 'WgxRenewIpAddress', 'WgxRenewIpAddressByBroadcase', 'WgxReleaseIpAddress', 'WgxOpenAdapterEx', 'WgxCloseAdapter', 'InstallWgx', 'StartWgxService', 'IsWgxInstalled', 'GetWgxServiceStatus', 'PdhGetFormattedCounterValue', 'PdhOpenQueryW', 'PdhAddCounterW', 'PdhCloseQuery', 'PdhCollectQueryData'], ['AddConsoleAliasW', 'GetComputerNameW', 'GetModuleHandleW', 'GetNumberFormatA', 'ReadConsoleW', 'EnumTimeFormatsA', 'EnumResourceTypesA', 'SetProcessPriorityBoost', 'ActivateActCtx', 'GetCalendarInfoA', 'GetSystemWindowsDirectoryA', 'HeapCreate', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'GetConsoleAliasW', 'Beep', 'GetModuleFileNameW', 'GetConsoleFontSize', 'CreateActCtxA', 'GetACP', 'lstrlenW', 'GlobalUnlock', 'EnumSystemLocalesA', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'VirtualAlloc', 'HeapSize', 'IsBadHugeWritePtr', 'SetComputerNameW', 'WriteProfileSectionA', 'RemoveDirectoryA', 'LoadLibraryA', 'WriteConsoleA', 'InterlockedExchangeAdd', 'LocalAlloc', 'QueryDosDeviceW', 'WriteProfileSectionW', 'AddAtomA', 'GetDefaultCommConfigA', 'SetConsoleCursorInfo', 'GetConsoleTitleW', 'GetShortPathNameW', 'GetCPInfoExA', 'GetDiskFreeSpaceExW', 'FindAtomW', 'GetWindowsDirectoryW', 'DeleteTimerQueueTimer', 'GetTempPathA', 'EnumCalendarInfoExA', 'SuspendThread', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'WaitForSingleObject', 'GetCurrentActCtx', 'ReadConsoleA', 'lstrlenA', 'FindResourceExW', 'BeginUpdateResourceW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'ExitProcess', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'ToAsciiEx', 'ChangeMenuA', 'CharLowerBuffW', 'SetParent', 'CreateAcceleratorTableW', 'GetWindowLongA', 'GetSysColorBrush', 'GetKeyNameTextW', 'GetMenuInfo', 'GetCharWidthA', 'GetColorAdjustment', 'GetCharABCWidthsW', 'BackupEventLogW'], ['GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetBinaryTypeW', 'SetConsoleTitleA', 'CreateJobObjectA', 'InterlockedExchange', 'GetCPInfoExW', 'SetDefaultCommConfigW', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'GetFileAttributesExW', 'SetFileAttributesW', 'FreeLibrary', 'GetCurrentProcess', 'GetLastError', 'GetConsoleAliasesLengthW', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['HeapFree', 'AddConsoleAliasW', 'LocalFlags', 'GetProcessHeap', 'ReadConsoleW', 'GlobalAlloc', 'GetSystemDirectoryW', 'LoadLibraryW', 'SetVolumeMountPointA', 'GetVersionExW', 'ReplaceFileA', 'GetPrivateProfileIntW', 'ReleaseActCtx', 'GetStdHandle', 'SetLastError', 'VirtualAlloc', 'ReadConsoleA', 'GetAtomNameA', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'SetConsoleCtrlHandler', 'SetEnvironmentVariableA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'FreeEnvironmentStringsW', 'GetConsoleTitleW', 'VirtualProtect', 'CompareStringA', 'GetCPInfoExA', 'CloseHandle', 'CreateFileA', 'GetConsoleAliasesLengthW', 'AllocConsole', 'lstrlenA', 'FindFirstChangeNotificationW', 'GetLocaleInfoA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'HeapSize', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'WriteFile', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'MultiByteToWideChar', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'WindowFromPoint', 'GetFontUnicodeRanges', 'GetOldestEventLogRecord', 'CoRevokeMallocSpy', 'WinHttpCloseHandle', 'AlphaBlend'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'WriteProfileSectionA', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetConsoleAliasA', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'ReadConsoleW', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthA', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'BuildCommDCBAndTimeoutsA', 'GetSystemWindowsDirectoryW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetCharWidth32A'], ['CreateFileA', 'GetFileSize', 'FindResourceA', 'SetFilePointer', 'FreeLibrary', 'LoadResource', 'UpdateResourceA', 'SetFileTime', 'WriteFile', 'GetDriveTypeA', 'SizeofResource', 'GetFileAttributesA', 'ReadFile', 'MultiByteToWideChar', 'FindFirstFileA', 'GetLastError', 'CopyFileA', 'SetFileAttributesA', 'FindClose', 'LockResource', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindNextFileA', 'LoadLibraryExA', 'EnumResourceNamesA', 'GetFileTime', 'EndUpdateResourceA', 'WinExec', 'CloseHandle', 'DeleteFileA', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'GetTimeFormatA', 'GetDateFormatA', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'Sleep', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'RaiseException', 'ExitProcess', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSection', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'RpcMgmtEpUnregister'], ['UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'CloseHandle', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessA', 'GetFileAttributesExW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'WriteConsoleW', 'DecodePointer', 'RaiseException'], ['GetModuleHandleA', 'HeapCreate', 'HeapDestroy', 'ExitProcess', 'CloseHandle', 'InitializeCriticalSection', 'GetModuleFileNameA', 'HeapAlloc', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'GetTickCount', 'TlsGetValue', 'CopyFileA', 'WriteFile', 'HeapFree', 'CreateFileA', 'SetFilePointer', 'GetFileSize', 'ReadFile', 'EnterCriticalSection', 'HeapReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GetLastError', 'SetLastError', 'WaitForMultipleObjects', 'GetCurrentProcess', 'GetCurrentThread', 'DuplicateHandle', 'CreateSemaphoreA', 'CreateThread', 'ReleaseSemaphore', 'memset', 'strcmp', 'memmove', 'memcpy', 'strncpy', 'strlen'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_fmode', '_ftime', '_initterm', '_iob', '_lock', '_onexit', '_setjmp3', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fseek', 'fwrite', 'longjmp', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'realloc', 'signal', 'sprintf', 'strcmp', 'strlen', 'strncmp', 'vfprintf'], ['lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'CreateThread', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'WaitForSingleObject', 'GetLastError', 'Sleep', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ShowWindow', 'MoveToEx', 'GetBitmapDimensionEx'], ['AllocateAndInitializeSid', 'FreeSid', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleA', 'CharLowerW', 'RegCloseKey', 'DrawStatusTextW', '_CorExeMain', 'SHGetIconOverlayIndexA'], ['SetEndOfFile', 'RegisterClassA', 'CreateDIBitmap', 'midiStreamRestart', 'ClosePrinter', 'RegCloseKey', 'ShellExecuteA', 'OleInitialize', 'UnRegisterTypeLib', 'ImageList_Destroy', 'recvfrom', 'GetFileTitleA', 'LoadLibraryA', 'VirtualProtect', 'GetModuleFileNameA', 'ExitProcess', 'MessageBoxA'], ['GetModuleHandleA', 'WaitMessage', 'RegCloseKey', 'InitCommonControls', '_CorExeMain', 'ShellAboutW'], ['GetModuleHandleA', 'GetDesktopWindow', 'RegOpenKeyExA', 'ImageList_Create'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'sndPlaySoundA', 'LresultFromObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'WriteFile', 'VirtualQuery', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetConsoleActiveScreenBuffer', 'MoveFileExW', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadHugeReadPtr', 'GetVersionExA', 'GetThreadLocale', 'GetTempFileNameA', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCurrentDirectoryA', 'GetConsoleCursorInfo', 'GetCompressedFileSizeW', 'GetCPInfo', 'GetACP', 'FreeConsole', 'EnumCalendarInfoA', 'DisconnectNamedPipe', 'CompareStringA', 'VkKeyScanExW', 'RegisterClipboardFormatW', 'MessageBoxA', 'LoadStringA', 'LoadIconW', 'GetTabbedTextExtentA', 'GetSystemMetrics', 'GetSysColorBrush', 'GetMessageW', 'GetMenuItemCount', 'EmptyClipboard', 'CharNextA', 'CharToOemA'], ['CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'HeapAlloc', 'HeapCreate', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '_amsg_exit', '_initterm', '_iob', '_lock', '_unlock', 'abort', 'calloc', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'strlen', 'strncmp', 'vfprintf'], ['SetFileSecurityW', 'BitBlt', 'CreateBrushIndirect', 'CreateCompatibleDC', 'CreatePen', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'Ellipse', 'GetObjectA', 'GetStockObject', 'Polyline', 'Rectangle', 'SelectObject', 'SetBkMode', 'SetTextColor', 'CloseHandle', 'CreateSemaphoreA', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'LeaveCriticalSection', 'ReleaseSemaphore', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', '_getcwd', '_write', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'atof', 'calloc', 'fputc', 'fputs', 'free', 'fwrite', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'rand', 'realloc', 'signal', 'sprintf', 'sqrt', 'srand', 'strcat', 'strcmp', 'strerror', 'vfprintf', 'wcslen', 'ClientToScreen', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'DrawTextA', 'FillRect', 'GetClientRect', 'GetDC', 'GetMessageA', 'GetSystemMetrics', 'GetWindowLongA', 'IntersectRect', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'MessageBoxA', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassA', 'ReleaseDC', 'SendMessageA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow', 'DirectDrawCreateEx', 'timeGetTime'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'WinHttpGetIEProxyConfigForCurrentUser', 'WinHttpSetTimeouts', 'WinHttpSetStatusCallback', 'WinHttpConnect', 'WinHttpReceiveResponse', 'WinHttpQueryAuthSchemes', 'WinHttpGetProxyForUrl', 'WinHttpReadData', 'WinHttpCloseHandle', 'WinHttpQueryHeaders', 'WinHttpOpenRequest', 'WinHttpAddRequestHeaders', 'WinHttpOpen', 'WinHttpWriteData', 'WinHttpSetCredentials', 'WinHttpQueryDataAvailable', 'WinHttpSetOption', 'WinHttpSendRequest', 'WinHttpQueryOption', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'TerminateThread', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'OutputDebugStringW', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'LCMapStringW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetLastError', 'ExpandEnvironmentStringsW', 'ExitProcess', 'Sleep', 'CreateProcessW', 'CloseHandle', 'GetProcAddress', 'LoadLibraryA', 'RasEnumDevicesW', 'RasSetEntryPropertiesW', 'RasGetEntryDialParamsW', 'RasDialW', 'FindNextUrlCacheEntryW', 'DeleteUrlCacheEntryW', 'FindFirstUrlCacheEntryW', 'FindCloseUrlCache', 'socket', 'gethostbyname', 'accept', 'connect', 'bind', 'htons', 'WSAStartup', 'shutdown', 'closesocket', 'recv', 'listen', 'send'], ['FindResourceExW', 'GetConsoleAliasExesLengthA', 'DeleteVolumeMountPointA', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'GlobalSize', 'SetDefaultCommConfigW', 'CreateHardLinkA', 'WaitForSingleObjectEx', 'FreeEnvironmentStringsA', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'ReadConsoleW', 'GetCompressedFileSizeW', 'CreateActCtxW', 'SetHandleCount', 'TlsSetValue', 'VirtualFreeEx', 'LoadLibraryW', 'InterlockedPopEntrySList', 'SetConsoleMode', 'GetConsoleAliasW', 'GetFileAttributesW', 'IsBadStringPtrA', 'WritePrivateProfileStringW', 'VirtualQuery', 'GetConsoleAliasesW', 'GetStdHandle', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'EnumSystemCodePagesW', 'SetThreadPriorityBoost', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'AddAtomW', 'GetProfileStringA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'OpenEventW', 'QueryPerformanceFrequency', 'SetCalendarInfoA', 'DeleteFileW', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'FindNextVolumeA', 'SearchPathW', 'GetStringTypeExA', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCharABCWidthsW', 'CreateDiscardableBitmap', 'GetCharWidthI'], ['GetLastError', 'CloseHandle', 'GetModuleFileNameW', 'DeleteFileA', 'Sleep', 'GetProcessHeap', 'WaitForSingleObject', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'LocalFree', 'GetCurrentProcessId', 'GetVersionExA', 'LocalAlloc', 'LoadLibraryA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetModuleFileNameA', 'GetVersionExW', 'GetSystemWindowsDirectoryA', 'GlobalFindAtomA', 'ExpandEnvironmentStringsA', 'GetCurrentProcess', 'GlobalAddAtomA', 'SetErrorMode', 'lstrcpynA', 'ExitProcess', 'GetTickCount', 'Module32Next', 'GlobalMemoryStatusEx', 'VirtualProtectEx', 'VirtualAlloc', 'Module32First', 'GetExitCodeProcess', 'CreateRemoteThread', 'VirtualFree', 'GetThreadContext', 'CreateFileA', 'SetThreadContext', 'OpenProcess', 'TerminateThread', 'CreateProcessA', 'TerminateProcess', 'FlushInstructionCache', 'GetShortPathNameA', 'GetHandleInformation', 'VirtualAllocEx', 'CreateToolhelp32Snapshot', 'WriteProcessMemory', 'ResumeThread', 'CreateThread', 'WriteFile', 'ReadFile', 'GetFileSizeEx', 'lstrcmpiA', 'CopyFileA', 'SetFileAttributesA', 'GetTempFileNameA', 'wsprintfW', 'DestroyWindow', 'keybd_event', 'GetMessageA', 'SetTimer', 'RegisterClassExA', 'PostQuitMessage', 'KillTimer', 'TranslateMessage', 'DefWindowProcA', 'ShowWindow', 'FlashWindow', 'DispatchMessageA', 'UpdateWindow', 'CreateWindowExA', 'SHGetFolderPathA', 'ShellExecuteExA', 'SHGetFolderPathW', 'ShellExecuteExW', 'CoInitializeEx', 'CoUninitialize', 'GetModuleBaseNameW', 'StrRChrA', 'PathAppendA', 'PathAppendW', 'StrStrIA', 'PathFileExistsA', 'StrStrNIW', 'PathAddExtensionA', 'PathIsDirectoryA', 'PathCombineA', 'PathAddBackslashA', 'RtlImageNtHeader', 'ZwClose', 'memset', '_alloca_probe', 'strstr', '_snprintf', 'ZwSetInformationThread', 'RtlUnwind', 'CryptGetHashParam', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'OpenProcessToken', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'CryptReleaseContext'], ['SHChangeNotifyRegister', '_CorExeMain', 'RegOpenKeyExA', 'UpdateWindow', 'GetModuleHandleA'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'SetDllDirectoryW', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperW'], ['FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'GetFullPathNameW', 'GetTempPathW', 'GetLastError', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetEnvironmentVariableW', 'GetCurrentProcess', 'IsWow64Process', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetProcAddress', 'LoadLibraryExW', 'LoadLibraryA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FreeLibrary', 'RtlUnwindEx', 'RaiseException', 'OutputDebugStringW', 'GetModuleHandleW', 'GetCurrentProcessId', 'Sleep', 'RemoveDirectoryW', 'DeleteCriticalSection', 'CreateDirectoryW', 'RtlPcToFileHeader', 'InitializeSListHead', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'LCMapStringW', 'GetSystemTimeAsFileTime', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SwitchToThread', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'DecodePointer', 'EncodePointer', 'GetStringTypeW', 'MessageBoxW', 'ShellExecuteW', 'RegOpenKeyExW', 'RegCloseKey', 'ReportEventW', 'RegisterEventSourceW', 'DeregisterEventSource', 'RegGetValueW', '_initialize_wide_environment', '_set_app_type', '_invalid_parameter_noinfo_noreturn', '_seh_filter_exe', '_cexit', '_crt_atexit', '_register_onexit_function', 'terminate', '_configure_wide_argv', 'exit', '_exit', '__p___argc', '__p___wargv', '_c_exit', '_register_thread_local_exe_atexit_callback', 'abort', '_get_initial_wide_environment', '_errno', '_initterm', '_initialize_onexit_table', '_initterm_e', 'malloc', 'calloc', 'free', '_callnewh', '_set_new_mode', '__setusermatherr', 'frexp', '_wfopen', '__stdio_common_vswprintf', 'fclose', 'fread', 'fseek', 'fwrite', '__acrt_iob_func', '_set_fmode', 'fputwc', 'fputws', '__stdio_common_vfwprintf', 'fflush', '__p__commode', '__stdio_common_vsprintf_s', '_wcsicmp', '_wcsdup', '_wcsnicmp', 'wcsncmp', 'strcspn', 'wcsnlen', 'memset', 'strcpy_s', '_unlock_locales', '__pctype_func', '___lc_locale_name_func', '___mb_cur_max_func', 'setlocale', '_configthreadlocale', '_lock_locales', 'localeconv', '___lc_codepage_func', '_wremove', '_wrename', '_wtoi', 'wcstoul', 'wcsftime', '_gmtime64', '_time64'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['ChangeServiceConfig2A', 'VarI2FromDate', 'JetEndSession', 'GetProcAddress', 'GetModuleHandleA'], ['GetSystemMetrics', 'FindResourceW', 'CryptCreateHash', 'ShellExecuteExW', 'CoInitializeEx', 'CryptDecodeObjectEx', 'WSAWaitForMultipleEvents', 'BCryptGenRandom', 'SysStringLen', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['GetProcAddress', 'LoadLibraryA', 'FindClose', 'FindFirstFileA', 'UnmapViewOfFile', 'GetLastError', 'MapViewOfFile', 'CreateFileMappingA', 'GetFileSize', 'lstrcmpA', 'GetTempFileNameA', 'GetTempPathA', 'lstrlenA', 'SetLastError', 'SetFileAttributesA', 'CopyFileA', 'WriteFile', 'GetPrivateProfileStringA', 'FindNextFileA', 'OpenEventA', 'GetVolumeInformationA', 'GetDriveTypeA', 'ExitProcess', 'GetModuleHandleA', 'GetModuleFileNameA', 'SetFilePointer', 'ReadFile', 'CreateProcessA', 'Sleep', 'lstrcatA', 'GetSystemDirectoryA', 'GetSystemTime', 'SetFileTime', 'GetTempPathW', 'FreeLibrary', 'GetEnvironmentVariableW', 'GetComputerNameW', 'GetTimeZoneInformation', 'GetLocalTime', 'MultiByteToWideChar', 'lstrcatW', 'lstrlenW', 'GetVersionExA', 'GetTickCount', 'GetComputerNameA', 'WaitForSingleObject', 'ResumeThread', 'TerminateProcess', 'FileTimeToSystemTime', 'GetWindowsDirectoryA', 'GetEnvironmentVariableA', 'CreateDirectoryA', 'CreateMutexA', 'ReleaseMutex', 'OutputDebugStringA', 'GetFileTime', 'InterlockedIncrement', 'InterlockedDecrement', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'GetStringTypeW', 'GetStringTypeA', 'DeleteFileA', 'lstrcpyA', 'CreateFileA', 'GetFileInformationByHandle', 'CloseHandle', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'GetWindowsDirectoryW', 'IsBadCodePtr', 'IsBadReadPtr', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'LCMapStringW', 'LCMapStringA', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'HeapSize', 'SetUnhandledExceptionFilter', 'FlushFileBuffers', 'GetCurrentProcess', 'GetStartupInfoA', 'GetStdHandle', 'HeapAlloc', 'HeapFree', 'GetFileType', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'CreateThread', 'TlsSetValue', 'TlsGetValue', 'ExitThread', 'GetCommandLineA', 'GetVersion', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'IsBadWritePtr', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'TlsAlloc', 'TlsFree', 'SetStdHandle', 'SetEndOfFile', 'SetHandleCount', 'RegisterClassExA', 'CreateWindowExA', 'DefWindowProcA', 'CharLowerBuffA', 'wsprintfA', 'wsprintfW', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegQueryValueExA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegEnumValueA', 'RegCloseKey', 'UuidToStringA', 'UuidCreate', 'RpcStringFreeA', 'inet_ntoa', 'gethostbyname', 'WSAStartup', 'WSACleanup'], ['GetUserNameA', 'OpenBackupEventLogA', 'CreatePrivateObjectSecurityEx', 'midiInGetDevCapsA', 'EnumResourceNamesA', 'GetBinaryTypeA', 'GetCurrentProcess', 'GetNumaHighestNodeNumber', 'IsValidLocale', 'GetModuleFileNameW', 'HeapQueryInformation', 'FindNextChangeNotification', 'CreateSemaphoreW', 'GetAsyncKeyState', 'IsCharAlphaA', 'CharNextA', 'GetSysColor', 'EnumClipboardFormats', 'IsCharAlphaW', 'GetActiveWindow', 'GrayStringW', 'CascadeWindows', 'LookupIconIdFromDirectory', 'GetProcessDefaultLayout', 'ReadUrlCacheEntryStream', 'CreateDiscardableBitmap', 'CryptCATAdminReleaseCatalogContext', 'CryptCATCDFClose', 'IsPwrSuspendAllowed', 'WcsSetUsePerUserProfiles', 'HlinkSimpleNavigateToString', 'AssocQueryKeyW', 'GetBestRoute', 'GetNumberOfInterfaces'], ['HeapLock', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesA', 'EnumResourceNamesA', 'TerminateProcess', 'ReleaseActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapValidate', 'TerminateThread', 'GlobalUnfix', 'GetProcessHeap', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'GetConsoleAliasExesLengthW', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedDecrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'InterlockedPushEntrySList', 'SetConsoleCursorInfo', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameW', 'GetConsoleMode', 'HeapSetInformation', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetWriteWatch', 'GetPrivateProfileStringW', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'LockFile', 'GetConsoleAliasExesLengthA', 'GetLastError', 'SetFirmwareEnvironmentVariableW', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'PostQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterA', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'DeleteCriticalSection', 'LoadLibraryA', 'CreateFileA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'OemToCharW', 'GetFileSecurityA', 'WinHttpReadData'], ['SetupDiEnumDeviceInterfaces', 'SetupDiGetClassDevsA', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiEnumDeviceInfo', 'SetupDiGetDeviceRegistryPropertyA', 'SetupDiDestroyDeviceInfoList', 'CloseHandle', 'Sleep', 'ReadFile', 'CancelIo', 'WriteFile', 'DeviceIoControl', 'CreateEventW', 'FormatMessageW', 'GetLastError', 'CreateFileA', 'LoadLibraryA', 'ResetEvent', 'GetOverlappedResult', 'GetProcAddress', 'LocalFree', 'FreeLibrary', 'SizeofResource', 'FreeResource', 'LockResource', 'LoadResource', 'FindResourceW', 'CreateMutexW', 'ReleaseMutex', 'lstrlenW', 'DeleteFileW', 'GetFileAttributesW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'FlushFileBuffers', 'GetFileType', 'SetFilePointerEx', 'ReadConsoleW', 'LCMapStringW', 'GetConsoleMode', 'GetConsoleCP', 'HeapFree', 'HeapAlloc', 'GetStringTypeW', 'GetACP', 'GetVersionExW', 'WaitForSingleObject', 'TerminateProcess', 'GetSystemDefaultLCID', 'GetEnvironmentVariableW', 'SetStdHandle', 'CreateFileW', 'WriteConsoleW', 'HeapSize', 'HeapReAlloc', 'DecodePointer', 'SetEndOfFile', 'GetStdHandle', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetWindowTextW', 'wsprintfW', 'EndPaint', 'GetWindowLongW', 'GetMessageW', 'DefWindowProcW', 'CallWindowProcW', 'GetWindowRect', 'GetDC', 'SetWindowPos', 'FillRect', 'CreateWindowExW', 'ScreenToClient', 'SendMessageW', 'SetWindowTextW', 'RegisterClassExW', 'LoadAcceleratorsW', 'LoadStringW', 'ShowWindow', 'RegisterDeviceNotificationW', 'DispatchMessageW', 'TrackMouseEvent', 'LoadBitmapW', 'TranslateAcceleratorW', 'TranslateMessage', 'LoadIconW', 'LoadCursorW', 'SetWindowLongW', 'GetClientRect', 'GetDlgItem', 'DrawTextW', 'PostQuitMessage', 'SystemParametersInfoW', 'UpdateWindow', 'InvalidateRect', 'BeginPaint', 'SelectObject', 'BitBlt', 'CreateCompatibleDC', 'StretchBlt', 'CreateFontW', 'GetStockObject', 'DeleteDC', 'GetTextExtentPoint32W', 'SetTextColor', 'SetBkMode', 'LineTo', 'GetObjectW', 'MoveToEx', 'SetBkColor', 'CreateSolidBrush', 'ShellExecuteW', 'CommandLineToArgvW', 'SHCreateDirectoryExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'InternetReadFile', 'InternetCloseHandle', 'HttpQueryInfoW', 'InternetOpenW', 'InternetOpenUrlW'], ['ReadProcessMemory', 'GetModuleHandleW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'CreateFileW', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'HeapSize', 'WriteConsoleW'], ['CreateFileA', 'CreateTimerQueue', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleInputW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadConsoleInputA', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'FillConsoleOutputCharacterA', 'CreateActCtxA', 'GetOverlappedResult', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'WritePrivateProfileStringW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'InterlockedExchangeAdd', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'GlobalGetAtomNameW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetThreadAffinityMask', 'Module32NextW', 'GetVersionExA', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'SetComputerNameExW', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetStdHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'ImpersonateSelf'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExA', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'EnterCriticalSection', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenA', 'LoadLibraryW', 'MoveFileW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'CopyFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'FindActCtxSectionStringW', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetStringTypeA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'GetOEMCP', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ReadFile', 'ImpersonateSelf'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CryptAcquireContextA', 'CryptReleaseContext', 'CryptGetHashParam', 'CryptCreateHash', 'CryptHashData', 'CryptDestroyHash', 'GetUserNameA', 'GetCurrentHwProfileA', 'RegCloseKey', 'RegCreateKeyExW', 'RegSetValueExW', 'TranslateMessage', 'DispatchMessageA', 'DefWindowProcW', 'RegisterClassA', 'GetMessageA', 'CreateWindowExA', 'DestroyWindow', 'UnregisterClassA', 'gethostbyname', 'WSACleanup', 'WSAStartup', 'CryptBinaryToStringA', 'InternetGetConnectedState', 'HttpSendRequestA', 'InternetReadFile', 'ShellExecuteA', 'SHCreateDirectoryExW', 'SHCreateDirectoryExA', 'HeapReAlloc', 'HeapSize', 'ReadConsoleW', 'FlushFileBuffers', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCPInfo', 'GetOEMCP', 'WriteConsoleW', 'SetEndOfFile', 'GetACP', 'IsValidCodePage', 'FindFirstFileExW', 'CloseHandle', 'WaitForMultipleObjects', 'CreateThread', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LoadLibraryA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'GetLogicalDrives', 'GetVolumeInformationA', 'Sleep', 'GetModuleFileNameW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'GetComputerNameA', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetWindowsDirectoryW', 'GetModuleHandleA', 'DeleteFileW', 'CreateFileW', 'WriteFile', 'TerminateProcess', 'OpenProcess', 'QueryFullProcessImageNameW', 'GetVolumeInformationW', 'CopyFileW', 'GetFileTime', 'CreateProcessA', 'GetModuleFileNameA', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'LCMapStringW', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'MoveFileExW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'CompareStringW', 'DecodePointer'], ['ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeA', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryA', 'LocalAlloc', 'InitializeCriticalSection', 'TlsGetValue', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringW', 'ExitThread', 'GlobalWire', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'IsDebuggerPresent', 'SetConsoleCursorPosition', 'GetLastError', 'DebugActiveProcess', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'InterlockedPushEntrySList', 'WritePrivateProfileSectionW', 'DeleteCriticalSection', 'GetPrivateProfileSectionNamesA', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'MoveFileW', 'TerminateProcess', 'HeapSetInformation', 'lstrcmpW', 'GetComputerNameA', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GetProcAddress', 'GlobalCompact', 'UnregisterWait', 'WriteConsoleInputA', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'CreateIoCompletionPort', 'FindResourceExA', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'SetThreadExecutionState', 'GetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'GetAtomNameW', 'WriteConsoleInputW', 'CreateMailslotA', 'GetCommState', 'GetLogicalDrives', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'EnumDateFormatsA', 'GlobalDeleteAtom', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringW', 'InitAtomTable', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterA', 'TerminateJobObject', 'VirtualAlloc', 'GetBinaryTypeW', 'QueryDosDeviceW', 'LeaveCriticalSection', 'GetVolumePathNameA', 'FileTimeToDosDateTime', 'Sleep', 'EnterCriticalSection', 'RaiseException', 'RtlUnwind', 'MoveFileA', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetModuleHandleW', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'CloseHandle', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetModuleHandleA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'SetStdHandle', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'CreateFileA', 'OemToCharA', 'GetFileSecurityW', 'AlphaBlend'], ['SetEndOfFile', 'CreateFileW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'PeekNamedPipe', 'GetFileInformationByHandle', 'SetEnvironmentVariableA', 'WriteConsoleW', 'SetStdHandle', 'LoadLibraryW', 'OutputDebugStringW', 'LoadLibraryExW', 'GetTimeZoneInformation', 'FlushFileBuffers', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetDriveTypeW', 'FindFirstFileExW', 'FileTimeToLocalFileTime', 'GetCurrentThreadId', 'SetFilePointerEx', 'SetFilePointer', 'GetConsoleCP', 'ReadConsoleW', 'GetConsoleMode', 'GetSystemTime', 'LocalFree', 'GetVersion', 'CloseHandle', 'GetFileTime', 'WaitCommEvent', 'GetSystemInfo', 'SetCommMask', 'LocalAlloc', 'LoadLibraryA', 'GlobalFree', 'GetProcAddress', 'GetLastError', 'GlobalUnlock', 'ReadFile', 'FileTimeToSystemTime', 'CreateProcessA', 'CreateEventA', 'IsDebuggerPresent', 'HeapSize', 'GetModuleFileNameW', 'GetStdHandle', 'AreFileApisANSI', 'GetModuleHandleExW', 'ExitProcess', 'GetProcessHeap', 'Sleep', 'GlobalAlloc', 'GetSystemTimes', 'SetCommTimeouts', 'WriteFile', 'SetFileTime', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'WaitForSingleObject', 'GlobalLock', 'LCMapStringW', 'CompareStringW', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'VirtualQuery', 'SystemTimeToFileTime', 'ClearCommError', 'MapUserPhysicalPages', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'SetLastError', 'SetUnhandledExceptionFilter', 'GetFileType', 'OpenFile', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'FindClose', 'SystemTimeToTzSpecificLocalTime', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'GetStringTypeW', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'FindFirstFileExA', 'FindNextFileA', 'LoadCursorA', 'CallWindowProcA', 'SetClipboardData', 'GetSystemMetrics', 'SystemParametersInfoA', 'OpenClipboard', 'SetThreadDesktop', 'GetCursorPos', 'SetDlgItemTextA', 'MoveWindow', 'GetSysColor', 'DefWindowProcA', 'EmptyClipboard', 'CreateWindowExA', 'GetWindowTextW', 'MessageBoxA', 'SetWindowLongA', 'OpenWindowStationA', 'FillRect', 'DestroyWindow', 'SetCursor', 'CloseClipboard', 'HideCaret', 'SetProcessWindowStation', 'InsertMenuItemA', 'OpenDesktopA', 'EndPaint', 'GetFocus', 'LoadBitmapA', 'GetClientRect', 'SendMessageA', 'BeginPaint', 'EnumWindows', 'PtInRect', 'SetWindowWord', 'DrawFocusRect', 'InflateRect', 'SetTextColor', 'GetTextExtentPoint32A', 'SetWindowExtEx', 'CreateSolidBrush', 'DeleteDC', 'SetBkColor', 'CreateDCA', 'DeleteObject', 'SelectObject', 'CombineRgn', 'SetMapMode', 'StartDocA', 'ExtTextOutW', 'Ellipse', 'SetTextAlign', 'TextOutW', 'EndDoc', 'OpenPrinterA', 'StartPagePrinter', 'WritePrinter', 'StartDocPrinterA', 'EndPagePrinter', 'EndDocPrinter', 'ClosePrinter', 'SetNamedSecurityInfoA', 'ConvertStringSidToSidA', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorOwner', 'OpenProcessToken', 'SHBrowseForFolderA', 'OleTranslateColor', 'capGetDriverDescriptionA', 'CredUIPromptForCredentialsW', 'PathCombineW', 'PathAppendW', 'PathCommonPrefixW', 'PathCanonicalizeW', 'PathBuildRootW', 'PathFindExtensionW', 'ImageList_Create', 'ImageList_Add', 'UuidToStringW', 'UuidCreate', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'ImmGetProperty', 'MapDebugInformation', 'CloseThemeData', 'OpenThemeData', 'TcGetFlowNameA', 'TcModifyFlow', 'DsGetRdnW'], ['UnmapViewOfFile', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'WideCharToMultiByte', 'GetFileType', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'SwitchToThread', 'GetCurrentThread', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WaitForSingleObject', 'DuplicateHandle', 'ConnectNamedPipe', 'PeekNamedPipe', 'CreateEventA', 'CreateNamedPipeW', 'CancelSynchronousIo', 'CancelIoEx', 'RegisterWaitForSingleObject', 'UnregisterWait', 'QueueUserWorkItem', 'SetHandleInformation', 'GetStdHandle', 'GetStartupInfoW', 'CreateFileA', 'TerminateProcess', 'GetExitCodeProcess', 'UnregisterWaitEx', 'LCMapStringW', 'InterlockedExchange', 'Sleep', 'SetConsoleCtrlHandler', 'SetFileCompletionNotificationModes', 'CancelIo', 'InterlockedCompareExchange', 'TryEnterCriticalSection', 'SetEvent', 'ReleaseSemaphore', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CreateSemaphoreA', 'ResetEvent', 'ReadConsoleInputW', 'WriteConsoleInputW', 'GetNumberOfConsoleInputEvents', 'GetConsoleScreenBufferInfo', 'SetConsoleCursorPosition', 'ReadConsoleW', 'WriteConsoleW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'FileTimeToSystemTime', 'GetModuleFileNameW', 'GetTempPathW', 'MultiByteToWideChar', 'FlushViewOfFile', 'GetCurrentDirectoryW', 'SetFilePointerEx', 'GetVersionExW', 'LoadLibraryA', 'GetModuleHandleA', 'GetTempPathA', 'SetCurrentDirectoryA', 'GetSystemTime', 'SystemTimeToFileTime', 'GetEnvironmentVariableA', 'DeleteFileA', 'AreFileApisANSI', 'DeleteFileW', 'GetVersionExA', 'OutputDebugStringA', 'GetFileAttributesExW', 'GetDiskFreeSpaceA', 'CreateFileMappingW', 'LockFileEx', 'HeapSize', 'HeapValidate', 'HeapCreate', 'GetFileAttributesA', 'HeapDestroy', 'FormatMessageW', 'LoadLibraryW', 'GetProcessHeap', 'UnlockFileEx', 'GetTickCount', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'LockFile', 'UnlockFile', 'HeapFree', 'HeapAlloc', 'SetEndOfFile', 'SetFilePointer', 'HeapCompact', 'CreateMutexW', 'GetFileSize', 'HeapReAlloc', 'GetFullPathNameA', 'GetFullPathNameW', 'GetCurrentThreadId', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'ExitProcess', 'lstrcmpiA', 'lstrlenA', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'GetStringTypeW', 'SetEnvironmentVariableA', 'GetModuleFileNameA', 'GetTimeZoneInformation', 'GetDriveTypeW', 'FindFirstFileExW', 'FileTimeToLocalFileTime', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'InterlockedIncrement', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCommandLineA', 'SystemTimeToTzSpecificLocalTime', 'FindNextFileA', 'FindFirstFileExA', 'InterlockedDecrement', 'RtlUnwind', 'RaiseException', 'ExitThread', 'CreateThread', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleCP', 'DecodePointer', 'EncodePointer', 'IsDebuggerPresent', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'GetLongPathNameW', 'MapViewOfFile', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetPriorityClass', 'FindClose', 'LoadLibraryExW', 'FormatMessageA', 'LocalFree', 'GetProcAddress', 'FreeLibrary', 'FlushFileBuffers', 'ReadFile', 'WriteFile', 'GetFileInformationByHandle', 'SetLastError', 'ReadDirectoryChangesW', 'GetFileAttributesW', 'QueryPerformanceFrequency', 'CreateFileW', 'QueryPerformanceCounter', 'DebugBreak', 'CloseHandle', 'SetErrorMode', 'GetQueuedCompletionStatusEx', 'GetQueuedCompletionStatus', 'CreateIoCompletionPort', 'PostQueuedCompletionStatus', 'GetLastError', 'CompareStringW', 'wsprintfA', 'wsprintfW', 'SendMessageA', 'CallWindowProcA', 'UnregisterClassA', 'GetClassNameA', 'GetParent', 'RegisterClassExA', 'CreateWindowExA', 'IsWindow', 'ShowWindow', 'UpdateLayeredWindow', 'DialogBoxIndirectParamA', 'EndDialog', 'GetDlgItem', 'SetDlgItemInt', 'CheckRadioButton', 'GetSystemMetrics', 'GetDlgCtrlID', 'OpenClipboard', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'SendInput', 'GetMenu', 'GetMenuState', 'CheckMenuItem', 'GetSubMenu', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'SetScrollPos', 'GetScrollPos', 'SetScrollRange', 'SetWindowTextA', 'SetWindowTextW', 'MapVirtualKeyW', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'SendDlgItemMessageA', 'DdeCreateStringHandleW', 'GetWindowTextA', 'GetWindow', 'LoadImageA', 'SystemParametersInfoA', 'GetDesktopWindow', 'GetWindowLongA', 'GetCursorPos', 'MessageBoxW', 'GetWindowTextLengthA', 'GetWindowTextLengthW', 'MessageBoxA', 'GetWindowContextHelpId', 'GetObjectA', 'SetAbortProc', 'SetMapMode', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateFontIndirectA', 'CreateCompatibleDC', 'CombineRgn', 'SetWindowExtEx', 'GetOpenFileNameA', 'ImpersonateNamedPipeClient', 'CoInitialize', 'OleGetClipboard', 'ReleaseStgMedium', 'CreateStreamOnHGlobal', 'GdipDisposeImage', 'GdipCloneImage', 'GdipLoadImageFromStream', 'GdipAlloc', 'GdipFree', 'ImmGetDefaultIMEWnd', 'htons', 'WSASetLastError', 'WSAStartup', 'WSARecvFrom', 'WSARecv', 'socket', 'shutdown', 'listen', 'bind', 'WSAIoctl', 'select', 'ioctlsocket', 'WSASocketW', 'WSAGetLastError', 'setsockopt', 'getsockopt', 'closesocket', 'PathFindFileNameW', 'PathFindExtensionW', 'PathFileExistsW', 'PathCombineW', 'PathIsRelativeW', 'SetupDiGetClassDevsA', 'NetApiBufferFree', 'NetServerGetInfo', 'capGetDriverDescriptionA'], ['SetFileSecurityW', 'CreateCompatibleDC', 'CreateFontA', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'GetPixel', 'GetStockObject', 'SelectObject', 'SetBkColor', 'SetBkMode', 'SetPixel', 'SetTextColor', 'StretchBlt', 'TextOutA', 'DeleteCriticalSection', 'EnterCriticalSection', 'FindResourceA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'LeaveCriticalSection', 'LoadResource', 'LockResource', 'OutputDebugStringA', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '_lclose', '_lopen', '_lread', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_iob', '_lock', '_onexit', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DispatchMessageA', 'GetSystemMetrics', 'LoadCursorA', 'LoadImageA', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassExA', 'ShowCursor', 'ShowWindow', 'TranslateMessage', 'DirectDrawCreate'], ['SysFreeString', 'RegQueryValueExW', 'CharNextW', 'GetVersion', 'GetProcAddress', 'SetClassLongW', 'UnrealizeObject', 'VerQueryValueW', 'GetVersionExW', 'GetVersion', 'RegUnLoadKeyW', 'SHGetFolderPathW', 'Sleep', 'NetApiBufferFree', 'SafeArrayPtrOfIndex', 'GetErrorInfo', 'OleUninitialize', 'Shell_NotifyIconW', 'memset', 'InitializeFlatSB', 'EnumDisplayMonitors', 'InternetGetConnectedState', 'HlinkNavigateString', 'SHGetFolderPathW', 'OpenPrinterW', 'GetDefaultPrinterW', 'WSACleanup', 'MagSetImageScalingCallback', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetSystemDirectoryW', 'TerminateProcess', 'GetModuleFileNameW', 'ExitThread', 'MultiByteToWideChar', 'lstrlenW', 'VirtualUnlock', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'lstrcatW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'lstrcpyW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'lstrlenA', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'OpenProcess', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'lstrcmpW', 'MoveFileW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetModuleHandleW', 'GetProcAddress', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'GetCurrentProcess', 'VerifyVersionInfoW', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'VirtualFree', 'GetComputerNameW', 'WaitForSingleObject', 'VirtualAlloc', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'ExitProcess', 'CloseHandle', 'GetLastError', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'SetFilePointerEx', 'LeaveCriticalSection', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'LoadLibraryExW', 'GetStdHandle', 'LCMapStringW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'GetModuleHandleExW', 'WideCharToMultiByte', 'HeapFree', 'GetStringTypeW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'TlsGetValue', 'TlsSetValue', 'IsDebuggerPresent', 'WriteConsoleW', 'wsprintfW', 'GetForegroundWindow', 'CryptGetKeyParam', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'SHGetSpecialFolderPathW', 'ShellExecuteW', 'ShellExecuteExW', 'WNetCloseEnum', 'WNetOpenEnumW', 'WNetEnumResourceW', 'HttpQueryInfoA', 'HttpSendRequestW', 'InternetConnectW', 'InternetOpenW', 'InternetCloseHandle', 'HttpOpenRequestW'], ['CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_iob', '_lock', '_onexit', '_unlock', '_winmajor', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetExitCodeProcess', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempFileNameW', 'GetTempPathW', 'GetThreadLocale', 'GetTickCount', 'GetTimeFormatW', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExA', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'Heap32ListFirst', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'IsSystemResumeAutomatic', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LocalFree', 'MoveFileExA', 'MoveFileExW', 'MoveFileW', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'QueryPerformanceCounter', 'QueueUserAPC', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReadProcessMemory', 'RemoveDirectoryW', 'ScrollConsoleScreenBufferW', 'SearchPathW', 'SetConsoleCtrlHandler', 'SetConsoleCursorPosition', 'SetConsoleMode', 'SetConsoleTextAttribute', 'SetConsoleTitleW', 'SetCurrentDirectoryW', 'SetEnvironmentVariableW', 'SetErrorMode', 'SetFileAttributesW', 'SetFilePointer', 'SetFileTime', 'SetLastError', 'SetLocalTime', 'SetSystemTime', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetVolumeLabelA', 'SleepEx', 'SwitchToThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TransmitCommChar', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualFreeEx', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileSectionA', '_hwrite', 'lstrcmpW', 'lstrcmpiW', 'lstrcpyW', 'lstrlenW', 'GetEnvironmentStringsW', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetConsoleTitleW', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetCompressedFileSizeW', 'GetCommandLineW', 'GetCPInfo', 'GetBinaryTypeW', 'GetBinaryType', 'FreeLibrary', 'FormatMessageW', 'FlushFileBuffers', 'FlushConsoleInputBuffer', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FillConsoleOutputCharacterW', 'FillConsoleOutputAttribute', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'EraseTape', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileW', 'DeleteFileA', 'CreateThread', 'CreateProcessW', 'CreateFileW', 'CreateFileA', 'CreateDirectoryW', 'CopyFileW', 'CopyFileA', 'ConvertDefaultLocale', 'CompareFileTime', 'CloseHandle', 'OpenProcess', 'AddAtomW', 'DefWindowProcW', 'DrawFocusRect', 'CreateWindowStationA', 'CreateMenu', 'FillRect', 'FindWindowW', 'GetMenuCheckMarkDimensions', 'GetProcessWindowStation', 'GetSysColorBrush', 'GetThreadDesktop', 'GetUpdateRgn', 'GetUserObjectInformationW', 'InflateRect', 'InsertMenuItemW', 'IsIconic', 'LockWindowUpdate', 'MessageBeep', 'MessageBoxW', 'MonitorFromWindow', 'OffsetRect', 'PostMessageW', 'RealGetWindowClass', 'SendMessageW', 'SetUserObjectInformationW', 'ShowWindow', 'ToUnicode', 'WinHelpA', 'LoadCursorW', 'GetKBCodePage', 'DefMDIChildProcW', 'CloseWindowStation', 'StartPage', 'SetMiterLimit', 'SetMapperFlags', 'SetBitmapBits', 'PtVisible', 'OffsetClipRgn', 'GetViewportOrgEx', 'GetTextFaceW', 'AddFontMemResourceEx', 'AnimatePalette', 'Arc', 'BRUSHOBJ_pvAllocRbrush', 'ColorMatchToTarget', 'CopyEnhMetaFileA', 'CreatePatternBrush', 'DescribePixelFormat', 'EngFreeModule', 'EngTextOut', 'EnumFontsW', 'FillRgn', 'GdiGetPageCount', 'GetGlyphOutlineW', 'GetMiterLimit', 'GetOutlineTextMetricsA', 'RegOpenKeyW', 'SaferRecordEventLogEntry', 'SaferIdentifyLevel', 'SaferComputeTokenFromLevel', 'SaferCloseLevel', 'RevertToSelf', 'RegSetValueW', 'RegSetValueExW', 'RegQueryValueW', 'RegQueryValueExW', 'CreateProcessAsUserW', 'RegOpenKeyExW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCloseKey', 'LookupAccountSidW', 'ImpersonateLoggedOnUser', 'GetSecurityDescriptorOwner', 'GetFileSecurityW', 'FreeSid', 'ShellExecuteExW', 'ShellExecuteA', 'ShellAboutA', 'SHIsFileAvailableOffline', 'SHGetSettings', 'CheckEscapesW', 'DragQueryFile', 'DragQueryFileAorW', 'ExtractIconExW', 'SHAppBarMessage', 'SHBrowseForFolderA', 'SHChangeNotify', 'SHCreateProcessAsUserW', 'SHEmptyRecycleBinA', 'SHFileOperationA', 'SHGetDataFromIDListA', 'SHGetDiskFreeSpaceA', 'SHGetMalloc', 'WOWShellExecute', 'StrCmpNW', 'StrStrIA', 'StrStrIW', 'StrCmpNA', 'StrChrIA', 'ImageList_Create', '_XcptFilter', '__getmainargs', '__initenv', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_adjust_fdiv', '_c_exit', '_cexit', '_close', '_controlfp', '_dup', '_dup2', '_errno', '_except_handler3', '_exit', '_get_osfhandle', '_getch', '_initterm', '_iob', '_open_osfhandle', '_pclose', '_pipe', '_seh_longjmp_unwind', '_setjmp3', '_setmode', '_snwprintf', '_tell', '_ultoa', '_vsnwprintf', '_wcsicmp', '_wcslwr', '_wcsnicmp', '_wcsupr', '_wpopen', '_wtol', 'calloc', 'exit', 'fflush', 'fgets', 'fprintf', 'free', 'iswalpha', 'iswdigit', 'iswspace', 'iswxdigit', 'longjmp', 'malloc', 'memmove', 'printf', 'qsort', 'rand', 'realloc', 'setlocale', 'srand', 'swprintf', 'swscanf', 'time', 'towlower', 'towupper', 'wcscat', 'wcschr', 'wcscmp', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsncpy', 'wcsrchr', 'wcsspn', 'wcsstr', 'wcstol', 'wcstoul'], ['RaiseException', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'CloseHandle', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW'], ['DefWindowProcA', 'GetClientRect', 'GetSystemMetrics', 'BeginPaint', 'GetSysColor', 'SetWindowWord', 'SetRect', 'EndPaint', 'RegisterClassA', 'UpdateWindow', 'GetWindowWord', 'LoadCursorA', 'OemToCharA', 'OemToCharBuffA', 'EnableWindow', 'SetWindowTextA', 'SendMessageA', 'ShowWindow', 'PostMessageA', 'GetLastActivePopup', 'KillTimer', 'SetTimer', 'GetWindowRect', 'DialogBoxIndirectParamA', 'SetCursor', 'SetWindowPos', 'GetDlgItemTextA', 'EndDialog', 'GetKeyState', 'PeekMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetParent', 'SetDlgItemTextA', 'SendDlgItemMessageA', 'GetDlgItem', 'InvalidateRect', 'wsprintfA', 'MessageBoxA', 'CreateDirectoryA', '_lwrite', 'RtlUnwind', 'SetFileTime', 'GetModuleHandleA', 'SetErrorMode', 'GetCommandLineA', 'GetTempPathA', 'GetModuleFileNameA', 'GetVersion', 'GetWindowsDirectoryA', 'LocalFree', 'GlobalUnlock', 'LocalAlloc', 'GlobalFree', 'GlobalAlloc', 'GlobalHandle', 'GetProfileStringA', 'lstrcmpiA', 'GlobalLock', '_llseek', '_lclose', 'WinExec', 'lstrlenA', '_lread', '_lopen', 'FindClose', 'FindFirstFileA', 'SetCurrentDirectoryA', '_lcreat', 'lstrcpyA', 'lstrcatA', 'LocalFileTimeToFileTime', 'DosDateTimeToFileTime', 'SetBkColor', 'SetTextAlign', 'GetTextExtentPoint32A', 'GetBkColor', 'SetTextColor', 'DeleteObject', 'ExtTextOutA', 'CreateDCA', 'GetDeviceCaps', 'CreateFontIndirectA', 'DeleteDC', 'SelectObject'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WindowFromDC', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MoveWindow', 'MessageBoxIndirectW', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameW', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CreateAcceleratorTableW', 'CopyRect', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixelV', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'ResizePalette', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetNearestPaletteIndex', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapDimensionEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'lstrcpyW', 'lstrcmpW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'IsDebuggerPresent', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CopyFileW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateInstance', 'IsEqualGUID', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'Sleep', 'CLSIDFromString', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SHGetFileInfoW', 'ExtractIconW', 'GetSaveFileNameW', 'GetOpenFileNameW', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW'], ['GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'ReadFile', 'ExitThread', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'CreateThread', 'Sleep', 'CloseHandle', 'RegEnumValueA', 'RegCloseKey', 'RegOpenKeyA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'DeleteDC', 'free', 'CoInitialize', 'OleLoadPicture', 'SHGetMalloc', 'GetDC'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsMenu', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA', 'NtFlushInstructionCache', 'AutodialHookCallback'], ['AddAce', 'ImageList_Remove', 'GetSaveFileNameW', 'LineTo', 'IcmpSendEcho', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetUseConnectionW', 'CoGetObject', 'VariantInit', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'socket'], ['VirtualProtect', 'GetCurrentProcess', 'Sleep', 'GetSystemInfo', 'ExitProcess', 'GetConsoleWindow', 'CheckRemoteDebuggerPresent', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'UnhandledExceptionFilter', 'ShowWindow', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?widen@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDD@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?uncaught_exception@std@@YA_NXZ', '?_Xlength_error@std@@YAXPBD@Z', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '__current_exception', '_CxxThrowException', '__std_terminate', '_except_handler4_common', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', 'memset', 'memmove', '__current_exception_context', '__p___argv', 'exit', '_register_thread_local_exe_atexit_callback', '_initterm_e', '__p___argc', '_invalid_parameter_noinfo_noreturn', 'terminate', '_get_initial_narrow_environment', '_controlfp_s', '_initterm', '_set_app_type', '_exit', '_c_exit', '_seh_filter_exe', '_cexit', '_crt_atexit', '_register_onexit_function', '_initialize_onexit_table', '_initialize_narrow_environment', '_configure_narrow_argv', '_callnewh', 'free', '_set_new_mode', 'malloc', '__setusermatherr', '_set_fmode', '__p__commode', '_configthreadlocale'], ['DeleteFileW', 'SetStdHandle', 'WriteConsoleW', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetStringTypeW', 'MultiByteToWideChar', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'LoadLibraryW', 'WideCharToMultiByte', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'VirtualProtect', 'EnterCriticalSection', 'InterlockedExchange', 'CreateFileW', 'GetModuleFileNameW', 'ReadFile', 'LeaveCriticalSection', 'LCMapStringW', 'GetFileSize', 'GetCPInfo', 'RtlUnwind', 'HeapSize', 'Sleep', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'DecodePointer', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'RaiseException', 'TranslateMessage', 'EndPaint', 'DestroyWindow', 'TranslateAcceleratorW', 'GetMessageW', 'PostQuitMessage', 'LoadImageW', 'DialogBoxParamW', 'LoadCursorW', 'DispatchMessageW', 'BeginPaint', 'GetClientRect', 'LoadAcceleratorsW', 'RegisterClassExW', 'LoadIconW', 'EndDialog', 'LoadStringW', 'ShowWindow', 'CreateWindowExW', 'UpdateWindow', 'DefWindowProcW', 'StretchBlt', 'SetBkMode', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'GetDIBColorTable', 'GetObjectW', 'DeleteDC', 'GdiplusShutdown', 'TransparentBlt', 'AlphaBlend'], ['ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetLastError', 'DeleteFileA', 'CloseHandle', 'GetFileType', 'CreateFileA', 'GetCommandLineA', 'GetVersion', 'SetEndOfFile', 'ReadFile', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'SetStdHandle', 'HeapAlloc', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetModuleHandleA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'WriteFile', 'VirtualAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetProcAddress', 'LoadLibraryA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW'], ['SHGetDiskFreeSpaceExW', '_CorExeMain', 'GetUserNameW', 'TranslateMessage', 'GetModuleHandleA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'lstrcmpiA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'ReadProcessMemory', 'LoadLibraryA', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetCPInfo', 'GetACP', 'EnumCalendarInfoA', 'DeviceIoControl', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CloseHandle', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'FindWindowA', 'CharNextA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'wglDeleteContext', 'CreateWindowExA', 'SafeArrayPtrOfIndex', 'CreateStreamOnHGlobal', 'GetErrorInfo', 'ImageList_SetIconSize', 'VariantChangeTypeEx', 'RaiseException'], ['_chkstk', 'strcmp', 'atol', '_snprintf', 'atoi', 'strrchr', 'memset', 'RtlInitUnicodeString', 'RtlInitAnsiString', 'LdrLoadDll', 'LdrGetProcedureAddress', 'ReadFile', 'GetFileSize', 'CreateFileA', 'GetPrivateProfileStringA', 'CloseHandle', 'lstrlenA', 'Sleep', 'InterlockedExchange', 'GetFullPathNameA', 'GlobalLock', 'GlobalUnlock', 'GlobalReAlloc', 'GetSystemTimeAsFileTime', 'GlobalAlloc', 'ExitProcess', 'GlobalFree', 'InterlockedCompareExchange', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'WritePrivateProfileStringA', 'ShowWindow', 'UpdateWindow', 'UnregisterClassA', 'InvalidateRect', 'SetWindowRgn', 'MessageBoxA', 'SetWindowPos', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'LoadCursorA', 'RegisterClassExA', 'GetClassInfoExA', 'TranslateMessage', 'DispatchMessageA', 'GetMessageA', 'LoadImageA', 'SetWindowTextA', 'GetParent', 'GetWindowTextA', 'DrawTextA', 'GetClientRect', 'SetRect', 'CreateWindowExA', 'LoadIconA', 'SendMessageA', 'PostMessageA', 'BitBlt', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'ExtCreateRegion', 'GetCurrentObject', 'SetTextColor', 'SetBkMode', 'CreateFontA', 'CombineRgn', 'DeleteDC', 'GetObjectA', 'CreateCompatibleBitmap', 'DeleteObject', 'GetOpenFileNameA', 'CreateStreamOnHGlobal', 'OleLoadPicture', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?length@?$char_traits@D@std@@SAIPBD@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Unlock@_Mutex@std@@QAEXXZ', '?_Lock@_Mutex@std@@QAEXXZ', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '__set_app_type', 'exit', '_ismbblead', '_XcptFilter', '_exit', '_cexit', '__getmainargs', '_amsg_exit', 'strtok', '?terminate@@YAXXZ', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_crt_debugger_hook', '_unlock', '__dllonexit', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', 'srand', '_invoke_watson', '_acmdln', 'malloc', '_time64', '??3@YAXPAX@Z', '__CxxFrameHandler3', 'rand', '??2@YAPAXI@Z', '_controlfp_s', 'InitCommonControlsEx', '_TrackMouseEvent'], ['GetModuleHandleA', 'ScrollDC', 'RegQueryValueW', 'DSA_Create', '_CorExeMain', 'ShellAboutA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetOpenFileNameW', 'SHGetMalloc', 'PathCompactPathExW', 'SetFocus'], ['IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'FlsAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'SetUnhandledExceptionFilter', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapSize', 'HeapQueryInformation', 'ExitProcess', 'Sleep', 'RtlPcToFileHeader', 'RaiseException', 'HeapReAlloc', 'RtlUnwindEx', 'RtlLookupFunctionEntry', 'GetCommandLineA', 'FlsSetValue', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'GetFileSizeEx', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'CreateFileW', 'GetShortPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetStringTypeExW', 'DeleteFileW', 'MoveFileW', 'GetCurrentDirectoryW', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'GlobalFlags', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'lstrlenA', 'GetTempPathW', 'GetProfileIntW', 'SearchPathW', 'lstrcmpiW', 'LocalAlloc', 'LocalUnlock', 'LocalLock', 'GetDiskFreeSpaceW', 'GetFullPathNameW', 'GetTempFileNameW', 'GetFileTime', 'SetFileTime', 'GetFileAttributesW', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'CompareStringA', 'GetModuleFileNameW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'FreeLibrary', 'CompareStringW', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GetCurrentThreadId', 'CloseHandle', 'GlobalLock', 'GlobalUnlock', 'GetCurrentProcessId', 'GlobalGetAtomNameW', 'GlobalAddAtomW', 'GetLastError', 'SetLastError', 'lstrlenW', 'GetProcAddress', 'GetModuleHandleW', 'LoadLibraryW', 'FreeResource', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'GetLocalTime', 'InitializeCriticalSectionAndSpinCount', 'VirtualAlloc', 'RegisterClipboardFormatW', 'LockWindowUpdate', 'GetDCEx', 'SystemParametersInfoW', 'GetMenuItemInfoW', 'InflateRect', 'GetSysColorBrush', 'LoadCursorW', 'DestroyCursor', 'SetCapture', 'GetTabbedTextExtentW', 'IsClipboardFormatAvailable', 'ShowOwnedPopups', 'PostQuitMessage', 'IsZoomed', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuW', 'EnableMenuItem', 'CheckMenuItem', 'SetWindowTextW', 'IsDialogMessageW', 'SetDlgItemTextW', 'RegisterWindowMessageW', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'GetClassLongPtrW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'MessageBoxW', 'CreateWindowExW', 'GetClassInfoExW', 'RegisterClassW', 'GetScrollInfo', 'SetScrollInfo', 'CallWindowProcW', 'SystemParametersInfoA', 'GetWindowPlacement', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'FillRect', 'GetMenuState', 'GetMenuStringW', 'AppendMenuW', 'InsertMenuW', 'RemoveMenu', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'ValidateRect', 'GetClassNameW', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuW', 'DestroyMenu', 'WinHelpW', 'SetWindowPos', 'SetFocus', 'GetWindowThreadProcessId', 'GetActiveWindow', 'IsWindowEnabled', 'EqualRect', 'GetDlgItem', 'LoadIconW', 'SetCursor', 'PeekMessageW', 'ReleaseCapture', 'LoadAcceleratorsW', 'SetActiveWindow', 'IsWindowVisible', 'UpdateWindow', 'IsIconic', 'InsertMenuItemW', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreatePopupMenu', 'GetClassInfoW', 'IntersectRect', 'GetMenu', 'GetLastActivePopup', 'BringWindowToTop', 'SetMenu', 'GetDesktopWindow', 'GetTabbedTextExtentA', 'PostThreadMessageW', 'CreateMenu', 'CopyAcceleratorTableW', 'SetWindowRgn', 'DrawIcon', 'CharUpperW', 'SetScrollRange', 'DestroyIcon', 'GetWindowLongW', 'ShowWindow', 'GetWindow', 'TranslateAcceleratorW', 'SetWindowLongW', 'GetSysColor', 'SetRectEmpty', 'PtInRect', 'GetDC', 'GetSystemMetrics', 'ReleaseDC', 'IsWindow', 'DefWindowProcW', 'GetDlgCtrlID', 'GetCursorPos', 'WindowFromPoint', 'IsChild', 'GetParent', 'GetCapture', 'InvalidateRect', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'OffsetRect', 'CopyRect', 'SetRect', 'DeferWindowPos', 'PostMessageW', 'GetFocus', 'SetTimer', 'GetWindowRect', 'KillTimer', 'EnableWindow', 'GetKeyState', 'MessageBeep', 'SendMessageW', 'AdjustWindowRectEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'CreatePatternBrush', 'CreateBitmap', 'SelectClipRgn', 'CreatePen', 'CreateSolidBrush', 'DPtoLP', 'GetViewportOrgEx', 'ScaleViewportExtEx', 'PatBlt', 'StartPage', 'OffsetViewportOrgEx', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceW', 'GetTextExtentPoint32A', 'GetWindowOrgEx', 'Rectangle', 'SetViewportExtEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'StartDocW', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'EndPage', 'CreateFontIndirectW', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateDCW', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'StretchDIBits', 'DeleteDC', 'GetObjectW', 'CreateFontW', 'SelectObject', 'GetCharWidthW', 'DeleteObject', 'GetBkColor', 'GetStockObject', 'GetTextExtentPoint32W', 'EnumFontFamiliesW', 'GetTextMetricsW', 'GetFileTitleW', 'ClosePrinter', 'OpenPrinterW', 'GetJobW', 'DocumentPropertiesW', 'RegSetValueExW', 'RegCreateKeyW', 'RegCreateKeyExW', 'GetFileSecurityW', 'SetFileSecurityW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegSetValueW', 'RegCloseKey', 'RegDeleteValueW', 'DragFinish', 'ExtractIconW', 'SHGetFileInfoW', 'DragQueryFileW', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'PathRemoveFileSpecW', 'CoInitializeEx', 'CoUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'CoCreateInstance', 'CoTaskMemFree', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen'], ['GetTickCount', 'ReadConsoleOutputA', 'MulDiv', 'LocalReAlloc', 'EnumResourceLanguagesA', 'CompareStringW', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'GetModuleHandleW', 'GlobalFree', 'SetFileApisToOEM', 'LoadLibraryA', 'LocalAlloc', 'SetConsoleCtrlHandler', 'AddAtomA', 'SetProcessShutdownParameters', 'CloseHandle', 'GlobalGetAtomNameA', 'CreateProcessW', 'GetLocaleInfoW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringW', 'GetCPInfo', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'TransparentBlt'], ['GetTickCount', 'GetProcessHeap', 'WriteFile', 'Sleep', 'ReadFile', 'CreateFileW', 'GetFileSizeEx', 'GetStdHandle', 'GetLastError', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'GetLogicalDrives', 'LoadLibraryA', 'lstrcmpiW', 'FindNextFileW', 'CloseHandle', 'CreateThread', 'ExitProcess', 'GetModuleFileNameW', 'WideCharToMultiByte', 'ExitThread', 'MultiByteToWideChar', 'CreateMutexA', 'WaitForSingleObject', 'HeapFree', 'SetFilePointerEx', 'GetCurrentProcess', 'HeapAlloc', 'GetDriveTypeW', 'lstrlenA', 'FindFirstFileW', 'FindClose', 'GetSystemDefaultLangID', 'GetStringTypeW', 'LCMapStringW', 'IsValidCodePage', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'RaiseException', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapSize', 'GetModuleHandleW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'LeaveCriticalSection', 'EnterCriticalSection', 'RtlUnwind', 'HeapReAlloc', 'LoadLibraryW', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'CryptDecrypt', 'CryptCreateHash', 'CryptDeriveKey', 'CryptDestroyKey', 'CryptEncrypt', 'CryptImportKey', 'CryptAcquireContextA', 'CryptReleaseContext', 'CryptHashData', 'ShellExecuteW', 'PathFindExtensionW', 'PathIsDirectoryW'], ['CreateDIBPatternBrushPt', 'GetCharABCWidthsA', 'GetGlyphOutlineA', 'GetNearestPaletteIndex', 'GetObjectType', 'GetSystemPaletteUse', 'GetArcDirection', 'AddFontResourceW', 'ScriptCacheGetHeight', 'ScriptString_pLogAttr', 'ScriptGetFontScriptTags', 'ScriptGetFontLanguageTags', 'ScriptGetFontFeatureTags', 'ScriptGetLogicalWidths'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'OutputDebugStringA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileType', 'GetFileTime', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePatternBrush', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastInputInfo', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyAcceleratorTable', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableA', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateILockBytesOnHGlobal', 'GetHGlobalFromILockBytes', 'OleGetIconOfClass', 'OleDraw', 'OleSetMenuDescriptor', 'OleSetContainedObject', 'OleSave', 'OleLoad', 'OleUninitialize', 'OleInitialize', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['GetModuleHandleA', 'ReleaseDC', 'RegisterEventSourceA', 'ShellAboutA', '_CorExeMain', 'PropertySheet'], ['GetModuleHandleA', 'CopyRect', 'RegQueryValueA', '_CorExeMain', 'ShellAboutA', 'DSA_Create'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'SetClassLongW', 'GetClassLongW', 'SetWindowLongW', 'GetWindowLongW', 'CreateWindowExW', 'WindowFromPoint', 'WaitMessage', 'WaitForInputIdle', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetCapture', 'SetActiveWindow', 'SendNotifyMessageW', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PostThreadMessageW', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsClipboardFormatAvailable', 'IsChild', 'InvalidateRect', 'InsertMenuItemW', 'InsertMenuW', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameW', 'GetClassInfoExW', 'GetClassInfoW', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndMenu', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableW', 'CountClipboardFormats', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharUpperW', 'CharPrevW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AttachThreadInput', 'CharLowerBuffA', 'CharUpperBuffA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetRectRgn', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateEnhMetaFileW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CloseEnhMetaFile', 'Chord', 'BitBlt', 'ArcTo', 'Arc', 'AngleArc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WriteFile', 'WinExec', 'WideCharToMultiByte', 'WaitForSingleObjectEx', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'WaitForMultipleObjects', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UpdateResourceW', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'TerminateProcess', 'SystemTimeToFileTime', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'QueryDosDeviceW', 'PulseEvent', 'IsDebuggerPresent', 'OpenProcess', 'OpenFileMappingW', 'OpenEventW', 'MultiByteToWideChar', 'MulDiv', 'MoveFileW', 'MapViewOfFileEx', 'MapViewOfFile', 'LockResource', 'LocalFree', 'LocalFileTimeToFileTime', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVolumeInformationW', 'GetVersionExW', 'GetVersion', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStringTypeExW', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FlushViewOfFile', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumSystemLocalesW', 'EnumResourceNamesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'EndUpdateResourceW', 'DuplicateHandle', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessW', 'CreatePipe', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CopyFileW', 'CompareStringA', 'CompareStringW', 'CloseHandle', 'BeginUpdateResourceW', 'SetSecurityDescriptorSacl', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExA', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'LookupAccountSidW', 'IsValidSid', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetUserNameW', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'GetLengthSid', 'FreeSid', 'AllocateAndInitializeSid', 'AddAccessAllowedAce', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'OleRegEnumVerbs', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'EnumDisplayMonitors', 'GetMonitorInfoW', 'MonitorFromPoint', 'MonitorFromRect', 'MonitorFromWindow', 'memset', 'memcpy', 'SHGetFileInfoW', 'ShellExecuteW', 'Shell_NotifyIconW', 'ExtractAssociatedIconW', 'FindNextUrlCacheEntryW', 'FindFirstUrlCacheEntryW', 'FindCloseUrlCache', 'DeleteUrlCacheEntryW', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHChangeNotify', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW', 'GetVersionExW', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetHostByName', 'gethostname', 'socket', 'shutdown', 'setsockopt', 'send', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'closesocket'], ['CryptStringToBinaryA', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualAlloc', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'Sleep', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetACP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GlobalFree', 'GlobalUnlock', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'WideCharToMultiByte', 'GlobalLock', 'GlobalAlloc', 'InterlockedExchange', 'MultiByteToWideChar', 'GetLastError', 'GetVersion', 'CompareStringA', 'lstrlenA', 'GetProcAddress', 'LoadLibraryW', 'GetVersionExA', 'GetModuleHandleA', 'lstrcmpW', 'SetLastError', 'LoadLibraryA', 'FreeLibrary', 'SetErrorMode', 'CreateFileA', 'GetCurrentProcess', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'GetCurrentThreadId', 'FreeResource', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetThreadLocale', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'MulDiv', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentProcessId', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'FormatMessageA', 'LocalFree', 'EnumSystemLocalesA', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'ValidateRect', 'PostQuitMessage', 'GetCursorPos', 'WindowFromPoint', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GetMenuState', 'IsWindowEnabled', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'UnregisterClassA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'SetFocus', 'GetWindowTextA', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetMenu', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'LoadCursorA', 'GetSysColorBrush', 'DestroyMenu', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'LoadImageA', 'GetSystemMetrics', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'AppendMenuA', 'DrawIcon', 'CreateWindowExW', 'InSendMessage', 'IsWindow', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'SendMessageA', 'EnableWindow', 'GetParent', 'InvalidateRect', 'GetClientRect', 'GetWindowRect', 'EqualRect', 'GetForegroundWindow', 'SaveDC', 'RestoreDC', 'SetMapMode', 'DeleteObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'CreateBitmap', 'GetStockObject', 'GetDeviceCaps', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'BitBlt', 'CreateCompatibleDC', 'SetWindowOrgEx', 'CreateCompatibleBitmap', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegQueryValueA', 'RegOpenKeyA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', '_TrackMouseEvent', 'PathFindFileNameA', 'PathFindExtensionA', 'CreateStreamOnHGlobal', 'VariantClear', 'VariantChangeType', 'VariantInit', 'GdipCreateFromHDC', 'GdipSetImageAttributesColorMatrix', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipDisposeImageAttributes', 'GdipCreateImageAttributes', 'GdipAlloc', 'GdipFree', 'GdipDrawImageRectRect', 'GdipCloneImage', 'GdiplusShutdown', 'GdiplusStartup', 'GdipDisposeImage'], ['GetLocaleInfoA', 'RemoveDirectoryTransactedA', 'GetUserDefaultLCID', 'DeleteFileA', 'lstrlenA', 'GetLastError', 'HeapAlloc', 'lstrcpynA', 'lstrcmpiW', 'GetModuleFileNameA', 'GetCurrentProcess', 'GetSystemPowerStatus', 'CreateMutexA', 'OpenProcess', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'GetSystemWow64DirectoryW', 'GetTimeZoneInformation', 'OpenMutexA', 'Process32NextW', 'GetVersionExA', 'GlobalAlloc', 'lstrcpyA', 'GetModuleHandleA', 'GlobalFree', 'GetSystemInfo', 'GetLogicalDriveStringsA', 'GlobalMemoryStatusEx', 'WideCharToMultiByte', 'GetComputerNameA', 'UnmapViewOfFile', 'GetFileInformationByHandle', 'FileTimeToSystemTime', 'CloseHandle', 'GetTickCount', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'HeapReAlloc', 'OutputDebugStringW', 'GetEnvironmentVariableA', 'GetFileSize', 'lstrcpyW', 'LoadLibraryW', 'GetVersionExW', 'lstrlenW', 'CreateDirectoryA', 'Process32FirstW', 'SystemTimeToFileTime', 'CreateFileA', 'GetFileAttributesA', 'LocalFileTimeToFileTime', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'SetFilePointer', 'SetFileTime', 'WriteFile', 'ReadFile', 'FindClose', 'CopyFileTransactedA', 'CreateDirectoryTransactedA', 'FreeLibrary', 'GetProcessHeap', 'LocalFree', 'GetProcAddress', 'lstrcatW', 'LoadLibraryA', 'LocalAlloc', 'SetEnvironmentVariableW', 'ReadConsoleW', 'EnumSystemLocalesW', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileSizeEx', 'GetCommandLineW', 'GetCommandLineA', 'HeapSize', 'ExitProcess', 'WriteConsoleW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetFileType', 'GetStdHandle', 'LoadLibraryExW', 'DeleteFileTransactedA', 'GetLocalTime', 'HeapFree', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'InitializeSListHead', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'DecodePointer', 'EncodePointer', 'GetSystemTimeAsFileTime', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SetCurrentDirectoryW', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'RemoveDirectoryW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'SetLastError', 'GetModuleHandleW', 'CopyFileW', 'FormatMessageW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'SwitchToThread', 'GetDesktopWindow', 'wsprintfW', 'wsprintfA', 'GetSystemMetrics', 'EnumDisplayDevicesA', 'GetWindowDC', 'GetWindowRect', 'BitBlt', 'SaveDC', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'GetDeviceCaps', 'DeleteDC', 'RestoreDC', 'DeleteObject', 'GetTokenInformation', 'CryptGetHashParam', 'CryptDestroyHash', 'RegQueryValueExA', 'GetUserNameA', 'CreateProcessWithTokenW', 'OpenProcessToken', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'DuplicateTokenEx', 'RegQueryValueExW', 'CryptReleaseContext', 'RegCloseKey', 'RegEnumKeyExW', 'RegOpenKeyExW', 'CryptAcquireContextA', 'CredEnumerateW', 'CredFree', 'CryptCreateHash', 'CryptHashData', 'SHGetFolderPathA', 'ShellExecuteA', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoUninitialize', 'CoTaskMemFree', 'CoCreateInstance', 'GetUserProfileDirectoryA', 'CommitTransaction', 'RollbackTransaction', 'CreateTransaction', 'BCryptDecrypt', 'BCryptDestroyKey', 'BCryptGenerateSymmetricKey', 'BCryptOpenAlgorithmProvider', 'BCryptSetProperty', 'BCryptCloseAlgorithmProvider', 'CryptStringToBinaryA', 'CryptUnprotectData', 'StrCmpNW', 'StrStrIW', 'WinHttpCloseHandle', 'WinHttpSendRequest', 'WinHttpConnect', 'WinHttpQueryDataAvailable', 'WinHttpSetOption', 'WinHttpQueryHeaders', 'WinHttpOpen', 'WinHttpOpenRequest', 'WinHttpReceiveResponse', 'WinHttpReadData', 'GdiplusStartup', 'GdipGetImageEncodersSize', 'GdipFree', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipAlloc', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdiplusShutdown', 'GdipSaveImageToFile'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleHandleA', 'ValidateRect', 'GetUserNameA', 'ImageList_SetBkColor', '_CorExeMain', 'SHGetIconOverlayIndexA'], ['lstrcatA', 'InitializeCriticalSection', 'GetProcAddress', 'LocalFree', 'RaiseException', 'LocalAlloc', 'GetModuleHandleA', 'LeaveCriticalSection', 'EnterCriticalSection', 'DuplicateHandle', 'GetShortPathNameA', 'ResumeThread', 'WriteProcessMemory', 'GetPrivateProfileSectionA', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'DefWindowProcA', 'AdjustWindowRectEx'], ['OpenFileMappingA', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'FileTimeToLocalFileTime', 'OpenEventA', 'SetEnvironmentVariableA', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetTimeZoneInformation', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'CreateFileA', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'SetHandleCount', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'HeapCreate', 'HeapDestroy', 'HeapReAlloc', 'FatalAppExitA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualQuery', 'GetSystemInfo', 'OutputDebugStringW', 'GetFileType', 'WriteConsoleW', 'OutputDebugStringA', 'GetStdHandle', 'DebugBreak', 'ExitProcess', 'ExitThread', 'CreateThread', 'GetModuleFileNameA', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'IsBadReadPtr', 'HeapValidate', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'GetDiskFreeSpaceW', 'GetTempFileNameW', 'GetFileTime', 'SetFileTime', 'GetFileAttributesW', 'GetShortPathNameW', 'lstrcmpiW', 'GetStringTypeExW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'MoveFileW', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileW', 'GetCurrentProcess', 'GetHandleInformation', 'GetCurrentDirectoryW', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'GetThreadLocale', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'FindResourceExW', 'InterlockedIncrement', 'CompareStringA', 'InterlockedExchange', 'GetLocaleInfoW', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GlobalFlags', 'CreateEventW', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'GlobalSize', 'FormatMessageW', 'GetProfileIntW', 'MulDiv', 'GetModuleHandleA', 'GetVersion', 'GetVersionExW', 'SuspendThread', 'ResumeThread', 'GetThreadPriority', 'SetThreadPriority', 'CompareStringW', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpW', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExA', 'FreeResource', 'lstrlenA', 'lstrcmpA', 'MultiByteToWideChar', 'SetErrorMode', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalAlloc', 'GlobalReAlloc', 'GlobalLock', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'GlobalUnlock', 'GlobalFree', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'LocalFree', 'GetAtomNameW', 'GlobalGetAtomNameW', 'lstrlenW', 'WideCharToMultiByte', 'FreeLibrary', 'InterlockedDecrement', 'GetModuleHandleW', 'GetProcAddress', 'GetCurrentProcessId', 'GetModuleFileNameW', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetLastError', 'SetLastError', 'CreateMutexW', 'FindFirstChangeNotificationW', 'PeekNamedPipe', 'CreateDirectoryW', 'GetCurrentThread', 'VirtualFree', 'Sleep', 'CopyFileW', 'GetTempPathW', 'OpenMutexW', 'VirtualAlloc', 'ResetEvent', 'VirtualProtect', 'DuplicateHandle', 'DeleteFileW', 'GetEnvironmentVariableW', 'DeleteDC', 'BitBlt', 'CreatePen', 'CreateDCW', 'DPtoLP', 'GetObjectW', 'EnumFontFamiliesExW', 'CopyMetaFileW', 'StretchDIBits', 'PlayEnhMetaFile', 'GdiComment', 'WidenPath', 'StrokePath', 'StrokeAndFillPath', 'SetMiterLimit', 'GetPath', 'GetMiterLimit', 'FlattenPath', 'FillPath', 'EndPath', 'CloseFigure', 'BeginPath', 'AbortPath', 'GetCharWidthFloatW', 'GetCharABCWidthsFloatW', 'ExtEscape', 'DrawEscape', 'PolyBezier', 'GetCurrentObject', 'GetColorAdjustment', 'PolyPolyline', 'GetArcDirection', 'AngleArc', 'SetPixelV', 'PlgBlt', 'MaskBlt', 'EndDoc', 'AbortDoc', 'SetAbortProc', 'EndPage', 'StartPage', 'StartDocW', 'GetGlyphOutlineW', 'GetKerningPairsW', 'GetFontData', 'GetCharABCWidthsW', 'GetOutlineTextMetricsW', 'ResetDCW', 'GetBoundsRect', 'SetBoundsRect', 'Escape', 'GetAspectRatioFilterEx', 'GetCharacterPlacementW', 'GetFontLanguageInfo', 'GetCharWidthW', 'GetTextCharacterExtra', 'GetTextMetricsW', 'GetTextFaceW', 'GetTextAlign', 'GetTextExtentPoint32W', 'TextOutW', 'ExtFloodFill', 'FloodFill', 'SetPixel', 'GetPixel', 'StretchBlt', 'PatBlt', 'RoundRect', 'Rectangle', 'PolyPolygon', 'Polygon', 'Pie', 'Ellipse', 'Chord', 'Polyline', 'Arc', 'RectVisible', 'PtVisible', 'PaintRgn', 'InvertRgn', 'FrameRgn', 'FillRgn', 'LPtoDP', 'GetWindowExtEx', 'GetWindowOrgEx', 'GetViewportExtEx', 'GetViewportOrgEx', 'GetWorldTransform', 'GetGraphicsMode', 'GetMapMode', 'GetTextColor', 'GetStretchBltMode', 'GetROP2', 'GetPolyFillMode', 'GetBkMode', 'GetBkColor', 'UpdateColors', 'RealizePalette', 'GetNearestColor', 'EnumObjects', 'SetBrushOrgEx', 'GetBrushOrgEx', 'CreateCompatibleDC', 'CreateICW', 'RectInRegion', 'PtInRegion', 'GetRgnBox', 'OffsetRgn', 'EqualRgn', 'CombineRgn', 'SetRectRgn', 'GetRegionData', 'ExtCreateRegion', 'PathToRegion', 'CreateRoundRectRgn', 'CreatePolyPolygonRgn', 'CreatePolygonRgn', 'CreateEllipticRgnIndirect', 'CreateEllipticRgn', 'CreateRectRgnIndirect', 'ResizePalette', 'GetNearestPaletteIndex', 'AnimatePalette', 'SetPaletteEntries', 'GetPaletteEntries', 'CreateHalftonePalette', 'CreatePalette', 'CreateDiscardableBitmap', 'CreateCompatibleBitmap', 'GetBitmapDimensionEx', 'SetBitmapDimensionEx', 'GetBitmapBits', 'SetBitmapBits', 'CreateBitmapIndirect', 'CreateFontW', 'CreateFontIndirectW', 'CreateBrushIndirect', 'CreatePenIndirect', 'UnrealizeObject', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateHatchBrush', 'CreateSolidBrush', 'ExtCreatePen', 'GetDeviceCaps', 'PlayMetaFile', 'EnumMetaFile', 'GetObjectType', 'PlayMetaFileRecord', 'ExtSelectClipRgn', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'DeleteObject', 'PolyBezierTo', 'SetColorAdjustment', 'PolylineTo', 'PolyDraw', 'SetArcDirection', 'ArcTo', 'GetCurrentPositionEx', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'LineTo', 'MoveToEx', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SelectPalette', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'CreateMetaFileW', 'CloseMetaFile', 'CreateEnhMetaFileW', 'CloseEnhMetaFile', 'ExtTextOutW', 'GetDCOrgEx', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'BeginDeferWindowPos', 'DeferWindowPos', 'EqualRect', 'ScreenToClient', 'AdjustWindowRectEx', 'SetFocus', 'GetFocus', 'DispatchMessageW', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'LoadIconW', 'AppendMenuW', 'GetClassInfoW', 'GetClassInfoExW', 'CreateWindowExW', 'RegisterWindowMessageW', 'SetMenuItemBitmaps', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'DragDetect', 'GetMenu', 'SetMenu', 'DrawMenuBar', 'GetSystemMenu', 'HiliteMenuItem', 'IsZoomed', 'ArrangeIconicWindows', 'SetWindowRgn', 'GetWindowRgn', 'BringWindowToTop', 'ClientToScreen', 'BeginPaint', 'EndPaint', 'GetDC', 'GetWindowDC', 'ReleaseDC', 'UpdateWindow', 'GetUpdateRect', 'GetUpdateRgn', 'InvalidateRect', 'InvalidateRgn', 'ValidateRect', 'ValidateRgn', 'IsWindowVisible', 'ShowOwnedPopups', 'GetDCEx', 'LockWindowUpdate', 'RedrawWindow', 'EnableScrollBar', 'DrawAnimatedRects', 'DrawCaption', 'SetTimer', 'KillTimer', 'SetCapture', 'DlgDirListW', 'DlgDirListComboBoxW', 'DlgDirSelectExW', 'DlgDirSelectComboBoxExW', 'GetNextDlgGroupItem', 'GetNextDlgTabItem', 'ShowScrollBar', 'ChildWindowFromPoint', 'ChildWindowFromPointEx', 'FindWindowW', 'FindWindowExW', 'SetParent', 'WindowFromPoint', 'FlashWindow', 'ChangeClipboardChain', 'SetClipboardViewer', 'OpenClipboard', 'GetOpenClipboardWindow', 'GetClipboardOwner', 'GetClipboardViewer', 'CreateCaret', 'GetCaretPos', 'SetCaretPos', 'HideCaret', 'ShowCaret', 'SetForegroundWindow', 'SendNotifyMessageW', 'SetWindowContextHelpId', 'GetWindowContextHelpId', 'PostThreadMessageW', 'LoadCursorW', 'CloseWindow', 'OpenIcon', 'CheckDlgButton', 'GetCapture', 'GetDlgItemInt', 'GetDlgItemTextW', 'CopyRect', 'SetDlgItemTextW', 'IsDlgButtonChecked', 'ScrollWindowEx', 'SetWindowTextW', 'MoveWindow', 'ShowWindow', 'GetAsyncKeyState', 'WindowFromDC', 'ExcludeUpdateRgn', 'FrameRect', 'InvertRect', 'DrawIcon', 'DrawStateW', 'DrawEdge', 'DrawFocusRect', 'DrawTextW', 'DrawTextExW', 'GetTabbedTextExtentW', 'GrayStringW', 'ScrollDC', 'CreateMenu', 'IsMenu', 'DeleteMenu', 'CheckMenuItem', 'EnableMenuItem', 'SetMenuDefaultItem', 'GetMenuDefaultItem', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'GetMenuStringW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'GetSubMenu', 'InsertMenuW', 'InsertMenuItemW', 'ModifyMenuW', 'RemoveMenu', 'LoadMenuW', 'LoadMenuIndirectW', 'SetMenuContextHelpId', 'GetMenuContextHelpId', 'CheckMenuRadioItem', 'GetCursorPos', 'SetRectEmpty', 'SetCursor', 'ReleaseCapture', 'GetMessageW', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'DestroyMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'UnregisterClassW', 'TranslateMessage', 'GetDialogBaseUnits', 'GetClipboardFormatNameA', 'GetClipboardFormatNameW', 'SystemParametersInfoW', 'GetKeyNameTextW', 'MapVirtualKeyW', 'CharUpperW', 'DestroyIcon', 'IsRectEmpty', 'PtInRect', 'SetRect', 'InflateRect', 'UnionRect', 'SubtractRect', 'DispatchMessageA', 'GetMessageA', 'IsWindowUnicode', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'UnregisterClassA', 'WinHelpW', 'TrackPopupMenuEx', 'SetWindowPlacement', 'GetWindowTextLengthW', 'GetSysColorBrush', 'GetActiveWindow', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'GetScrollRange', 'SetScrollRange', 'GetWindowTextW', 'GetKeyState', 'GetWindowRect', 'TrackPopupMenu', 'FillRect', 'PostMessageW', 'DialogBoxIndirectParamW', 'GetClientRect', 'GetForegroundWindow', 'IsDialogMessageW', 'CreateDialogIndirectParamW', 'DrawFrameControl', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'SetDlgItemInt', 'GetWindow', 'GetDlgCtrlID', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'CallWindowProcW', 'RemovePropW', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'SetWindowLongW', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'EndDialog', 'GetDesktopWindow', 'SetActiveWindow', 'GetSystemMetrics', 'DestroyWindow', 'GetDlgItem', 'UnhookWindowsHookEx', 'MessageBoxW', 'GetWindowLongW', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'GetWindowThreadProcessId', 'TabbedTextOutW', 'SendMessageW', 'IsWindow', 'MapDialogRect', 'PeekMessageW', 'PostQuitMessage', 'CheckRadioButton', 'CreatePopupMenu', 'RegisterClassW', 'CoRevokeClassObject', 'CoUnmarshalInterface', 'CreateStreamOnHGlobal', 'CoMarshalInterface', 'CoReleaseMarshalData', 'OleRun', 'CLSIDFromProgID', 'CLSIDFromString', 'StringFromGUID2', 'CoCreateInstance', 'CoDisconnectObject', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleSetContainedObject', 'OleInitialize', 'OleUninitialize', 'CreateBindCtx', 'OleDuplicateData', 'CoRegisterClassObject', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCopy', 'VarBstrFromCy', 'VarCyFromStr', 'SysReAllocStringLen', 'VariantCopy', 'SafeArrayCreate', 'SafeArrayRedim', 'SafeArrayGetLBound', 'VarBstrFromDec', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SysStringByteLen', 'SysAllocStringByteLen', 'SysStringLen', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'LoadTypeLib', 'DosDateTimeToVariantTime', 'VariantTimeToSystemTime', 'VarUdateFromDate', 'VarDateFromUdate', 'SystemTimeToVariantTime', 'SysFreeString', 'VarDecFromStr', 'VarDateFromStr', 'SafeArrayGetUBound', 'SysAllocString', 'VarBstrFromDate', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'LresultFromObject', 'GetFileTitleW', 'DragFinish', 'DragQueryFileW', 'SHGetFileInfoW', 'ExtractIconW', 'DragAcceptFiles', 'PathStripToRootW', 'PathIsUNCW', 'PathRemoveExtensionW', 'PathFindExtensionW', 'PathFindFileNameW', 'OpenThreadToken', 'RevertToSelf', 'SetThreadToken', 'GetFileSecurityW', 'SetFileSecurityW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegEnumKeyW', 'RegQueryValueW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegOpenKeyW', 'RegSetValueW', 'RegCloseKey'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'SetFilePointer', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'InterlockedPushEntrySList', 'VirtualAlloc', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['GetModuleHandleA', 'TranslateMessage', 'GetUserNameA', 'InitCommonControls'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetProcessId', 'lstrcmpA', 'GetLastError', 'lstrlenA', 'lstrcatA', 'GetACP', 'GetVersion', 'GetCurrentThread', 'CheckRadioButton', 'GetWindowThreadProcessId', 'GetGUIThreadInfo', 'GetCursorPos', 'CheckMenuItem', 'GetCursorInfo', 'CheckMenuRadioItem', 'GetActiveWindow', 'vSetDdrawflag', 'DrawStatusTextA', 'CreateStdAccessibleObject'], ['EnumPwrSchemes', 'CM_Get_First_Log_Conf', 'SetupDiGetClassInstallParamsA', 'HGLOBAL_UserFree', 'DrawFrameControl', 'GetWindowTextA', 'TabbedTextOutA', 'RpcBindingFromStringBindingA', 'NdrSimpleTypeUnmarshall', 'SHGetFolderLocation', 'GetModuleFileNameW', 'SetConsoleDisplayMode', 'ConvertFiberToThread', 'GetBinaryTypeW', 'lstrlenW', 'SetLocaleInfoW', 'WriteConsoleOutputAttribute', 'ReadConsoleOutputW', 'GetModuleHandleW', 'VarUI2FromStr', 'NotifyRouteChange', 'RegOpenKeyA', 'SaferCreateLevel', 'GetServiceKeyNameA', 'GetNumberOfEventLogRecords', 'CombineRgn', 'RemoveFontResourceExW', 'SHDeleteValueA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenIcon', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWindowUpdate', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'GetProcAddress', 'NtFlushInstructionCache', 'FileProtocolHandlerA'], ['GetModuleHandleW', 'CreateWindowExW', 'RegisterEventSourceA', 'InitMUILanguage', '_CorExeMain', 'SHChangeNotifyRegister'], ['SetStdHandle', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'WriteConsoleW', 'SetFilePointerEx', 'ReadFile', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'GetACP', 'GetCommandLineW', 'GetCommandLineA', 'ReadConsoleW', 'CreateFileW', 'HeapSize', 'LocalFree', 'FreeConsole', 'HeapFree', 'SetConsoleCursorPosition', 'WinExec', 'FreeLibrary', 'GetProcessHeap', 'ExitProcess', 'GetProcAddress', 'FillConsoleOutputAttribute', 'HeapAlloc', 'CreateThread', 'CloseHandle', 'LoadLibraryA', 'TerminateThread', 'CreateFileA', 'GetLastError', 'Sleep', 'GetModuleHandleA', 'GetCurrentThreadId', 'LocalAlloc', 'SetFilePointer', 'DeviceIoControl', 'GetStdHandle', 'WriteFile', 'FillConsoleOutputCharacterA', 'GetCurrentProcess', 'SetConsoleTitleA', 'SetConsoleTextAttribute', 'GetConsoleScreenBufferInfo', 'GetModuleFileNameA', 'GetModuleHandleExW', 'HeapReAlloc', 'LoadLibraryExW', 'RaiseException', 'RtlUnwind', 'InitializeSListHead', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'SetEndOfFile', 'SetCursorPos', 'ReleaseDC', 'EnableWindow', 'SetWindowsHookExW', 'FindWindowA', 'GetMessageA', 'DispatchMessageA', 'LoadCursorA', 'DrawIcon', 'GetCursorInfo', 'GetForegroundWindow', 'MoveWindow', 'DefWindowProcA', 'CreateWindowExA', 'TranslateMessage', 'LoadIconA', 'PostQuitMessage', 'GetDesktopWindow', 'RegisterClassExA', 'GetCursorPos', 'BeginPaint', 'EndPaint', 'GetWindowRect', 'GetDC', 'SendMessageTimeoutA', 'MessageBoxW', 'EnumChildWindows', 'CallNextHookEx', 'GetSystemMetrics', 'SetWindowTextW', 'ShowWindow', 'RedrawWindow', 'MessageBoxA', 'UnhookWindowsHookEx', 'Pie', 'CreateFontA', 'SetPixel', 'PatBlt', 'StretchBlt', 'PlgBlt', 'PolyBezier', 'CreatePolygonRgn', 'CreatePatternBrush', 'CreateRectRgn', 'SetTextColor', 'TextOutA', 'SetBkMode', 'CreatePen', 'Rectangle', 'SelectClipRgn', 'Polygon', 'SetBkColor', 'Ellipse', 'CreateSolidBrush', 'CreateEllipticRgn', 'BitBlt', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'CreateCompatibleBitmap', 'OpenProcessToken', 'CryptAcquireContextA', 'CryptGenRandom', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'SHDeleteKeyA', 'AlphaBlend', 'waveOutOpen', 'waveOutReset', 'waveOutUnprepareHeader', 'waveOutWrite', 'waveOutPrepareHeader'], ['InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyExA', 'RegFlushKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'CloseHandle', 'CompareStringA', 'CopyFileA', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'EnumCalendarInfoA', 'ExitProcess', 'FatalAppExitA', 'FileTimeToDosDateTime', 'FileTimeToLocalFileTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FindResourceA', 'FormatMessageA', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentDirectoryA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDateFormatA', 'GetDiskFreeSpaceA', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GetFileAttributesA', 'GetFileSize', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetOEMCP', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeExA', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetThreadLocale', 'GetTickCount', 'GetVersion', 'GetVersionExA', 'GlobalAddAtomA', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalFree', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalUnlock', 'HeapAlloc', 'HeapFree', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDBCSLeadByte', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OpenFileMappingA', 'OpenProcess', 'Process32First', 'Process32Next', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'ResetEvent', 'RtlUnwind', 'SearchPathA', 'SetConsoleCtrlHandler', 'SetEndOfFile', 'SetErrorMode', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetThreadLocale', 'SizeofResource', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcpyA', 'lstrcpynA', 'lstrlenA', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_Draw', 'ImageList_DrawEx', 'ImageList_EndDrag', 'ImageList_GetBkColor', 'ImageList_GetDragImage', 'ImageList_GetIconSize', 'ImageList_GetImageCount', 'ImageList_Read', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetBkColor', 'ImageList_SetDragCursorImage', 'ImageList_SetIconSize', 'ImageList_Write', 'BitBlt', 'CreateBitmap', 'CreateBrushIndirect', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateDIBSection', 'CreateDIBitmap', 'CreateFontIndirectA', 'CreateHalftonePalette', 'CreatePalette', 'CreatePenIndirect', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'ExcludeClipRect', 'GetBitmapBits', 'GetBrushOrgEx', 'GetClipBox', 'GetCurrentPositionEx', 'GetDCOrgEx', 'GetDIBColorTable', 'GetDIBits', 'GetDeviceCaps', 'GetObjectA', 'GetPaletteEntries', 'GetPixel', 'GetStockObject', 'GetSystemPaletteEntries', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'GetWindowOrgEx', 'IntersectClipRect', 'LineTo', 'MaskBlt', 'MoveToEx', 'PatBlt', 'Polyline', 'RealizePalette', 'RectVisible', 'Rectangle', 'RestoreDC', 'SaveDC', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetBrushOrgEx', 'SetDIBColorTable', 'SetPixel', 'SetROP2', 'SetStretchBltMode', 'SetTextColor', 'SetViewportOrgEx', 'SetWindowOrgEx', 'StretchBlt', 'UnrealizeObject', 'ShellExecuteA', 'ActivateKeyboardLayout', 'AdjustWindowRectEx', 'BeginPaint', 'CallNextHookEx', 'CallWindowProcA', 'CharLowerA', 'CharLowerBuffA', 'CharNextA', 'CharToOemA', 'CharToOemBuffA', 'CharUpperBuffA', 'CheckMenuItem', 'ClientToScreen', 'CreateIcon', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExA', 'DefFrameProcA', 'DefMDIChildProcA', 'DefWindowProcA', 'DeleteMenu', 'DestroyCursor', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DispatchMessageA', 'DrawEdge', 'DrawFrameControl', 'DrawIcon', 'DrawIconEx', 'DrawMenuBar', 'DrawTextA', 'EnableMenuItem', 'EnableScrollBar', 'EnableWindow', 'EndPaint', 'EnumThreadWindows', 'EnumWindows', 'EqualRect', 'FillRect', 'FindWindowA', 'FrameRect', 'GetActiveWindow', 'GetCapture', 'GetClassInfoA', 'GetClassNameA', 'GetClientRect', 'GetCursor', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetFocus', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardLayout', 'GetKeyboardLayoutList', 'GetKeyboardState', 'GetKeyboardType', 'GetLastActivePopup', 'GetMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoA', 'GetMenuState', 'GetMenuStringA', 'GetParent', 'GetPropA', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetWindow', 'GetWindowDC', 'GetWindowLongA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowThreadProcessId', 'InflateRect', 'InsertMenuA', 'InsertMenuItemA', 'IntersectRect', 'InvalidateRect', 'IsChild', 'IsDialogMessageA', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'IsZoomed', 'KillTimer', 'LoadBitmapA', 'LoadCursorA', 'LoadIconA', 'LoadKeyboardLayoutA', 'LoadStringA', 'MapVirtualKeyA', 'MapWindowPoints', 'MessageBoxA', 'OemToCharA', 'OemToCharBuffA', 'OffsetRect', 'PeekMessageA', 'PostMessageA', 'PostQuitMessage', 'PtInRect', 'RedrawWindow', 'RegisterClassA', 'RegisterClipboardFormatA', 'RegisterWindowMessageA', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropA', 'ScreenToClient', 'ScrollWindow', 'SendMessageA', 'SetActiveWindow', 'SetCapture', 'SetClassLongA', 'SetCursor', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemInfoA', 'SetPropA', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongA', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextA', 'SetWindowsHookExA', 'ShowCursor', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'TrackPopupMenu', 'TranslateMDISysAccel', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassA', 'UpdateWindow', 'WaitMessage', 'WinHelpA', 'WindowFromPoint', 'wsprintfA', 'GetSysColor', 'CoCreateInstance', 'CoGetMalloc', 'CoInitialize', 'CoUninitialize', 'GetErrorInfo', 'SafeArrayAccessData', 'SafeArrayCreate', 'SafeArrayGetElement', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayRedim', 'SafeArrayUnaccessData', 'SysAllocStringLen', 'SysFreeString', 'SysReAllocStringLen', 'SysStringLen', 'VarBoolFromStr', 'VarBstrFromBool', 'VarBstrFromCy', 'VarBstrFromDate', 'VarCyFromStr', 'VarDateFromStr', 'VarI4FromStr', 'VarNeg', 'VarNot', 'VarR8FromStr', 'VariantChangeTypeEx', 'VariantClear', 'VariantCopy', 'VariantCopyInd', 'VariantInit'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegEnumKeyA', 'ImageList_Add', 'Pie', 'memcpy', 'NetWkstaGetInfo', 'NtUnmapViewOfSection', 'OleDraw', 'LresultFromObject', 'VariantInit', 'Shell_NotifyIconW', 'GetDC', 'VerQueryValueW', 'WinHttpOpen', 'sndPlaySoundW', 'ClosePrinter'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'RemoveDirectoryW', 'SetFileTime', 'CloseHandle', 'DeviceIoControl', 'GetCurrentProcess', 'CreateHardLinkW', 'GetLongPathNameW', 'GetShortPathNameW', 'MoveFileW', 'GetStdHandle', 'FlushFileBuffers', 'GetFileType', 'ReadFile', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'GetFileAttributesW', 'SetFileAttributesW', 'GetCurrentProcessId', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'Sleep', 'ExitProcess', 'GetSystemDirectoryW', 'LoadLibraryW', 'SetThreadExecutionState', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'CreateThread', 'SetThreadPriority', 'GetProcessAffinityMask', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCPInfo', 'IsDBCSLeadByte', 'GlobalAlloc', 'SetCurrentDirectoryW', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GetDateFormatW', 'GetTimeFormatW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'CreateFileMappingW', 'OpenFileMappingW', 'MapViewOfFile', 'UnmapViewOfFile', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'DecodePointer', 'GetConsoleMode', 'GetConsoleOutputCP', 'HeapSize', 'SetFilePointerEx', 'GetStringTypeW', 'SetStdHandle', 'GetProcessHeap', 'LCMapStringW', 'FreeEnvironmentStringsW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'SysAllocString', 'SysFreeString', 'VariantClear', 'GdipAlloc', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['CloseHandle', 'CreateFileW', 'DeleteFileW', 'ExitProcess', 'GetComputerNameW', 'GetCurrentDirectoryW', 'GetFileSize', 'GetModuleFileNameW', 'GetTempPathW', 'GetVersionExW', 'ReadFile', 'WriteFile', 'lstrlenW', 'lstrcmpW', 'SleepEx', 'VirtualAlloc', 'HttpOpenRequestW', 'HttpSendRequestW', 'InternetOpenW', 'InternetConnectW', 'InternetCloseHandle', 'InternetReadFile', 'ShellExecuteW', 'RtlDecompressBuffer', 'swprintf'], ['GetModuleHandleA', 'GetCursor', 'RegisterEventSourceW', '_CorExeMain', 'DrawStatusTextW', 'SHGetDiskFreeSpaceA'], ['DragFinish', '_CorExeMain', 'RegisterEventSourceW', 'ReleaseDC', 'GetModuleHandleA'], ['LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileAttributesA', 'GetFileTime', 'HeapFree', 'RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'FileTimeToLocalFileTime', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'GetACP', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'SetErrorMode', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GlobalFlags', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'GetModuleFileNameW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'lstrcmpA', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'GetFileType', 'InterlockedExchange', 'GetSysColorBrush', 'LoadCursorA', 'DeleteMenu', 'SetCapture', 'WindowFromPoint', 'ReleaseCapture', 'WaitMessage', 'DestroyIcon', 'GetDialogBaseUnits', 'UnregisterClassA', 'TranslateAcceleratorA', 'SetMenu', 'BringWindowToTop', 'SetRectEmpty', 'CreatePopupMenu', 'InsertMenuItemA', 'InvalidateRect', 'LoadAcceleratorsA', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'SetParent', 'UnionRect', 'SetRect', 'SetTimer', 'KillTimer', 'GetDCEx', 'LockWindowUpdate', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'ScrollWindowEx', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'EndPaint', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'ShowScrollBar', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'LoadIconA', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'TrackPopupMenu', 'FillRect', 'ShowWindow', 'CreateWindowExW', 'SendMessageA', 'AppendMenuA', 'GetSystemMenu', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'DdeInitializeA', 'DdeCreateStringHandleA', 'DdeFreeStringHandle', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeNameService', 'DdeFreeDataHandle', 'DdeUnaccessData', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageA', 'PostQuitMessage', 'GetMenuState', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'DdeClientTransaction', 'DdeAccessData', 'SetForegroundWindow', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'OffsetViewportOrgEx', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'CreateCompatibleBitmap', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetBkColor', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'CreateRectRgn', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectType', 'GetDeviceCaps', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'ExtTextOutA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'SelectClipPath', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ExtractIconA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetLastError', 'GetSystemDefaultLangID', 'GetEnvironmentStringsW', 'GetCurrentThreadId', 'GetCurrentProcessorNumber', 'GetCurrentThread', 'GetOEMCP', 'GetCurrentProcess', 'GetCommandLineW', 'GetUserDefaultLangID', 'SetFileApisToOEM', 'AreFileApisANSI', 'GetLargePageMinimum', 'IsSystemResumeAutomatic', 'UnregisterApplicationRestart', 'SwitchToThread', 'GetThreadLocale', 'GetUserDefaultUILanguage', 'GetCommandLineA', 'TlsAlloc', 'RaiseException', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'DecodePointer', 'MultiByteToWideChar', 'LoadResource', 'SizeofResource', 'GetTickCount', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryExW', 'GetModuleFileNameW', 'lstrcmpiW', 'FreeLibrary', 'WriteConsoleW', 'CreateFileW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'GetProcessHeap', 'GetThreadErrorMode', 'CloseHandle', 'ReadFile', 'FindClose', 'GetTickCount64', 'FindResourceW', 'LoadLibraryA', 'SetFilePointerEx', 'RtlUnwind', 'GetFileSizeEx', 'HeapReAlloc', 'HeapSize', 'GetFileType', 'GetStdHandle', 'HeapAlloc', 'HeapFree', 'GetModuleHandleExW', 'ExitProcess', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'InterlockedFlushSList', 'RtlPcToFileHeader', 'RtlUnwindEx', 'OutputDebugStringW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'GetProcessWindowStation', 'GetMessageExtraInfo', 'GetForegroundWindow', 'GetCapture', 'IsWow64Message', 'GetDialogBaseUnits', 'GetKBCodePage', 'CountClipboardFormats', 'GetCursor', 'GetMenuCheckMarkDimensions', 'GetShellWindow', 'InSendMessage', 'CreateMenu', 'CharNextW', 'GetFocus', 'CloseClipboard', 'IsProcessDPIAware', 'DestroyCaret', 'SetProcessDPIAware', 'GetActiveWindow', 'GdiFlush', 'RegQueryInfoKeyW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'CoCreateInstance', 'CoTaskMemRealloc', 'CoTaskMemAlloc', 'CoUninitialize', 'CoTaskMemFree', 'VarUI4FromStr'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'free'], ['DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FormatMessageA', 'FormatMessageW', 'GetComputerNameW', 'GetCurrentThreadId', 'GetLastError', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetProcessHeap', 'GetStartupInfoA', 'GetThreadLocale', 'GetVersionExA', 'GetVersionExW', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'InterlockedExchange', 'InterlockedIncrement', 'CreateProcessW', 'LocalAlloc', 'LocalFree', 'MoveFileExW', 'MultiByteToWideChar', 'OutputDebugStringW', 'RaiseException', 'ReleaseMutex', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetLastError', 'SetThreadExecutionState', 'SetThreadLocale', 'Sleep', 'WaitForMultipleObjects', 'WideCharToMultiByte', 'WriteFile', 'lstrcmpW', 'lstrcpyA', 'lstrlenA', 'GetProcAddress', 'LoadLibraryW', 'VirtualAllocEx', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'LeaveCriticalSection', 'CloseHandle', 'CharLowerA', 'CharLowerBuffA', 'CharToOemBuffA', 'ClientToScreen', 'CopyRect', 'CreateDialogIndirectParamA', 'CreateDialogParamA', 'CreatePopupMenu', 'CreateWindowExA', 'CreateWindowStationA', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DefDlgProcA', 'DefFrameProcA', 'DefWindowProcA', 'DefWindowProcW', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawIconEx', 'DrawStateW', 'DrawTextA', 'DrawTextExW', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndMenu', 'EndPaint', 'EnumChildWindows', 'EnumDesktopsA', 'EnumDesktopsW', 'EnumDisplayDevicesA', 'ChangeMenuW', 'EnumDisplaySettingsA', 'EnumPropsExA', 'EnumPropsW', 'EnumThreadWindows', 'EnumWindows', 'ExitWindowsEx', 'FindWindowA', 'GetClassLongA', 'GetClassNameA', 'GetClientRect', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextA', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyboardLayoutNameW', 'GetMenuItemInfoA', 'GetMessageA', 'GetMessageTime', 'GetMonitorInfoA', 'GetNextDlgTabItem', 'GetSysColor', 'GetSystemMetrics', 'GetWindowInfo', 'GetWindowLongA', 'GetWindowRect', 'GetWindowTextA', 'GetWindowThreadProcessId', 'InternalGetWindowText', 'InvalidateRect', 'IsCharUpperW', 'IsWindow', 'KillTimer', 'LoadBitmapA', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'LoadMenuW', 'MessageBoxA', 'MonitorFromPoint', 'OffsetRect', 'PeekMessageA', 'PostMessageA', 'PostQuitMessage', 'PtInRect', 'RegisterClassA', 'RegisterClassExA', 'RegisterHotKey', 'RegisterWindowMessageA', 'ReleaseDC', 'RemovePropW', 'ScreenToClient', 'SendMessageA', 'SendMessageTimeoutW', 'SetClassLongW', 'SetClassWord', 'SetCursorPos', 'SetDlgItemInt', 'SetDlgItemTextA', 'SetFocus', 'SetForegroundWindow', 'SetMenuItemInfoW', 'SetRect', 'SetSystemCursor', 'SetTimer', 'SetWindowLongA', 'SetWindowPos', 'SetWindowTextA', 'SetWindowsHookExA', 'ShowWindow', 'SystemParametersInfoA', 'TabbedTextOutA', 'TileChildWindows', 'TrackPopupMenuEx', 'TranslateAcceleratorA', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassA', 'UnregisterHotKey', 'UpdateWindow', 'ValidateRect', 'ValidateRgn', 'WaitForInputIdle', 'wsprintfA', 'LoadIconW', 'ChangeDisplaySettingsExA', 'BeginPaint', 'AttachThreadInput', 'AppendMenuA', 'EnumDisplayMonitors', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegCloseKey'], ['e', 'ee', 'ind', 'nfo', 'GetOEMCP', 'apAlloc', 'apDestroy', 'HeapCreate', 'e', 'ee', 'ind', 'nfo', 'GetOEMCP', 'apAlloc'], ['OpenProcess', 'Sleep', 'GetFileAttributesA', 'FreeConsole', 'VirtualProtectEx', 'GetCurrentProcessId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'WriteConsoleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'CreateFileW', 'DecodePointer'], ['CryptImportKey', 'CryptGetHashParam', 'CryptDeriveKey', 'CryptDecrypt', 'CryptCreateHash', 'CryptHashData', 'CryptVerifySignatureA', 'CryptDestroyHash', 'RegEnumValueA', 'RegDeleteValueA', 'GetUserNameA', 'RegDeleteKeyA', 'CryptReleaseContext', 'CryptDestroyKey', 'CryptEncrypt', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'CryptAcquireContextA', 'DirectInput8Create', 'DirectSoundCreate', 'DirectSoundEnumerateA', 'TextOutA', 'GetTextExtentPoint32A', 'GetTextExtentPointA', 'SelectObject', 'CreateFontA', 'SetBkMode', 'SetTextColor', 'SetTextAlign', 'GetTextExtentExPointA', 'CreateFontIndirectA', 'GetStockObject', 'SetBkColor', 'SetPixelFormat', 'DeleteObject', 'DeleteDC', 'CreateDIBSection', 'SwapBuffers', 'BitBlt', 'CreateCompatibleDC', 'ChoosePixelFormat', 'gluOrtho2D', 'gluPerspective', 'ImmGetDefaultIMEWnd', 'ImmReleaseContext', 'ImmGetCompositionStringA', 'ImmGetCompositionWindow', 'ImmSetCompositionWindow', 'ImmGetProperty', 'ImmSetOpenStatus', 'ImmGetConversionStatus', 'ImmSetConversionStatus', 'ImmGetContext', 'ImmGetDescriptionA', 'ImmGetIMEFileNameA', 'ImmNotifyIME', 'ImmGetOpenStatus', 'HeapReAlloc', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'ExitProcess', 'GetVersion', 'FatalAppExitA', 'LCMapStringA', 'LCMapStringW', 'GetStartupInfoA', 'GetCPInfo', 'CompareStringA', 'CompareStringW', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'HeapSize', 'GetACP', 'GetCurrentThreadId', 'GetTickCount', 'Sleep', 'lstrlenA', 'CloseHandle', 'WriteFile', 'SetFilePointer', 'CreateFileA', 'DeleteFileA', 'ReadFile', 'GetLocalTime', 'GetSystemDirectoryA', 'lstrcmpiA', 'GetVersionExA', 'QueryPerformanceCounter', 'SetProcessAffinityMask', 'SetThreadPriority', 'SetPriorityClass', 'GetProcessAffinityMask', 'GetThreadPriority', 'GetPriorityClass', 'GetCurrentThread', 'GetCurrentProcess', 'QueryPerformanceFrequency', 'GetOEMCP', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GlobalMemoryStatus', 'GlobalUnlock', 'GlobalLock', 'GetCommandLineA', 'GetFileSize', 'GetLastError', 'GetPrivateProfileStringA', 'GetCurrentDirectoryA', 'CopyFileA', 'SetFileAttributesA', 'Process32Next', 'TerminateProcess', 'OpenProcess', 'Process32First', 'CreateToolhelp32Snapshot', 'WinExec', 'FindClose', 'FindFirstFileA', 'GetModuleFileNameA', 'IsBadReadPtr', 'GetModuleHandleA', 'GetNumberFormatA', 'HeapFree', 'RaiseException', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InterlockedExchange', 'InitializeCriticalSection', 'EnterCriticalSection', 'CreateFileMappingA', 'UnmapViewOfFile', 'MapViewOfFile', 'FindNextFileA', 'RemoveDirectoryA', 'GetFileAttributesA', 'CreateDirectoryA', 'GetThreadContext', 'lstrcpynA', 'GetCurrentProcessId', 'Module32First', 'Module32Next', 'SetUnhandledExceptionFilter', 'WaitForSingleObject', 'OpenEventA', 'lstrcatA', 'OpenMutexA', 'CreateThread', 'TerminateThread', 'CreateMutexA', 'ReleaseMutex', 'GetComputerNameA', 'lstrcmpA', 'CreateEventA', 'GetModuleFileNameW', 'VirtualProtect', 'OpenFileMappingA', 'LoadLibraryExA', 'GetTempFileNameA', 'GetTempPathA', 'GetProcessHeap', 'GetFileInformationByHandle', 'DuplicateHandle', 'CreatePipe', 'PeekNamedPipe', 'lstrcpyA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'FlushFileBuffers', 'GetStringTypeA', 'GetStringTypeW', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'SetEndOfFile', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'SetEvent', 'ResumeThread', 'ResetEvent', 'GetExitCodeProcess', 'WaitForMultipleObjects', 'CreateProcessA', 'OutputDebugStringA', 'glColor3f', 'glEnd', 'glVertex3fv', 'glTexCoord2f', 'glBegin', 'glColor3fv', 'glGetIntegerv', 'glGetString', 'glAlphaFunc', 'glFogf', 'glFogfv', 'glEnable', 'glDisable', 'glClearColor', 'glTexImage2D', 'glBindTexture', 'glVertex3f', 'glDepthMask', 'glPolygonMode', 'glFrontFace', 'glStencilFunc', 'glColorMask', 'glVertex2f', 'glDepthFunc', 'glStencilOp', 'glTexParameteri', 'glTexEnvf', 'glPixelStorei', 'glDeleteTextures', 'glIsTexture', 'glColor4ub', 'glLoadIdentity', 'glMatrixMode', 'glPopMatrix', 'glClear', 'glTranslatef', 'glRotatef', 'glPushMatrix', 'wglDeleteContext', 'wglMakeCurrent', 'wglCreateContext', 'glScalef', 'glGenTextures', 'glTexEnvi', 'glReadPixels', 'glGetFloatv', 'glBlendFunc', 'glViewport', 'glFogi', 'glFlush', 'glTexSubImage2D', 'glColor4f', 'ShellExecuteA', 'ShellExecuteExA', 'GetFocus', 'UnregisterHotKey', 'RegisterHotKey', 'GetAsyncKeyState', 'GetKeyboardLayout', 'GetKeyboardLayoutNameA', 'OpenClipboard', 'SendMessageA', 'wsprintfA', 'GetWindowRect', 'SetWindowPos', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetDesktopWindow', 'MessageBoxA', 'SetWindowLongA', 'CallWindowProcA', 'GetWindowLongA', 'GetCaretPos', 'GetWindowTextA', 'SetWindowTextA', 'ShowWindow', 'ReleaseDC', 'GetDC', 'CreateWindowExA', 'CloseClipboard', 'SetFocus', 'IsWindowVisible', 'GetScrollPos', 'SetScrollPos', 'SetTimer', 'FindWindowA', 'ShowCursor', 'SystemParametersInfoA', 'ReleaseCapture', 'SetCapture', 'DefWindowProcA', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DestroyWindow', 'RegisterClassA', 'LoadCursorA', 'LoadIconA', 'SetForegroundWindow', 'GetSystemMetrics', 'AdjustWindowRect', 'IsIconic', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'PeekMessageA', 'UpdateWindow', 'PostMessageA', 'GetClipboardData', 'EnumDisplaySettingsA', 'SetCursorPos', 'KillTimer', 'SetRect', 'OffsetRect', 'PtInRect', 'GetDoubleClickTime', 'ScreenToClient', 'GetCursorPos', 'GetActiveWindow', 'IntersectRect', 'ClientToScreen', 'wvsprintfA', 'ChangeDisplaySettingsA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'mmioAscend', 'mmioOpenA', 'mmioClose', 'timeGetTime', 'mmioDescend', 'mmioRead', 'timeGetDevCaps', 'timeBeginPeriod', 'mmioWrite', 'timeEndPeriod', 'gethostbyname', 'WSAAsyncSelect', 'setsockopt', 'socket', 'shutdown', 'recv', 'WSASend', 'WSAStartup', 'WSACleanup', 'send', 'WSAGetLastError', 'inet_addr', 'htons', 'connect', 'closesocket', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'wzAudioStop', 'wzAudioPlay', 'wzAudioGetStreamOffsetRange', 'wzAudioDestroy', 'wzAudioOption', 'wzAudioCreate'], ['GetVolumeInformationW', 'GetFullPathNameW', 'GetTickCount', 'HeapReAlloc', 'GetCommandLineA', 'RtlUnwind', 'RaiseException', 'HeapSize', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetCurrentProcess', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrlenA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'FormatMessageW', 'LocalFree', 'GetFileTime', 'GetFileSize', 'GetFileAttributesW', 'CreateFileW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'MulDiv', 'GetModuleHandleA', 'InterlockedDecrement', 'GlobalFindAtomW', 'CompareStringW', 'GetVersionExA', 'GetCurrentProcessId', 'GlobalAddAtomW', 'CloseHandle', 'GlobalUnlock', 'WritePrivateProfileStringW', 'FreeResource', 'GlobalFree', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GetModuleHandleW', 'CreateProcessW', 'GetCurrentDirectoryW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'ExitProcess', 'GetLastError', 'GetThreadLocale', 'lstrlenW', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'GetNativeSystemInfo', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'VirtualFree', 'VirtualAlloc', 'IsBadReadPtr', 'VirtualProtect', 'SetHandleCount', 'SetLastError', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'CopyAcceleratorTableW', 'CharNextW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'DestroyMenu', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'SetFocus', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowThreadProcessId', 'GetLastActivePopup', 'MessageBoxW', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'CharUpperW', 'GetSysColorBrush', 'MessageBeep', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'RemovePropW', 'IsRectEmpty', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetWindowLongW', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GetWindow', 'SetWindowContextHelpId', 'GetParent', 'MapDialogRect', 'SetWindowPos', 'PostQuitMessage', 'PostMessageW', 'EnableWindow', 'SendMessageW', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'AppendMenuW', 'GetSystemMenu', 'ShowWindow', 'LoadIconW', 'UnregisterClassA', 'PtVisible', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'GetWindowExtEx', 'GetViewportExtEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'GetBkColor', 'CreateBitmap', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'RectVisible', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegDeleteKeyW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegCloseKey', 'RegSetValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryValueExW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetFolderLocation', 'SHBrowseForFolderW', 'InitCommonControlsEx', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString'], ['ZwQueryInformationProcess', 'RtlNtStatusToDosError', 'ZwClose', 'NtQueryVirtualMemory', 'RtlUnwind', 'NtUnmapViewOfSection', 'memcpy', 'memset', 'StrChrA', 'StrRChrA', 'PathCombineW', 'GetModuleFileNameExA', 'EnumProcessModules', 'VirtualAlloc', 'MapViewOfFile', 'CreateFileA', 'LoadLibraryA', 'FreeLibrary', 'lstrcmpA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualProtect', 'CreateFileW', 'GetModuleFileNameA', 'lstrlenA', 'lstrcatA', 'LocalAlloc', 'LocalReAlloc', 'LocalFree', 'CloseHandle', 'CreateEventA', 'OpenEventA', 'GetModuleHandleA', 'CreateProcessW', 'GetComputerNameW', 'SwitchToThread', 'GetLastError', 'ResumeThread', 'Sleep', 'GetModuleHandleW', 'GetVersion', 'GetCurrentProcessId', 'GetProcAddress', 'lstrcpyA', 'VirtualFree', 'VirtualAllocEx', 'OpenProcess', 'GetCurrentProcess', 'CreateRemoteThread', 'ReadProcessMemory', 'WriteProcessMemory', 'WaitForSingleObject', 'GetFileSize', 'ReadFile', 'SetFilePointer', 'lstrcmpiA', 'CreateFileMappingW', 'wsprintfA', 'ShellExecuteA', 'SHGetFolderPathW'], ['GetCurrentDirectoryW', 'TlsFree', 'TlsSetValue', 'GetExitCodeThread', 'GetCurrentThreadId', 'TlsAlloc', 'SetThreadPriority', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'GetFileAttributesW', 'SetEndOfFile', 'SetFileAttributesW', 'DeleteFileW', 'RemoveDirectoryW', 'GetEnvironmentVariableW', 'GetVersionExA', 'GetComputerNameW', 'GetVersionExW', 'CreateEventW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetTimeZoneInformation', 'LocalFree', 'FormatMessageW', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'ExitThread', 'GetCurrentProcessId', 'GetCPInfo', 'UnhandledExceptionFilter', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'HeapSize', 'GetModuleHandleW', 'ExitProcess', 'GetModuleFileNameW', 'GetLocaleInfoW', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'SetHandleCount', 'GetFileType', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'SetConsoleCtrlHandler', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleW', 'FlushFileBuffers', 'CompareStringW', 'SetEnvironmentVariableA', 'GlobalMemoryStatus', 'FlushConsoleInputBuffer', 'LoadLibraryA', 'FileTimeToSystemTime', 'CreateFileW', 'SetFilePointer', 'GetProcessHeap', 'CreateMutexW', 'GetStartupInfoW', 'DuplicateHandle', 'GetStdHandle', 'GetConsoleWindow', 'CreateProcessW', 'WaitForSingleObject', 'TerminateProcess', 'OpenProcess', 'GetExitCodeProcess', 'ReadFile', 'GetLastError', 'WriteFile', 'CreatePipe', 'CloseHandle', 'FileTimeToLocalFileTime', 'GetDriveTypeA', 'FindFirstFileExA', 'GetFullPathNameA', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'GetFileInformationByHandle', 'ExpandEnvironmentStringsW', 'CreateThread', 'GetProcAddress', 'LoadLibraryW', 'FreeLibrary', 'WideCharToMultiByte', 'CreateFileA', 'SetConsoleMode', 'ReadConsoleInputA', 'SetFileAttributesA', 'EnterCriticalSection', 'MultiByteToWideChar', 'LeaveCriticalSection', 'Sleep', 'PeekNamedPipe', 'LCMapStringW', 'TryEnterCriticalSection', 'GetDriveTypeW', 'OemToCharBuffA', 'GetUserObjectInformationW', 'GetProcessWindowStation', 'GetDesktopWindow', 'MessageBoxW', 'GetAdaptersAddresses', 'GetAdaptersInfo', 'ObtainUserAgentString', 'WinHttpGetIEProxyConfigForCurrentUser', 'CryptSetHashParam', 'CryptReleaseContext', 'CryptGenRandom', 'CryptAcquireContextA', 'RegCloseKey', 'RegQueryValueExW', 'CryptDestroyKey', 'CryptGetUserKey', 'CryptGetProvParam', 'CryptEnumProvidersA', 'CryptDecrypt', 'CryptCreateHash', 'CryptSignHashA', 'CryptDestroyHash', 'CryptExportKey', 'RegisterEventSourceW', 'ReportEventW', 'DeregisterEventSource', 'RegOpenKeyExW', 'getsockopt', 'socket', 'ioctlsocket', 'getnameinfo', 'WSASetLastError', 'listen', 'bind', 'accept', 'getsockname', 'closesocket', 'setsockopt', 'inet_addr', 'getaddrinfo', 'freeaddrinfo', 'ntohl', 'htons', 'ntohs', 'WSAStartup', 'WSACleanup', 'select', 'recvfrom', 'sendto', 'recv', 'WSAGetLastError', 'getpeername', 'send', 'connect', 'shutdown', 'CertDuplicateCertificateContext', 'CertFindCertificateInStore', 'CertFreeCertificateContext', 'CertEnumCertificatesInStore', 'CertCloseStore', 'CertGetCertificateContextProperty', 'CertOpenStore'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PathToRegion', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExA', 'CreateStatusWindowA', 'SHChangeNotifyRegister', '_lock_file', '__stdio_common_vfprintf', '__setusermatherr', '_time64', 'accept', '_configthreadlocale', 'srand', '__current_exception_context', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', 'free', '_register_onexit_function'], ['GetProcAddress', 'GetModuleHandleA', 'MultiByteToWideChar', 'DeleteAtom', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoW', 'CreateFileA'], ['SetEndOfFile', 'SetFilePointerEx', 'WriteFile', 'CloseHandle', 'GetLastError', 'lstrcpynW', 'MoveFileW', 'WaitForSingleObject', 'CreateThread', 'GetNativeSystemInfo', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'CreateIoCompletionPort', 'GetQueuedCompletionStatus', 'PostQueuedCompletionStatus', 'CancelIo', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ReadFile', 'Sleep', 'ExitThread', 'CreateTimerQueue', 'CreateTimerQueueTimer', 'GlobalAlloc', 'GlobalFree', 'lstrcpyW', 'lstrcatW', 'DeleteTimerQueue', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'lstrcmpW', 'WaitForMultipleObjects', 'VirtualAlloc', 'FreeLibrary', 'GetFileSizeEx', 'CreateFileW', 'lstrlenA', 'lstrlenW', 'VirtualQuery', 'GetModuleHandleW', 'GetStartupInfoW', 'InitializeSListHead', 'DeleteCriticalSection', 'GetLogicalDriveStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RaiseException', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentThreadId', 'GetProcAddress', 'CryptAcquireContextA', 'CryptImportKey', 'CryptDecrypt', '??0_Lockit@std@@QAE@H@Z', '?_Xlength_error@std@@YAXPBD@Z', '??1_Lockit@std@@QAE@XZ', 'GetIpNetTable', 'NetShareEnum', 'NetApiBufferFree', 'StrStrIW', 'StrStrIA', 'WSASocketW', 'WSAIoctl', 'socket', 'WSACleanup', 'WSAStartup', 'gethostname', 'WSAGetLastError', 'WSAAddressToStringW', 'bind', 'closesocket', 'getsockopt', 'htons', 'inet_ntoa', 'setsockopt', 'shutdown', 'gethostbyname', 'memset', 'memmove', '__std_exception_destroy', '_CxxThrowException', '__CxxFrameHandler3', 'memcmp', '__std_type_info_destroy_list', '__current_exception', '__current_exception_context', '_except_handler4_common', '__vcrt_GetModuleFileNameW', '__vcrt_GetModuleHandleW', '__vcrt_LoadLibraryExW', '__std_exception_copy', 'memcpy', '__p___argv', '_cexit', '_c_exit', '_register_thread_local_exe_atexit_callback', '_configthreadlocale', '_set_new_mode', '__p__commode', 'strcpy_s', 'strcat_s', '__stdio_common_vsprintf_s', '_free_dbg', '_seh_filter_dll', '_initialize_onexit_table', '_register_onexit_function', '_execute_onexit_table', '_crt_atexit', '_crt_at_quick_exit', '_controlfp_s', 'terminate', '_wmakepath_s', '_wsplitpath_s', 'wcscpy_s', '_set_fmode', '_exit', 'exit', '_initterm_e', '_initterm', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '_set_app_type', '_seh_filter_exe', '_callnewh', '_CrtDbgReportW', '_CrtDbgReport', 'malloc', 'free', 'wcslen', '_invalid_parameter', '__p___argc'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'URLDownloadToFileW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'log', 'strncmp', '_endthreadex', 'strcspn', '_beginthreadex', 'qsort', 'memcmp', 'memcpy', 'memset', 'localtime', 'strrchr', 'memmove', 'strlen', 'rename', 'SetFileAttributesW', 'SetFileTime', 'FlushViewOfFile', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'UnlockFile', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'GetProcessHeap', 'HeapAlloc', 'ExitProcess', 'GetFileAttributesA', 'GetCPInfoExW', 'GetSystemTime', 'GetLongPathNameW', 'RtlUnwind', 'GetCPInfo', 'GetTempPathA', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'GetDllDirectoryW', 'HeapDestroy', 'SetDllDirectoryW', 'FileTimeToDosDateTime', 'ReadFile', 'GetDiskFreeSpaceA', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LockFileEx', 'HeapValidate', 'MapViewOfFile', 'CreateMutexW', 'LoadLibraryA', 'AreFileApisANSI', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'CreateFileA', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'DeleteFileA', 'RaiseException', 'GlobalAddAtomW', 'GetSystemTimeAsFileTime', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'OutputDebugStringW', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'HeapReAlloc', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'FlushFileBuffers', 'LoadResource', 'SuspendThread', 'GetTickCount', 'HeapCompact', 'GetFullPathNameA', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'GlobalLock', 'SetThreadPriority', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'UnlockFileEx', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'LockFile', 'UnmapViewOfFile', 'lstrlenW', 'CompareStringA', 'QueryPerformanceCounter', 'SetEndOfFile', 'WaitForSingleObjectEx', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'FormatMessageA', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'OutputDebugStringA', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'SHGetFolderPathW', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['CreateProcessA', 'CloseHandle', 'WriteConsoleW', 'SetFilePointerEx', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'GetCurrentThreadId', 'RaiseException', 'RtlUnwind', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'HeapFree', 'HeapAlloc', 'SetLastError', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'HeapReAlloc', 'LCMapStringW', 'OutputDebugStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'CreateFileW', 'MessageBoxA'], ['lstrlenA', 'lstrcmpiA', 'SetLastError', 'WaitForSingleObject', 'SleepEx', 'ReleaseMutex', 'InterlockedIncrement', 'InterlockedExchange', 'CreateMutexA', 'InterlockedDecrement', 'GetCurrentDirectoryA', 'GetSystemDirectoryA', 'GetWindowsDirectoryA', 'GetTempPathA', 'CreateFileA', 'FindClose', 'FindFirstFileA', 'GetTickCount', 'VirtualProtect', 'GetCurrentProcessId', 'SystemTimeToFileTime', 'GetSystemTime', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'SetEvent', 'CreateEventA', 'SetEnvironmentVariableW', 'GetEnvironmentVariableW', 'GetCurrentProcess', 'GetModuleHandleA', 'OpenProcess', 'GetVersionExA', 'IsBadStringPtrW', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'DeviceIoControl', 'GetModuleFileNameA', 'VirtualLock', 'ResumeThread', 'SetPriorityClass', 'GetCurrentThread', 'SetThreadPriority', 'CreateProcessA', 'GetStartupInfoA', 'WriteFile', 'WideCharToMultiByte', 'GetModuleFileNameW', 'IsBadWritePtr', 'IsBadReadPtr', 'Sleep', 'OpenMutexA', 'TerminateProcess', 'ResetEvent', 'lstrlenW', 'lstrcmpiW', 'HeapReAlloc', 'GetEnvironmentVariableA', 'TerminateThread', 'CreateThread', 'QueryPerformanceCounter', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'ExpandEnvironmentStringsW', 'GetFileAttributesW', 'MultiByteToWideChar', 'GetLastError', 'SetErrorMode', 'GetTempPathW', 'GetTempFileNameW', 'CreateFileMappingW', 'GetSystemInfo', 'LoadLibraryExA', 'LocalAlloc', 'GetVersion', 'VirtualAlloc', 'VirtualFree', 'OpenMutexW', 'CreateMutexW', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'GetFileSize', 'ControlService', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'OpenSCManagerA', 'CreateServiceW', 'OpenServiceW', 'QueryServiceStatus', 'StartServiceA', 'CloseServiceHandle', 'InitializeSecurityDescriptor', '_snprintf', 'mbstowcs', 'sprintf', '_snwprintf', 'strrchr', 'strncpy', '_splitpath', 'strcpy', 'memset', 'wcstombs', 'wcscat', 'wcschr', 'wcsrchr', '_local_unwind2', 'wcsncmp', 'wcsncat', 'wcsstr', 'strncat', 'memcmp', '_getpid', 'wcsncpy', '__dllonexit', '_onexit', '??1type_info@@UAE@XZ', '_exit', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp', '_CxxThrowException', 'wcscpy', 'strlen', '_stricmp', '_wcsicmp', '_wcsnicmp', '_strnicmp', 'swprintf', 'wcslen', 'memcpy', '_purecall', 'malloc', 'free', '__CxxFrameHandler', 'fseek', 'fread', '_get_osfhandle', 'memmove', 'calloc', '??2@YAPAXI@Z', 'fclose', '_wfopen', 'strstr', 'strcmp', 'strncmp', '??3@YAXPAX@Z', 'wcscmp', 'UnregisterClassW', 'SetPropA', 'CreateWindowExW', 'DestroyWindow'], ['GetModuleHandleA', 'wsprintfA', 'CryptGetHashParam', 'SHGetFolderPathAndSubDirA', 'StrStrA', 'accept', 'RtlRemoveVectoredExceptionHandler'], ['DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'memcpy', 'signal', 'vfprintf', 'DrawIcon', 'GetCursorPos', 'GetDesktopWindow', 'GetWindowDC', 'LoadIconA'], ['StrStrIW', 'GetModuleHandleW', 'VirtualFree', 'WriteFile', 'SizeofResource', 'ReadFile', 'CreateFileW', 'lstrlenW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'OpenThread', 'LockResource', 'lstrcmpiW', 'CreateToolhelp32Snapshot', 'GetCurrentProcess', 'CloseHandle', 'HeapAlloc', 'HeapCreate', 'OutputDebugStringW', 'ExitProcess', 'GetCommandLineW', 'MapViewOfFile', 'OpenProcess', 'LoadLibraryW', 'Sleep', 'GetModuleFileNameW', 'lstrcmpW', 'OpenMutexW', 'Process32FirstW', 'GetProcessId', 'IsWow64Process', 'CreateFileMappingW', 'Process32NextW', 'lstrcatW', 'DeleteFileW', 'lstrcpyW', 'CreateProcessW', 'LoadResource', 'FindResourceW', 'lstrlenA', 'SetFilePointer', 'GetFileSize', 'HeapFree', 'wsprintfW', 'RegSetValueExW', 'RegCloseKey', 'RegCreateKeyExW', 'SHGetFolderPathW'], ['FreeLibrary', 'MapViewOfFileEx', 'LoadLibraryA', 'SetFilePointerEx', 'CreateFileMappingA', 'OpenFileMappingA', 'GetTickCount', 'GetProcessHeap', 'DuplicateHandle', 'HeapAlloc', 'CreateEventA', 'GetCurrentProcess', 'HeapFree', 'WaitForSingleObject', 'SetEvent', 'Sleep', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'GetExitCodeProcess', 'CreateProcessA', 'TerminateProcess', 'GetModuleFileNameW', 'RaiseException', 'InterlockedExchange', 'GetStartupInfoA', 'GetStdHandle', 'FindFirstFileA', 'GetLogicalDriveStringsA', 'GetLastError', 'SetLastError', 'GetProcAddress', 'QueueUserAPC', 'EnterCriticalSection', 'FindClose', 'WriteConsoleA', 'InterlockedExchangeAdd', 'PostQueuedCompletionStatus', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'FindNextFileA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'DeleteCriticalSection', 'GetCurrentThreadId', 'OutputDebugStringA', 'GetVersionExA', 'TlsAlloc', 'CloseHandle', 'GetCurrentProcessId', 'CreateWaitableTimerA', 'LocalFree', 'TlsFree', 'DeleteFileA', 'SetFileTime', 'GetWindowsDirectoryA', 'GetDriveTypeA', 'GetSystemWindowsDirectoryA', 'GetFileAttributesA', 'SetFileAttributesA', 'GetTempPathA', 'InitializeCriticalSection', 'LocalAlloc', 'ReadFile', 'FlushFileBuffers', 'SetThreadPriority', 'GetThreadPriority', 'CreateThread', 'GetLogicalDrives', 'SystemTimeToFileTime', 'GetLocalTime', 'GetSystemTime', 'MultiByteToWideChar', 'UnmapViewOfFile', 'GetPrivateProfileStringW', 'WideCharToMultiByte', 'GetLocaleInfoW', 'SetEndOfFile', 'GetWindowsDirectoryW', 'LoadLibraryW', 'GetEnvironmentVariableW', 'GetFileSizeEx', 'WriteFile', 'GetSystemInfo', 'CreateFileA', 'FormatMessageA', 'FreeConsole', 'InitializeCriticalSectionAndSpinCount', 'TerminateThread', 'OpenProcess', 'TlsSetValue', 'SleepEx', 'InterlockedCompareExchange', 'QueryDosDeviceA', 'InterlockedDecrement', 'GetQueuedCompletionStatus', 'InterlockedIncrement', 'SetWaitableTimer', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'SetFilePointer', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'HeapSize', 'GetConsoleMode', 'GetCommandLineW', 'GetConsoleCP', 'ExitProcess', 'HeapReAlloc', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'GetModuleHandleW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetFileType', 'SetHandleCount', 'GetStringTypeW', 'RtlUnwind', 'GetCPInfo', 'GetCommandLineA', 'GetTimeZoneInformation', 'GetDateFormatA', 'GetTimeFormatA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'ExitThread', 'AreFileApisANSI', 'GetPrivateProfileStringA', 'GetFileAttributesExW', 'AllocConsole', 'TlsGetValue', 'GetSystemDefaultLCID', 'OpenEventA', 'ResetEvent', 'ResumeThread', 'GetUserDefaultLCID', 'GetStringTypeExA', 'LCMapStringA', 'LCMapStringW', 'QueryPerformanceCounter', 'CreateFileW', 'FindFirstFileW', 'FindNextFileW', 'GetFileAttributesW', 'RegSetValueExA', 'IsValidSid', 'GetUserNameW', 'RegEnumValueW', 'RegEnumKeyExW', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'IsTextUnicode', 'RegCloseKey', 'RegOpenKeyExA', 'RegCreateKeyExA', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'RegQueryValueExA', 'DnsFree', 'DnsQuery_A', 'GetAdaptersInfo', 'AcceptEx', 'GetAcceptExSockaddrs', 'CoInitialize', 'CoCreateInstance', 'SysAllocString', 'SysStringLen', 'SysFreeString', 'GetProcessImageFileNameA', 'CommandLineToArgvW', 'SHGetFolderPathW', 'wsprintfA', 'LoadStringA', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'InternetCrackUrlW', 'HttpQueryInfoA', 'HttpOpenRequestA', 'ntohl', 'inet_addr', 'htonl', 'getaddrinfo', 'WSARecv', 'WSAStartup', 'select', 'WSAGetLastError', 'htons', 'ntohs', 'getsockname', 'shutdown', 'setsockopt', 'WSACleanup', 'recv', 'bind', 'freeaddrinfo', '__WSAFDIsSet', 'WSASetLastError', 'closesocket', 'send', 'getsockopt', 'WSASocketA', 'listen', 'accept', 'inet_ntoa', 'connect', 'WSAStringToAddressA', 'ioctlsocket', 'getpeername', 'socket', 'sendto', 'recvfrom', 'WSAAccept', 'gethostname', 'WSASend', 'gethostbyname'], ['DeviceIoControl', 'CreateMutexW', 'ExitProcess', 'CreateProcessA', 'GetModuleHandleW', 'GetLogicalDriveStringsW', 'VirtualAlloc', 'WideCharToMultiByte', 'GetFileAttributesW', 'GetDriveTypeW', 'GetCurrentDirectoryW', 'GetStdHandle', 'Sleep', 'SetLastError', 'GetLastError', 'CloseHandle', 'CreateFileW', 'GetTickCount', 'GetProcessHeap', 'MultiByteToWideChar', 'GetStringTypeW', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LCMapStringW', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapFree', 'HeapAlloc', 'SetUnhandledExceptionFilter', 'RtlUnwindEx', 'TlsGetValue', 'TlsSetValue', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'IsProcessorFeaturePresent', 'GetCurrentProcess', 'TerminateProcess', 'GetModuleHandleExW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'wsprintfW', 'QueryServiceStatusEx', 'RegOpenKeyExW', 'RegCloseKey', 'StartServiceW', 'OpenServiceW', 'OpenSCManagerW', 'DeleteService', 'CreateServiceW', 'ControlService', 'CloseServiceHandle', 'NtCreateFile', 'NtQueryDirectoryObject', 'NtClose', 'NtQuerySystemInformation', 'RtlFreeHeap', 'RtlDosPathNameToNtPathName_U', 'RtlFreeUnicodeString', 'LdrFindResource_U', 'LdrAccessResource', 'NtFlushBuffersFile', 'NtOpenDirectoryObject', 'NtDeleteFile', 'RtlImageNtHeader', 'RtlGetVersion', 'RtlInitUnicodeString', 'RtlInitString', 'LdrLoadDll', 'LdrGetProcedureAddress', 'RtlAllocateHeap', 'NtWriteFile', 'NtFreeVirtualMemory', 'NtAllocateVirtualMemory'], ['GetModuleHandleA', 'EndPaint', 'RegisterEventSourceW', 'CreateStatusWindowA', 'SHGetDiskFreeSpaceExW'], ['GetModuleHandleA', 'GetProcAddress', 'ClosePrinter', 'ImageList_Add', 'ShellExecuteW', 'IsEqualGUID', 'VerQueryValueW', 'GetDC', 'VariantInit', 'NetWkstaGetInfo', 'RegLoadKeyW', 'Pie'], ['GetTickCount', 'CreateEventW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcAddress', 'LoadLibraryW', 'DeleteCriticalSection', 'DecodePointer', 'RaiseException', 'InitializeCriticalSectionEx', 'Sleep', 'GetLastError', 'FormatMessageW', 'ReadConsoleW', 'ReadFile', 'SetEndOfFile', 'WriteConsoleW', 'CreateFileW', 'SetFilePointerEx', 'GetStringTypeW', 'SetStdHandle', 'CloseHandle', 'GetConsoleMode', 'GetConsoleCP', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'InitializeCriticalSection', 'GetLocalTime', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'CreateDirectoryW', 'HeapFree', 'HeapAlloc', 'GetCurrentThread', 'OutputDebugStringA', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetStdHandle', 'GetFileType', 'GetACP', 'SetConsoleCtrlHandler', 'HeapSize', 'HeapReAlloc', 'FindClose', 'FindFirstFileExA', 'FindFirstFileExW', 'FindNextFileA', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'GetProcessHeap', 'FlushFileBuffers', 'WriteFile', 'GetTimeZoneInformation', 'UnregisterClassW', 'CertGetIntendedKeyUsage', 'CertFindChainInStore', 'CertCloseStore', 'CertDeleteCertificateFromStore', 'CertEnumCertificatesInStore', 'CertAddCertificateContextToStore', 'CertOpenStore', 'CertGetNameStringW', 'CertFindCertificateInStore', 'WinHttpSendRequest', 'WinHttpAddRequestHeaders', 'WinHttpReceiveResponse', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpQueryHeaders', 'WinHttpQueryDataAvailable', 'WinHttpOpen', 'WinHttpCloseHandle', 'WinHttpReadData', 'WinHttpSetOption', 'SHGetSpecialFolderPathW'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetProcessId', 'GetLastError', 'GetCurrentThread', 'GetVersion', 'lstrcmpA', 'GetCurrentThreadId', 'lstrlenA', 'OleUninitialize', 'OleInitialize', 'InitCommonControls', 'CreateStdAccessibleProxyA', 'Shell_NotifyIconW', 'AddPortExW'], ['GetModuleHandleA', '__getmainargs'], ['RaiseException', 'GetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'Sleep', 'LoadResource', 'SizeofResource', 'FindClose', 'CloseHandle', 'CreateMutexA', 'OpenMutexA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CreateProcessA', 'FindResourceW', 'FindResourceExW', 'GetTempPathA', 'CreateDirectoryA', 'RemoveDirectoryA', 'GetFullPathNameW', 'QueryDosDeviceW', 'SetFileAttributesA', 'DeleteFileA', 'FindFirstFileW', 'FindNextFileW', 'CopyFileA', 'GetPriorityClass', 'GetVersionExA', 'FindFirstVolumeW', 'TerminateProcess', 'FindVolumeClose', 'GetVolumePathNamesForVolumeNameW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'VirtualFree', 'GetVersionExW', 'GetThreadTimes', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'GetCurrentProcessId', 'OpenProcess', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'LockResource', 'HeapDestroy', 'InterlockedDecrement', 'FindNextVolumeW', 'DecodePointer', 'SetEndOfFile', 'CreateFileW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileAttributesExW', 'GetExitCodeProcess', 'WaitForSingleObject', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'GetACP', 'WriteFile', 'WriteConsoleW', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'VirtualQuery', 'FreeLibrary', 'DuplicateHandle', 'GetCurrentThread', 'GetExitCodeThread', 'TryEnterCriticalSection', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'GetCPInfo', 'EncodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'OutputDebugStringW', 'LocalFree', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'ReadFile', 'GetStdHandle', 'RegisterClassExA', 'CreateWindowExA', 'PostQuitMessage', 'DefWindowProcA', 'SendMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'RegisterWindowMessageA', 'wsprintfA', 'GetDC', 'ReleaseDC', 'ShowWindow', 'IsWindowVisible', 'GetCursorPos', 'GetSystemMetrics', 'TrackPopupMenu', 'GetDesktopWindow', 'LoadCursorA', 'LoadIconA', 'SetForegroundWindow', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'GetObjectA', 'SetKernelObjectSecurity', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'Shell_NotifyIconA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoSetProxyBlanket', 'CoInitializeEx', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeSecurity', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysAllocString', 'PathFindExtensionA', 'PathFindExtensionW', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipCreateBitmapFromHBITMAP', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipSaveImageToFile', 'GdipDisposeImage', 'GdipCreateBitmapFromScan0', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'InternetOpenA', 'InternetCloseHandle', 'HttpSendRequestA', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['MultiByteToWideChar', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'GetOEMCP', 'GetACP', 'LCMapStringA', 'HeapValidate', 'IsBadReadPtr', 'IsBadWritePtr', 'SetConsoleCtrlHandler', 'GetLastError', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetFilePointer', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'GetCPInfo', 'VirtualProtect', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'GetProcAddress', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'CloseHandle', 'GetDC', 'LoadImageA', 'SetWindowRgn', 'GetSystemMetrics', 'SetWindowPos', 'ValidateRect', 'GetCursorPos', 'PostMessageA', 'EndDialog', 'SendMessageA', 'PostQuitMessage', 'DefWindowProcA', 'CreateWindowExA', 'CreateDialogParamA', 'EnumWindows', 'LoadCursorA', 'RegisterClassExA', 'GetMessageA', 'DispatchMessageA', 'CreateCompatibleDC', 'GetObjectA', 'SelectObject', 'CreateRectRgn', 'GetPixel', 'CombineRgn', 'DeleteObject', 'DeleteDC', 'BitBlt'], ['GetModuleHandleA', 'CharNextA', 'GetUserNameA', '_CorExeMain', 'InitCommonControls', 'SHChangeNotifyRegister'], ['VirtualAlloc', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'HeapSize', 'RaiseException', 'RtlUnwind', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameW', 'WriteConsoleW', 'ReadFile', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileSizeEx', 'SetFilePointerEx', 'WriteFile', 'OutputDebugStringW', 'DecodePointer', 'CloseHandle', 'GetConsoleMode', 'ReadConsoleW', 'GetConsoleOutputCP', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'FlushFileBuffers', 'SetStdHandle', 'GetStringTypeW', 'CreateFileW', 'SetEndOfFile'], ['SendMessageA', 'RegisterClassA', 'LoadIconA', 'LoadCursorA', 'GetWindowThreadProcessId', 'ShowWindow', 'GetMessageA', 'TranslateMessage', 'UpdateWindow', 'wsprintfA', 'GetClassNameA', 'EnumWindows', 'CreateWindowExA', 'DispatchMessageA', 'DefWindowProcA', 'GetWindowTextA', 'LocalAlloc', 'OpenProcess', 'SetEvent', 'LocalFree', 'OpenMutexA', 'GetModuleHandleA', 'WriteFile', 'WaitForSingleObject', 'VirtualFree', 'VirtualAlloc', 'SystemTimeToFileTime', 'Sleep', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreateThread', 'DeleteFileA', 'ExitProcess', 'FileTimeToSystemTime', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetLocalTime', 'GetModuleFileNameA', 'GetVolumeInformationA', 'GetProcAddress', 'GetTempPathA', 'SetFilePointer', 'GetSidSubAuthority', 'OpenProcessToken', 'GetTokenInformation', 'WSAStartup', 'closesocket', 'connect', 'htons', 'ioctlsocket', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket', 'WSACleanup', 'CommandLineToArgvW', 'freeaddrinfo', 'WSAIoctl', 'getaddrinfo', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'GetUserNameExA', 'GetUserNameExW', 'GetModuleFileNameExA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PathToRegion', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'GetSaveFileNameA', 'SaveDC', 'WNetDisconnectDialog', 'GradientFill', 'OleDraw', 'VariantCopy', 'ShellExecuteA', 'SHGetFolderPathA', 'CoInternetCreateZoneManager', 'GetDC', 'VerQueryValueA', 'FindCloseUrlCache'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'CreateDirectoryA', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpiA', 'lstrcmpA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateRemoteThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsClipboardFormatAvailable', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'ChangeClipboardChain', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'sndPlaySoundA', 'SHGetFolderPathA'], ['GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'ntohs', 'htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'ntohl', 'htonl', 'SetEnvironmentVariableA', 'SetEndOfFile', 'GetTimeZoneInformation', 'InitializeSListHead', 'LoadLibraryW', 'Sleep', 'FreeLibraryAndExitThread', 'GetProcAddress', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', 'OpenProcess', 'GetCurrentProcessId', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'QueryInformationJobObject', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'SetThreadPriority', 'CreateFileW', 'ReadFile', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'InitializeCriticalSectionAndSpinCount', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'RaiseException', 'DecodePointer', 'FileTimeToSystemTime', 'GetModuleHandleA', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'FormatMessageA', 'OpenEventA', 'CreateEventW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetStdHandle', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'GetCPInfo', 'ExitThread', 'LoadLibraryExW', 'IsDebuggerPresent', 'ExitProcess', 'AreFileApisANSI', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapSize', 'GetProcessHeap', 'GetCurrentThread', 'BringWindowToTop', 'EnumWindows', 'GetClassNameW', 'GetWindowTextW', 'SendMessageTimeoutW', 'SetActiveWindow', 'RegCloseKey', 'RegOpenKeyExW'], ['GetLastError', 'MultiByteToWideChar', 'lstrlenA', 'CloseHandle', 'GetModuleFileNameA', 'MapViewOfFile', 'CreateFileMappingW', 'ExitProcess', 'CopyFileW', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'InterlockedDecrement', 'FlushFileBuffers', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'GetLocaleInfoA', 'InterlockedIncrement', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'InitializeCriticalSection', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'WideCharToMultiByte', 'LocalFree', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'RaiseException', 'GetCommandLineA', 'GetVersionExA', 'GetProcessHeap', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'Sleep', 'HeapSize', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'MessageBoxA', 'EndPaint', 'DefWindowProcA', 'PeekMessageA', 'BeginPaint', 'TranslateMessage', 'DispatchMessageA', 'LoadIconA', 'LoadCursorA', 'RegisterClassA', 'GetMessageA', 'DestroyWindow', 'PostQuitMessage', 'AdjustWindowRect', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetDC', 'TextOutA', 'ShellExecuteW', 'OleRun', 'CoCreateInstance', 'CoInitialize', 'CLSIDFromProgID', 'CLSIDFromString', 'SysStringByteLen', 'SysAllocStringByteLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysFreeString', 'SysAllocString', 'GetErrorInfo'], ['HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'HeapSize', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'Sleep', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetErrorMode', 'GetShortPathNameW', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetModuleHandleA', 'WritePrivateProfileStringW', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'FreeResource', 'GlobalFindAtomW', 'LoadLibraryA', 'GetVersionExA', 'GetThreadLocale', 'GlobalFree', 'GlobalUnlock', 'FormatMessageW', 'LocalFree', 'MulDiv', 'lstrlenA', 'CompareStringW', 'CloseHandle', 'GlobalAddAtomW', 'lstrlenW', 'GetTickCount', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetVersion', 'EnumResourceLanguagesW', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GetLastError', 'FreeLibrary', 'GetModuleFileNameW', 'SetLastError', 'GetModuleHandleW', 'GetProcAddress', 'InterlockedDecrement', 'InterlockedIncrement', 'LockResource', 'SizeofResource', 'LoadResource', 'GetFileType', 'FindResourceW', 'PostThreadMessageW', 'EndPaint', 'BeginPaint', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyIcon', 'UnregisterClassW', 'LoadCursorW', 'GetDC', 'ReleaseDC', 'GetSysColorBrush', 'GetDesktopWindow', 'ClientToScreen', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'IsWindow', 'SetFocus', 'GetForegroundWindow', 'SetActiveWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetClientRect', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetWindow', 'GetWindowTextW', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'SetWindowsHookExW', 'CallNextHookEx', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'DestroyMenu', 'GetMessageTime', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'RegisterClipboardFormatW', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxW', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'UnhookWindowsHookEx', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'SendMessageW', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'MessageBoxA', 'ShowWindow', 'UnregisterClassA', 'DeleteDC', 'GetStockObject', 'PtVisible', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'CreateBitmap', 'SetMapMode', 'RestoreDC', 'SaveDC', 'DeleteObject', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'RectVisible', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegSetValueExW', 'RegSetValueW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CryptAcquireContextA', 'ExtractIconW', 'PathFindExtensionW', 'PathFindFileNameW', 'OleUIBusyW', 'CoCreateInstance', 'OleIsCurrentClipboard', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'StringFromCLSID', 'CoTaskMemFree', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoDisconnectObject', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'LoadTypeLib', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SysAllocStringByteLen', 'SysAllocString', 'SysStringLen', 'SysStringByteLen', 'SysFreeString', 'VariantChangeType', 'SysAllocStringLen', 'VariantInit', 'VariantCopy', 'VariantClear'], ['AuthzFreeContext', 'AuthzAddSidsToContext', 'AuthzFreeAuditEvent', 'AuthzFreeResourceManager', 'AuthzInitializeContextFromSid', 'WTSFreeMemory', 'WTSVirtualChannelPurgeInput', 'WTSEnumerateServersA', 'WTSEnumerateProcessesA', 'WTSEnumerateSessionsW', 'WriteProcessMemory', 'OpenEventA', 'MoveFileA', 'GetFileAttributesW', 'DecodePointer', 'InterlockedIncrement', 'GetACP', 'CreateEventA', 'GetModuleHandleA', 'OpenFileMappingA', 'GetEnvironmentVariableA', 'VirtualAlloc', 'GetEnvironmentVariableW', 'LoadLibraryExW', 'LoadBitmapW', 'IsCharLowerA', 'MessageBoxExW', 'GetMessageA', 'MessageBoxW', 'CreateWindowExW', 'SetWindowTextW', 'GetWindow', 'InsertMenuW', 'FindWindowW', 'FindWindowW', 'GetFocus', 'ExtractIconW', 'DragQueryFileA', 'ShellMessageBoxA', 'ShellExecuteW', 'DragQueryPoint', 'FindExecutableW', 'SHEmptyRecycleBinW', 'FindExecutableW', 'SHDefExtractIconW', 'ShellAboutA', 'SHGetFileInfoA', 'SHGetDataFromIDListW', 'ClusWorkerTerminate', 'ResUtilDupString', 'CAEnumNextCA', 'CACloseCertType', 'RegSaveKeyW', 'RegReplaceKeyA', 'IsValidSid', 'RegDeleteValueW', 'CryptSignHashA', 'ReadEventLogW', 'RegCreateKeyExW', 'RegUnLoadKeyA', 'IsValidAcl', 'InitializeAcl', 'OpenEventLogA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'CoInitialize', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['WSACleanup', 'inet_addr', 'gethostbyname', 'gethostname', 'WSAStartup', 'mixerSetControlDetails', 'waveOutGetVolume', 'joyGetPosEx', 'mixerGetControlDetailsW', 'mixerOpen', 'mixerGetDevCapsW', 'mixerGetLineControlsW', 'waveOutSetVolume', 'mixerClose', 'mciSendStringW', 'joyGetDevCapsW', 'mixerGetLineInfoW', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'ImageList_Create', 'CreateStatusWindowW', 'ImageList_ReplaceIcon', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetModuleBaseNameW', 'GetModuleFileNameExW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'FileTimeToLocalFileTime', 'SetEnvironmentVariableW', 'Beep', 'MoveFileW', 'OutputDebugStringW', 'CreateProcessW', 'GetFileAttributesW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetExitCodeProcess', 'WriteProcessMemory', 'ReadProcessMemory', 'GetCurrentProcessId', 'OpenProcess', 'TerminateProcess', 'SetPriorityClass', 'SetLastError', 'GetEnvironmentVariableW', 'GetLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'GetDiskFreeSpaceW', 'SetVolumeLabelW', 'CreateFileW', 'DeviceIoControl', 'GetDriveTypeW', 'GetVolumeInformationW', 'CreateDirectoryW', 'ReadFile', 'WriteFile', 'DeleteFileW', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'SetFileTime', 'GetFileSizeEx', 'GetSystemTime', 'GetSystemDefaultUILanguage', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetTempPathW', 'LockResource', 'GetShortPathNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualProtect', 'QueryDosDeviceW', 'CompareStringW', 'RemoveDirectoryW', 'CopyFileW', 'GetCurrentProcess', 'FormatMessageW', 'GetPrivateProfileStringW', 'GetPrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'WritePrivateProfileStringW', 'WritePrivateProfileSectionW', 'SetEndOfFile', 'GetACP', 'GetFileType', 'GetStdHandle', 'SetFilePointerEx', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetFileSize', 'VirtualAllocEx', 'VirtualFreeEx', 'EnumResourceNamesW', 'LoadLibraryExW', 'GlobalSize', 'GetOEMCP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'HeapFree', 'ExitProcess', 'HeapAlloc', 'TlsFree', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetSystemTimeAsFileTime', 'GetModuleFileNameW', 'DeleteCriticalSection', 'GetCPInfo', 'GetVersionExW', 'FreeLibrary', 'LoadLibraryW', 'GetModuleHandleW', 'GetProcAddress', 'GetLastError', 'CreateMutexW', 'CloseHandle', 'GetExitCodeThread', 'SetThreadPriority', 'CreateThread', 'GetStringTypeExW', 'lstrcmpiW', 'GetCurrentThreadId', 'GlobalUnlock', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GetCurrentDirectoryW', 'SetErrorMode', 'InitializeCriticalSection', 'SetCurrentDirectoryW', 'Sleep', 'GetTickCount', 'MulDiv', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'SetHandleCount', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'LCMapStringW', 'RaiseException', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'TlsSetValue', 'SetFilePointer', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'GetFullPathNameW', 'VirtualQuery', 'GetMenuItemID', 'GetSubMenu', 'GetMenuStringW', 'ExitWindowsEx', 'SetMenu', 'FlashWindow', 'GetPropW', 'SetPropW', 'RemovePropW', 'MapWindowPoints', 'RedrawWindow', 'SetParent', 'GetClassInfoExW', 'GetAncestor', 'UpdateWindow', 'GetMessagePos', 'GetClassLongW', 'DefDlgProcW', 'CallWindowProcW', 'CheckRadioButton', 'IntersectRect', 'GetUpdateRect', 'PtInRect', 'CreateDialogIndirectParamW', 'CreateAcceleratorTableW', 'DestroyAcceleratorTable', 'InsertMenuItemW', 'SetMenuDefaultItem', 'RemoveMenu', 'SetMenuItemInfoW', 'IsMenu', 'GetMenuItemInfoW', 'CreateMenu', 'CreatePopupMenu', 'SetMenuInfo', 'AppendMenuW', 'DestroyMenu', 'TrackPopupMenuEx', 'GetDesktopWindow', 'CopyImage', 'CreateIconIndirect', 'CreateIconFromResourceEx', 'EnumClipboardFormats', 'GetWindow', 'BringWindowToTop', 'MessageBoxW', 'GetTopWindow', 'SetWindowTextW', 'IsWindowVisible', 'CheckMenuItem', 'LoadImageW', 'ChangeClipboardChain', 'GetMenuItemCount', 'LoadAcceleratorsW', 'GetMenu', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'DestroyIcon', 'DestroyWindow', 'IsCharAlphaW', 'MapVirtualKeyW', 'VkKeyScanExW', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'ActivateKeyboardLayout', 'GetGUIThreadInfo', 'GetWindowTextW', 'mouse_event', 'WindowFromPoint', 'GetSystemMetrics', 'keybd_event', 'SetKeyboardState', 'GetKeyboardState', 'GetCursorPos', 'GetAsyncKeyState', 'AttachThreadInput', 'SendInput', 'UnregisterHotKey', 'RegisterHotKey', 'PostQuitMessage', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PostThreadMessageW', 'IsCharAlphaNumericW', 'IsCharUpperW', 'IsCharLowerW', 'ToUnicodeEx', 'GetKeyboardLayout', 'CallNextHookEx', 'CharLowerW', 'ReleaseDC', 'GetDC', 'OpenClipboard', 'GetClipboardData', 'GetClipboardFormatNameW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostMessageW', 'FindWindowW', 'EndDialog', 'IsWindow', 'DispatchMessageW', 'TranslateMessage', 'GetSystemMenu', 'GetLastInputInfo', 'GetCursor', 'ClientToScreen', 'MessageBeep', 'SetDlgItemTextW', 'GetDlgItem', 'SendDlgItemMessageW', 'DialogBoxParamW', 'SetForegroundWindow', 'DefWindowProcW', 'FillRect', 'SetClipboardViewer', 'DrawIconEx', 'ShowWindow', 'CountClipboardFormats', 'SetWindowLongW', 'ScreenToClient', 'IsDialogMessageW', 'SendMessageW', 'IsWindowEnabled', 'GetWindowLongW', 'GetKeyState', 'TranslateAcceleratorW', 'GetSysColor', 'RegisterWindowMessageW', 'IsIconic', 'IsZoomed', 'EnumWindows', 'GetWindowTextLengthW', 'EnableWindow', 'InvalidateRect', 'SetLayeredWindowAttributes', 'SetWindowPos', 'SetWindowRgn', 'SetFocus', 'SetActiveWindow', 'EnumChildWindows', 'MoveWindow', 'GetQueueStatus', 'GetWindowRect', 'GetClientRect', 'SystemParametersInfoW', 'AdjustWindowRectEx', 'DrawTextW', 'KillTimer', 'PeekMessageW', 'GetFocus', 'GetClassNameW', 'GetWindowThreadProcessId', 'GetForegroundWindow', 'GetMessageW', 'SetTimer', 'GetParent', 'GetDlgCtrlID', 'CharUpperW', 'IsClipboardFormatAvailable', 'SetRect', 'MapVirtualKeyExW', 'GetIconInfo', 'EnableMenuItem', 'GetPixel', 'GetClipRgn', 'GetCharABCWidthsW', 'SetBkMode', 'CreatePatternBrush', 'SetBrushOrgEx', 'EnumFontFamiliesExW', 'CreateDIBSection', 'GdiFlush', 'SetBkColor', 'ExcludeClipRect', 'SetTextColor', 'GetClipBox', 'BitBlt', 'CreateCompatibleBitmap', 'GetSystemPaletteEntries', 'GetDIBits', 'CreateCompatibleDC', 'CreatePolygonRgn', 'CreateRectRgn', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'DeleteDC', 'GetObjectW', 'GetTextMetricsW', 'GetTextFaceW', 'SelectObject', 'GetStockObject', 'CreateDCW', 'CreateSolidBrush', 'CreateFontW', 'FillRgn', 'GetDeviceCaps', 'DeleteObject', 'CommDlgExtendedError', 'GetSaveFileNameW', 'GetOpenFileNameW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'CloseServiceHandle', 'UnlockServiceDatabase', 'LockServiceDatabase', 'OpenSCManagerW', 'GetUserNameW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCloseKey', 'RegConnectRegistryW', 'RegDeleteValueW', 'DragQueryPoint', 'SHEmptyRecycleBinW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderPathW', 'ShellExecuteExW', 'Shell_NotifyIconW', 'DragFinish', 'DragQueryFileW', 'ExtractIconW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CLSIDFromString', 'CoGetObject', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'SafeArrayGetLBound', 'GetActiveObject', 'OleLoadPicture', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayAccessData', 'SafeArrayUnlock', 'SafeArrayPtrOfIndex', 'SafeArrayLock', 'SafeArrayGetDim', 'SafeArrayDestroy', 'SafeArrayGetUBound', 'VariantCopyInd', 'SafeArrayCopy', 'SysAllocString', 'VariantChangeType', 'VariantClear', 'SafeArrayCreate', 'SysFreeString', 'SysStringLen'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetColorSpace', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA', 'mciSendCommandA', 'mciGetErrorStringA'], ['GetLastError', 'SetLastError', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'GetTickCount', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['GetModuleHandleA', 'FillRect', 'CreateSolidBrush', '??Bid@locale@std@@QEAA_KXZ', 'longjmp', '__CxxFrameHandler4', 'abort', 'strtod', 'feof', '_unlock_file', 'strcoll', 'realloc', '_ldsign', '_configthreadlocale', 'clock', 'getenv', 'RtlLookupFunctionEntry'], ['GetModuleHandleA', 'CreateWindowExA', 'RegOpenKeyExA', 'PropertySheet', '_CorExeMain', 'ShellAboutA'], ['GetFileAttributesW', 'GetFileSize', 'GetFileType', 'GetLastError', 'GetLocaleInfoA', 'GetLogicalDrives', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetOEMCP', 'GetPriorityClass', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetProcessIoCounters', 'GetProcessVersion', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemDirectoryW', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetThreadContext', 'GetThreadLocale', 'GetThreadPriority', 'GetTickCount', 'GetVersion', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationA', 'GetVolumeInformationW', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFree', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'GetFileAttributesA', 'LocalFree', 'LockResource', 'MapViewOfFile', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'OpenFileMappingA', 'OpenMutexW', 'OpenProcess', 'OutputDebugStringW', 'PulseEvent', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'RaiseException', 'ReadConsoleInputW', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'SetConsoleDisplayMode', 'SetConsoleMode', 'SetConsoleTitleA', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetPriorityClass', 'SetStdHandle', 'SetThreadAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SuspendThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'VirtualQueryEx', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WriteProcessMemory', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpyA', 'lstrcpynW', 'lstrlenA', 'lstrlenW', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetDriveTypeW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetModuleHandleW', 'GetCurrentProcess', 'GetConsoleTitleA', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageW', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceW', 'FindResourceA', 'FindNextFileW', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumResourceNamesW', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteCriticalSection', 'CreateThread', 'CreateSemaphoreW', 'CreateProcessW', 'CreateProcessA', 'CreateMutexW', 'CreateMutexA', 'CreateJobObjectW', 'CreateFileW', 'CreateFileMappingW', 'CreateFileMappingA', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CopyFileW', 'CompareStringW', 'CloseHandle', 'VirtualAllocEx', 'LocalFileTimeToFileTime', 'IsZoomed', 'KillTimer', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadImageW', 'LoadKeyboardLayoutW', 'LoadStringW', 'LookupIconIdFromDirectory', 'MessageBoxW', 'MsgWaitForMultipleObjects', 'OemToCharA', 'OffsetRect', 'OpenWindowStationA', 'PostMessageA', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'RegisterClassExW', 'RegisterHotKey', 'RegisterWindowMessageW', 'ReleaseDC', 'RemovePropA', 'ReuseDDElParam', 'ScrollDC', 'SendInput', 'SendMessageA', 'SendMessageCallbackA', 'SendMessageTimeoutA', 'SendMessageTimeoutW', 'SendMessageW', 'SetClassLongW', 'SetClipboardData', 'SetCursorPos', 'SetForegroundWindow', 'SetParent', 'SetPropA', 'SetTimer', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowRgn', 'ShowOwnedPopups', 'ShowWindow', 'SystemParametersInfoW', 'TabbedTextOutA', 'TranslateAcceleratorW', 'TranslateMessage', 'UpdateWindow', 'WaitForInputIdle', 'wsprintfW', 'wvsprintfA', 'IsWindowVisible', 'GetSystemMetrics', 'GetSystemMenu', 'GetPropA', 'GetParent', 'GetMessageW', 'GetMenuInfo', 'GetMenu', 'GetIconInfo', 'GetForegroundWindow', 'GetDC', 'GetClipboardFormatNameA', 'GetClientRect', 'GetClassWord', 'GetClassNameA', 'GetClassLongW', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowW', 'FindWindowExW', 'FindWindowExA', 'EnumWindows', 'EnumThreadWindows', 'EnumDisplaySettingsW', 'EnumDisplayDevicesW', 'EnumDesktopWindows', 'EndPaint', 'EndDialog', 'EnableWindow', 'EnableMenuItem', 'DrawTextW', 'DrawFrameControl', 'DrawFocusRect', 'DispatchMessageW', 'DialogBoxParamW', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcW', 'DefDlgProcW', 'DdeGetData', 'CreateWindowExW', 'CreatePopupMenu', 'CreateMDIWindowA', 'CreateDesktopA', 'ChildWindowFromPointEx', 'CharUpperW', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'IsCharAlphaNumericW', 'InvalidateRect', 'InflateRect', 'ImpersonateDdeClientWindow', 'IMPQueryIMEA', 'GetWindowThreadProcessId', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindow', 'AdjustWindowRectEx', 'AnimateWindow', 'AttachThreadInput', 'BeginPaint', 'CallMsgFilter', 'CascadeChildWindows', 'ChangeDisplaySettingsExW', 'CharLowerW', 'GetUserObjectInformationW', 'GetThreadDesktop', 'GetTopWindow', 'CharUpperBuffW', 'cGetTTFFromFOT', 'SetDIBits', 'RectInRegion', 'GetDeviceGammaRamp', 'GetCharacterPlacementA', 'GdiConvertToDevmodeW', 'GdiConvertBitmap', 'FlattenPath', 'FONTOBJ_pifi', 'EudcLoadLinkW', 'EngReleaseSemaphore', 'EngQueryLocalTime', 'EngEraseSurface', 'DescribePixelFormat', 'CreateEllipticRgn', 'CryptReleaseContext', 'LookupAccountSidW', 'LookupAccountSidA', 'InitializeSecurityDescriptor', 'GetUserNameW', 'GetTokenInformation', 'GetLengthSid', 'GetKernelObjectSecurity', 'SetSecurityDescriptorDacl', 'ReportEventW', 'RegisterEventSourceW', 'RegUnLoadKeyW', 'RegOpenKeyExA', 'RegLoadKeyW', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyA', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDecrypt', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptExportKey', 'CryptGetProvParam', 'CryptGetUserKey', 'CryptImportKey', 'CryptSignHashA', 'CryptSetHashParam', 'CryptSetProvParam', 'OpenProcessToken', 'SHGetDataFromIDListW', 'Shell_NotifyIconW', 'ExtractAssociatedIconA', 'FindExecutableA', 'SHCreateDirectoryExW', 'SHFileOperation', 'SHFormatDrive', 'WOWShellExecute', 'SHGetDesktopFolder', 'SHGetFolderPathA', 'SHGetPathFromIDListA', 'ShellAboutA', 'ShellExecuteW', 'OleUninitialize', 'GetHGlobalFromStream', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'CoCreateGuid', 'StrRStrIW', 'StrCmpNIA', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_GetIcon', 'ImageList_GetIconSize', 'ImageList_GetImageCount', 'ImageList_Read', 'ImageList_ReplaceIcon', 'ImageList_Write'], ['WriteConsoleOutputA', 'GetStringTypeExW', 'GetProcAddress', 'LoadLibraryW', 'OpenFileMappingW', 'GetModuleHandleA', 'LocalAlloc', 'GetLocaleInfoW', 'GetOEMCP', 'CloseHandle', 'Module32FirstW', 'CreateToolhelp32Snapshot', 'GetSystemTimeAdjustment', 'GetMailslotInfo', 'GetWriteWatch', 'GetDiskFreeSpaceA', 'LocalCompact', 'VerSetConditionMask', 'CompareStringW', 'CompareStringA', 'CreateFileA', 'GetTimeZoneInformation', 'HeapSize', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetLastError', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'VirtualAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'WriteConsoleA', 'SetEnvironmentVariableA', 'DefMDIChildProcW', 'LoadKeyboardLayoutW', 'GetMenuInfo', 'SetClipboardData', 'TransparentBlt'], ['_iob', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '__p___initenv', '_XcptFilter', '_exit', '_onexit', '__dllonexit', 'strrchr', 'wcsncmp', '_close', 'wcslen', 'wcscpy', 'strerror', 'modf', 'strspn', 'realloc', '__p__environ', '__p__wenviron', '_errno', 'free', 'strncmp', 'strstr', 'strncpy', '_ftol', 'qsort', 'fopen', 'perror', 'fclose', 'fflush', 'calloc', 'malloc', 'signal', 'printf', '_isctype', 'atoi', 'exit', '__mb_cur_max', '_pctype', 'strchr', 'fprintf', '_controlfp', '_strdup', '_strnicmp', 'PeekNamedPipe', 'ReadFile', 'WriteFile', 'LoadLibraryA', 'GetProcAddress', 'GetVersionExA', 'GetExitCodeProcess', 'TerminateProcess', 'LeaveCriticalSection', 'SetEvent', 'ReleaseMutex', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'CreateMutexA', 'GetFileType', 'SetLastError', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GlobalFree', 'GetCommandLineW', 'TlsAlloc', 'TlsFree', 'DuplicateHandle', 'GetCurrentProcess', 'SetHandleInformation', 'CloseHandle', 'GetSystemTimeAsFileTime', 'FileTimeToSystemTime', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToFileTime', 'SystemTimeToTzSpecificLocalTime', 'Sleep', 'FormatMessageA', 'GetLastError', 'WaitForSingleObject', 'CreateEventA', 'SetStdHandle', 'SetFilePointer', 'CreateFileA', 'CreateFileW', 'GetOverlappedResult', 'DeviceIoControl', 'GetFileInformationByHandle', 'LocalFree', 'FreeSid', 'AllocateAndInitializeSid', 'getsockopt', 'connect', 'htons', 'gethostbyname', 'ntohl', 'inet_ntoa', 'setsockopt', 'socket', 'closesocket', 'select', 'ioctlsocket', '__WSAFDIsSet', 'WSAStartup', 'WSACleanup', 'WSAGetLastError', 'WSARecv', 'WSASend'], ['GetPrivateProfileSectionW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetProcessIoCounters', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemPowerStatus', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetSystemTimes', 'GetSystemWindowsDirectoryW', 'GetTempFileNameW', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersion', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAlloc', 'GlobalFindAtomA', 'GlobalFree', 'GlobalUnWire', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsBadReadPtr', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'IsWow64Process', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockResource', 'MapViewOfFileEx', 'Module32FirstW', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'FlushInstructionCache', 'GetPrivateProfileSectionNamesW', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'PeekNamedPipe', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadDirectoryChangesW', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'ReleaseSemaphore', 'ReplaceFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'ScrollConsoleScreenBufferA', 'SetCurrentDirectoryW', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetFilePointerEx', 'SetHandleCount', 'SetLastError', 'SetNamedPipeHandleState', 'SetStdHandle', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnmapViewOfFile', 'VerSetConditionMask', 'VerifyVersionInfoW', 'VirtualAlloc', 'VirtualAllocEx', 'VirtualFree', 'VirtualFreeEx', 'VirtualLock', 'WTSGetActiveConsoleSessionId', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileSectionW', 'WritePrivateProfileStringW', 'lstrcmpA', 'lstrcmpiA', 'lstrcmpiW', 'lstrcpynW', 'lstrlen', 'lstrlenA', 'lstrlenW', 'FlushFileBuffers', 'FindResourceW', 'GetPrivateProfileIntW', 'GetOverlappedResult', 'GetOEMCP', 'GetNumberOfConsoleMouseButtons', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLongPathNameW', 'GetLogicalDrives', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetFileTime', 'GetFileSizeEx', 'GetFileSize', 'GetFileAttributesW', 'GetFileAttributesExW', 'GetFileAttributesExA', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentStringsW', 'GetDriveTypeA', 'GetDiskFreeSpaceExW', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetConsoleAliasesW', 'GetCommandLineW', 'GetCommState', 'GetCPInfoExA', 'GetCPInfo', 'GetAtomNameW', 'GetACP', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeConsole', 'OpenMutexA', 'FormatMessageW', 'FindResourceExW', 'FindNextFileW', 'FindFirstFileW', 'FindCloseChangeNotification', 'FindClose', 'FindAtomW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FatalAppExitA', 'ExitThread', 'ExitProcess', 'EnumSystemLocalesA', 'EnterCriticalSection', 'DuplicateHandle', 'DisconnectNamedPipe', 'DeviceIoControl', 'DeleteVolumeMountPointW', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'DeleteAtom', 'CreateWaitableTimerA', 'CreateToolhelp32Snapshot', 'CreateThread', 'CreateSemaphoreW', 'CreateSemaphoreA', 'CreateRemoteThread', 'CreateProcessW', 'CreateNamedPipeW', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CopyFileW', 'CopyFileExA', 'ConnectNamedPipe', 'CompareStringW', 'CompareStringA', 'CompareFileTime', 'CloseHandle', 'CancelIo', 'OpenEventW', 'AddAtomW', 'keybd_event', 'WindowFromPoint', 'WaitForInputIdle', 'UpdateWindow', 'UpdateLayeredWindow', 'UnregisterClassA', 'TranslateMessage', 'SystemParametersInfoW', 'SwitchToThisWindow', 'ShowWindow', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowsHookA', 'SetWindowTextW', 'SetWindowPos', 'SetWindowLongW', 'SetTimer', 'SetRectEmpty', 'SetRect', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardViewer', 'SetClassLongW', 'SetActiveWindow', 'SendMessageW', 'SendMessageTimeoutW', 'ScreenToClient', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClassExW', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'OpenInputDesktop', 'OffsetRect', 'MonitorFromWindow', 'MonitorFromRect', 'MonitorFromPoint', 'MessageBoxW', 'MapWindowPoints', 'LoadStringW', 'LoadImageW', 'LoadCursorW', 'KillTimer', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsDialogMessageW', 'InvalidateRect', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowInfo', 'GetWindow', 'GetSystemMetrics', 'GetShellWindow', 'GetParent', 'GetMonitorInfoW', 'GetMessageW', 'GetMessagePos', 'GetKeyboardState', 'GetForegroundWindow', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetClassLongW', 'GetClassInfoExW', 'GetAncestor', 'GetActiveWindow', 'FindWindowW', 'FindWindowExW', 'ExitWindowsEx', 'EnumDisplaySettingsW', 'EnumClipboardFormats', 'EnableWindow', 'DrawTextW', 'DispatchMessageW', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcW', 'CreateWindowExW', 'CopyRect', 'CloseDesktop', 'ClientToScreen', 'CharNextW', 'CallWindowProcW', 'AttachThreadInput', 'AllowSetForegroundWindow', 'AdjustWindowRect', 'AngleArc', 'CloseMetaFile', 'CreateBrushIndirect', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateDIBSection', 'CreateEllipticRgn', 'CreateFontIndirectW', 'CreateFontW', 'CreatePolygonRgn', 'DeleteDC', 'DeleteObject', 'DeviceCapabilitiesExW', 'EngDeletePath', 'EngFillPath', 'EngReleaseSemaphore', 'ExtCreatePen', 'GdiCreateLocalEnhMetaFile', 'GdiEntry9', 'GdiValidateHandle', 'GetBkMode', 'GetCharABCWidthsFloatA', 'GetCharABCWidthsI', 'GetCharWidthInfo', 'GetEnhMetaFileDescriptionW', 'GetLogColorSpaceA', 'GetObjectW', 'GetOutlineTextMetricsW', 'GetStockObject', 'GetTextExtentPoint32W', 'GetTextExtentPointI', 'HT_Get8BPPMaskPalette', 'LPtoDP', 'PATHOBJ_bEnum', 'PlayMetaFile', 'PolyBezier', 'RoundRect', 'SelectObject', 'SetDIBColorTable', 'SetROP2', 'SetRectRgn', 'SetTextColor', 'SwapBuffers', 'UnloadNetworkFonts', 'cGetTTFFromFOT', 'BitBlt', 'CheckTokenMembership', 'CloseServiceHandle', 'ConvertSidToStringSidW', 'ConvertStringSidToSidW', 'CreateWellKnownSid', 'CryptAcquireContextW', 'CryptGenRandom', 'CryptReleaseContext', 'DuplicateToken', 'DuplicateTokenEx', 'EqualSid', 'FreeSid', 'GetNamedSecurityInfoW', 'GetTokenInformation', 'GetUserNameW', 'ImpersonateLoggedOnUser', 'InitializeSecurityDescriptor', 'LookupAccountSidW', 'LookupPrivilegeValueW', 'OpenEventLogW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'QueryServiceStatus', 'ReadEventLogW', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyExA', 'RegEnumKeyExW', 'RegNotifyChangeKeyValue', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegOpenKeyW', 'RegQueryInfoKeyW', 'RegQueryValueExA', 'RegQueryValueExW', 'RegSetValueExW', 'RevertToSelf', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'SetSecurityDescriptorDacl', 'StartServiceW', 'RegOpenKeyA', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseEventLog', 'ShellExecuteW', 'ShellExecuteExW', 'ShellExecuteA', 'SHLoadInProc', 'SHGetSpecialFolderPathW', 'SHGetMalloc', 'SHGetIconOverlayIndexW', 'SHGetFolderPathW', 'SHGetFolderPathA', 'SHFileOperationA', 'SHCreateDirectoryExW', 'SHChangeNotify', 'ExtractAssociatedIconExW', 'DragQueryFileA', 'Shell_NotifyIconW', 'ColorHLSToRGB', 'ColorRGBToHLS', 'PathAddBackslashW', 'PathAppendW', 'PathCombineA', 'PathCombineW', 'PathCompactPathW', 'PathFileExistsA', 'AssocQueryStringW', 'PathFindExtensionW', 'PathFindFileNameA', 'PathFindFileNameW', 'PathIsDirectoryW', 'PathIsPrefixW', 'PathRemoveBackslashW', 'PathRemoveExtensionW', 'PathRemoveFileSpecW', 'PathStripPathW', 'SHDeleteKeyW', 'SHDeleteValueA', 'SHDeleteValueW', 'SHGetValueA', 'SHGetValueW', 'SHSetValueA', 'SHSetValueW', 'StrCmpIW', 'StrCmpNA', 'StrRStrIW', 'StrStrIW', 'StrStrW', 'wnsprintfW', 'PathFileExistsW'], ['ExitProcess', 'ExitThread', 'FileTimeToDosDateTime', 'FileTimeToLocalFileTime', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FindResourceW', 'FlushInstructionCache', 'FormatMessageW', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatW', 'GetDiskFreeSpaceW', 'GetEnvironmentVariableW', 'GetExitCodeThread', 'GetFileAttributesW', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameW', 'GetModuleHandleW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemInfo', 'GetThreadLocale', 'GetTickCount', 'GetVersion', 'GetVersionExW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'HeapCreate', 'HeapDestroy', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'EnumCalendarInfoA', 'InterlockedIncrement', 'IsBadReadPtr', 'IsValidLocale', 'LeaveCriticalSection', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OutputDebugStringW', 'RaiseException', 'ReadFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'SetEndOfFile', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetLastError', 'SetThreadLocale', 'SignalObjectAndWait', 'SizeofResource', 'Sleep', 'SwitchToThread', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'VirtualQueryEx', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileStringW', 'WriteProcessMemory', 'lstrcmpW', 'lstrcpyW', 'lstrcpynW', 'lstrlenW', 'VirtualAllocEx', 'LoadLibraryA', 'GetModuleHandleA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CompareStringA', 'InterlockedExchangeAdd', 'CloseHandle', 'DrawMenuBar', 'CloseDesktop', 'AnyPopup', 'CreatePopupMenu', 'VkKeyScanA', 'GetInputState', 'GetSystemMetrics', 'GetLastActivePopup', 'IsCharUpperA', 'EndMenu', 'GetDialogBaseUnits', 'GetMessageExtraInfo', 'OpenIcon', 'InSendMessage', 'LoadCursorFromFileW', 'CountClipboardFormats', 'CharToOemBuffA', 'DestroyCursor', 'GetLayout', 'GetDCPenColor', 'GetGraphicsMode', 'CreatePatternBrush', 'GetBkColor', 'GdiGetBatchLimit', 'SwapBuffers', 'GetEnhMetaFileW', 'RegOpenKeyExW'], ['malloc', 'fputc', 'CallMsgFilterA', 'DrawStateA', 'GetDlgItemInt', 'DrawFrameControl', 'GetProcessWindowStation', 'GetCursorInfo', 'AVIFileGetStream', 'SCardListReadersA', 'NetLocalGroupAddMembers', 'GetPrintProcessorDirectoryW', 'FindFirstPrinterChangeNotification', 'LZSeek', 'CM_Get_Next_Log_Conf', 'DeregisterEventSource', 'FileEncryptionStatusW', 'GetDiskFreeSpaceA', 'GetPrivateProfileStringW', 'GetSystemWindowsDirectoryW', 'SetMailslotInfo', 'GetFileTime', 'GetModuleHandleA', 'GetNamedPipeClientProcessId', 'GetTickCount', 'GetVolumeInformationW', 'WriteProcessMemory', 'FreeEnvironmentStringsW', 'GetCurrentProcess', 'GetUserDefaultLangID', 'GetTimeFormatW', 'GetSystemPowerStatus', 'GetConsoleWindow', 'FillConsoleOutputAttribute', 'GetClipRgn', 'Rectangle', 'GetCharWidth32A', 'FillRgn', 'GetCharacterPlacementA', 'timeGetTime'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'InitCommonControlsEx', 'GetStockObject', 'free', 'CoInitialize', 'ShellExecuteExA', 'PathQuoteSpacesA', 'SetFocus', 'timeBeginPeriod'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteFile', 'VirtualQuery', 'LoadLibraryA', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCPInfo', 'GetACP', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA'], ['ExpandEnvironmentStringsA', 'HeapAlloc', 'GetProcessHeap', 'VirtualAlloc', 'Sleep', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'IsBadReadPtr', 'HeapFree', 'VirtualFree', 'FreeLibrary', 'WriteFile', 'GetStringTypeA', 'LCMapStringW', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'SetUnhandledExceptionFilter', 'IsBadWritePtr', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'IsBadCodePtr', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'MultiByteToWideChar', 'LCMapStringA', 'GetStringTypeW', 'wsprintfA'], ['11111111111111111111111', '2222222222222222222', '22222222222222', 'ntohl', 'ntohs', 'htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'htonl', 'SetEnvironmentVariableA', 'SetEndOfFile', 'GetTimeZoneInformation', 'LoadLibraryW', 'Sleep', 'FreeLibraryAndExitThread', 'GetProcAddress', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', '11111111111', 'GetCurrentProcessId', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'QueryInformationJobObject', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'SetThreadPriority', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'InitializeCriticalSectionAndSpinCount', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'RaiseException', 'DecodePointer', 'InitializeSListHead', 'GetModuleHandleA', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FormatMessageA', 'OpenEventA', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'CreateEventW', 'GetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'FileTimeToSystemTime', 'GetCPInfo', 'ExitThread', 'LoadLibraryExW', 'IsDebuggerPresent', 'ExitProcess', 'AreFileApisANSI', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapSize', 'GetProcessHeap', 'GetCurrentThread', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'GetWindowTextW', 'SendMessageTimeoutW', 'SetActiveWindow', 'EnumWindows', 'GetClassNameW', 'BringWindowToTop', 'RegCloseKey', 'RegOpenKeyExW'], ['GetModuleHandleA', 'GetSystemDirectoryA', 'ReadConsoleA', 'WriteProfileStringW', 'WriteProfileSectionA', 'LoadLibraryW', 'GetProcessPriorityBoost', 'GetTempPathW', 'IsProcessorFeaturePresent', 'GetTickCount', 'SleepEx', 'MoveFileWithProgressW', 'SetTapeParameters', 'VirtualProtect', 'FormatMessageA', 'GetStringTypeExA', 'EnumTimeFormatsA', 'WritePrivateProfileStructA', 'CreateIoCompletionPort', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle', 'GlobalAlloc', 'FindClose', 'GetFileTime', 'SetConsoleCP', 'AreFileApisANSI', 'GetLastError', 'HeapFree', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'HeapCreate', 'HeapDestroy', 'HeapAlloc', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'EncodePointer', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'GetLocaleInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WideCharToMultiByte', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'RtlUnwind', 'MultiByteToWideChar', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'ReadFile', 'CreateFileW', 'CallWindowProcA', 'SetClassLongA', 'ActivateKeyboardLayout', 'GrayStringW', 'GetMenuBarInfo', 'CharLowerA', 'ResizePalette', 'ExtTextOutA', 'SetDIBColorTable', 'GetTextExtentExPointW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetKeyboardType', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'TranslateMessage', 'SetWindowLongW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'ExitWindowsEx', 'DispatchMessageW', 'DestroyWindow', 'CharUpperBuffW', 'CallWindowProcW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SizeofResource', 'SignalObjectAndWait', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'MultiByteToWideChar', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetWindowsDirectoryW', 'GetVersionExW', 'GetUserDefaultLangID', 'GetThreadLocale', 'GetSystemInfo', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeProcess', 'GetEnvironmentVariableW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentProcess', 'GetCommandLineW', 'GetCPInfo', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateProcessW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'InitCommonControls', 'Sleep', 'AdjustTokenPrivileges', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PathToRegion', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA'], ['htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'ntohl', 'ntohs', 'htonl', 'GetTimeZoneInformation', 'InitializeSListHead', 'GetModuleHandleA', 'GetCurrentProcessId', 'LoadLibraryW', 'Sleep', 'SetThreadPriority', 'FreeLibraryAndExitThread', 'GetProcAddress', 'DisableThreadLibraryCalls', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'QueryInformationJobObject', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'GetVersionExW', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'SetEndOfFile', 'GetThreadContext', 'HeapReAlloc', 'SetThreadContext', 'HeapAlloc', 'HeapFree', 'Thread32First', 'HeapDestroy', 'HeapCreate', 'Thread32Next', 'OpenThread', 'VirtualProtect', 'CreateToolhelp32Snapshot', 'SuspendThread', 'ResumeThread', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'DecodePointer', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'OpenMutexW', 'CreateMutexW', 'ReleaseMutex', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'SetEnvironmentVariableA', 'FormatMessageA', 'OpenEventA', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetStdHandle', 'GetOEMCP', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDebuggerPresent', 'ExitThread', 'LoadLibraryExW', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetProcessHeap', 'ExitProcess', 'AreFileApisANSI', 'HeapSize', 'GetCurrentThread', 'IsValidCodePage', 'GetACP', 'SetActiveWindow', 'EnumWindows', 'GetWindowTextW', 'GetClassNameW', 'SendMessageTimeoutW', 'BringWindowToTop', 'RegEnumValueW', 'RegCloseKey', 'RegOpenKeyExW', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor'], ['GetStringTypeW', 'GetSystemDefaultLCID', 'GetSystemTimeAsFileTime', 'GetThreadLocale', 'GetThreadPriority', 'GetTickCount', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalFree', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalUnlock', 'Heap32ListNext', 'HeapAlloc', 'HeapCreate', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LocalReAlloc', 'LocalSize', 'LockResource', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenEventW', 'OpenMutexW', 'OpenSemaphoreA', 'GetStringTypeExW', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'ReplaceFileA', 'RtlUnwind', 'SetComputerNameExA', 'SetConsoleCtrlHandler', 'SetConsoleMode', 'SetConsoleOutputCP', 'SetConsoleTextAttribute', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VerLanguageNameA', 'VirtualAlloc', 'VirtualFree', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', '_lwrite', 'lstrcmpA', 'lstrcmpW', 'lstrlenA', 'lstrlenW', 'GetStringTypeA', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetShortPathNameW', 'GetProcessHeaps', 'GetProcessHeap', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetExitCodeThread', 'GetEnvironmentStringsW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleFontSize', 'GetConsoleCP', 'GetComputerNameW', 'GetCommandLineW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FlushFileBuffers', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileA', 'CreateEventW', 'ConvertDefaultLocale', 'OpenThread', 'CloseHandle', 'GrayStringW', 'IsIconic', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadMenuW', 'LoadStringW', 'MapWindowPoints', 'MessageBoxA', 'MessageBoxW', 'ModifyMenuW', 'MsgWaitForMultipleObjectsEx', 'NotifyWinEvent', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'PostThreadMessageW', 'PtInRect', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseDC', 'RemovePropW', 'SendMessageA', 'SendMessageW', 'SetCursor', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetMessageQueue', 'SetPropW', 'SetWindowLongW', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowWindow', 'SystemParametersInfoA', 'TabbedTextOutW', 'TranslateMessage', 'UnhookWinEvent', 'UnhookWindowsHookEx', 'UnregisterClassW', 'UnregisterDeviceNotification', 'ValidateRect', 'WinHelpW', 'WindowFromDC', 'LoadCursorFromFileA', 'GetClipboardData', 'InSendMessage', 'IsMenu', 'DestroyIcon', 'CharLowerW', 'GetMenuContextHelpId', 'VkKeyScanA', 'CountClipboardFormats', 'IsCharAlphaA', 'IsCharAlphaNumericA', 'GetProcessWindowStation', 'IsWindowUnicode', 'GetKeyboardLayout', 'VkKeyScanW', 'GetKBCodePage', 'GetClipboardOwner', 'GetAsyncKeyState', 'DestroyCursor', 'CloseClipboard', 'PaintDesktop', 'GetInputState', 'GetCursor', 'CloseDesktop', 'ReleaseCapture', 'EnumClipboardFormats', 'GetWindowContextHelpId', 'GetWindowTextLengthA', 'GetClipboardViewer', 'GetThreadDesktop', 'IsCharAlphaW', 'AnyPopup', 'CharUpperW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'GetQueueStatus', 'CloseWindow', 'GetDialogBaseUnits', 'OemKeyScan', 'CharNextA', 'LoadIconA', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindow', 'GetTopWindow', 'GetSystemMetrics', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollPos', 'GetPropW', 'GetParent', 'GetMessageW', 'GetMessageTime', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetClassInfoExW', 'GetCapture', 'GetActiveWindow', 'EnableWindow', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExW', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DefWindowProcW', 'DefWindowProcA', 'DdeQueryConvInfo', 'CreateWindowExW', 'CreateDialogParamW', 'CopyRect', 'ClientToScreen', 'CheckMenuItem', 'CharToOemW', 'CharNextW', 'CharLowerA', 'CallWindowProcW', 'CallNextHookEx', 'AdjustWindowRectEx', 'GetClassNameW', 'CreateSolidBrush', 'SaveDC', 'FlattenPath', 'GdiGetBatchLimit', 'AbortDoc', 'GetStockObject', 'GetLayout', 'GetBkColor', 'GdiFlush', 'CreateHalftonePalette', 'GetSystemPaletteUse', 'GetObjectType', 'DeleteObject', 'AddFontResourceW', 'EngQueryLocalTime', 'GetPolyFillMode', 'GetGraphicsMode', 'AbortPath', 'DeleteColorSpace', 'CreateCompatibleDC', 'UnrealizeObject', 'GetDCPenColor', 'UpdateColors', 'CreatePatternBrush', 'StrokePath', 'SwapBuffers', 'GetTextCharset', 'XLATEOBJ_cGetPalette', 'XFORMOBJ_iGetXform', 'StartDocW', 'SetWindowExtEx', 'SetTextColor', 'GetTextColor', 'GetICMProfileW', 'GetCharABCWidthsA', 'GdiStartDocEMF', 'GdiDllInitialize', 'GetColorSpace', 'CopyMetaFileW', 'EngLoadModule', 'DPtoLP', 'EngReleaseSemaphore', 'RegSetValueExA', 'RegQueryValueW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCreateKeyExA', 'RegCloseKey', 'RegSetValueExW', 'PathFindFileNameW', 'PathFindExtensionW'], ['GetModuleHandleA', 'DefWindowProcW', 'RegOpenKeyExW', '_CorExeMain', 'PropertySheet', 'PathMakeUniqueName'], ['GetModuleHandleW', 'LoadLibraryW', 'GetProcAddress', 'VirtualAllocEx', 'SetUnhandledExceptionFilter', 'RegOpenKeyExW', 'RegQueryValueExA'], ['VirtualFree', 'IsBadReadPtr', 'GetConsoleAliasesLengthA', 'WaitForMultipleObjectsEx', 'FreeConsole', 'GetVersionExW', 'WritePrivateProfileStructW', 'IsProcessorFeaturePresent', 'MulDiv', 'EnumResourceLanguagesA', 'GetModuleFileNameW', 'CreateActCtxA', 'WritePrivateProfileStringW', 'ReplaceFileA', 'GetStringTypeExA', 'GetStdHandle', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetLastError', 'ReadConsoleOutputCharacterA', 'GetModuleHandleW', 'AttachConsole', 'VirtualAlloc', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'CreateFileMappingW', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'CreateEventW', 'GetModuleFileNameA', 'lstrcmpiW', 'GetModuleHandleA', 'CreateMutexA', 'CancelTimerQueueTimer', 'GetFileAttributesExW', 'GetConsoleCursorInfo', 'ScrollConsoleScreenBufferA', 'GetCurrentThreadId', 'FindAtomW', 'DebugBreak', 'FindNextVolumeA', 'AddConsoleAliasW', 'CancelWaitableTimer', 'GetCommState', 'WaitForSingleObject', 'GetProcAddress', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA', 'CharLowerBuffA', 'EnumFontsW', 'GetCharABCWidthsFloatA', 'GetCharWidthW', 'MapGenericMask'], ['InitializeCriticalSectionAndSpinCount', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetComputerNameA', 'CreateFileA', 'FindResourceA', 'lstrlenA', 'FreeLibrary', 'LoadResource', 'GetStdHandle', 'HeapSize', 'VirtualAlloc', 'HeapAlloc', 'GetCurrentProcess', 'HeapFree', 'WaitForSingleObject', 'GetProcessHeap', 'ExpandEnvironmentStringsA', 'GetWindowsDirectoryA', 'WriteFile', 'InitializeCriticalSection', 'AllocateUserPhysicalPages', 'GlobalAlloc', 'WideCharToMultiByte', 'SizeofResource', 'CreateEventA', 'LeaveCriticalSection', 'HeapCreate', 'SetConsoleCursorPosition', 'GetSystemDirectoryA', 'GetOverlappedResult', 'lstrlenW', 'SetConsoleTitleA', 'GetLastError', 'GetProcAddress', 'EnterCriticalSection', 'GlobalFree', 'ResetEvent', 'LoadLibraryA', 'GetModuleHandleA', 'CancelIo', 'lstrcatW', 'CloseHandle', 'LocalFree', 'lstrcpyW', 'lstrcpyA', 'MultiByteToWideChar', 'SetLastError', 'MulDiv', 'GlobalUnlock', 'GlobalLock', 'FreeResource', 'LockResource', 'GetModuleFileNameW', 'InterlockedDecrement', 'GetVersionExA', 'HeapReAlloc', 'RtlUnwind', 'GetStartupInfoA', 'GetCommandLineA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'ExitProcess', 'Sleep', 'SetErrorMode', 'GetModuleHandleW', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'FlushFileBuffers', 'SetFilePointer', 'ReadFile', 'lstrcmpiA', 'GetStringTypeExA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GetThreadLocale', 'DeleteCriticalSection', 'GlobalFlags', 'lstrcmpW', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'RaiseException', 'CharUpperA', 'DeleteMenu', 'DestroyMenu', 'UnregisterClassA', 'LoadCursorA', 'GetSysColorBrush', 'GetMenuStringA', 'InsertMenuA', 'ValidateRect', 'SetCursor', 'PostQuitMessage', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'SetForegroundWindow', 'IsWindowVisible', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'GetClassInfoExA', 'EnableWindow', 'GetSystemMetrics', 'SendMessageA', 'GetClientRect', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'GetDlgCtrlID', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'UnhookWindowsHookEx', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'GetWindowTextA', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetWindow', 'GetWindowThreadProcessId', 'CheckMenuItem', 'LookupIconIdFromDirectory', 'EndDeferWindowPos', 'FindWindowA', 'UpdateWindow', 'LoadImageA', 'SetWindowTextA', 'DispatchMessageA', 'IsWindow', 'SetMenu', 'ShowWindow', 'LoadAcceleratorsA', 'GetMenuItemInfoA', 'GetCursorPos', 'GetSysColor', 'GetDesktopWindow', 'DefWindowProcA', 'GetParent', 'EndPaint', 'ClientToScreen', 'SetWindowPlacement', 'GetMessageA', 'GetClassNameA', 'GetSystemMenu', 'GetWindowRect', 'SetCapture', 'GetKeyState', 'LoadStringA', 'GetFocus', 'LoadBitmapA', 'wsprintfA', 'SetFocus', 'GetWindowTextLengthA', 'BeginPaint', 'PtInRect', 'SetWindowWord', 'GetIconInfo', 'GetDC', 'TranslateMessage', 'GetMenu', 'GetWindowWord', 'GetWindowPlacement', 'RegisterClipboardFormatA', 'GetWindowLongA', 'CreateWindowExA', 'ReleaseDC', 'TranslateAcceleratorA', 'GetDlgItem', 'SetWindowsHookExA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'TextOutA', 'RectVisible', 'PtVisible', 'GetClipBox', 'SetMapMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'CreateSolidBrush', 'GetObjectA', 'CreateDIBitmap', 'CreatePen', 'GetMetaRgn', 'SelectObject', 'DeleteObject', 'GetTextCharsetInfo', 'CreateDCA', 'SetTextColor', 'GetDeviceCaps', 'GetFileTitleA', 'GetOpenFileNameA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'ConvertSidToStringSidA', 'RegQueryValueExA', 'OpenServiceA', 'CloseServiceHandle', 'OpenProcessToken', 'RegDeleteKeyA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'GetSecurityInfo', 'OpenSCManagerA', 'GetUserNameA', 'ControlService', 'RegOpenKeyA', 'RegCloseKey', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'DeleteService', 'SHQueryRecycleBinA', 'DragAcceptFiles', 'ExtractIconExA', 'ImageList_DragEnter', 'ImageList_AddMasked', 'ImageList_DragLeave', 'ImageList_BeginDrag', 'ImageList_Destroy', 'ImageList_GetImageInfo', 'ImageList_Draw', 'ImageList_Create', 'ImageList_GetImageCount', 'ImageList_EndDrag', 'ImageList_ReplaceIcon', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'OleUninitialize', 'OleInitialize', 'VariantInit', 'VariantChangeType', 'VariantClear', 'CreateUriWithFragment', 'FtpSetCurrentDirectoryA', 'NetUserEnum', 'NetApiBufferFree', 'AVIStreamGetFrameClose', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'VerQueryValueA', 'CertVerifyValidityNesting', 'CertVerifyRevocation', 'CertVerifySubjectCertificateContext', 'CertVerifyTimeValidity', 'CertVerifyCTLUsage', 'CertVerifyCertificateChainPolicy', 'PdhGetFormattedCounterValue', 'CreateStdAccessibleObject', 'LresultFromObject', 'SetupDiGetClassDevsW', 'SetupDiDestroyDeviceInfoList'], ['OpenMutexW', 'GetSystemTimeAdjustment', 'VerSetConditionMask', 'FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'FillConsoleOutputCharacterW', 'VirtualFree', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExW', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBA', 'SetDefaultCommConfigW', 'WritePrivateProfileStructA', 'HeapQueryInformation', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputA', 'GetVersionExA', 'AddAtomA', 'SearchPathW', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'LocalAlloc', 'SetProcessPriorityBoost', 'GetProfileSectionA', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'GetProcessHeap', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileA', 'GetLastError', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceA', 'SetLastError', 'DeleteVolumeMountPointA', 'FatalAppExitA', 'OpenFileMappingA', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'SetDefaultCommConfigA', 'ContinueDebugEvent', 'VirtualAlloc', 'InterlockedExchangeAdd', 'GlobalFix', 'GetACP', 'GlobalFindAtomA', 'lstrcatA', 'GetPrivateProfileStringA', 'GetMailslotInfo', 'CreateActCtxW', 'GetPrivateProfileIntW', '_lwrite', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'GetAtomNameW', 'FlushConsoleInputBuffer', 'EnumResourceTypesA', 'lstrlenA', 'MoveFileW', 'WriteConsoleA', 'lstrcpyA', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetFileAttributesExA', 'MoveFileA', 'GetVolumePathNameW', 'SetCommMask', 'SetFileShortNameW', 'VerLanguageNameA', 'LockFile', 'EnumDateFormatsW', 'WTSGetActiveConsoleSessionId', 'LoadLibraryW', 'GetOverlappedResult', 'AttachConsole', 'GlobalGetAtomNameA', 'SetComputerNameW', 'GetConsoleAliasExesLengthW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressW', 'DebugActiveProcess', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetTickCount', 'GetModuleFileNameA', 'GetConsoleAliasesLengthW', 'GlobalWire', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPagesScatter', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileA', 'GetDateFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesW', 'OpenWaitableTimerW', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'SetUnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'Sleep', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'WriteFile', 'HeapAlloc', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapSize', 'HeapReAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'GetConsoleOutputCP', 'CloseHandle', 'FlushFileBuffers'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'MessageBoxA', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'SwitchToThread', 'GetCurrentThreadId', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SizeofResource', 'SetFileAttributesW', 'SetEvent', 'ResetEvent', 'LockResource', 'LocalFree', 'LoadResource', 'IsValidLocale', 'GetVersionExW', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFileAttributesW', 'GetEnvironmentVariableW', 'GetDiskFreeSpaceW', 'GetCPInfo', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindFirstFileW', 'FindClose', 'EnumSystemLocalesW', 'EnumResourceNamesW', 'EnumCalendarInfoW', 'CreateFileW', 'CreateEventW', 'CompareStringW', 'CloseHandle', 'ShellExecuteExW'], ['GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualAlloc', '__std_type_info_destroy_list', '_except_handler4_common', 'memcpy', 'memset', '_cexit', '_configure_narrow_argv', '_execute_onexit_table', '_initialize_narrow_environment', '_initialize_onexit_table', '_initterm', '_initterm_e', '_seh_filter_dll'], ['GetModuleFileNameW', 'GetStdHandle', 'GetBinaryTypeA', 'LockFile', 'GetProcessIdOfThread', 'SetEvent', 'GetModuleHandleW', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'FreeLibrary', 'GetLastError', 'LoadLibraryA', 'RaiseException', 'SetGraphicsMode', 'SelectPalette'], ['GetModuleHandleA', 'EndPaint', 'RegQueryValueA', 'DSA_Create', 'ShellAboutW', '_CorExeMain'], ['GetStartupInfoA', 'GetModuleHandleA', 'GetTimeFormatA', 'ExitThread', 'GetLastError', 'FormatMessageA', 'LocalFree', 'Sleep', 'GetComputerNameA', 'CreateThread', 'PostQuitMessage', 'DialogBoxParamA', 'GetDC', 'EndDialog', 'MessageBoxA', 'PostMessageA', 'EndPaint', 'DefWindowProcA', 'LoadIconA', 'RegisterClassExA', 'AdjustWindowRectEx', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'IsDialogMessageW', 'ReleaseDC', 'LoadCursorA', 'BeginPaint', 'DeleteObject', 'GetStockObject', 'LineTo', 'MoveToEx', 'CreateSolidBrush', 'Ellipse', 'GetCurrentObject', 'CreatePen', 'Polygon', 'SelectObject', 'RegOpenKeyExW', 'WSACleanup', 'closesocket', 'ntohs', 'getsockname', 'bind', 'htons', 'gethostbyname', 'socket', 'accept', 'listen', 'connect', 'recv', 'send', 'WSAGetLastError', 'WSAStartup', '?_Grow@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAE_NI_N@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?_Mode@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEHH@Z', '?_Init@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAEXPBDIH@Z', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', '?clear@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?close@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@XZ', '?_Init@locale@std@@CAPAV_Locimp@12@XZ', '?_Global@_Locimp@locale@std@@0PAV123@A', '??_8?$basic_ofstream@DU?$char_traits@D@std@@@std@@7B@', '??0locale@std@@QAE@XZ', '??_7?$basic_filebuf@DU?$char_traits@D@std@@@std@@6B@', '?_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@12@@Z', '??_7?$basic_ofstream@DU?$char_traits@D@std@@@std@@6B@', '?pbackfail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHPADH@Z', '?seekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@JW4seekdir@ios_base@2@H@Z', '?seekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@V32@H@Z', '?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PADH@Z', '?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '??_7?$basic_istream@DU?$char_traits@D@std@@@std@@6B@', '?__Fiopen@std@@YAPAU_iobuf@@PBDH@Z', '?setp@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD0@Z', '?setg@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD00@Z', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAPAD0PAH001@Z', '?_Stinit@?1??_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@23@@Z@4HA', '?_Initcvt@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '?clear@ios_base@std@@QAEXH_N@Z', '??_7ios_base@std@@6B@', '??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N1@Z', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '??1_Lockit@std@@QAE@XZ', '??0_Lockit@std@@QAE@XZ', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@II@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', '?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAE_NI_N@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@II@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AA_N@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAH@Z', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1ios_base@std@@UAE@XZ', '??1locale@std@@QAE@XZ', '??_7?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@', '?_Tidy@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAEXXZ', '??_7?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '?str@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@J@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@N@Z', '??_7?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@', '??_7?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@', '?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z', '??_7?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@', '??_7?$basic_ios@DU?$char_traits@D@std@@@std@@6B@', '??0ios_base@std@@IAE@XZ', '??_8?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B@', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAJ@Z', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAN@Z', '?_C@?1??_Nullstr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@CAPBGXZ@4GB', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@ABV12@II@Z', '?npos@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@2IB', '??0?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z', '?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAEX_N@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z', '??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '?_Split@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXXZ', '?_Xran@std@@YAXXZ', '?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_Xlen@std@@YAXXZ', '??5std@@YAAAV?$basic_istream@DU?$char_traits@D@std@@@0@AAV10@AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '??1?$basic_iostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ', '__CxxFrameHandler', '__dllonexit', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '?terminate@@YAXXZ', '_except_handler3', 'free', 'fclose', 'vsprintf', 'sprintf', '_controlfp', '_errno', 'strerror', 'memmove', 'tolower', 'wcslen', '_onexit', 'time', 'srand', 'rand', '_ftol', '_CxxThrowException', '??2@YAPAXI@Z'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'EndPaint', 'CreateCompatibleBitmap', 'RegCreateKeyExA', 'ShellExecuteA', 'CoUninitialize', 'VarI4FromStr', 'PathFileExistsA', 'InitCommonControlsEx'], ['LoadLibraryA', 'GetOEMCP', 'GetACP', 'ReadFile', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'GetStringTypeW', 'CreateFileA', 'GetVersionExA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'IsValidCodePage', 'IsValidLocale', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'SetEndOfFile', 'GetTimeFormatA', 'ExitThread', 'GetLastError', 'FormatMessageA', 'LocalFree', 'GetComputerNameA', 'Sleep', 'GetStringTypeA', 'CreateThread', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'CloseHandle', 'UnhandledExceptionFilter', 'IsBadWritePtr', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'SetUnhandledExceptionFilter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RtlUnwind', 'RaiseException', 'HeapFree', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'CompareStringA', 'CompareStringW', 'HeapSize', 'GetProcAddress', 'SetEnvironmentVariableA', 'ReleaseDC', 'GetDC', 'IsDialogMessageW', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'UpdateWindow', 'ShowWindow', 'CreateWindowExA', 'AdjustWindowRectEx', 'RegisterClassExA', 'LoadIconA', 'LoadCursorA', 'DefWindowProcA', 'EndPaint', 'PostMessageA', 'MessageBoxA', 'EndDialog', 'PostQuitMessage', 'DialogBoxParamA', 'BeginPaint', 'GetCurrentObject', 'Ellipse', 'Polygon', 'MoveToEx', 'LineTo', 'GetStockObject', 'DeleteObject', 'CreateSolidBrush', 'SelectObject', 'CreatePen', 'RegOpenKeyExW', 'WSAStartup', 'WSACleanup', 'closesocket', 'ntohs', 'getsockname', 'bind', 'htons', 'gethostbyname', 'socket', 'accept', 'listen', 'connect', 'recv', 'send', 'WSAGetLastError'], ['GetModuleHandleA', 'CoCreateInstance', 'SysFreeString', 'CryptStringToBinaryA'], ['GetModuleHandleA', 'ScrollDC', 'GetUserNameA', 'ShellAboutW', 'ImageList_Create', '_CorExeMain'], ['QueryDosDeviceA', 'GetLogicalDriveStringsA', 'WideCharToMultiByte', 'LocalFree', 'LocalAlloc', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetComputerNameW', 'GetLastError', 'GetProcAddress', 'LoadLibraryA', 'GetTickCount', 'CompareStringW', 'CompareStringA', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'GetOEMCP', 'GetACP', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'RtlUnwind', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetFileAttributesW', 'MoveFileW', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCommandLineA', 'GetVersion', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetModuleHandleA', 'CloseHandle', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'WriteFile', 'SetFilePointer', 'VirtualAlloc', 'HeapReAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'IsBadReadPtr', 'IsBadCodePtr', 'GetCPInfo', 'SetStdHandle', 'FlushFileBuffers', 'SetEnvironmentVariableA', 'htons', 'bind', 'listen', 'inet_addr', 'socket', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'VerQueryValueW'], ['WriteFile', 'HeapReAlloc', 'FindFirstChangeNotificationW', 'HeapAlloc', 'WaitForSingleObject', 'FindCloseChangeNotification', 'GetFileAttributesW', 'MultiByteToWideChar', 'GetLastError', 'SetLastError', 'FindNextChangeNotification', 'DeleteFileW', 'VirtualFree', 'DeleteCriticalSection', 'WideCharToMultiByte', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'CreateDirectoryW', 'GetModuleFileNameW', 'GetFullPathNameW', 'ExpandEnvironmentStringsW', 'GetCurrentProcess', 'VirtualAlloc', 'VirtualProtect', 'GetSystemTime', 'SystemTimeToFileTime', 'GetModuleHandleA', 'LoadLibraryA', 'GetVersionExA', 'CreateEventA', 'SetEvent', 'CreateFileA', 'FormatMessageA', 'GetProcAddress', 'CreateToolhelp32Snapshot', 'SetFilePointer', 'Thread32Next', 'GetCurrentProcessId', 'WaitForMultipleObjects', 'CreateWaitableTimerA', 'SetWaitableTimer', 'TerminateProcess', 'FreeLibrary', 'GetTickCount', 'LocalAlloc', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW', 'VirtualQuery', 'GetStringTypeW', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetProcessHeap', 'HeapFree', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryW', 'Sleep', 'CreateThread', 'Thread32First', 'CloseHandle', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitThread', 'ResumeThread', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapSize', 'ExitProcess', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetTimeZoneInformation', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'EnumThreadWindows', 'EnumChildWindows', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'DestroyWindow', 'CreateWindowExA', 'RegisterClassA', 'PostMessageA', 'IsWindowVisible', 'CallWindowProcA', 'SetWindowLongA', 'GetWindowLongA', 'GetClassNameA', 'GetActiveWindow', 'RegSetValueExA', 'RegCreateKeyExA', 'GetTokenInformation', 'OpenProcessToken', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'RegDeleteKeyW', 'RegQueryValueExA', 'SysAllocStringLen', 'SysFreeString', 'GetModuleInformation'], ['lstrcpyW', 'GetTickCount', 'CreateEventW', 'CloseHandle', 'WaitForSingleObject', 'ResetEvent', 'SetEvent', 'GetSystemInfo', 'GlobalMemoryStatusEx', 'GetComputerNameW', 'GetComputerNameExW', 'GetACP', 'GetOEMCP', 'GetPriorityClass', 'GetCurrentProcess', 'GetThreadPriority', 'GetCurrentThread', 'SetPriorityClass', 'SetThreadPriority', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'LoadLibraryW', 'GetProcAddress', 'FreeLibrary', 'GetModuleHandleW', 'GetNativeSystemInfo', 'CreateFileW', 'DeleteCriticalSection', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'DeleteFileW', 'GetTempPathW', 'GetCurrentThreadId', 'GetDiskFreeSpaceExW', 'GetVolumeInformationW', 'GetDriveTypeW', 'GetLogicalDriveStringsW', 'GetFileAttributesExW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'GetFileSize', 'TerminateProcess', 'GetStdHandle', 'CreatePipe', 'SetStdHandle', 'DuplicateHandle', 'CreateProcessW', 'WriteConsoleW', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'DecodePointer', 'RaiseException', 'GetLastError', 'Sleep', 'InitializeCriticalSectionEx', 'GetModuleFileNameW', 'OutputDebugStringA', 'GetFileSizeEx', 'lstrlenW', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'HeapReAlloc', 'HeapSize', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'InterlockedFlushSList', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'RtlUnwind', 'CreateThread', 'ExitThread', 'ResumeThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'ExitProcess', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'GetFileType', 'GetStringTypeW', 'LCMapStringW', 'CharLowerW', 'CharUpperW', 'wsprintfW', 'RegCloseKey', 'RegSetValueExW', 'RegCreateKeyW', 'RegOpenKeyW', 'RegQueryValueExW', 'CoCreateGuid', 'StrStrW', 'StrCmpW', 'StrCpyW', 'WSAStartup', 'GetAddrInfoW', 'FreeAddrInfoW', 'WSACleanup', 'send', 'connect', 'setsockopt', 'recv', 'closesocket', 'htons', 'socket'], ['WaitForSingleObject', 'CreateProcessA', 'GetStartupInfoA', 'Sleep', 'SetLocalTime', 'GetUserDefaultLCID', 'LCMapStringA', 'GetTickCount', 'ReadFile', 'GetFileSize', 'SetFilePointer', 'GetModuleFileNameA', 'IsBadReadPtr', 'CreateDirectoryA', 'SetFileAttributesA', 'GetCommandLineA', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'InterlockedExchange', 'WriteFile', 'SetEndOfFile', 'DeleteFileA', 'ExitProcess', 'CloseHandle', 'GetProcessHeap', 'GetModuleHandleA', 'MoveFileExA', 'CreateFileA', 'CreateEventA', 'Thread32Next', 'Thread32First', 'GlobalFree', 'GlobalAlloc', 'OpenEventA', 'RtlMoveMemory', 'lstrcpyn', 'IsDebuggerPresent', 'VirtualProtectEx', 'VirtualQueryEx', 'RtlZeroMemory', 'TerminateProcess', 'OpenProcess', 'GetCurrentProcessId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'GetLocalTime', 'DeviceIoControl', 'FlushFileBuffers', 'SetStdHandle', 'IsBadCodePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LCMapStringW', 'RaiseException', 'IsBadWritePtr', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapSize', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'TlsGetValue', 'SetLastError', 'TlsFree', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'InterlockedIncrement', 'InterlockedDecrement', 'RtlUnwind', 'GetVersion', 'GetCurrentProcess', 'GetLastError', 'GetVersionExA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetTempPathA', 'TerminateThread', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'CreateThread', 'PathFileExistsA', 'PathFindFileNameA', 'TranslateMessage', 'GetMessageA', 'DispatchMessageA', 'wsprintfA', 'MessageBoxA', 'PostMessageA', 'GetCursorPos', 'PeekMessageA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'StartServiceA', 'CreateServiceA', 'CryptEncrypt', 'CryptGetHashParam', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptGetKeyParam', 'CryptDestroyKey', 'CryptSetKeyParam', 'CryptDecrypt', 'CryptReleaseContext', 'CryptImportKey', 'CryptAcquireContextA', 'DeleteService', 'ControlService', 'CloseServiceHandle', 'OpenServiceA', 'OpenSCManagerA', 'RegOpenKeyExA', 'CLSIDFromString', 'CoCreateInstance', 'OleRun', 'CoUninitialize', 'CLSIDFromProgID', 'CoInitialize', 'InternetGetCookieA', 'InternetSetCookieA', 'RegisterTypeLib', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim', 'SafeArrayDestroy', 'VariantClear', 'SysAllocString', 'SafeArrayCreate', 'VariantCopy', 'LHashValOfNameSys', 'LoadTypeLib', 'VariantChangeType', 'VarR8FromBool', 'VarR8FromCy', 'SysFreeString', 'SafeArrayGetElemsize', 'SafeArrayUnaccessData', 'VariantInit', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayAccessData', 'WinHttpOpen', 'WinHttpSetCredentials', 'WinHttpSetTimeouts', 'WinHttpReadData', 'WinHttpQueryDataAvailable', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpQueryHeaders', 'WinHttpSetOption', 'WinHttpAddRequestHeaders', 'WinHttpCloseHandle', 'SHGetSpecialFolderPathA'], ['send', 'socket', 'inet_ntoa', 'ntohs', 'recvfrom', 'sendto', 'recv', '__WSAFDIsSet', 'WSAStartup', 'select', 'accept', 'listen', 'bind', 'closesocket', 'WSACleanup', 'ioctlsocket', 'htons', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'connect', 'setsockopt', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_ReplaceIcon', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'InitCommonControlsEx', 'ImageList_Create', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'DuplicateHandle', 'CreateThread', 'WaitForSingleObject', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'IsWow64Process', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleFileNameW', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'SetEndOfFile', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'SetCurrentDirectoryW', 'GetLongPathNameW', 'GetShortPathNameW', 'DeleteFileW', 'FindNextFileW', 'CopyFileExW', 'MoveFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'CopyFileW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'HeapReAlloc', 'HeapSize', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'GetProcessId', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'DecodePointer', 'GetLastError', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCurrentThread', 'CloseHandle', 'GetFullPathNameW', 'EncodePointer', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'WriteConsoleW', 'FindClose', 'SetEnvironmentVariableA', 'AdjustWindowRectEx', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'SetRect', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'MonitorFromRect', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'MessageBoxW', 'DefWindowProcW', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'UnregisterHotKey', 'CheckMenuRadioItem', 'CharLowerBuffW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'SystemParametersInfoW', 'LoadImageW', 'GetClassNameW', 'StrokePath', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'GetDeviceCaps', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'LineTo', 'AngleArc', 'MoveToEx', 'Ellipse', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'GetTextFaceW', 'CreateFontW', 'SetTextColor', 'PolyDraw', 'BeginPath', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'StrokeAndFillPath', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetAce', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'RegCreateKeyExW', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'AddAce', 'SetSecurityDescriptorDacl', 'GetUserNameW', 'InitiateSystemShutdownExW', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHCreateShellItem', 'SHGetDesktopFolder', 'SHGetSpecialFolderLocation', 'SHGetFolderPathW', 'SHFileOperationW', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'SafeArrayAllocDescriptorEx', 'SafeArrayCreateVector', 'RegisterTypeLib', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'VariantCopy', 'VariantClear', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'RegisterTypeLibForUser', 'UnRegisterTypeLibForUser', 'UnRegisterTypeLib', 'CreateDispTypeInfo', 'SysAllocString', 'VariantInit'], ['GetProcessHeap', 'GetSystemTimeAsFileTime', 'GetTickCount', 'ExitThread', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'SetEndOfFile', 'GlobalUnlock', 'SearchPathA', 'IsValidCodePage', 'GetDateFormatA', 'UnlockFile', 'GetDiskFreeSpaceA', 'RaiseException', 'InterlockedExchange', 'LockFile', 'GetTimeFormatA', 'GetShortPathNameA', 'WritePrivateProfileStringA', 'GlobalFlags', 'GetTimeZoneInformation', 'CreateDirectoryA', 'GetExitCodeProcess', 'GlobalFindAtomW', 'HeapFree', 'DuplicateHandle', 'GlobalLock', 'ExpandEnvironmentStringsA', 'FindFirstFileA', 'GlobalAddAtomW', 'GetExitCodeThread', 'lstrcmpiA', 'GetFileAttributesA', 'CompareFileTime', 'GetVolumeInformationW', 'FindClose', 'GetTempPathA', 'GetConsoleCP', 'SetFileAttributesA', 'FlushFileBuffers', 'GetDriveTypeW', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'FindNextFileA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'SetFilePointer', 'GetModuleHandleW', 'GetLastError', 'GetVersionExA', 'GetProcAddress', 'IsBadReadPtr', 'RemoveDirectoryA', 'FreeLibrary', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'CloseHandle', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'WriteFile', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'GetSystemMetrics', 'SendMessageA', 'SetTextColor', 'Rectangle', 'AllocateLocallyUniqueId', 'RegNotifyChangeKeyValue', 'SafeArrayPutElement', 'VarAdd', 'VarDecRound'], ['GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'GetModuleHandleA', 'GetListBoxInfo', 'GetAsyncKeyState', 'GetWindowDC', 'GetWindowContextHelpId', 'DrawMenuBar', 'GetTopWindow', 'GetSysColor', 'GetFocus', 'InSendMessage', 'CharLowerW', 'GetCapture', 'GetClipboardOwner', 'CharUpperA', 'GetOpenClipboardWindow', 'CreatePopupMenu', 'GetSystemMetrics', 'GetSystemPaletteUse', 'DeleteDC', 'CreateMetaFileW', 'BeginPath', 'SetMetaRgn', 'SwapBuffers', 'GetPixelFormat', 'GetStockObject', 'GetROP2', 'GetBkMode', 'RegOpenKeyExW'], ['GetNativeSystemInfo', 'GlobalMemoryStatus', 'GetConsoleCP', 'FreeConsole', 'GetVersion', 'EscapeCommFunction', 'GetUrlCacheEntryInfoExA', 'FindMimeFromData', 'EndPath', 'VarCyFromI2', 'memset', 'strtod', 'GetQueueStatus', 'GetInputState'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetQueueStatus', 'GetPropA', 'GetProcessWindowStation', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['WSASetLastError', 'ntohl', 'ntohs', 'htonl', 'htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'GetTimeZoneInformation', 'InitializeSListHead', 'LoadLibraryW', 'Sleep', 'FreeLibraryAndExitThread', 'GetProcAddress', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'GetVersionExW', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetEndOfFile', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'InitializeCriticalSectionAndSpinCount', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetThreadContext', 'HeapReAlloc', 'SetThreadContext', 'HeapAlloc', 'HeapFree', 'Thread32First', 'HeapDestroy', 'Thread32Next', 'OpenThread', 'VirtualProtect', 'CreateToolhelp32Snapshot', 'SuspendThread', 'ResumeThread', 'RaiseException', 'DecodePointer', 'OpenMutexW', 'CreateMutexW', 'ReleaseMutex', 'VirtualQuery', 'VirtualFree', 'GetSystemInfo', 'GetModuleHandleA', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'SetEnvironmentVariableA', 'FormatMessageA', 'OpenEventA', 'TlsAlloc', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'FileTimeToSystemTime', 'GetCPInfo', 'ExitThread', 'LoadLibraryExW', 'IsDebuggerPresent', 'ExitProcess', 'AreFileApisANSI', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapSize', 'GetProcessHeap', 'GetCurrentThread', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetStdHandle', 'SetActiveWindow', 'EnumWindows', 'GetWindowTextW', 'GetClassNameW', 'SendMessageTimeoutW', 'BringWindowToTop', 'RegEnumValueW', 'RegCloseKey', 'RegOpenKeyExW', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'ImageList_SetIconSize'], ['WSACleanup', 'inet_addr', 'gethostbyname', 'gethostname', 'WSAStartup', 'mixerSetControlDetails', 'waveOutGetVolume', 'joyGetPosEx', 'mixerGetControlDetailsW', 'mixerOpen', 'mixerGetDevCapsW', 'mixerGetLineControlsW', 'waveOutSetVolume', 'mixerClose', 'mciSendStringW', 'joyGetDevCapsW', 'mixerGetLineInfoW', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'ImageList_Create', 'CreateStatusWindowW', 'ImageList_ReplaceIcon', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetModuleBaseNameW', 'GetModuleFileNameExW', 'FindNextFileW', 'FindClose', 'FileTimeToLocalFileTime', 'SetEnvironmentVariableW', 'Beep', 'MoveFileW', 'OutputDebugStringW', 'CreateProcessW', 'GetFileAttributesW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetExitCodeProcess', 'WriteProcessMemory', 'ReadProcessMemory', 'GetCurrentProcessId', 'OpenProcess', 'TerminateProcess', 'SetPriorityClass', 'SetLastError', 'GetEnvironmentVariableW', 'GetLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'GetDiskFreeSpaceW', 'SetVolumeLabelW', 'CreateFileW', 'DeviceIoControl', 'GetDriveTypeW', 'GetVolumeInformationW', 'CreateDirectoryW', 'ReadFile', 'WriteFile', 'DeleteFileW', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'SetFileTime', 'GetFileSizeEx', 'GetSystemTime', 'GetSystemDefaultUILanguage', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetFullPathNameW', 'GetShortPathNameW', 'FindFirstFileW', 'FreeLibrary', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualProtect', 'QueryDosDeviceW', 'CompareStringW', 'RemoveDirectoryW', 'CopyFileW', 'GetCurrentProcess', 'FormatMessageW', 'GetPrivateProfileStringW', 'GetPrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'WritePrivateProfileStringW', 'WritePrivateProfileSectionW', 'SetEndOfFile', 'GetACP', 'GetFileType', 'GetStdHandle', 'SetFilePointerEx', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetFileSize', 'VirtualAllocEx', 'VirtualFreeEx', 'EnumResourceNamesW', 'LoadLibraryExW', 'GlobalSize', 'GetOEMCP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'HeapQueryInformation', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'ExitProcess', 'HeapAlloc', 'TlsFree', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'LockResource', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetSystemTimeAsFileTime', 'GetModuleFileNameW', 'DeleteCriticalSection', 'GetCPInfo', 'GetVersionExW', 'GetModuleHandleW', 'GetProcAddress', 'GetLastError', 'CreateMutexW', 'CloseHandle', 'GetExitCodeThread', 'SetThreadPriority', 'CreateThread', 'lstrcmpiW', 'GetCurrentThreadId', 'GlobalUnlock', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GetCurrentDirectoryW', 'SetErrorMode', 'InitializeCriticalSection', 'SetCurrentDirectoryW', 'Sleep', 'GetTickCount', 'MulDiv', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'SetHandleCount', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'RaiseException', 'LCMapStringW', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'TlsSetValue', 'SetFilePointer', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'LoadLibraryW', 'VirtualQuery', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetMenuStringW', 'ExitWindowsEx', 'SetMenu', 'FlashWindow', 'MapWindowPoints', 'RedrawWindow', 'SetParent', 'GetClassInfoExW', 'GetAncestor', 'UpdateWindow', 'GetMessagePos', 'GetClassLongW', 'DefDlgProcW', 'CallWindowProcW', 'CheckRadioButton', 'IntersectRect', 'PtInRect', 'CreateAcceleratorTableW', 'DestroyAcceleratorTable', 'InsertMenuItemW', 'SetMenuDefaultItem', 'RemoveMenu', 'SetMenuItemInfoW', 'IsMenu', 'GetMenuItemInfoW', 'CreateMenu', 'CreatePopupMenu', 'SetMenuInfo', 'AppendMenuW', 'DestroyMenu', 'TrackPopupMenuEx', 'CreateIconIndirect', 'GetDesktopWindow', 'CopyImage', 'CreateIconFromResourceEx', 'EnumClipboardFormats', 'GetWindow', 'BringWindowToTop', 'GetTopWindow', 'GetIconInfo', 'SetWindowTextW', 'IsWindowVisible', 'CheckMenuItem', 'MessageBoxW', 'LoadImageW', 'GetLastInputInfo', 'SetClipboardViewer', 'LoadAcceleratorsW', 'EnableMenuItem', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'DestroyIcon', 'DestroyWindow', 'IsCharAlphaW', 'MapVirtualKeyW', 'GetSysColorBrush', 'VkKeyScanExW', 'GetWindowTextW', 'mouse_event', 'WindowFromPoint', 'GetSystemMetrics', 'keybd_event', 'SetKeyboardState', 'GetKeyboardState', 'GetCursorPos', 'GetAsyncKeyState', 'AttachThreadInput', 'SendInput', 'UnregisterHotKey', 'RegisterHotKey', 'PostQuitMessage', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PostThreadMessageW', 'IsCharUpperW', 'IsCharLowerW', 'IsCharAlphaNumericW', 'ToUnicodeEx', 'GetKeyboardLayout', 'CallNextHookEx', 'CharLowerW', 'ReleaseDC', 'GetDC', 'OpenClipboard', 'GetClipboardData', 'GetClipboardFormatNameW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostMessageW', 'FindWindowW', 'EndDialog', 'IsWindow', 'DispatchMessageW', 'GetCursor', 'ClientToScreen', 'MessageBeep', 'IsWindowEnabled', 'SetDlgItemTextW', 'GetDlgItem', 'SendDlgItemMessageW', 'DialogBoxParamW', 'SetForegroundWindow', 'DefWindowProcW', 'FillRect', 'ChangeClipboardChain', 'DrawIconEx', 'TranslateMessage', 'ShowWindow', 'CountClipboardFormats', 'SetWindowLongW', 'ScreenToClient', 'IsDialogMessageW', 'SendMessageW', 'GetWindowLongW', 'GetKeyState', 'TranslateAcceleratorW', 'GetSysColor', 'RegisterWindowMessageW', 'IsIconic', 'IsZoomed', 'EnumWindows', 'GetWindowTextLengthW', 'EnableWindow', 'InvalidateRect', 'SetLayeredWindowAttributes', 'SetWindowPos', 'SetWindowRgn', 'SetFocus', 'GetGUIThreadInfo', 'SetActiveWindow', 'EnumChildWindows', 'MoveWindow', 'GetQueueStatus', 'GetWindowRect', 'GetClientRect', 'SystemParametersInfoW', 'AdjustWindowRectEx', 'KillTimer', 'PeekMessageW', 'GetFocus', 'GetClassNameW', 'GetWindowThreadProcessId', 'GetForegroundWindow', 'GetMessageW', 'SetTimer', 'GetParent', 'GetDlgCtrlID', 'CharUpperW', 'IsClipboardFormatAvailable', 'DrawTextW', 'MapVirtualKeyExW', 'SetRect', 'GetMenu', 'GetPixel', 'GetClipBox', 'GetCharABCWidthsW', 'SetBkMode', 'EnumFontFamiliesExW', 'CreateDIBSection', 'GdiFlush', 'ExcludeClipRect', 'SetBkColor', 'SetTextColor', 'FillRgn', 'BitBlt', 'CreateCompatibleBitmap', 'GetSystemPaletteEntries', 'GetDIBits', 'CreateCompatibleDC', 'CreatePolygonRgn', 'CreateRectRgn', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'DeleteDC', 'GetObjectW', 'GetTextMetricsW', 'GetTextFaceW', 'SelectObject', 'GetStockObject', 'CreateDCW', 'CreateSolidBrush', 'CreateFontW', 'GetClipRgn', 'GetDeviceCaps', 'DeleteObject', 'CommDlgExtendedError', 'GetOpenFileNameW', 'GetSaveFileNameW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'CloseServiceHandle', 'UnlockServiceDatabase', 'LockServiceDatabase', 'OpenSCManagerW', 'GetUserNameW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCloseKey', 'RegConnectRegistryW', 'RegDeleteValueW', 'DragQueryPoint', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderPathW', 'ShellExecuteExW', 'Shell_NotifyIconW', 'DragFinish', 'DragQueryFileW', 'ExtractIconW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CLSIDFromString', 'CoGetObject', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'SafeArrayGetLBound', 'GetActiveObject', 'OleLoadPicture', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayAccessData', 'SafeArrayUnlock', 'SafeArrayPtrOfIndex', 'SafeArrayLock', 'SafeArrayGetDim', 'SafeArrayDestroy', 'SafeArrayGetUBound', 'VariantCopyInd', 'SafeArrayCopy', 'SysAllocString', 'VariantChangeType', 'VariantClear', 'SafeArrayCreate', 'SysFreeString', 'SysStringLen'], ['RasDialA', 'RasEditPhonebookEntryA', 'RasCreatePhonebookEntryA', 'RasHangUpA', 'RasEnumEntriesA', 'RasGetErrorStringA', 'RasGetProjectionInfoA', 'RasEnumConnectionsA', 'RasGetConnectStatusA', 'sndPlaySoundA', 'VerQueryValueA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'GetVersion', 'FormatMessageA', 'LocalFree', 'GetCurrentThread', 'SetThreadPriority', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileIntA', 'SearchPathA', 'GetWindowsDirectoryA', 'FreeLibrary', 'lstrcatA', 'lstrlenA', 'WinExec', 'GetLastError', 'CreateToolhelp32Snapshot', 'OpenProcess', 'GetVersionExA', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetModuleFileNameA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'WideCharToMultiByte', 'LoadLibraryA', 'MulDiv', 'MultiByteToWideChar', 'lstrlenW', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'GlobalSize', 'CopyFileA', 'GlobalFree', 'lstrcmpA', 'InterlockedExchange', 'CompareStringA', 'GetLocaleInfoA', 'EnumResourceLanguagesA', 'ConvertDefaultLocale', 'GetCurrentThreadId', 'GlobalDeleteAtom', 'CloseHandle', 'ResumeThread', 'WaitForSingleObject', 'SetEvent', 'SuspendThread', 'CreateEventA', 'lstrcmpW', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'FreeResource', 'GetCurrentProcessId', 'MoveFileA', 'DeleteFileA', 'GetStringTypeExA', 'GetThreadLocale', 'lstrcmpiA', 'ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'DuplicateHandle', 'GetCurrentProcess', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetShortPathNameA', 'CreateFileA', 'GetModuleFileNameW', 'InterlockedDecrement', 'VirtualProtect', 'LocalAlloc', 'TlsGetValue', 'GlobalReAlloc', 'GlobalHandle', 'TlsAlloc', 'TlsSetValue', 'LocalReAlloc', 'TlsFree', 'GetModuleHandleW', 'InterlockedIncrement', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'GlobalFlags', 'GetCPInfo', 'GetOEMCP', 'GetAtomNameA', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileSizeEx', 'GetFileTime', 'FindResourceExA', 'RtlUnwind', 'RaiseException', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'FatalAppExitA', 'GetStdHandle', 'GetTimeZoneInformation', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'GetProcAddress', 'GetModuleHandleA', 'SetThreadContext', 'Sleep', 'GetFileAttributesA', 'lstrcpyA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'SetLastError', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'ShowWindow', 'ScrollWindowEx', 'EndDialog', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'GetDesktopWindow', 'GetMenuItemInfoA', 'DestroyMenu', 'GetAsyncKeyState', 'MapDialogRect', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'ClientToScreen', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'WindowFromPoint', 'GetKeyNameTextA', 'MapVirtualKeyA', 'GetSysColorBrush', 'DeleteMenu', 'WaitMessage', 'DestroyIcon', 'GetDialogBaseUnits', 'UnregisterClassA', 'SetRectEmpty', 'TranslateAcceleratorA', 'BringWindowToTop', 'CreatePopupMenu', 'InsertMenuItemA', 'LoadAcceleratorsA', 'GetMenuBarInfo', 'ReuseDDElParam', 'UnpackDDElParam', 'SetRect', 'IsRectEmpty', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'SetDlgItemInt', 'GetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'ShowOwnedPopups', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'ShowScrollBar', 'UpdateWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'GetWindowLongA', 'SetWindowPos', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'SetWindowsHookExA', 'CallNextHookEx', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'ValidateRect', 'PostQuitMessage', 'GetMenuState', 'GetMenuStringA', 'InsertMenuA', 'GetMenuItemCount', 'RemoveMenu', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'CharUpperA', 'GetWindowThreadProcessId', 'RemovePropA', 'IsWindowEnabled', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'SetMenuDefaultItem', 'GetCursorPos', 'TrackPopupMenu', 'LoadMenuA', 'GetSubMenu', 'GetMenuItemID', 'SendMessageA', 'PostMessageA', 'IsIconic', 'FindWindowA', 'MessageBoxA', 'PeekMessageA', 'TranslateMessage', 'DispatchMessageA', 'wsprintfA', 'SetFocus', 'SetActiveWindow', 'SetWindowLongA', 'LoadCursorA', 'CopyIcon', 'EnableMenuItem', 'CheckMenuItem', 'GetMessageTime', 'RegisterWindowMessageA', 'GetLastActivePopup', 'SetForegroundWindow', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'GetClientRect', 'LoadIconA', 'EnableWindow', 'GetSystemMetrics', 'LoadImageA', 'OffsetRect', 'FillRect', 'RedrawWindow', 'SetTimer', 'KillTimer', 'GetSysColor', 'LoadBitmapA', 'SetCursor', 'PtInRect', 'InflateRect', 'MessageBeep', 'DestroyCursor', 'IsWindow', 'ReleaseCapture', 'GetParent', 'SetCapture', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'GetWindowRect', 'GetMessageA', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PolyDraw', 'ArcTo', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateRectRgnIndirect', 'PatBlt', 'GetTextMetricsA', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'PolyBezierTo', 'PolylineTo', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateFontIndirectA', 'GetStockObject', 'BitBlt', 'CreateCompatibleDC', 'GetObjectA', 'CreateCompatibleBitmap', 'SetRectRgn', 'SetWorldTransform', 'ModifyWorldTransform', 'SetMapMode', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'LineTo', 'MoveToEx', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'SetArcDirection', 'SetColorAdjustment', 'DeleteObject', 'SelectClipRgn', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'GetViewportExtEx', 'GetWindowExtEx', 'GetPixel', 'StartDocA', 'PtVisible', 'RectVisible', 'TextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'ExtTextOutA', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'GetBkColor', 'EnumFontFamiliesExA', 'DPtoLP', 'GetMapMode', 'CombineRgn', 'RegSetValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'RegDeleteValueA', 'GetUserNameA', 'InitializeAcl', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegConnectRegistryA', 'RegQueryValueA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'ShellExecuteA', 'Shell_NotifyIconA', 'DragFinish', 'PathFileExistsA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathRemoveFileSpecW', 'PathFindExtensionA', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'GetFileTitleA', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'CreateBindCtx', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoUninitialize', 'OleDuplicateData', 'CoCreateInstance', 'CoInitializeEx', 'StringFromGUID2', 'CoDisconnectObject', 'CLSIDFromString', 'OleRegGetUserType', 'SafeArrayCopy', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['lstrlenW', 'GetLastError', 'FreeLibrary', 'LoadLibraryW', 'SetLastError', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'MultiByteToWideChar', 'GetModuleHandleA', 'FindFirstFileW', 'FindNextFileW', 'GetFileAttributesW', 'GetCommandLineW', 'LocalAlloc', 'LocalFree', 'VerifyVersionInfoW', 'FormatMessageW', 'GetModuleHandleW', 'ExitProcess', 'SetErrorMode', 'VirtualAlloc', 'LoadIconA', 'LoadCursorW', 'UpdateWindow', 'LoadCursorA', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'GetDC', 'BeginPaint', 'GetClientRect', 'DrawTextA', 'EndPaint', 'PostQuitMessage', 'GetStockObject', 'GetColorSpace', 'RegOpenKeyA', 'GetUserNameA', 'RegQueryValueExA', 'PlaySoundA'], ['I_RpcBindingIsClientLocal', 'CreateURLMoniker', 'GetCurrentProcess', 'GetProcessIoCounters', 'GetCommandLineA', 'SetConsoleCP', 'GetPriorityClass', 'GetLogicalDrives', 'HeapSize', 'CancelIo', 'GetIpForwardTable', 'SysStringLen', 'VarI2FromR4', 'UnlockUrlCacheEntryStream', 'GetClipCursor', 'GetSubMenu', 'LockWindowUpdate', 'DestroyCursor', 'GetClipboardSequenceNumber', 'SendDlgItemMessageA', 'ToAsciiEx', 'EndPaint', 'ChangeMenuW', 'NetShareEnum', 'RegQueryValueExA', 'RegOpenKeyW', 'GetSecurityDescriptorDacl', 'RoundRect', 'GetRandomRgn'], ['LocalFree', 'LocalSize', 'LocalUnlock', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OpenFile', 'OutputDebugStringA', 'OutputDebugStringW', 'PeekNamedPipe', 'QueryPerformanceCounter', 'ReadConsoleOutputCharacterW', 'ReadProcessMemory', 'RtlUnwind', 'RtlZeroMemory', 'ScrollConsoleScreenBufferW', 'SetConsoleCP', 'SetConsoleCtrlHandler', 'SetEvent', 'SetFileApisToANSI', 'SetFilePointer', 'SetHandleCount', 'SetStdHandle', 'SetTapeParameters', 'SetThreadLocale', 'SetThreadUILanguage', 'SetTimerQueueTimer', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'LocalAlloc', 'VirtualAllocEx', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileSectionA', 'WritePrivateProfileStringW', 'WritePrivateProfileStructA', 'WriteProcessMemory', 'lstrcatA', 'lstrcmpW', 'lstrcpyA', 'lstrcpyW', 'lstrcpynW', 'lstrlenW', 'HeapSize', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'IsDebuggerPresent', 'SetLastError', 'TlsFree', 'TlsAlloc', 'LoadResource', 'LoadModule', 'LoadLibraryW', 'LoadLibraryExW', 'LoadLibraryA', 'LeaveCriticalSection', 'LCMapStringW', 'LCMapStringA', 'IsDBCSLeadByteEx', 'IsBadWritePtr', 'IsBadReadPtr', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InitializeCriticalSection', 'HeapReAlloc', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalHandle', 'GlobalFree', 'GlobalFindAtomW', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersionExA', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadPriority', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeW', 'GetStringTypeA', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetProfileSectionW', 'GetProcessShutdownParameters', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFileType', 'GetFileAttributesA', 'GetEnvironmentVariableA', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageA', 'FlushInstructionCache', 'FlushFileBuffers', 'FindResourceW', 'FindNextFileA', 'FindAtomW', 'ExpandEnvironmentStringsA', 'ExitProcess', 'EnumDateFormatsW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateSemaphoreW', 'CreateSemaphoreA', 'CreateMutexW', 'CreateHardLinkA', 'CreateFileW', 'CreateEventA', 'CreateDirectoryA', 'CopyFileW', 'CloseHandle', 'CallNamedPipeA', 'VirtualAlloc', 'AreFileApisANSI', 'ScreenToClient', 'ReleaseDC', 'ReleaseCapture', 'RegisterClassW', 'RealGetWindowClassA', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'OpenWindowStationW', 'MoveWindow', 'MonitorFromRect', 'ModifyMenuA', 'MessageBoxW', 'MapWindowPoints', 'LockWindowUpdate', 'LoadStringW', 'LoadMenuW', 'LoadIconW', 'LoadCursorW', 'LoadAcceleratorsW', 'SendMessageW', 'IsDialogMessage', 'InvalidateRect', 'IntersectRect', 'IMPSetIMEW', 'IMPSetIMEA', 'GetSystemMetrics', 'GetMessageW', 'GetMessageTime', 'GetMenuItemRect', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetDesktopWindow', 'GetDC', 'GetClassNameA', 'GetAltTabInfoW', 'EnumPropsW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetMenu', 'SetProcessWindowStation', 'SetRect', 'SetTimer', 'SetUserObjectInformationA', 'ShowWindow', 'SystemParametersInfoW', 'TranslateAcceleratorW', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassW', 'UpdateLayeredWindow', 'UpdateWindow', 'BeginPaint', 'ChangeDisplaySettingsA', 'CharNextW', 'CharUpperBuffW', 'CheckMenuItem', 'WinHelpW', 'wsprintfW', 'KillTimer', 'EndPaint', 'EndDialog', 'DrawTextA', 'DrawMenuBar', 'DrawFocusRect', 'DlgDirListComboBoxW', 'DispatchMessageW', 'DialogBoxParamW', 'DialogBoxIndirectParamA', 'DestroyIcon', 'DefWindowProcW', 'CreateWindowExW', 'CreateAcceleratorTableA', 'CopyAcceleratorTableW', 'IsCharLowerA', 'CreatePolyPolygonRgn', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontW', 'CreateFontIndirectW', 'CreateFontA', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBitmap', 'CombineRgn', 'BitBlt', 'GetDIBColorTable', 'GetDIBits', 'GetDeviceCaps', 'GetLayout', 'GetMetaRgn', 'GetNearestPaletteIndex', 'GetObjectA', 'GetObjectType', 'GetObjectW', 'GetPaletteEntries', 'GetRgnBox', 'GetStockObject', 'GetTextExtentExPointW', 'GetTextExtentPoint32A', 'GetTextExtentPoint32W', 'GetTextFaceA', 'GetTextMetricsW', 'CreateRectRgn', 'IntersectClipRect', 'LineTo', 'MaskBlt', 'MoveToEx', 'Polygon', 'RealizePalette', 'ResizePalette', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBitmapBits', 'SetBkColor', 'SetBkMode', 'SetDIBitsToDevice', 'SetLayout', 'SetLayoutWidth', 'SetMapMode', 'SetPixel', 'SetROP2', 'SetStretchBltMode', 'SetTextColor', 'SetViewportOrgEx', 'StartDocA', 'StartPage', 'StretchBlt', 'StretchDIBits', 'TextOutA', 'PathToRegion', 'CreateRectRgnIndirect', 'CreateRoundRectRgn', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'EndDoc', 'EndPage', 'ExcludeClipRect', 'GdiFixUpHandle', 'GdiFlush', 'GetBitmapBits', 'GetViewportOrgEx', 'GetCurrentObject', 'GetClipBox', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'CloseServiceHandle', 'RegCloseKey', 'OpenServiceA', 'OpenSCManagerA', 'ControlService', 'SHGetDiskFreeSpaceA', 'ShellExecuteW', 'ShellAboutW', 'CommandLineToArgvW', 'DragQueryFile', 'SHBindToParent', 'SHBrowseForFolderW', 'SHCreateDirectoryExW', 'SHGetDesktopFolder', 'WOWShellExecute', 'SHGetFolderPathW', 'SHGetMalloc', 'SHGetPathFromIDListA', 'SHGetSpecialFolderPathA', 'SHInvokePrinterCommandA', 'SHPathPrepareForWriteA', 'CoTaskMemFree', 'CoInitializeEx', 'CoCreateInstance', 'CoUninitialize', 'StrRChrIA', 'StrChrW', 'StrStrA', 'InitCommonControlsEx'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'VerQueryValueA', 'UnrealizeObject', 'CreateStreamOnHGlobal', 'FlatSB_SetScrollPos', 'ImmGetOpenStatus', 'WritePrinter', 'ShellExecuteA', 'PageSetupDlgA', 'OleUIObjectPropertiesA'], ['GetCurrentDirectoryW', 'GetProcAddress', 'Sleep', 'GetCurrentProcessId', 'GetModuleHandleW', 'ExitProcess', 'LoadLibraryW', 'RaiseException', 'DecodePointer', 'CreateFileW', 'WriteConsoleW', 'SetFilePointerEx', 'HeapReAlloc', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'GetTimeZoneInformation', 'GetStringTypeW', 'CloseHandle', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetStdHandle', 'GetProcessHeap', 'FlushFileBuffers', 'GetModuleFileNameW', 'OleCreate', 'OleUninitialize', 'OleInitialize', 'DhcpCApiInitialize', 'DhcpRequestParams', 'DhcpDeRegisterParamChange', 'DhcpRemoveDNSRegistrations', 'DhcpCApiCleanup', 'DhcpRegisterParamChange', 'SystemFunction036'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA', 'ChooseColorA'], ['ExitProcess', 'CreateFileA', 'WriteFile', 'CreateFileW', 'GetTempPathW', 'GetModuleFileNameA', 'CloseHandle', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'HeapSize', 'GetLocaleInfoA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'wsprintfW', 'wsprintfA', 'ShellExecuteA', 'ShellExecuteW'], ['BitBlt', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'GetStockObject', 'SelectObject', 'CloseHandle', 'CreateSemaphoreA', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryW', 'MultiByteToWideChar', 'ReleaseSemaphore', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', '_fdopen', '_fstat', '_lseek', '_read', '_write', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_filbuf', '_flsbuf', '_iob', '_onexit', '_setmode', '_waccess', 'abort', 'atexit', 'atoi', 'calloc', 'fclose', 'fflush', 'fopen', 'fputc', 'fputs', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'getwc', 'iswctype', 'localeconv', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strtod', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'BeginPaint', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DispatchMessageA', 'EndPaint', 'GetClientRect', 'GetMessageA', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowRect', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'PostQuitMessage', 'RegisterClassExA', 'SetWindowLongA', 'ShowWindow', 'TranslateAcceleratorA', 'TranslateMessage', 'UnregisterClassA', 'UpdateWindow'], ['VirtualProtect', 'CreateFileW', 'GetLastError', 'WideCharToMultiByte', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetProcessHeap', 'HeapSize', 'WriteConsoleW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetEnvironmentVariableW', 'LoadLibraryExW', 'InitializeCriticalSection', 'GetSystemDirectoryW', 'Sleep', 'GetProcAddress', 'EnterCriticalSection', 'GetVolumeInformationW', 'CreateFileA', 'SetStdHandle', 'SetFilePointer', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'LeaveCriticalSection', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'RaiseException', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CoTaskMemFree', 'CoInitialize', 'CoUninitialize', 'CoTaskMemAlloc', 'RasEnumConnectionsW', 'RasHangUpW', 'RasGetConnectStatusW'], ['NdrClientCall2', 'GetLastError', 'InitializeCriticalSection', 'DeleteCriticalSection', 'WaitForSingleObject', 'WaitForMultipleObjects', 'CloseHandle', 'lstrcmpiW', 'OpenMutexW', 'GetModuleFileNameW', 'ExpandEnvironmentStringsW', 'GetDriveTypeA', 'GetSystemDirectoryW', 'VirtualUnlock', 'GetComputerNameW', 'MultiByteToWideChar', 'GetTickCount', 'lstrcmpiA', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualLock', 'GetProcAddress', 'WriteFile', 'GetSystemTime', 'ExitThread', 'GetModuleHandleW', 'CreateFileW', 'GetVolumeInformationW', 'WideCharToMultiByte', 'VerSetConditionMask', 'LoadLibraryA', 'GetModuleHandleA', 'ExitProcess', 'GlobalAlloc', 'GlobalFree', 'LocalAlloc', 'MulDiv', 'GetTempPathW', 'VirtualQuery', 'LoadLibraryW', 'LoadLibraryExW', 'ReadFile', 'ConnectNamedPipe', 'CreateEventW', 'CreateNamedPipeW', 'GetFullPathNameW', 'GetCurrentProcess', 'GetShortPathNameW', 'GetProcessHeap', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'Sleep', 'lstrcmpW', 'VerifyVersionInfoW', 'GetDC', 'ReleaseDC', 'FillRect', 'wsprintfW', 'DrawTextW', 'DrawTextA', 'wsprintfA', 'SetBitmapBits', 'GetBitmapBits', 'CreateBitmap', 'GetObjectW', 'SetTextColor', 'SetPixel', 'CreateCompatibleDC', 'CreateFontW', 'DeleteDC', 'DeleteObject', 'GetDeviceCaps', 'GetDIBits', 'GetPixel', 'GetStockObject', 'SelectObject', 'SetBkColor', 'CreateCompatibleBitmap', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastInputInfo', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA'], ['FreeLibrary', 'InitializeSListHead', 'GetModuleHandleW', 'GetConsoleAliasesA', 'InitializeCriticalSection', 'LoadLibraryW', 'GetFileAttributesW', 'WriteConsoleW', 'ReleaseActCtx', 'GetLastError', 'GetLongPathNameW', 'GetProcAddress', 'lstrcpynA', 'WriteProfileSectionA', 'SetFileAttributesA', 'WriteConsoleA', 'LocalAlloc', 'MoveFileA', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'WTSGetActiveConsoleSessionId', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'GetConsoleTitleW', 'GetShortPathNameW', 'GetFileInformationByHandle', 'ReadFile', 'GetProcessHeap', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'ExitProcess', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetFilePointer', 'RaiseException', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'CloseHandle', 'CreateFileA', 'SetStdHandle', 'LCMapStringW', 'FlushFileBuffers', 'SetEndOfFile', 'CreateFileW', 'WinHttpSetDefaultProxyConfiguration'], ['LCMapStringW', 'CompareStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'SetStdHandle', 'GetProcessHeap', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LoadLibraryExW', 'GetModuleFileNameW', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'CreateFileW', 'OutputDebugStringW', 'GetStringTypeW', 'SetFilePointerEx', 'WriteConsoleW', 'SetEndOfFile', 'ReadFile', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetFullPathNameW', 'GetFullPathNameA', 'GetSystemDirectoryA', 'UpdateResourceA', 'EnumResourceTypesA', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'FindResourceExA', 'CreateEventA', 'lstrcpyA', 'FormatMessageW', 'CloseHandle', 'SizeofResource', 'LoadResource', 'Sleep', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'UnhandledExceptionFilter', 'GetCurrentThreadId', 'SetLastError', 'GetStartupInfoW', 'GetFileType', 'GetStdHandle', 'IsDebuggerPresent', 'LockResource', 'FreeResource', 'FindNextFileW', 'DeleteCriticalSection', 'HeapSize', 'FindFirstFileExW', 'SetCurrentDirectoryA', 'GetTempPathA', 'FindClose', 'WriteFile', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ReadConsoleW', 'WaitForInputIdle', 'DefWindowProcA', 'wsprintfA', 'SendMessageA', 'PostMessageA', 'CreateWindowExA', 'ShowWindow', 'GetIconInfo', 'DestroyCursor', 'LoadCursorFromFileW', 'GetWindow', 'FindWindowExA', 'FindWindowA', 'GetDesktopWindow', 'GetWindowLongA', 'FillRect', 'GetSysColorBrush', 'MapWindowPoints', 'ClipCursor', 'GetCursorPos', 'ShowCursor', 'MessageBoxA', 'GetWindowRect', 'GetClientRect', 'SetWindowTextA', 'InvalidateRect', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'SetActiveWindow', 'DrawTextA', 'DrawIcon', 'ReleaseCapture', 'SendInput', 'GetFocus', 'SendDlgItemMessageA', 'GetDlgItem', 'EndDialog', 'IsWindowVisible', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetBkMode', 'CombineRgn', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SwapBuffers', 'TextOutA', 'GetObjectA', 'GetTextMetricsA', 'SetTextAlign', 'SetTextColor', 'BitBlt', 'SelectObject', 'GetStockObject', 'DeleteDC', 'CreateRectRgn', 'CreateMetaFileA', 'CreateFontIndirectA', 'ConnectToPrinterDlg', 'GetOpenFileNameA', 'GetFileTitleA', 'RegQueryValueExA', 'GetUserNameW', 'RegCloseKey', 'RegCreateKeyA', 'AllocateAndInitializeSid', 'RegCreateKeyExA', 'RegOpenKeyExW', 'RegSetValueExA', 'SetEntriesInAclW', 'InitializeSecurityDescriptor', 'SHGetFolderPathA', 'WSALookupServiceEnd', 'WSAProviderConfigChange', 'WSANtohs', 'NetUserGetInfo', 'NetApiBufferFree', 'ImageList_DragLeave', 'ImageList_EndDrag', 'wglGetCurrentDC', 'ImmEnumInputContext', 'ImmGetCompositionStringA', 'ImmGetContext', 'ImmDisableTextFrameService', 'RasGetSubEntryPropertiesW', 'RasGetSubEntryHandleW', 'HlinkSimpleNavigateToString'], ['CreateJobObjectW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetBinaryTypeW', 'SetConsoleTitleA', 'InterlockedExchange', 'GetCPInfoExW', 'SetDefaultCommConfigW', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'LoadLibraryA', 'LocalAlloc', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'GetFileAttributesExW', 'SetCalendarInfoA', 'SetFileAttributesW', 'FreeLibrary', 'GetCurrentProcess', 'GetLastError', 'GetConsoleAliasesLengthW', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['GetThemePosition', 'GetThemeTransitionDuration', 'BeginBufferedAnimation', 'BufferedPaintUnInit', 'DrawThemeTextEx', 'GetThemeDocumentationProperty', 'GetThemeAppProperties', 'EnableThemeDialogTexture', 'GetThemeIntList', 'GetThemeString', 'GetOpenFileNamePreviewA', 'DrawDibStart', 'DrawDibGetPalette', 'DrawDibOpen', 'ICSeqCompressFrame', 'ICDrawBegin', 'ICCompress', 'ExitProcess', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap'], ['OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateMailslotW', 'TerminateProcess', 'SetLastError', 'GetVersionExW', 'FreeResource', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBW', 'SetDefaultCommConfigA', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalShrink', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'SearchPathW', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'GlobalAlloc', 'SetThreadIdealProcessor', 'GetProfileSectionW', 'DeleteFileA', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryA', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'CancelWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceW', 'OpenFileMappingA', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'ReadFileScatter', 'FlushConsoleInputBuffer', 'WaitForDebugEvent', 'DisableThreadLibraryCalls', 'InterlockedExchangeAdd', 'GlobalFix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'GetOEMCP', 'GlobalFindAtomA', 'lstrcatW', 'GetPrivateProfileStringA', 'SetMailslotInfo', 'CreateActCtxA', 'OutputDebugStringA', 'CreateNamedPipeW', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleA', 'GetProcAddress', 'lstrcpyA', 'QueryActCtxW', 'GetConsoleCP', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasExesLengthW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'GetStringTypeExA', 'EnumSystemLocalesW', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'GetLastError', 'FreeLibrary', 'GetModuleFileNameW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'GetConsoleAliasExesA', 'EnumDateFormatsA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'SetHandleCount', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetFilePointer', 'SetStdHandle', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['mciSendCommandW', 'joyGetNumDevs', 'joyGetPosEx', 'timeGetTime', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutUnprepareHeader', 'waveOutReset', 'waveOutWrite', 'waveOutClose', 'timeEndPeriod', 'timeBeginPeriod', 'joyGetDevCapsW', 'socket', 'gethostbyname', 'bind', 'sendto', 'setsockopt', 'ntohs', 'htons', 'WSAGetLastError', 'select', 'ioctlsocket', 'recvfrom', 'WSAStartup', 'inet_ntoa', 'closesocket', 'RaiseException', 'SetEnvironmentVariableW', 'SetEndOfFile', 'CreateFileW', 'HeapSize', 'LCMapStringW', 'CompareStringW', 'GetStringTypeW', 'SetEnvironmentVariableA', 'WriteConsoleW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'FindNextFileW', 'FindFirstFileExW', 'GetTimeZoneInformation', 'DeleteFileW', 'WriteConsoleInputW', 'MapViewOfFile', 'UnmapViewOfFile', 'SetConsoleScreenBufferSize', 'SetEvent', 'GetLargestConsoleWindowSize', 'GetStdHandle', 'GetConsoleScreenBufferInfo', 'CreateEventW', 'SetConsoleWindowInfo', 'WaitForMultipleObjects', 'CloseHandle', 'ReadConsoleOutputCharacterW', 'VirtualFree', 'GetLastError', 'VirtualAlloc', 'FreeLibrary', 'GlobalLock', 'GlobalAlloc', 'LoadLibraryW', 'GlobalUnlock', 'GetProcAddress', 'GlobalFree', 'ExitProcess', 'GetNativeSystemInfo', 'GetDriveTypeW', 'AllocConsole', 'GetNumberOfConsoleInputEvents', 'SetErrorMode', 'HeapAlloc', 'GlobalSize', 'HeapFree', 'GetProcessHeap', 'IsBadReadPtr', 'WriteFile', 'Sleep', 'FreeConsole', 'GetVersionExW', 'SetLastError', 'LoadLibraryA', 'VirtualProtect', 'ReadConsoleInputW', 'OutputDebugStringW', 'GetModuleFileNameW', 'FlushFileBuffers', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'SetFilePointerEx', 'MoveFileExW', 'GetConsoleCP', 'DeleteCriticalSection', 'GetFileType', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'ReadConsoleW', 'GetConsoleMode', 'LeaveCriticalSection', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'AreFileApisANSI', 'MultiByteToWideChar', 'ReadFile', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'CreateThread', 'GetCurrentThreadId', 'ExitThread', 'LoadLibraryExW', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'FindClose', 'GetFullPathNameA', 'HeapReAlloc', 'GetModuleHandleExW', 'WideCharToMultiByte', 'GetCommandLineA', 'EnterCriticalSection', 'RegisterWindowMessageW', 'GetWindowLongW', 'SetWindowLongW', 'AdjustWindowRect', 'UnregisterHotKey', 'RegisterHotKey', 'DefWindowProcW', 'MoveWindow', 'CloseClipboard', 'GetMessageW', 'SetForegroundWindow', 'TranslateMessage', 'MessageBoxA', 'GetClipboardData', 'PeekMessageW', 'ShowWindow', 'OpenClipboard', 'DispatchMessageW', 'MessageBoxW', 'GetWindowRect', 'SetCapture', 'ShowCursor', 'SetCursorPos', 'SystemParametersInfoW', 'GetCursorPos', 'ClipCursor', 'GetSystemMetrics', 'ReleaseCapture'], ['RegEnumKeyW', '_TrackMouseEvent', 'CertOpenStore', 'LPtoDP', 'GdipFree', 'ImmGetContext', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'AlphaBlend', 'DoDragDrop', 'LresultFromObject', 'SystemTimeToVariantTime', 'OleUIBusyW', 'DragFinish', 'PathIsUNCW', 'GetDC', 'IsAppThemed', 'VerQueryValueW', 'PlaySoundW', 'OpenPrinterW', 'send'], ['GetCurrentHwProfileA', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateProcessA', 'CreateRemoteThread', 'CreateSemaphoreA', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DeleteFileA', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetFullPathNameA', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'OpenProcess', 'OutputDebugStringA', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WriteProcessMemory', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_access', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_fmode', '_getpid', '_initterm', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'CoInitialize', 'URLDownloadToFileA', 'UrlMkSetSessionOption', 'MessageBoxA', 'DeleteUrlCacheEntry'], ['CreateFileA', 'CloseHandle', 'GetLastError', 'GetCurrentDirectoryA', 'CreateThread', 'FindFirstFileA', 'FindNextFileA', 'GetCurrentThreadId', 'SetCurrentDirectoryA', 'DeleteFileA', 'CreateFileMappingA', 'SetFileTime', 'OpenFileMappingA', 'CreateNamedPipeA', 'VirtualAlloc', 'ExitThread', 'TransactNamedPipe', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW', 'RaiseException'], ['TlsFree', '_write', 'MessageBoxW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['htons', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'bind', 'WSAIoctl', 'WSASend', 'shutdown', 'WSASocketW', 'socket', 'WSARecv', 'ioctlsocket', 'FreeAddrInfoW', 'GetAddrInfoW', 'closesocket', 'getsockopt', 'setsockopt', 'htonl', 'WSAGetLastError', 'GetACP', 'HeapReAlloc', 'CompareStringW', 'GetModuleFileNameA', 'ExitProcess', 'CreateMutexA', 'GetLastError', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'CloseHandle', 'FreeConsole', 'GetConsoleWindow', 'SetThreadAffinityMask', 'GetCurrentProcess', 'SetProcessAffinityMask', 'GetCurrentThread', 'VirtualFree', 'VirtualAlloc', 'LocalAlloc', 'LocalFree', 'SetPriorityClass', 'SetThreadPriority', 'GetProcAddress', 'GetModuleHandleW', 'TlsSetValue', 'EnterCriticalSection', 'ReleaseSemaphore', 'WaitForMultipleObjects', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'ResetEvent', 'DeleteCriticalSection', 'CreateSemaphoreW', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'CreateEventA', 'GetModuleFileNameW', 'MultiByteToWideChar', 'QueryPerformanceFrequency', 'GetSystemInfo', 'GetCurrentProcessId', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'GetTimeZoneInformation', 'SetConsoleCtrlHandler', 'PostQueuedCompletionStatus', 'Sleep', 'SetErrorMode', 'GetQueuedCompletionStatus', 'CreateIoCompletionPort', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'QueueUserWorkItem', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'SetConsoleCursorPosition', 'GetFileType', 'CreateDirectoryW', 'ReadFile', 'SetLastError', 'WriteFile', 'DeviceIoControl', 'RemoveDirectoryW', 'SetFileTime', 'CreateHardLinkW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'SetFilePointerEx', 'MoveFileExW', 'CopyFileW', 'FlushFileBuffers', 'CancelIo', 'GetModuleHandleA', 'LoadLibraryA', 'FormatMessageA', 'DebugBreak', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'GetNamedPipeHandleStateA', 'SwitchToThread', 'ConnectNamedPipe', 'GetLongPathNameW', 'ReadDirectoryChangesW', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'GetStartupInfoW', 'HeapFree', 'HeapAlloc', 'SetFileAttributesW', 'GetFileAttributesExW', 'GetConsoleCP', 'SetStdHandle', 'GetModuleHandleExW', 'GetStringTypeW', 'HeapSize', 'GetProcessHeap', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'DecodePointer', 'SetHandleInformation', 'GetCurrentThreadId', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetSystemTimeAsFileTime', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateThread', 'EncodePointer', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'LoadLibraryExW', 'InterlockedFlushSList', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'GetCommandLineA', 'GetCommandLineW', 'ExitThread', 'TranslateMessage', 'ShowWindow', 'DispatchMessageA', 'MapVirtualKeyW', 'GetMessageA', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'CopyFileA', 'SetFileAttributesA', 'CreateDirectoryA', 'Process32First', 'CreateMutexA', 'WaitForSingleObject', 'CreateToolhelp32Snapshot', 'Process32Next', 'CloseHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'CreateFileW', 'DecodePointer', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceFrequency', 'WaitForSingleObjectEx', 'Sleep', 'GetExitCodeThread', 'InitializeCriticalSectionEx', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'WriteConsoleW', 'OpenClipboard', 'GetClipboardData', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'GetKeyState', 'LoadStringA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'IsValidURL', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['GetVersionExW', 'GetModuleHandleA', 'CreateEventW', 'MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'CopyFileA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'SetEvent', 'TerminateThread', 'DeleteFileW', 'CloseHandle', 'LoadLibraryW', 'CreateThread', 'GetOverlappedResult', 'VirtualProtectEx', 'GetWindowsDirectoryW', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetFileSize', 'DeleteCriticalSection', 'ExitProcess', 'GetCurrentProcessId', 'CreateProcessW', 'GetModuleHandleW', 'CreateRemoteThread', 'CreateProcessA', 'CreateEventA', 'ConnectNamedPipe', 'GetComputerNameA', 'GetFileAttributesW', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetTempPathW', 'GetTickCount', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindFirstFileExW', 'CreateFileW', 'LocalAlloc', 'WaitForSingleObject', 'InitializeCriticalSection', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'CreateNamedPipeW', 'GetModuleFileNameW', 'TerminateProcess', 'InterlockedDecrement', 'WriteFile', 'ReadFile', 'GetCurrentProcess', 'GetCommandLineW', 'EnterCriticalSection', 'WriteProcessMemory', 'CancelIo', 'FindClose', 'DecodePointer', 'SetEndOfFile', 'HeapSize', 'WriteConsoleW', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'ReadConsoleW', 'SetFilePointerEx', 'GetModuleFileNameA', 'FreeLibrary', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'WideCharToMultiByte', 'EncodePointer', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleHandleExW', 'GetACP', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'GetFileType', 'FindNextFileW', 'wsprintfW', 'CryptAcquireContextW', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CryptGenRandom', 'LookupPrivilegeNameW', 'CopySid', 'IsValidSid', 'LogonUserA', 'OpenProcessToken', 'ConvertSidToStringSidW', 'GetLengthSid', 'LookupAccountSidW', 'GetTokenInformation', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'CoCreateGuid', 'CoTaskMemFree', 'CoSetProxyBlanket', 'CoInitializeEx', 'CoInitializeSecurity', 'CoCreateInstance', 'CoUninitialize', 'SysFreeString', 'SysAllocString', 'SysStringLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'VariantClear', 'SafeArrayCreate', 'GetIpNetTable', 'FreeAddrInfoW', 'GetAddrInfoW', 'WSACleanup', 'WSAStartup', 'ntohl', 'CredUIParseUserNameW', 'NetApiBufferFree', 'NetGetDCName'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtTextOutA', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ShellExecuteA', 'ChooseFontA', 'ChooseColorA', 'GetOpenFileNameA', 'MulDiv', 'SHGetFolderPathA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'CreateStatusWindowW', 'FindTextW', 'LPtoDP', 'exit', 'DragFinish', 'GetDC', 'OpenPrinterW'], ['Sleep', 'GetCurrentProcess', 'VirtualAllocEx', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetACP', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetCurrentThread', 'GetStringTypeW', 'OutputDebugStringA', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExA', 'FindFirstFileExW', 'FindNextFileA', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'SetConsoleCtrlHandler', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'SetFilePointerEx', 'CreateFileW', 'DecodePointer'], ['CertStrToNameA', 'gluSphere', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'ioctlsocket'], ['GetProcAddress', 'GetModuleHandleW', 'FreeLibraryAndExitThread', 'ReleaseMutex', 'SetEvent', 'OpenEventW', 'GetModuleHandleExW', 'VirtualFree', 'lstrcpyW', 'CreateThread', 'ExitThread', 'ResumeThread', 'ReadFile', 'GetFileSize', 'CreateFileW', 'Process32NextW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'FindClose', 'FindNextFileW', 'DeleteFileW', 'GetLastError', 'RemoveDirectoryW', 'lstrcmpW', 'FindFirstFileW', 'VirtualAlloc', 'LoadLibraryA', 'lstrcmpA', 'CreateEventW', 'SystemTimeToFileTime', 'GetLocalTime', 'lstrlenW', 'CreateDirectoryW', 'lstrcpyA', 'WriteFile', 'GetTempPathW', 'GetTickCount64', 'GetCurrentProcessId', 'GetSystemInfo', 'GetTickCount', 'ExitProcess', 'FlushFileBuffers', 'HeapSize', 'HeapReAlloc', 'HeapAlloc', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleW', 'SetStdHandle', 'MultiByteToWideChar', 'HeapFree', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'HeapCreate', 'GetVersion', 'HeapSetInformation', 'FlsAlloc', 'GetCurrentThreadId', 'SetLastError', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'OpenMutexW', 'CloseHandle', 'CreateMutexW', 'GetModuleFileNameW', 'LocalAlloc', 'lstrcmpiW', 'LocalFree', 'Sleep', 'WaitForSingleObject', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'TerminateProcess', 'WaitForMultipleObjects', 'LoadLibraryW', 'DeleteCriticalSection', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCommandLineA', 'GetStartupInfoW', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'EncodePointer', 'GetCurrentProcess', 'GetStdHandle', 'RtlUnwindEx', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WSAStartup', 'closesocket', 'socket', 'WSACreateEvent', 'inet_addr', 'gethostbyname', 'htons', 'connect', 'WSACloseEvent', 'WSAEnumNetworkEvents', 'WSAGetLastError', 'WSAEventSelect', 'WSAWaitForMultipleEvents', 'send', 'recv', 'WSACleanup', 'setsockopt', 'shutdown', 'SendMessageTimeoutW', 'MessageBoxW', 'PostThreadMessageW', 'wsprintfA', 'LoadImageW', 'GetCursorPos', 'SetForegroundWindow', 'CreatePopupMenu', 'TrackPopupMenu', 'PostMessageW', 'DestroyMenu', 'DefWindowProcW', 'RegisterClassW', 'CreateWindowExW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'UnregisterClassW', 'DestroyWindow', 'AppendMenuW', 'RegOpenKeyW', 'RegSetValueExW', 'RegCloseKey', 'SetEntriesInAclW', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'RegDeleteKeyExW', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'GetSecurityDescriptorSacl', 'SetNamedSecurityInfoW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetUserNameW', 'CoInitializeEx', 'CoUninitialize', 'Shell_NotifyIconW', 'ShellExecuteExW'], ['CreateServiceA', 'CryptAcquireContextA', 'DeleteService', 'OpenSCManagerA', 'OpenServiceA', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'StartServiceCtrlDispatcherA', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'DebugBreak', 'EnterCriticalSection', 'ExitProcess', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCurrentDirectoryA', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDefaultLangID', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExA', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'LCMapStringA', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OpenEventA', 'RaiseException', 'ReadFile', 'RtlUnwind', 'SetConsoleCtrlHandler', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetThreadLocale', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'EnumThreadWindows', 'MessageBoxA', 'wsprintfA'], ['VirtualFree', 'VirtualAlloc', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'VirtualProtect', 'GetModuleFileNameA', 'wsprintfA', 'MessageBoxA'], ['AddAtomW', 'CloseHandle', 'CompareStringA', 'ConvertDefaultLocale', 'CreateDirectoryW', 'CreateEventA', 'CreateEventW', 'CreateFileA', 'CreateFileMappingW', 'CreateFileW', 'CreateMutexW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteAtom', 'DeleteCriticalSection', 'DeleteFileW', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'EnumResourceLanguagesW', 'EnumSystemLocalesA', 'ExitProcess', 'ExitThread', 'ExpandEnvironmentStringsW', 'FatalAppExitA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindAtomW', 'FindClose', 'FindFirstFileW', 'FindResourceExW', 'FindResourceW', 'FlushFileBuffers', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'GetComputerNameW', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatA', 'GetDateFormatW', 'GetEnvironmentStringsW', 'GetExitCodeProcess', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFileSizeEx', 'GetFileTime', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetNumberFormatA', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetProfileStringW', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempFileNameW', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalLock', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'IsDebuggerPresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockResource', 'MapViewOfFile', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'OpenEventW', 'OpenFileMappingW', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'RtlUnwind', 'SearchPathW', 'SetConsoleCtrlHandler', 'SetCurrentDirectoryW', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetFilePointerEx', 'SetFileTime', 'SetHandleCount', 'SetLastError', 'SetProcessWorkingSetSize', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SuspendThread', 'TerminateProcess', 'UnhandledExceptionFilter', 'UnlockFile', 'UnmapViewOfFile', 'VirtualAlloc', 'VirtualFree', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', 'lstrcatW', 'lstrcmpW', 'lstrcmpiW', 'lstrcpyW', 'lstrcpynW', 'lstrlenA', 'lstrlenW', 'VirtualAllocEx', 'AdjustWindowRectEx', 'AppendMenuW', 'BeginDeferWindowPos', 'BeginPaint', 'BringWindowToTop', 'CallNextHookEx', 'CallWindowProcW', 'CharLowerW', 'CharUpperW', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'ClientToScreen', 'CopyRect', 'CreatePopupMenu', 'CreateWindowExW', 'DefWindowProcW', 'DeferWindowPos', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DialogBoxParamW', 'DispatchMessageW', 'DrawTextExW', 'DrawTextW', 'EnableMenuItem', 'EnableWindow', 'EndDeferWindowPos', 'EndDialog', 'EndPaint', 'EnumChildWindows', 'EnumThreadWindows', 'EqualRect', 'ExitWindowsEx', 'FillRect', 'FindWindowW', 'GetActiveWindow', 'GetCapture', 'GetClassInfoExW', 'GetClassInfoW', 'GetClassLongW', 'GetClassNameW', 'GetClientRect', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextW', 'GetFocus', 'GetForegroundWindow', 'GetKeyNameTextW', 'GetKeyState', 'GetLastActivePopup', 'GetMenu', 'GetMenuBarInfo', 'GetMenuCheckMarkDimensions', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoW', 'GetMenuState', 'GetMenuStringW', 'GetMessagePos', 'GetMessageTime', 'GetMessageW', 'GetParent', 'GetPropW', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetWindow', 'GetWindowDC', 'GetWindowLongA', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowThreadProcessId', 'GrayStringW', 'InflateRect', 'InsertMenuItemW', 'InsertMenuW', 'IntersectRect', 'InvalidateRect', 'IsChild', 'IsDialogMessageW', 'IsDlgButtonChecked', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'KillTimer', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadImageW', 'LoadMenuW', 'LoadStringA', 'LoadStringW', 'LockWindowUpdate', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBoxA', 'MessageBoxW', 'ModifyMenuW', 'MoveWindow', 'OffsetRect', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RedrawWindow', 'RegisterClassExW', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ReuseDDElParam', 'ScreenToClient', 'ScrollWindow', 'ScrollWindowEx', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageA', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetParent', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TrackPopupMenuEx', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnpackDDElParam', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WinHelpW', 'WindowFromPoint', 'wsprintfW'], ['CM_Query_Resource_Conflict_List', 'CM_Get_First_Log_Conf', 'DeleteMetaFile', 'EndPath', 'AddFontResourceW', 'mixerSetControlDetails', 'VkKeyScanA', 'GetUpdateRect', 'GetMenuState', 'SetClipboardViewer', 'GetMenuInfo', 'GetForegroundWindow', 'InsertMenuItemW', 'PackDDElParam', 'LockSetForegroundWindow', 'ToUnicode', 'LoadMenuA', 'CreatePopupMenu', 'NotifyWinEvent', 'I_RpcServerRegisterForwardFunction', 'RpcBindingFromStringBindingW', 'UuidIsNil', 'NdrAllocate', 'I_RpcSessionStrictContextHandle', 'IIDFromString', 'HGLOBAL_UserSize', 'OleGetAutoConvert', 'DispGetParam', 'EnumResourceNamesA', 'GetConsoleScreenBufferInfoEx', 'LocalFree', 'CloseHandle', 'GetThreadLocale', 'GetCurrentThreadId', 'GetCommandLineW', 'GetModuleHandleA', 'IsDebuggerPresent', 'WaitForSingleObject', 'CreateWaitableTimerA', 'FindResourceExW', 'FileTimeToDosDateTime', 'CreateActCtxW', 'GetCommConfig', 'UnhandledExceptionFilter', 'SetFileApisToOEM', 'VerifySignature', 'JetDelete', 'IsTokenRestricted', 'RevertToSelf', 'GetLengthSid', 'SetEntriesInAclW', 'CryptGetProvParam', 'PathIsRootW', 'PathIsUNCW', 'StrDupA', 'SHGetFolderLocation'], ['CreateBitmap', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateFontA', 'CreateFontIndirectA', 'CreatePalette', 'CreatePen', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'ExcludeClipRect', 'ExtTextOutA', 'ExtTextOutW', 'GetBkMode', 'GetCharABCWidthsFloatA', 'GetCharWidth32A', 'GetCharWidth32W', 'GetCharWidthA', 'GetCharWidthW', 'GetCharacterPlacementW', 'GetDeviceCaps', 'GetObjectA', 'GetPixel', 'GetStockObject', 'GetTextExtentExPointA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'IntersectClipRect', 'LineTo', 'MoveToEx', 'Polyline', 'RealizePalette', 'Rectangle', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetMapMode', 'SetPaletteEntries', 'SetPixel', 'SetTextAlign', 'SetTextColor', 'TextOutA', 'TranslateCharsetInfo', 'UnrealizeObject', 'UpdateColors', 'AppendMenuA', 'BeginPaint', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'CloseClipboard', 'CreateCaret', 'CreateDialogParamA', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExA', 'CreateWindowExW', 'DefDlgProcA', 'DefWindowProcA', 'DefWindowProcW', 'DeleteMenu', 'DestroyCaret', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DispatchMessageW', 'DrawEdge', 'DrawIconEx', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'FindWindowA', 'FlashWindow', 'GetCapture', 'GetCaretBlinkTime', 'GetClientRect', 'GetClipboardData', 'GetClipboardOwner', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetDlgItem', 'GetDlgItemTextA', 'GetDoubleClickTime', 'GetForegroundWindow', 'GetKeyboardLayout', 'GetKeyboardState', 'GetMessageA', 'GetMessageTime', 'GetParent', 'GetQueueStatus', 'GetScrollInfo', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongPtrA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowTextLengthA', 'HideCaret', 'InsertMenuA', 'InvalidateRect', 'IsDialogMessageA', 'IsDlgButtonChecked', 'IsIconic', 'IsWindow', 'IsZoomed', 'KillTimer', 'LoadCursorA', 'LoadIconA', 'MapDialogRect', 'MessageBeep', 'MessageBoxA', 'MessageBoxIndirectA', 'MoveWindow', 'MsgWaitForMultipleObjects', 'OpenClipboard', 'PeekMessageA', 'PeekMessageW', 'PostMessageA', 'PostQuitMessage', 'RegisterClassA', 'RegisterClassW', 'RegisterClipboardFormatA', 'RegisterWindowMessageA', 'ReleaseCapture', 'ReleaseDC', 'ScreenToClient', 'SendDlgItemMessageA', 'SendMessageA', 'SetActiveWindow', 'SetCapture', 'SetCaretPos', 'SetClassLongPtrA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetFocus', 'SetForegroundWindow', 'SetKeyboardState', 'SetScrollInfo', 'SetTimer', 'SetWindowLongPtrA', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextA', 'ShowCaret', 'ShowCursor', 'ShowWindow', 'SystemParametersInfoA', 'ToAsciiEx', 'TrackPopupMenu', 'TranslateMessage', 'UpdateWindow', 'ChooseColorA', 'ChooseFontA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'ShellExecuteA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'ImmGetCompositionStringW', 'ImmGetContext', 'ImmReleaseContext', 'ImmSetCompositionFontA', 'ImmSetCompositionWindow', 'AllocateAndInitializeSid', 'CopySid', 'EqualSid', 'GetLengthSid', 'GetUserNameA', 'InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorOwner', 'Beep', 'ClearCommBreak', 'CloseHandle', 'CompareStringW', 'ConnectNamedPipe', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeA', 'CreatePipe', 'CreateProcessA', 'CreateThread', 'DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindFirstFileExA', 'FindNextFileA', 'FindResourceA', 'FlushFileBuffers', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommState', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetFileAttributesExA', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemTimeAsFileTime', 'GetTempPathA', 'GetThreadTimes', 'GetTickCount', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetVersionExA', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalMemoryStatus', 'GlobalUnlock', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockResource', 'MapViewOfFile', 'MulDiv', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringW', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetCommBreak', 'SetCommState', 'SetCommTimeouts', 'SetCurrentDirectoryA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFilePointerEx', 'SetHandleInformation', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WaitNamedPipeA', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LineDDA', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'GetClassLongA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextCharacterExtra', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['ExitProcess', 'DebugActiveProcess', 'LockFile', 'CloseHandle', 'GetHandleInformation', 'GetTickCount', 'FormatMessageW', 'lstrlenA', 'GetModuleHandleW', 'GetNumberFormatA', 'GetBinaryTypeA', 'FoldStringW', 'EnumSystemCodePagesW', 'PeekConsoleInputW', 'WriteConsoleOutputA', 'CreateToolhelp32Snapshot', 'Module32First', 'ReadFile', 'CreateFileW', 'OutputDebugStringW', 'WriteConsoleW', 'VirtualProtect', 'LocalAlloc', 'GetStringTypeW', 'GetProcAddress', 'SetFilePointerEx', 'SetStdHandle', 'EncodePointer', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetModuleHandleExW', 'AreFileApisANSI', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'EnterCriticalSection', 'LeaveCriticalSection', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'DeleteCriticalSection', 'FatalAppExitA', 'IsDebuggerPresent', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CreateSemaphoreW', 'SetConsoleCtrlHandler', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'HeapReAlloc', 'ReadConsoleW', 'SetMenuItemInfoW', 'MsgWaitForMultipleObjectsEx', 'GetMonitorInfoW', 'SetSecurityDescriptorControl', 'AddAccessAllowedObjectAce', 'RegCreateKeyExA', 'TransparentBlt'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiComment', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['AddAtomW', 'CloseHandle', 'CompareStringA', 'ConvertDefaultLocale', 'CreateEventW', 'CreateFileA', 'CreateFileW', 'CreateMutexW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteAtom', 'DeleteCriticalSection', 'DeleteFileW', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'EnumResourceLanguagesW', 'EnumSystemLocalesA', 'ExitProcess', 'ExitThread', 'FatalAppExitA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindAtomW', 'FindClose', 'FindFirstFileW', 'FindResourceExW', 'FindResourceW', 'FlushFileBuffers', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'GetComputerNameW', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatA', 'GetEnvironmentStringsW', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFileSizeEx', 'GetFileTime', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalLock', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'IsDebuggerPresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockResource', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'RtlUnwind', 'SetConsoleCtrlHandler', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetFilePointerEx', 'SetFileTime', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SuspendThread', 'TerminateProcess', 'UnhandledExceptionFilter', 'UnlockFile', 'VirtualAlloc', 'VirtualFree', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', 'lstrcmpW', 'lstrcmpiW', 'lstrlenW', 'VirtualAllocEx', 'AdjustWindowRectEx', 'AppendMenuW', 'BeginDeferWindowPos', 'BeginPaint', 'BringWindowToTop', 'CallNextHookEx', 'CallWindowProcW', 'CharUpperW', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'ClientToScreen', 'CopyRect', 'CreatePopupMenu', 'CreateWindowExW', 'DefWindowProcW', 'DeferWindowPos', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DispatchMessageW', 'DrawTextExW', 'DrawTextW', 'EnableMenuItem', 'EnableWindow', 'EndDeferWindowPos', 'EndDialog', 'EndPaint', 'EqualRect', 'FillRect', 'GetActiveWindow', 'GetCapture', 'GetClassInfoExW', 'GetClassInfoW', 'GetClassLongW', 'GetClassNameW', 'GetClientRect', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextW', 'GetFocus', 'GetForegroundWindow', 'GetKeyNameTextW', 'GetKeyState', 'GetLastActivePopup', 'GetMenu', 'GetMenuBarInfo', 'GetMenuCheckMarkDimensions', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoW', 'GetMenuState', 'GetMenuStringW', 'GetMessagePos', 'GetMessageTime', 'GetMessageW', 'GetParent', 'GetPropW', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetWindow', 'GetWindowDC', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowThreadProcessId', 'GrayStringW', 'InflateRect', 'InsertMenuItemW', 'InsertMenuW', 'IntersectRect', 'IsChild', 'IsDialogMessageW', 'IsDlgButtonChecked', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'KillTimer', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadMenuW', 'LoadStringW', 'LockWindowUpdate', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBoxW', 'ModifyMenuW', 'MoveWindow', 'OffsetRect', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ReuseDDElParam', 'ScreenToClient', 'ScrollWindow', 'ScrollWindowEx', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetParent', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TrackPopupMenuEx', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnpackDDElParam', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WinHelpW', 'WindowFromPoint', 'wsprintfW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['CloseServiceHandle', 'CreateServiceA', 'OpenSCManagerA', 'OpenServiceA', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'StartServiceA', 'StartServiceCtrlDispatcherA', 'htonl', 'ioctlsocket', 'listen', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket', 'connect', 'closesocket', 'bind', 'accept', 'WSAStartup', 'WSACleanup', 'htons', 'wsprintfA', 'MessageBoxA', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'WriteFile', 'WriteConsoleA', 'WaitForSingleObject', 'VirtualFree', 'VirtualAlloc', 'TerminateThread', 'SystemTimeToFileTime', 'Sleep', 'SetUnhandledExceptionFilter', 'SetFilePointer', 'SetEvent', 'SetCurrentDirectoryA', 'ReadFile', 'GetSystemTimeAsFileTime', 'GetStdHandle', 'GetModuleFileNameA', 'GetLastError', 'GetFileSize', 'ExitProcess', 'CreateThread', 'CreateFileA', 'CreateEventA', 'ShellExecuteExA', 'WSAIoctl'], ['_controlfp_s', '_invoke_watson', 'strncpy', '_except_handler4_common', '_decode_pointer', '_onexit', '_lock', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '__set_app_type', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '__initenv', 'exit', '_XcptFilter', '_exit', '_cexit', '__getmainargs', '_amsg_exit', 'realloc', 'bsearch', 'qsort', 'memset', 'memcpy', 'setbuf', 'getenv', 'atoi', 'malloc', 'free', '_snprintf', 'strncmp', 'strrchr', 'fprintf', '__iob_func', '_crt_debugger_hook', '_stricmp', '_strdup', 'LocalFree', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'HeapAlloc', 'IsBadReadPtr', 'SetLastError', 'GetProcessHeap', 'HeapFree', 'VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'FreeLibrary', 'GetModuleHandleA', 'OutputDebugStringA', 'GetFullPathNameA', 'LoadLibraryA', 'GetProcAddress', 'UnmapViewOfFile', 'CreateFileA', 'GetFileSize', 'CreateFileMappingA', 'CloseHandle', 'MapViewOfFile', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetLastError', 'FormatMessageA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassExA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetBitmapBits', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateFontA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'sndPlaySoundA', 'PlaySoundA', 'ShellExecuteA', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'LresultFromObject'], ['GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetModuleHandleA', 'OpenFile', 'TerminateProcess', 'Wow64SetThreadContext', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetCurrentProcess', 'UuidToStringW', 'NdrServerCall2', 'mixerSetControlDetails', 'CoRevokeInitializeSpy', 'GetCurrentObject', 'QueryServiceObjectSecurity', '__p__commode', '__p__fmode', '__set_app_type', '?terminate@@YAXXZ', '_except_handler4_common', '_controlfp', '_exit', '_amsg_exit', '_initterm', '_cexit', '__getmainargs', 'strspn', 'clearerr', 'memset', '_acmdln', 'exit', '_ismbblead', '_XcptFilter', '__setusermatherr', 'IsHungAppWindow'], ['GetLastError', 'DeviceIoControl', 'DeleteFileA', 'LockResource', 'FindResourceExW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetModuleFileNameW', 'GetModuleFileNameA', 'Sleep', 'OutputDebugStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetCurrentProcess', 'GetSystemInfo', 'GetVersionExW', 'GetModuleHandleW', 'HeapDestroy', 'HeapAlloc', 'FreeResource', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'RaiseException', 'CloseHandle', 'SizeofResource', 'WriteFile', 'CreateFileA', 'LoadResource', 'FindResourceW', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetLocaleInfoA', 'GetConsoleMode', 'InitializeCriticalSection', 'HeapFree', 'GetStartupInfoW', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'ExitProcess', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'VirtualAlloc', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'StartServiceW', 'RegCloseKey', 'RegSetValueExA', 'RegCreateKeyExA', 'OpenSCManagerW', 'OpenServiceA', 'CloseServiceHandle', 'CreateServiceA', 'setsockopt', 'gethostbyname', 'htons', 'getsockname', 'closesocket', 'connect', 'socket', 'inet_ntoa', 'WSAStartup', 'GetAdaptersInfo'], ['capCreateCaptureWindowA', 'capGetDriverDescriptionA', 'ExitProcess', 'CopyFileW', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'CreateFileMappingW', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetSystemTimeAsFileTime', 'lstrcatA', 'lstrcpyA', 'GetTickCount', 'MapViewOfFile', 'GetWindowRect', 'DialogBoxParamA', 'AppendMenuA', 'GetSubMenu', 'SetMenu', 'LoadIconA', 'LoadCursorA', 'RegisterClassA', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'BeginPaint', 'DrawTextA', 'EndPaint', 'DefWindowProcA', 'PostQuitMessage', 'GetWindowLongA', 'KillTimer', 'SetTimer', 'CheckMenuItem', 'IsWindow', 'SendMessageA', 'EnableMenuItem', 'SetWindowPos', 'GetClientRect', 'MoveWindow', 'EndDialog', 'SendDlgItemMessageA', 'MessageBoxA', 'wsprintfA', 'LoadMenuA', 'GetStockObject', 'GetSaveFileNameA', 'ShellExecuteW', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??$?HDU?$char_traits@D@std@@V?$allocator@D@1@@std@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@PBD@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '_lock', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '_crt_debugger_hook', '__set_app_type', '_encode_pointer', '_onexit', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '_acmdln', 'exit', '_ismbblead', '_decode_pointer', '_except_handler4_common', '_invoke_watson', '_controlfp_s', '__p__fmode', 'malloc', 'atoi', 'memset', 'free', 'strlen', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter'], ['CreateFileW', 'Sleep', 'TlsAlloc', 'CloseHandle', 'HeapAlloc', 'GetCurrentDirectoryW', 'GetModuleFileNameW', 'GetFileSize', 'DeleteCriticalSection', 'GetProcessHeap', 'CreateProcessW', 'TlsGetValue', 'GetTickCount', 'VirtualProtectEx', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetCommandLineW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RaiseException', 'RtlUnwind', 'GetLastError', 'FreeLibrary', 'LoadLibraryExW', 'HeapValidate', 'GetSystemInfo', 'GetFileType', 'GetModuleFileNameA', 'GetModuleHandleExW', 'DuplicateHandle', 'ExitProcess', 'GetStdHandle', 'WriteFile', 'GetACP', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetEndOfFile', 'ReadFile', 'ReadConsoleW', 'SetFilePointerEx', 'OutputDebugStringA', 'OutputDebugStringW', 'WriteConsoleW', 'CreateThread', 'FlushFileBuffers', 'IsValidCodePage', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetCommandLineA', 'GetStartupInfoW', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CLSIDFromString', 'PathMakePrettyW', 'SystemFunction036'], ['VirtualProtect', 'GetFileTime', 'GetShortPathNameW', 'DuplicateHandle', 'DeleteFileW', 'GetCurrentProcessId', 'GetLocalTime', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'OutputDebugStringW', 'LoadLibraryExW', 'ResetEvent', 'OpenMutexW', 'GetTempPathW', 'GetTimeFormatW', 'Sleep', 'PeekNamedPipe', 'GetCurrentThread', 'FindFirstChangeNotificationW', 'CreateMutexW', 'CreateFileW', 'GetEnvironmentVariableW', 'WideCharToMultiByte', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLastError', 'HeapFree', 'GetSystemTimeAsFileTime', 'GetCommandLineW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'GetDateFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetProcessHeap', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'SetFilePointerEx', 'HeapReAlloc', 'SetEnvironmentVariableA', 'GetTopWindow', 'GetIconInfo', 'IsDialogMessageW', 'CheckDlgButton', 'SendMessageTimeoutW', 'LoadBitmapW', 'SetWindowTextW', 'CreateFontIndirectW', 'Rectangle', 'ExtTextOutW', 'StartDocW', 'RestoreDC', 'EndPage', 'RegQueryValueExW', 'RegCreateKeyW', 'RegCloseKey'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsDBCSLeadByteEx', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetConsoleCP', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetFileType', 'GetFileSize', 'CreateFileW', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'ShowWindow', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WritePrivateProfileStringW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'SystemTimeToFileTime', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetThreadPriority', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'QueryDosDeviceW', 'IsDebuggerPresent', 'MapViewOfFile', 'LocalFree', 'LocalFileTimeToFileTime', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathW', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDrives', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'Sleep', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'memset', 'memcpy', 'ShellExecuteW', 'GetConsoleWindow'], ['FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'FindNextFileW', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FormatMessageW', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetComputerNameA', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatA', 'GetDateFormatW', 'GetDiskFreeSpaceA', 'GetDiskFreeSpaceExA', 'GetDiskFreeSpaceW', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetEnvironmentVariableW', 'GetExitCodeProcess', 'GetExitCodeThread', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileSize', 'GetFileTime', 'GetFileType', 'GetFullPathNameA', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLogicalDriveStringsA', 'GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetOEMCP', 'GetOverlappedResult', 'GetPriorityClass', 'GetPrivateProfileSectionA', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetShortPathNameA', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDefaultLangID', 'GetSystemDirectoryA', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempFileNameA', 'GetTempFileNameW', 'GetTempPathA', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationA', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalFree', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapCompact', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FileTimeToLocalFileTime', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsBadWritePtr', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryW', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockFileEx', 'MapViewOfFile', 'Module32First', 'Module32FirstW', 'Module32Next', 'Module32NextW', 'MoveFileA', 'MoveFileExA', 'MoveFileExW', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'OpenProcess', 'OutputDebugStringA', 'OutputDebugStringW', 'Process32First', 'Process32FirstW', 'Process32Next', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'QueueUserAPC', 'RaiseException', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'RemoveDirectoryA', 'RemoveDirectoryW', 'ResetEvent', 'RtlUnwind', 'SearchPathA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFileAttributesA', 'SetFileAttributesW', 'SetFilePointer', 'SetFileTime', 'SetHandleCount', 'SetHandleInformation', 'SetLastError', 'SetNamedPipeHandleState', 'SetPriorityClass', 'SetProcessAffinityMask', 'SetStdHandle', 'SetSystemPowerState', 'SetThreadAffinityMask', 'SetThreadExecutionState', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'Toolhelp32ReadProcessMemory', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnlockFileEx', 'UnmapViewOfFile', 'VerLanguageNameA', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WaitNamedPipeA', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpyA', 'lstrcpynA', 'lstrlenA', 'lstrlenW', 'ExpandEnvironmentStringsW', 'ExpandEnvironmentStringsA', 'ExitThread', 'ExitProcess', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeviceIoControl', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'DebugBreak', 'CreateToolhelp32Snapshot', 'GetModuleHandleW', 'CreateThread', 'CreateProcessW', 'CreateProcessA', 'CreatePipe', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileMappingA', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CopyFileW', 'CopyFileA', 'CompareStringW', 'CompareStringA', 'CompareFileTime', 'CloseHandle', 'CancelIo', 'BackupSeek', 'BackupRead', 'AreFileApisANSI', 'VirtualAllocEx', 'InterlockedCompareExchange', 'DrawIconEx', 'DrawMenuBar', 'DrawTextExW', 'DrawTextW', 'EmptyClipboard', 'EnableMenuItem', 'EnableScrollBar', 'EnableWindow', 'EndDialog', 'EndPaint', 'EnumChildWindows', 'EnumClipboardFormats', 'EnumDisplayMonitors', 'EnumThreadWindows', 'EnumWindows', 'EqualRect', 'FillRect', 'FindWindowExW', 'FindWindowW', 'FrameRect', 'GetActiveWindow', 'GetAsyncKeyState', 'GetCapture', 'GetClassInfoExW', 'GetClassInfoW', 'GetClassLongW', 'GetClassNameW', 'GetClientRect', 'GetClipboardData', 'GetCursor', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetDlgItem', 'GetDlgItemTextA', 'GetDoubleClickTime', 'GetFocus', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyNameTextW', 'GetKeyState', 'GetKeyboardLayout', 'GetKeyboardLayoutList', 'GetKeyboardLayoutNameW', 'GetKeyboardState', 'GetLastActivePopup', 'GetMenu', 'GetMenuCheckMarkDimensions', 'GetMenuDefaultItem', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoW', 'GetMenuState', 'GetMenuStringW', 'GetMessageA', 'GetMessageExtraInfo', 'GetMessagePos', 'GetMessageTime', 'GetMessageW', 'GetMonitorInfoW', 'GetNextDlgTabItem', 'GetParent', 'GetPropW', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetUpdateRect', 'GetWindow', 'GetWindowDC', 'GetWindowLongA', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextW', 'GetWindowThreadProcessId', 'GrayStringW', 'HideCaret', 'InflateRect', 'InsertMenuItemW', 'InsertMenuW', 'IntersectRect', 'InvalidateRect', 'IsCharAlphaNumericW', 'IsCharAlphaW', 'IsChild', 'IsClipboardFormatAvailable', 'IsDialogMessageA', 'IsDialogMessageW', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowUnicode', 'IsWindowVisible', 'IsZoomed', 'KillTimer', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadKeyboardLayoutW', 'LoadStringW', 'MapDialogRect', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBeep', 'MessageBoxA', 'MessageBoxW', 'ModifyMenuW', 'MonitorFromPoint', 'MonitorFromWindow', 'MoveWindow', 'MsgWaitForMultipleObjects', 'MsgWaitForMultipleObjectsEx', 'OffsetRect', 'OpenClipboard', 'PeekMessageA', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'PostThreadMessageW', 'PtInRect', 'RedrawWindow', 'RegisterClassW', 'RegisterClipboardFormatW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ScreenToClient', 'ScrollWindow', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageA', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetClassLongW', 'SetClipboardData', 'SetCursor', 'SetCursorPos', 'SetFocus', 'SetForegroundWindow', 'SetKeyboardState', 'SetMenu', 'SetMenuItemBitmaps', 'SetMenuItemInfoW', 'SetParent', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowContextHelpId', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowRgn', 'SetWindowTextA', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowCaret', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TranslateMDISysAccel', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassA', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WaitMessage', 'WinHelpW', 'WindowFromPoint', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DialogBoxParamA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreateWindowExW', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CreateDialogIndirectParamW', 'CountClipboardFormats', 'CopyRect', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperW', 'CharUpperBuffW', 'CharNextW', 'CharNextA', 'CharLowerW', 'CharLowerBuffW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'ChildWindowFromPoint', 'RegQueryValueExA', 'RegOpenKeyA', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'DeregisterEventSource', 'FreeSid', 'InitiateSystemShutdownW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenThreadToken', 'PrivilegeCheck', 'RegCloseKey', 'RegCreateKeyExW', 'RegDeleteKeyA', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegLoadKeyW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegUnLoadKeyW', 'RegisterEventSourceW', 'RegisterServiceCtrlHandlerW', 'ReportEventW', 'SetServiceStatus', 'StartServiceCtrlDispatcherW', 'ImageList_GetIconSize', 'ImageList_Read', 'ImageList_Write', 'ImageList_GetIcon', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext'], ['InitializeSListHead', 'OutputDebugStringW', 'LCMapStringW', 'GetStringTypeW', 'RtlUnwind', 'GetSystemInfo', 'VirtualAlloc', 'VirtualQuery', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'HeapQueryInformation', 'GetCommandLineA', 'GetSystemTimeAsFileTime', 'QueryPerformanceFrequency', 'SetStdHandle', 'GetFileType', 'ExitProcess', 'GetStdHandle', 'IsValidLocale', 'EnumSystemLocalesW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'IsValidCodePage', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'FindFirstFileExA', 'FindNextFileA', 'WriteConsoleW', 'CreateFileW', 'GetStartupInfoW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'CreateEventW', 'WaitForSingleObjectEx', 'GetUserDefaultLCID', 'SearchPathA', 'GetProfileIntA', 'GetTickCount', 'GetTempFileNameA', 'GetTempPathA', 'VerifyVersionInfoA', 'VerSetConditionMask', 'FindResourceExW', 'GetCurrentDirectoryA', 'lstrcpyA', 'GetACP', 'SystemTimeToTzSpecificLocalTime', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesExA', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetCPInfo', 'GetOEMCP', 'VirtualProtect', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'CompareStringW', 'GlobalFlags', 'GetVolumeInformationA', 'lstrcmpiA', 'GetCurrentProcess', 'UnlockFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'LockFile', 'GetFullPathNameA', 'FlushFileBuffers', 'FindFirstFileA', 'FindClose', 'GlobalFindAtomA', 'GlobalAddAtomA', 'FindResourceA', 'LoadLibraryA', 'lstrcmpW', 'GlobalDeleteAtom', 'LoadLibraryExW', 'FreeResource', 'FreeLibrary', 'GetSystemDirectoryW', 'EncodePointer', 'FileTimeToSystemTime', 'GlobalGetAtomNameA', 'lstrcmpA', 'CompareStringA', 'ResumeThread', 'SetThreadPriority', 'GetCurrentThreadId', 'WaitForSingleObject', 'SetEvent', 'MultiByteToWideChar', 'CopyFileA', 'FormatMessageA', 'MulDiv', 'GlobalSize', 'WideCharToMultiByte', 'FindResourceW', 'LockResource', 'LoadResource', 'GetModuleFileNameA', 'GetCurrentProcessId', 'LocalFree', 'LocalReAlloc', 'LocalAlloc', 'GlobalFree', 'GlobalUnlock', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'LoadLibraryW', 'GetModuleHandleW', 'GetModuleFileNameW', 'SetLastError', 'OutputDebugStringA', 'QueryPerformanceCounter', 'GetSystemTime', 'CreateProcessA', 'FindFirstChangeNotificationA', 'GetProcessHeap', 'DeleteCriticalSection', 'GetFileSize', 'GetProcAddress', 'DecodePointer', 'SetFileAttributesA', 'HeapAlloc', 'GetWindowsDirectoryA', 'ResetEvent', 'RaiseException', 'CloseHandle', 'HeapReAlloc', 'GetDateFormatA', 'DeleteFileA', 'GetVersionExA', 'GetCurrentThread', 'CreateFileA', 'OpenMutexA', 'GetLastError', 'Sleep', 'HeapSize', 'OpenProcess', 'GetModuleHandleA', 'DuplicateHandle', 'CreateMutexA', 'GetEnvironmentVariableA', 'PeekNamedPipe', 'InitializeCriticalSectionAndSpinCount', 'WriteFile', 'HeapFree', 'SizeofResource', 'GetCommandLineW', 'GetShortPathNameA', 'CreateMenu', 'GetWindowRgn', 'DestroyCursor', 'ReleaseCapture', 'SetCapture', 'GetNextDlgGroupItem', 'KillTimer', 'SetTimer', 'DeleteMenu', 'ShowOwnedPopups', 'LoadImageW', 'InvalidateRect', 'TrackMouseEvent', 'IntersectRect', 'MapDialogRect', 'GetAsyncKeyState', 'GetNextDlgTabItem', 'EndDialog', 'CreateDialogIndirectParamA', 'PostQuitMessage', 'OffsetRect', 'SetRectEmpty', 'CopyImage', 'SystemParametersInfoA', 'InflateRect', 'GetMenuItemInfoA', 'DestroyMenu', 'FillRect', 'GetWindowDC', 'TabbedTextOutA', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'RealChildWindowFromPoint', 'GetDesktopWindow', 'ClientToScreen', 'CharUpperA', 'DestroyIcon', 'IsDialogMessageA', 'SetWindowTextA', 'SendDlgItemMessageA', 'CheckDlgButton', 'MoveWindow', 'ShowWindow', 'GetMonitorInfoA', 'MonitorFromWindow', 'WinHelpA', 'GetScrollInfo', 'SetScrollInfo', 'LoadIconW', 'LoadIconA', 'GetWindow', 'GetTopWindow', 'GetClassNameA', 'GetClassLongA', 'SetWindowLongA', 'PtInRect', 'EqualRect', 'CopyRect', 'MapWindowPoints', 'ScreenToClient', 'AdjustWindowRectEx', 'GetWindowRect', 'GetClientRect', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'IsCharLowerA', 'EndPaint', 'BeginPaint', 'SetForegroundWindow', 'GetForegroundWindow', 'SubtractRect', 'UpdateWindow', 'TrackPopupMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'SetFocus', 'GetDlgCtrlID', 'GetDlgItem', 'IsIconic', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'SetWindowPos', 'DestroyWindow', 'IsChild', 'IsMenu', 'IsWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'CallWindowProcA', 'DefWindowProcA', 'PostMessageA', 'GetMessageTime', 'GetMessagePos', 'RegisterWindowMessageA', 'LoadBitmapW', 'SetMenuItemInfoA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'GetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'LoadCursorA', 'GetSysColorBrush', 'GetSysColor', 'ReleaseDC', 'GetDC', 'GetSystemMetrics', 'CallNextHookEx', 'SetWindowsHookExA', 'GetCursorPos', 'ValidateRect', 'GetKeyState', 'GetActiveWindow', 'IsWindowVisible', 'PeekMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'RemoveMenu', 'AppendMenuA', 'InsertMenuA', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'InsertMenuItemA', 'SetDlgItemInt', 'GetKeyboardLayout', 'WaitMessage', 'TranslateMDISysAccel', 'DefMDIChildProcA', 'DefFrameProcA', 'DrawMenuBar', 'GetUpdateRect', 'IsClipboardFormatAvailable', 'CharUpperBuffA', 'RegisterClipboardFormatA', 'ModifyMenuA', 'GetDoubleClickTime', 'SetMenuDefaultItem', 'LockWindowUpdate', 'SetRect', 'PostThreadMessageA', 'GetComboBoxInfo', 'ReuseDDElParam', 'UnpackDDElParam', 'GetDlgItemInt', 'SetCursor', 'ShowScrollBar', 'LoadMenuA', 'TranslateAcceleratorA', 'UnhookWindowsHookEx', 'SendMessageA', 'EnableWindow', 'IsWindowEnabled', 'MessageBoxA', 'GetWindowLongA', 'GetParent', 'GetWindowThreadProcessId', 'GetLastActivePopup', 'GetMenuStringA', 'GetMenuState', 'CopyAcceleratorTableA', 'DestroyAcceleratorTable', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'ToAsciiEx', 'GetKeyboardState', 'SetActiveWindow', 'MapVirtualKeyExA', 'WindowFromPoint', 'MonitorFromPoint', 'UpdateLayeredWindow', 'UnionRect', 'DrawIcon', 'FrameRect', 'CopyIcon', 'SetCursorPos', 'BringWindowToTop', 'GetSystemMenu', 'LoadMenuW', 'IsZoomed', 'DrawFrameControl', 'DrawEdge', 'DrawStateA', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'OpenClipboard', 'SetParent', 'SetWindowRgn', 'SetClassLongA', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'GetKeyNameTextA', 'MapVirtualKeyA', 'GetMenuDefaultItem', 'CreatePopupMenu', 'NotifyWinEvent', 'LoadCursorW', 'InvertRect', 'HideCaret', 'EnableScrollBar', 'MessageBeep', 'GetIconInfo', 'DrawIconEx', 'LoadImageA', 'IsRectEmpty', 'RedrawWindow', 'DrawFocusRect', 'LoadAcceleratorsA', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'VariantClear', 'VariantCopy', 'VariantChangeType', 'VarBstrFromDate', 'VariantInit', 'SysAllocString', 'SysFreeString', 'SysAllocStringLen', 'SysStringLen', 'LoadTypeLib', 'SysAllocStringByteLen', 'Escape', 'ExcludeClipRect', 'GetClipBox', 'GetObjectType', 'GetPixel', 'GetStockObject', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePatternBrush', 'CreatePen', 'CreateHatchBrush', 'CreateCompatibleDC', 'BitBlt', 'SelectPalette', 'SetBkMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetTextAlign', 'MoveToEx', 'TextOutA', 'ExtTextOutA', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'DeleteObject', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'CombineRgn', 'CreateRectRgnIndirect', 'PatBlt', 'SetRectRgn', 'DPtoLP', 'GetTextMetricsA', 'EnumFontFamiliesExA', 'CreatePalette', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'GetSystemPaletteEntries', 'RealizePalette', 'GetBkColor', 'CreateCompatibleBitmap', 'CreateDIBitmap', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'SetPixel', 'StretchBlt', 'CreateDIBSection', 'SetDIBColorTable', 'CreateEllipticRgn', 'Ellipse', 'GetTextColor', 'CreatePolygonRgn', 'Polygon', 'Polyline', 'CreateRoundRectRgn', 'LPtoDP', 'Rectangle', 'GetRgnBox', 'OffsetRgn', 'RoundRect', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'PtInRegion', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetTextFaceA', 'GetObjectA', 'SetTextColor', 'SetBkColor', 'CreateBitmap', 'GetDeviceCaps', 'CreateDCA', 'SetWindowOrgEx', 'CopyMetaFileA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHAppBarMessage', 'DragFinish', 'DragQueryFileA', 'OleLockRunning', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'RevokeDragDrop', 'RegisterDragDrop', 'CoLockObjectExternal', 'OleGetClipboard', 'DoDragDrop', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CoDisconnectObject', 'ReleaseStgMedium', 'OleDuplicateData', 'CoTaskMemFree', 'CoTaskMemAlloc', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdipCreateBitmapFromHBITMAP', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdiplusShutdown', 'StrFormatKBSizeA', 'PathRemoveFileSpecW', 'PathFindExtensionA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindFileNameA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'RegQueryValueExA', 'SystemFunction036', 'RegDeleteValueA', 'RegEnumKeyExA', 'PlaySoundA', 'DrawThemeText', 'DrawThemeParentBackground', 'OpenThemeData', 'CloseThemeData', 'DrawThemeBackground', 'GetThemePartSize', 'GetThemeSysColor', 'IsThemeBackgroundPartiallyTransparent', 'IsAppThemed', 'GetWindowTheme', 'GetCurrentThemeName', 'GetThemeColor', 'TransparentBlt', 'AlphaBlend', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'OutputDebugStringA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EqualRgn', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['SetCommConfig', 'CreateEventA', 'TerminateProcess', 'lstrcatA', 'GetStringTypeExA', 'GetProcAddress', 'EnumDateFormatsExA', 'GetNumaHighestNodeNumber', 'WriteConsoleA', 'LocalAlloc', 'GetTickCount', 'SetProcessWorkingSetSize', '_lread', 'GetModuleHandleA', 'UpdateResourceW', 'FindActCtxSectionStringW', 'DeleteFileA', 'SetEvent', 'QueryDosDeviceA', 'GetNumberOfConsoleMouseButtons', 'LoadResource', 'SetEndOfFile', 'FindFirstChangeNotificationW', 'GetNumaNodeProcessorMask', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'HeapFree', 'Sleep', 'GetModuleHandleW', 'ExitProcess', 'MultiByteToWideChar', 'ReadFile', 'TlsGetValue', 'TlsSetValue', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'RtlUnwind', 'HeapAlloc', 'LoadLibraryW', 'WriteFile', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CloseHandle', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeW', 'CreateFileW', 'GetCaretPos', 'GetPrivateObjectSecurity', 'AddAuditAccessAce', 'DestroyPrivateObjectSecurity', 'AlphaBlend'], ['GetConsoleWindow', 'CreateFileW', 'SetEnvironmentVariableA', 'WriteConsoleW', 'GetStringTypeW', 'OutputDebugStringW', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'CompareStringW', 'SetFilePointerEx', 'ReadConsoleW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetModuleFileNameA', 'VirtualQuery', 'LoadLibraryExW', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'EnumSystemLanguageGroupsA', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetConsoleMode', 'GetConsoleCP', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GlobalAddAtomA', 'CreateProcessA', 'LoadLibraryA', 'FormatMessageA', 'WaitCommEvent', 'SetCommTimeouts', 'SetCommMask', 'ClearCommError', 'ReadFile', 'WriteFile', 'WaitForSingleObject', 'VirtualAlloc', 'GlobalAlloc', 'GetVersion', 'LockResource', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'GetProcessHeap', 'GetCurrentThreadId', 'SetLastError', 'GetStartupInfoW', 'GetFileType', 'SetEndOfFile', 'GetStdHandle', 'CancelIo', 'DeleteFileA', 'CreateFileA', 'GetModuleHandleA', 'CreateEventA', 'CloseHandle', 'DeviceIoControl', 'Sleep', 'GetOverlappedResult', 'GetLastError', 'GetCurrentProcess', 'GetProcAddress', 'GetSystemInfo', 'IsDebuggerPresent', 'DeleteCriticalSection', 'HeapSize', 'IsProcessorFeaturePresent', 'HeapReAlloc', 'GetCommandLineA', 'MultiByteToWideChar', 'AreFileApisANSI', 'GetModuleHandleExW', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'RaiseException', 'LeaveCriticalSection', 'SetCurrentDirectoryA', 'TerminateProcess', 'GetTempPathA', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'wsprintfA', 'PostQuitMessage', 'WaitForInputIdle', 'CreateWindowExA', 'DestroyWindow', 'SetLayeredWindowAttributes', 'CallWindowProcA', 'SendMessageA', 'DefWindowProcA', 'BeginDeferWindowPos', 'DeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'IsDlgButtonChecked', 'GetClipboardData', 'TrackPopupMenu', 'DdeNameService', 'SystemParametersInfoA', 'WinHelpA', 'DefMDIChildProcA', 'GetIconInfo', 'GetWindow', 'GetDesktopWindow', 'SetWindowLongA', 'GetWindowLongA', 'PtInRect', 'OffsetRect', 'FillRect', 'GetSysColorBrush', 'GetSysColor', 'MapWindowPoints', 'GetCursorPos', 'MessageBoxA', 'GetWindowRect', 'GetClientRect', 'GetWindowTextA', 'SetWindowTextA', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'GetForegroundWindow', 'SetActiveWindow', 'UpdateWindow', 'DrawTextA', 'GetObjectA', 'CreateFontIndirectA', 'CreateDCA', 'EndDoc', 'StartDocA', 'GetTextMetricsA', 'SetTextAlign', 'SetTextColor', 'SelectClipRgn', 'GetDeviceCaps', 'Escape', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreatePen', 'CreateICA', 'WritePrinter', 'StartPagePrinter', 'ClosePrinter', 'StartDocPrinterA', 'EndDocPrinter', 'EndPagePrinter', 'OpenPrinterA', 'QueryServiceStatus', 'ControlService', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'StartServiceA', 'CloseServiceHandle', 'QueryServiceConfigA', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'CreateServiceA', 'ShellExecuteA', 'GetHGlobalFromStream', 'CoTaskMemFree', 'CoInitialize', 'StringFromCLSID', 'LoadTypeLib', 'OleSavePictureFile', 'InternetGetCookieA', 'InternetGetConnectedStateExW', 'InternetGetConnectedState', 'TransparentBlt', 'ImmGetContext', 'ImmDisableTextFrameService'], ['GetLastError', 'SetLastError', 'CreateFileW', 'CloseHandle', 'WriteFile', 'GetStdHandle', 'SetFilePointer', 'SetEndOfFile', 'FlushFileBuffers', 'GetFileType', 'ReadFile', 'SetFileTime', 'GetFileAttributesW', 'SetFileAttributesW', 'MoveFileW', 'DeleteFileW', 'CreateDirectoryW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'FoldStringW', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetNumberFormatW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'Sleep', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'GetTickCount', 'GetLocalTime', 'OpenFileMappingW', 'LoadLibraryW', 'GetSystemDirectoryW', 'ExitProcess', 'FreeConsole', 'WriteConsoleW', 'AttachConsole', 'AllocConsole', 'CompareStringW', 'SystemTimeToFileTime', 'TzSpecificLocalTimeToSystemTime', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'MultiByteToWideChar', 'IsDBCSLeadByte', 'GetCPInfo', 'GlobalAlloc', 'SetCurrentDirectoryW', 'LocalAlloc', 'InterlockedExchange', 'LoadLibraryA', 'RaiseException', 'HeapFree', 'RtlUnwind', 'HeapReAlloc', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA'], ['CloseHandle', 'WaitForSingleObject', 'CreateThread', 'VirtualProtectEx', 'FreeConsole', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RaiseException', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'SetConsoleCtrlHandler', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'ReadFile', 'ReadConsoleW', 'CreateFileW', 'DecodePointer'], ['PathFileExistsA', 'Sleep', 'RemoveDirectoryA', 'CreateFileA', 'WriteFile', 'GlobalLock', 'GlobalUnlock', 'GetLocalTime', 'GetCurrentThreadId', 'TerminateThread', 'GetLastError', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'FindClose', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'GetTickCount', 'CreateFileW', 'GetProcessHeap', 'SetEndOfFile', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'FlushFileBuffers', 'WriteConsoleW', 'LoadLibraryW', 'FindNextFileA', 'FindFirstFileA', 'CreateThread', 'CreateDirectoryA', 'GetTempPathA', 'CloseHandle', 'CompareStringW', 'UnhandledExceptionFilter', 'HeapFree', 'HeapAlloc', 'DeleteFileA', 'GetSystemTimeAsFileTime', 'FlsSetValue', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'SetEnvironmentVariableA', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'DecodePointer', 'EncodePointer', 'RtlUnwindEx', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'GetFileType', 'SetHandleCount', 'GetStartupInfoW', 'DeleteCriticalSection', 'MultiByteToWideChar', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'GetTimeZoneInformation', 'RaiseException', 'RtlPcToFileHeader', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemMetrics', 'EnumDisplayMonitors', 'GetDC', 'GetKeyNameTextA', 'GetKeyState', 'GetDesktopWindow', 'GetAsyncKeyState', 'GetWindowTextA', 'GetForegroundWindow', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'MapVirtualKeyA', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'GetDeviceCaps', 'GetDIBits', 'SelectObject', 'DeleteObject', 'DeleteDC', 'BitBlt'], ['GlobalReAlloc', 'GlobalHandle', 'TlsAlloc', 'TlsSetValue', 'LocalReAlloc', 'DeleteCriticalSection', 'TlsFree', 'InterlockedIncrement', 'GetThreadLocale', 'SetFilePointer', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'DuplicateHandle', 'GetVolumeInformationW', 'GetFullPathNameW', 'FileTimeToSystemTime', 'GlobalFlags', 'SetErrorMode', 'FileTimeToLocalFileTime', 'GetFileTime', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetTimeZoneInformation', 'ExitThread', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'TlsGetValue', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetEnvironmentVariableA', 'LocalAlloc', 'InterlockedCompareExchange', 'WritePrivateProfileStringW', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetLocaleInfoW', 'CompareStringA', 'FormatMessageW', 'LocalFree', 'SuspendThread', 'InterlockedDecrement', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'CompareStringW', 'GetVersionExA', 'CreateThread', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'MoveFileA', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'FlushFileBuffers', 'GetVersion', 'SearchPathA', 'GetWindowsDirectoryA', 'lstrcpynA', 'ResetEvent', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'CreateEventW', 'Module32NextW', 'Module32FirstW', 'UnmapViewOfFile', 'IsBadReadPtr', 'MapViewOfFile', 'CreateFileMappingW', 'CreateFileW', 'RemoveDirectoryW', 'FindNextFileW', 'FindFirstFileW', 'MoveFileExW', 'GetFileAttributesW', 'lstrcmpW', 'FreeLibrary', 'GetWindowsDirectoryW', 'GetModuleFileNameA', 'SetThreadPriority', 'GetModuleFileNameW', 'CreateProcessA', 'GetSystemDirectoryA', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'lstrcpyA', 'GetFileAttributesA', 'ReadFile', 'GetFileSize', 'WriteFile', 'CreateFileA', 'MoveFileExA', 'GetCurrentThread', 'GetCurrentProcess', 'GetVersionExW', 'GlobalLock', 'GlobalAlloc', 'SizeofResource', 'GlobalFree', 'GlobalUnlock', 'MulDiv', 'lstrcpynW', 'LoadLibraryA', 'WinExec', 'lstrcatW', 'GetModuleHandleA', 'FreeResource', 'LockResource', 'LoadResource', 'FindResourceW', 'CreateMutexW', 'GetCommandLineW', 'Process32NextW', 'CloseHandle', 'TerminateProcess', 'OpenProcess', 'lstrcmpiW', 'lstrcpyW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'InterlockedExchange', 'RemoveDirectoryA', 'GetTempPathA', 'DeleteFileA', 'ExpandEnvironmentStringsA', 'DeleteFileW', 'ExpandEnvironmentStringsW', 'lstrcmpiA', 'FindClose', 'lstrcmpA', 'GetVolumeInformationA', 'GetDriveTypeA', 'MultiByteToWideChar', 'lstrlenA', 'FindNextFileA', 'FindFirstFileA', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'GetLogicalDrives', 'GetProcAddress', 'GetModuleHandleW', 'LoadLibraryW', 'GetLastError', 'SetLastError', 'WideCharToMultiByte', 'lstrlenW', 'ExitProcess', 'lstrcatA', 'VirtualProtect', 'Sleep', 'GetMessageW', 'ValidateRect', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'IsDlgButtonChecked', 'SetDlgItemTextW', 'CheckRadioButton', 'CheckDlgButton', 'BeginPaint', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuW', 'GetMenuState', 'CheckMenuItem', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetWindowTextLengthW', 'GetForegroundWindow', 'GetLastActivePopup', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'GetKeyState', 'GetScrollPos', 'GetMenu', 'GetMenuItemCount', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'CallWindowProcW', 'IntersectRect', 'GetWindowPlacement', 'DrawEdge', 'FrameRect', 'DrawStateW', 'GetWindowDC', 'CreateIconIndirect', 'GetIconInfo', 'GetWindowThreadProcessId', 'DrawFocusRect', 'SetRectEmpty', 'EnableMenuItem', 'GetMenuItemID', 'TrackPopupMenu', 'SetMenuDefaultItem', 'DestroyIcon', 'DeleteMenu', 'GetSubMenu', 'LoadMenuW', 'RedrawWindow', 'SetWindowRgn', 'RegisterWindowMessageW', 'SendMessageW', 'UnregisterClassA', 'EnableWindow', 'InvalidateRect', 'GetClientRect', 'GetSysColorBrush', 'SetClipboardViewer', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'LoadBitmapW', 'IsCharAlphaNumericW', 'SetFocus', 'FillRect', 'SetRect', 'PostMessageW', 'GetCursorPos', 'UpdateWindow', 'ClientToScreen', 'GetCaretPos', 'GetClassNameW', 'GetFocus', 'UpdateLayeredWindow', 'GetWindow', 'LockSetForegroundWindow', 'UnregisterClassW', 'DestroyWindow', 'RegisterClassExW', 'DefWindowProcW', 'CopyIcon', 'InflateRect', 'GetSysColor', 'ScreenToClient', 'GetMessagePos', 'SetTimer', 'KillTimer', 'DispatchMessageW', 'TranslateMessage', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'IsRectEmpty', 'CopyAcceleratorTableW', 'ReleaseCapture', 'SetCapture', 'CharUpperW', 'CharNextW', 'PeekMessageW', 'SetWindowPos', 'OffsetRect', 'DestroyMenu', 'PostQuitMessage', 'MapDialogRect', 'SetWindowContextHelpId', 'RegisterClipboardFormatW', 'GetWindowTextW', 'WindowFromPoint', 'SystemParametersInfoA', 'PostThreadMessageW', 'GetSystemMetrics', 'EqualRect', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'LoadIconW', 'CreatePopupMenu', 'AppendMenuW', 'GetWindowRect', 'wsprintfW', 'wsprintfA', 'SendMessageTimeoutW', 'EnumWindows', 'SetForegroundWindow', 'IsIconic', 'ShowWindow', 'GetDesktopWindow', 'IsWindowEnabled', 'GetActiveWindow', 'SetActiveWindow', 'LoadIconA', 'DrawIcon', 'IsWindowVisible', 'FindWindowA', 'PtInRect', 'LoadImageW', 'GetParent', 'GetDC', 'ReleaseDC', 'GetWindowLongW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'LoadCursorW', 'IsWindow', 'CopyRect', 'SystemParametersInfoW', 'MessageBoxW', 'GetDlgItem', 'CreateWindowExW', 'SetCursor', 'EndPaint', 'CreateRectRgnIndirect', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipRgn', 'CreateFontW', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetTextColor', 'GetClipBox', 'SetDIBits', 'GetDIBits', 'CombineRgn', 'GetPixel', 'CreateRectRgn', 'SetBkColor', 'GetMapMode', 'SetMapMode', 'CreateBitmap', 'DPtoLP', 'StretchBlt', 'SetStretchBltMode', 'GetCurrentObject', 'CreateDIBSection', 'DeleteObject', 'GetTextExtentPoint32W', 'DeleteDC', 'GetDeviceCaps', 'CreateFontIndirectW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'PtVisible', 'RectVisible', 'TextOutW', 'ExtTextOutW', 'Escape', 'CreateCompatibleBitmap', 'GetObjectW', 'GetStockObject', 'CreateSolidBrush', 'AlphaBlend', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'RegEnumKeyW', 'RegCreateKeyExW', 'RegEnumKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegEnumValueA', 'RegQueryValueW', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExW', 'InitiateSystemShutdownW', 'RegCloseKey', 'LookupPrivilegeValueW', 'FreeSid', 'EqualSid', 'AllocateAndInitializeSid', 'OpenThreadToken', 'GetTokenInformation', 'OpenProcessToken', 'RegQueryValueExW', 'RegSetValueExA', 'RegCreateKeyA', 'RegOpenKeyW', 'RegDeleteKeyW', 'RegCreateKeyW', 'RegEnumValueW', 'RegDeleteValueW', 'Shell_NotifyIconW', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'SHEmptyRecycleBinW', 'SHAddToRecentDocs', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'InitCommonControlsEx', '_TrackMouseEvent', 'PathStripToRootW', 'PathFindFileNameW', 'PathFindExtensionW', 'StrStrA', 'SHDeleteValueW', 'StrStrIA', 'StrCmpIW', 'SHGetValueA', 'SHDeleteKeyW', 'StrStrW', 'StrStrIW', 'PathIsUNCW', 'OleUIBusyW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CreateStreamOnHGlobal', 'CoTaskMemFree', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'CLSIDFromString', 'CoGetClassObject', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CreateILockBytesOnHGlobal', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'VariantClear', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysAllocStringLen', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'OleCreateFontIndirect', 'SysFreeString', 'SafeArrayDestroy', 'VariantCopy', 'SysAllocString', 'GetErrorInfo', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromStream', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc', 'GdipCreateFromHDC', 'GdipDeleteGraphics', 'GdipDrawImageI', 'GdipCreateImageAttributes', 'GdipDisposeImageAttributes', 'GdipSetImageAttributesColorMatrix', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipDrawImageRectRect', 'GdipCreateBitmapFromHBITMAP', 'GdipSetSmoothingMode', 'GdipDrawImageRectI', 'GdipReleaseDC', 'GdipCreatePen1', 'GdipDeletePen', 'GdipDrawLineI', 'GetModuleFileNameExW', 'InternetConnectW', 'FindFirstUrlCacheEntryW', 'DeleteUrlCacheEntryW', 'FindCloseUrlCache', 'FindNextUrlCacheEntryW', 'FindFirstUrlCacheEntryA', 'DeleteUrlCacheEntryA', 'FindNextUrlCacheEntryA', 'InternetReadFile', 'HttpQueryInfoW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'InternetCloseHandle', 'MCIWndCreateW', 'WinVerifyTrust'], ['DirectDrawCreate', 'DirectDrawCreateEx', 'SetMenuItemBitmaps', 'GetClientRect', 'MapDialogRect', 'GetSysColorBrush', 'IsWindowEnabled', 'GetNextDlgGroupItem', 'CreateWindowExW', 'EnableMenuItem', 'DestroyWindow', 'GetWindowLongW', 'PostMessageW', 'DrawIcon', 'InvalidateRgn', 'GetParent', 'GetDesktopWindow', 'IsIconic', 'ValidateRect', 'SetActiveWindow', 'GetMenuState', 'IsWindowVisible', 'MessageBeep', 'SetMenu', 'EndDialog', 'SetTimer', 'DispatchMessageW', 'GetMenuCheckMarkDimensions', 'GetSystemMetrics', 'UpdateWindow', 'LoadBitmapW', 'GetKeyState', 'ModifyMenuW', 'GetActiveWindow', 'GetDlgItem', 'SetWindowContextHelpId', 'SetWindowPos', 'CheckMenuItem', 'GetCursorPos', 'GetFocus', 'CreateDialogIndirectParamW', 'GetWindow', 'PeekMessageW', 'IsWindow', 'EnableWindow', 'PostQuitMessage', 'GetNextDlgTabItem', 'TranslateMessage', 'VirtualUnlock', 'GlobalAlloc', 'SetUnhandledExceptionFilter', 'InterlockedCompareExchange', 'GlobalHandle', 'GetTempPathW', 'QueryPerformanceCounter', 'WideCharToMultiByte', 'GetCurrentProcess', 'GetComputerNameW', 'ProcessIdToSessionId', 'GetVersionExW', 'LocalFree', 'ReleaseMutex', 'VirtualAlloc', 'CreateThread', 'GetSystemInfo', 'LCMapStringW', 'TerminateProcess', 'LoadResource', 'LeaveCriticalSection', 'SetEvent', 'lstrlenW', 'MultiByteToWideChar', 'GetProcAddress', 'RaiseException', 'IsDebuggerPresent', 'WaitForMultipleObjects', 'GetStartupInfoW', 'HeapSetInformation', 'FlushInstructionCache', 'CloseHandle', 'GetVersionExA', 'LoadLibraryW', 'LockResource', 'GetModuleHandleA', 'FindResourceW', 'GetProcessId', 'GetThreadLocale', 'GetSystemDirectoryW', 'GetModuleFileNameW', 'VirtualFree', 'GlobalFree', 'GetLocaleInfoW', 'CreateMutexW', 'DeleteCriticalSection', 'FormatMessageW', 'OpenProcess', 'SetLastError', 'LocalAlloc', 'GetSystemTimeAsFileTime', 'GetTickCount', 'LoadLibraryExW', 'FreeLibrary', 'FindResourceExW', 'InitializeCriticalSection', 'MulDiv', 'lstrlenA', 'WaitForSingleObject', 'GetCurrentThreadId', 'InterlockedDecrement', 'ResetEvent', 'VirtualLock', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetLocaleInfoA', 'lstrcmpW', 'GlobalUnlock', 'LoadLibraryA', 'UnhandledExceptionFilter', 'CreateFileW', 'GetLastError', 'HeapAlloc', 'InterlockedExchange', 'EnterCriticalSection', 'GlobalLock', 'SizeofResource', 'InterlockedIncrement', 'IsProcessorFeaturePresent', 'CreateEventW', 'GetACP', 'Sleep', 'HeapDestroy', 'GetModuleHandleW', '_controlfp', '_amsg_exit', '_initterm', '__wgetmainargs', 'exit', 'log', '__setusermatherr', '_wtoi64', '__set_app_type', 'iswdigit', '_exit', 'memset', '_cexit', '_initterm', '__p__fmode', '?terminate@@YAXXZ', '_wcmdln', 'memcpy', '__p__commode', '_XcptFilter'], ['WriteConsoleA', 'lstrlenW', 'GetCommandLineW', 'SizeofResource', 'HeapDestroy', 'SetUnhandledExceptionFilter', 'RtlUnwind', 'HeapFree', 'InitializeCriticalSection', 'CreateThread', 'CreateEventW', 'TlsGetValue', 'RaiseException', 'FindResourceW', 'FindResourceExW', 'LoadLibraryExW', 'UnhandledExceptionFilter', 'FreeLibrary', 'GetSystemInfo', 'FlushFileBuffers', 'GetLocaleInfoA', 'GetStartupInfoA', 'TerminateProcess', 'GetConsoleMode', 'InterlockedIncrement', 'TlsAlloc', 'LoadLibraryW', 'SetLastError', 'SetEvent', 'VirtualAlloc', 'LoadResource', 'LockResource', 'GetExitCodeThread', 'Sleep', 'SetStdHandle', 'GetCurrentProcess', 'GetLastError', 'OpenProcess', 'GetCurrentProcessId', 'FlushInstructionCache', 'ExpandEnvironmentStringsA', 'IsDebuggerPresent', 'DeleteCriticalSection', 'lstrcpynW', 'GlobalAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'HeapSize', 'OpenEventW', 'TerminateThread', 'GetOEMCP', 'CreateProcessW', 'GetFileType', 'GetFileAttributesW', 'GlobalFree', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'CreateFileA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'OpenMutexW', 'HeapReAlloc', 'lstrcmpA', 'VirtualProtectEx', 'AddAtomA', 'GetVersionExA', 'GetVersion', 'GetStartupInfoW', 'HeapAlloc', 'GlobalLock', 'GetProcessHeap', 'GetStdHandle', 'CloseHandle', 'GetModuleHandleW', 'LCMapStringA', 'ExitThread', 'InterlockedDecrement', 'LeaveCriticalSection', 'lstrcmpiW', 'GetModuleHandleA', 'WaitForSingleObject', 'GetCurrentThreadId', 'GetModuleFileNameW', 'IsValidCodePage', 'CreateMutexW', 'GetConsoleOutputCP', 'SetFilePointer', 'EnterCriticalSection', 'WriteFile', 'WriteConsoleW', 'GetTickCount', 'GetFullPathNameW', 'GetCPInfo', 'VirtualFree', 'InterlockedExchange', 'MulDiv', 'LCMapStringW', 'CreateIoCompletionPort', 'IsProcessorFeaturePresent', 'lstrcmpW', 'ResetEvent', 'GetStringTypeW', 'GetQueuedCompletionStatus', 'GetModuleFileNameA', 'InterlockedCompareExchange', 'GetSystemTimeAsFileTime', 'TlsFree', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'HeapCreate', 'TlsSetValue', 'GetStringTypeA', 'WideCharToMultiByte', 'GetProcAddress', 'ExitProcess', 'GetACP', 'GlobalUnlock', 'SendMessageW', 'InvalidateRgn', 'RegisterWindowMessageW', 'EnumChildWindows', 'GetWindowLongW', 'PostQuitMessage', 'CreateWindowExW', 'SetMenuItemInfoW', 'MonitorFromPoint', 'SetForegroundWindow', 'CreateDialogParamW', 'GetDlgCtrlID', 'ClientToScreen', 'CharNextW', 'GetDesktopWindow', 'SetWindowPlacement', 'SetCapture', 'GetWindowPlacement', 'IsDialogMessageW', 'CopyRect', 'GetMenuItemInfoW', 'GetWindowThreadProcessId', 'CheckDlgButton', 'GetWindowRect', 'AttachThreadInput', 'IsMenu', 'GetDlgItem', 'IsWindow', 'GetFocus', 'LoadCursorW', 'GetDC', 'GetClassNameW', 'GetClientRect', 'ReleaseDC', 'GetSysColor', 'SetFocus', 'TrackPopupMenu', 'DefWindowProcW', 'CreateAcceleratorTableW', 'GetWindow', 'BringWindowToTop', 'GetClassInfoExW', 'RedrawWindow', 'LoadImageW', 'GetSubMenu', 'DispatchMessageW', 'GetParent', 'DestroyMenu', 'MapWindowPoints', 'DrawIconEx', 'SetWindowTextW', 'MoveWindow', 'GetSystemMetrics', 'SetWindowLongW', 'MonitorFromWindow', 'GetWindowTextLengthW', 'EndDialog', 'GetCursorPos', 'DestroyAcceleratorTable', 'InflateRect', 'DestroyIcon', 'ReleaseCapture', 'PtInRect', 'TranslateAcceleratorW', 'TranslateMessage', 'GetWindowTextW', 'OffsetRect', 'SetWindowPos', 'EndPaint', 'RegisterClassExW', 'BeginPaint', 'IsChild', 'InvalidateRect', 'UnregisterClassA', 'IsIconic', 'GetForegroundWindow', 'DrawTextW', 'GetMessagePos', 'LoadMenuW', 'LoadBitmapW', 'PostMessageW', 'DrawFocusRect', 'GetMonitorInfoW', 'MessageBoxW', 'ModifyMenuW', 'EnableWindow', 'ShowWindow', 'CallWindowProcW', 'GetMessageW', 'GetMenuItemCount', 'DialogBoxParamW', 'FillRect', 'PeekMessageW', 'IsWindowVisible', 'DestroyWindow', 'LoadAcceleratorsW', 'ScreenToClient', 'IsWindowEnabled', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'DeleteObject', 'GetTextMetricsW', 'TextOutW', 'Rectangle', 'CreateFontW', 'SetTextColor', 'StretchBlt', 'RestoreDC', 'CreateCompatibleBitmap', 'CreatePen', 'EnumFontFamiliesExW', 'BitBlt', 'GetTextExtentPoint32W', 'DeleteDC', 'CreateFontIndirectW', 'SetBkMode', 'CreateSolidBrush', 'GetObjectW', 'GetStockObject', 'SetBkColor', 'CreatePatternBrush', 'SaveDC', 'ChooseColorW', 'RegCreateKeyW', 'RegCloseKey', 'RegQueryValueExA', 'RegDeleteKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegOpenKeyW', 'RegCreateKeyExW', 'RegOpenKeyExA', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderLocation', 'SHFileOperationW', 'SHGetPathFromIDListW', 'OleUninitialize', 'CoTaskMemRealloc', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CLSIDFromProgID', 'OleInitialize', 'CoTaskMemFree', 'OleLockRunning', 'CoInitialize', 'CoGetClassObject', 'CoCreateInstance', 'CoTaskMemAlloc', 'StringFromGUID2', 'CLSIDFromString', 'SysFreeString', 'LoadTypeLib', 'SysStringLen', 'VariantClear', 'LoadRegTypeLib', 'OleCreateFontIndirect', 'VariantInit', 'SysAllocString', 'SysAllocStringLen', 'VarUI4FromStr', 'ImageList_Remove', 'ImageList_Draw', 'ImageList_LoadImageW', 'ImageList_AddMasked', 'InitCommonControlsEx', 'ImageList_Create', 'ImageList_ReplaceIcon', 'PathFindFileNameW', 'PathFileExistsW', 'PathRemoveBackslashW', 'StrStrIW', 'PathAddBackslashW', 'PathRemoveFileSpecW', 'StrCpyNW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'GdipDrawLineI', 'GdipDeleteStringFormat', 'GdipCreateLineBrushFromRect', 'GdipCreateStringFormat', 'GdipCreateBitmapFromStreamICM', 'GdipFree', 'GdipDrawString', 'GdipCreateBitmapFromStream', 'GdipGetImageGraphicsContext', 'GdipDeleteBrush', 'GdipDisposeImage', 'GdipDeleteFont', 'GdipCreateFont', 'GdipCreateBitmapFromScan0', 'GdipDrawImageI', 'GdipCreateSolidFill', 'GdiplusStartup', 'GdipCreateFromHDC', 'GdipSetStringFormatAlign', 'GdipDeleteFontFamily', 'GdipCreateFontFamilyFromName', 'GdipCreateHBITMAPFromBitmap', 'GdipSetPenDashStyle', 'GdipDeleteGraphics', 'GdipCloneBrush', 'GdipGetGenericFontFamilySansSerif', 'GdiplusShutdown', 'GdipCloneImage', 'GdipDeletePen', 'GdipAlloc', 'GdipCreatePen1', 'GdipFillRectangle', 'GdipSetTextRenderingHint', 'GdipGetImageHeight', 'GdipGetImageWidth', '_CIsin'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetFocus'], ['CreateFileW', 'LoadLibraryA', 'lstrlenA', 'lstrcpyA', 'lstrcmpW', 'WriteFile', 'WriteConsoleInputW', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjects', 'UnhandledExceptionFilter', 'TerminateProcess', 'TerminateJobObject', 'Sleep', 'SetUnhandledExceptionFilter', 'SetThreadPriority', 'SetThreadLocale', 'SetThreadExecutionState', 'SetPriorityClass', 'SetLastError', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ReleaseMutex', 'ReadConsoleOutputCharacterA', 'RaiseException', 'QueryPerformanceCounter', 'OutputDebugStringW', 'OutputDebugStringA', 'OpenEventW', 'MultiByteToWideChar', 'MoveFileExW', 'LocalFree', 'LocalAlloc', 'LoadLibraryW', 'LeaveCriticalSection', 'IsDebuggerPresent', 'InterlockedIncrement', 'InterlockedCompareExchange', 'InitializeCriticalSection', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'GetWindowsDirectoryW', 'GetWindowsDirectoryA', 'GetVersionExW', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'GetStartupInfoA', 'GetProcessPriorityBoost', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetLastError', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleAliasExesLengthA', 'GetComputerNameW', 'FreeLibrary', 'FormatMessageW', 'FormatMessageA', 'ExitProcess', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateProcessW', 'CreateMutexA', 'CreateJobObjectA', 'CreateFileA', 'CloseHandle', 'CreateEventW', 'CreateEventA', 'InterlockedExchange', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SendMessageW', 'SendIMEMessageExW', 'RegisterDeviceNotificationW', 'RegisterClassW', 'PostMessageW', 'PeekMessageW', 'OpenWindowStationW', 'MessageBoxW', 'MessageBoxA', 'MessageBeep', 'MapDialogRect', 'LoadMenuA', 'LoadCursorW', 'KillTimer', 'IMPGetIMEW', 'GetWindowTextW', 'GetWindowRect', 'SetTimer', 'GetMenuItemID', 'GetKeyboardLayout', 'GetForegroundWindow', 'GetDlgItemTextW', 'GetDlgItem', 'GetDesktopWindow', 'EnumDesktopWindows', 'EndDialog', 'EnableMenuItem', 'DrawStateA', 'DispatchMessageW', 'DispatchMessageA', 'DialogBoxParamW', 'DestroyWindow', 'DestroyAcceleratorTable', 'DefWindowProcW', 'DdeQueryStringW', 'DdeGetLastError', 'CreateWindowExW', 'CreateDialogIndirectParamA', 'CreateAcceleratorTableW', 'SetWindowLongW', 'SetWindowTextW', 'ShowWindowAsync', 'TranslateMessage', 'UnregisterClassW', 'UnregisterDeviceNotification', 'wvsprintfW', 'IsWindowEnabled', 'LoadIconA', 'GetClipboardData', 'GetDlgCtrlID', 'GetOpenClipboardWindow', 'IsMenu', 'CreatePopupMenu', 'GetMenuItemCount', 'GetKBCodePage', 'GetMenuContextHelpId', 'GetFocus', 'GetInputState', 'GetShellWindow', 'GetAsyncKeyState', 'GetCapture', 'GetClipboardSequenceNumber', 'OemKeyScan', 'GetActiveWindow', 'CharUpperA', 'GetWindowDC', 'IsWindowUnicode', 'GetKeyboardType', 'EnumClipboardFormats', 'CopyIcon', 'GetMenuCheckMarkDimensions', 'EndMenu', 'GetListBoxInfo', 'ReleaseCapture', 'GetMessageExtraInfo', 'GetWindowLongW', 'CharToOemW', 'CharLowerW', 'BroadcastSystemMessageA', 'GetWindowContextHelpId', 'SelectObject', 'SetBrushOrgEx', 'SetDCBrushColor', 'SetICMMode', 'SetPixelV', 'CancelDC', 'PathToRegion', 'CloseFigure', 'GetBkColor', 'AbortDoc', 'FlattenPath', 'GetObjectType', 'PlayMetaFileRecord', 'RealizePalette', 'WidenPath', 'SaveDC', 'BeginPath', 'SetMetaRgn', 'UnrealizeObject', 'AbortPath', 'EndPage', 'CreateMetaFileA', 'AddFontResourceA', 'SwapBuffers', 'OffsetWindowOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextCharset', 'GetMetaRgn', 'GetKerningPairsW', 'GetCurrentObject', 'GetCharWidth32A', 'GdiSwapBuffers', 'GdiStartPageEMF', 'GdiQueryTable', 'GdiGradientFill', 'GdiComment', 'GdiCleanCacheDC', 'FixBrushOrgEx', 'EngGradientFill', 'EngDeletePath', 'DescribePixelFormat', 'DeleteObject', 'DeleteDC', 'CreatePolygonRgn', 'CreateICA', 'CreateHatchBrush', 'CreateEllipticRgn', 'CreateDIBSection', 'CreateDCW', 'ChoosePixelFormat', 'AngleArc', 'BRUSHOBJ_pvAllocRbrush', 'GetTextColor', 'RegEnumValueW', 'RegOpenKeyW', 'StartServiceCtrlDispatcherW', 'SetServiceStatus', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorDacl', 'SetEntriesInAclW', 'ReportEventW', 'RegisterServiceCtrlHandlerExW', 'RegisterEventSourceW', 'RegSetValueExW', 'RegQueryValueExW', 'RegOpenKeyExW', 'AllocateAndInitializeSid', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyW', 'RegCloseKey', 'OpenServiceW', 'OpenSCManagerW', 'InitializeSecurityDescriptor', 'GetUserNameW', 'FreeSid', 'DeregisterEventSource', 'DeleteService', 'CreateServiceW', 'CloseServiceHandle', 'Shell_NotifyIconW', 'ShellExecuteExA', 'SHPathPrepareForWriteW', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHInvokePrinterCommandW', 'SHGetSpecialFolderPathA', 'SHGetSpecialFolderLocation', 'SHGetSettings', 'SHGetPathFromIDListW', 'SHGetMalloc', 'CommandLineToArgvW', 'DoEnvironmentSubstA', 'DoEnvironmentSubstW', 'DragQueryFileA', 'DragQueryFileAorW', 'DragQueryFileW', 'ExtractAssociatedIconW', 'ExtractIconA', 'ExtractIconEx', 'SHAddToRecentDocs', 'SHBindToParent', 'SHBrowseForFolderW', 'SHCreateProcessAsUserW', 'SHEmptyRecycleBinW', 'SHGetFolderPathA', 'SHGetFolderPathW', 'ShellExecuteExW', 'StrChrW', 'StrCmpNIA', 'StrCmpNIW', 'StrCmpNW', 'StrRChrA', 'StrRChrIA', 'StrRStrIW', 'StrStrIA', 'StrChrA', 'InitCommonControlsEx', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_abnormal_termination', '_acmdln', '_adjust_fdiv', '_c_exit', '_cexit', '_controlfp', '_except_handler3', '_exit', '_initterm', '_iob', '_mbscmp', '_mbscpy', '_mbsicmp', '_mbsinc', '_mbslwr', '_mbsnbcmp', '_mbsnbicmp', '_snwprintf', '_vsnwprintf', '_wcsicmp', '_wcsnicmp', 'exit', 'fwprintf', 'iswctype', 'memmove', 'setlocale', 'wcschr', 'wcscmp', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsrchr', '_XcptFilter', '__getmainargs', 'ImmDisableIME'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegFlushKey', 'ImageList_Add', 'SaveDC', 'AlphaBlend', 'OleDraw', 'VariantCopy', 'Shell_NotifyIconW', 'GetDC', 'VerQueryValueW', 'timeGetTime'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpyA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysFreeString', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'WriteFile', 'VirtualQuery', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetVersionExA', 'GetThreadLocale', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentThreadId', 'GetCPInfo', 'FormatMessageA', 'EnumCalendarInfoA', 'CreateFileA', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpyA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetThreadLocale', 'GetSystemInfo', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EnumFontsA', 'EnumFontFamiliesExA', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowRgn', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClassA', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapVirtualKeyA', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollPos', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharLowerBuffA', 'CharLowerA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA'], ['GetModuleHandleA', 'GetProcAddress', 'SysFreeString', 'RegCloseKey', 'CharNextW', 'Pie', 'VerQueryValueW', 'NetWkstaGetInfo', 'IsEqualGUID', 'ImageList_Add', 'memset', 'ShellExecuteW', 'ChooseColorW', 'OpenPrinterW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'CreateWindowExA', 'SafeArrayPtrOfIndex', 'ImageList_SetIconSize', 'ShellExecuteA', 'GetOpenFileNameA', 'PlaySoundA'], ['WriteFile', 'CloseHandle', 'lstrcmpA', 'lstrcmpW', 'LoadLibraryA', 'GetModuleFileNameW', 'GetCommandLineW', 'Sleep', 'SetPriorityClass', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'GlobalAlloc', 'GlobalFree', 'lstrlenW', 'GetCurrentThreadId', 'CreateThread', 'ExitProcess', 'GetCurrentProcess', 'OpenProcess', 'LocalFree', 'LocalAlloc', 'CreateFileA', 'GetProcAddress', 'GetWindowRect', 'MessageBoxW', 'SetCursorPos', 'GetCursorPos', 'GetDesktopWindow', 'EnumChildWindows', 'CallNextHookEx', 'LoadIconW', 'ReleaseDC', 'UnhookWindowsHookEx', 'MessageBoxA', 'GetSystemMetrics', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcW', 'ExitWindowsEx', 'DispatchMessageW', 'TranslateMessage', 'GetWindowDC', 'DrawIcon', 'SendInput', 'SendMessageTimeoutW', 'GetMessageW', 'SetWindowsHookExW', 'BitBlt', 'StretchBlt', 'OpenProcessToken', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'CryptAcquireContextW', 'CryptGenRandom', 'CommandLineToArgvW', 'ShellExecuteW', 'ShellExecuteA', 'ShellExecuteExW', 'PlaySoundA', 'GetProcessImageFileNameA'], ['InitializeSListHead', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsBadHugeReadPtr', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'LCMapStringA', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LocalReAlloc', 'LockResource', 'MoveFileExA', 'MulDiv', 'MultiByteToWideChar', 'OpenFileMappingW', 'OutputDebugStringA', 'OutputDebugStringW', 'QueryDosDeviceW', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleInputW', 'ReadConsoleW', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'RtlMoveMemory', 'RtlUnwind', 'SetCalendarInfoA', 'SetComputerNameA', 'SetEvent', 'SetHandleCount', 'SetLastError', 'SetThreadExecutionState', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcmpA', 'lstrcmpW', 'lstrcmpiW', 'lstrlenA', 'InitializeCriticalSection', 'HeapReAlloc', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatusEx', 'GlobalLock', 'GlobalHandle', 'GlobalGetAtomNameA', 'GlobalFree', 'GlobalFlags', 'GlobalFix', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryW', 'GetVolumePathNamesForVolumeNameW', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetTempFileNameA', 'GetTapePosition', 'GetSystemTimes', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPrivateProfileIntW', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLongPathNameW', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameW', 'GetFileType', 'GetFileSizeEx', 'GetFileSize', 'GetFileAttributesExW', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetDiskFreeSpaceExW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleAliasExesLengthA', 'GetCommandLineW', 'GetCommandLineA', 'GetBinaryTypeA', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageA', 'FlushFileBuffers', 'FindVolumeClose', 'FindResourceA', 'FindNextVolumeW', 'FindFirstVolumeW', 'FindFirstVolumeMountPointW', 'FindFirstFileA', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'ExitProcess', 'EnumResourceLanguagesA', 'EnumDateFormatsW', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'DeleteAtom', 'CreateThread', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CopyFileA', 'ConvertDefaultLocale', 'CompareStringW', 'CompareStringA', 'CommConfigDialogW', 'CloseHandle', 'Beep', 'GetModuleHandleA', 'RtlFillMemory', 'VirtualAlloc', 'MessageBoxW', 'ModifyMenuA', 'OpenClipboard', 'PeekMessageA', 'PostMessageA', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'PostThreadMessageW', 'PtInRect', 'RedrawWindow', 'RegisterClassA', 'RegisterClassExW', 'RegisterClipboardFormatA', 'RegisterClipboardFormatW', 'RegisterWindowMessageA', 'RegisterWindowMessageW', 'ReleaseDC', 'RemovePropA', 'RemovePropW', 'SendDlgItemMessageA', 'SendMessageA', 'SendMessageCallbackA', 'SendMessageTimeoutW', 'SendMessageW', 'SetActiveWindow', 'SetCursor', 'SetFocus', 'SetForegroundWindow', 'SetMenuInfo', 'SetMenuItemBitmaps', 'SetPropA', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetTimer', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPos', 'SetWindowRgn', 'SetWindowTextA', 'SetWindowsHookExA', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutA', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnregisterClassA', 'UnregisterDeviceNotification', 'UpdateLayeredWindow', 'UpdateWindow', 'ValidateRect', 'WINNLSGetEnableStatus', 'WaitMessage', 'WinHelpA', 'keybd_event', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadCursorW', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsWindowEnabled', 'IsWindow', 'IsDialogMessageA', 'IsCharAlphaNumericW', 'InvalidateRect', 'InflateRect', 'GrayStringA', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowModuleFileNameW', 'GetWindowModuleFileName', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetWindow', 'GetUserObjectSecurity', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetScrollBarInfo', 'GetPropA', 'GetParent', 'GetNextDlgTabItem', 'GetMonitorInfoA', 'GetMessageW', 'GetMessageTime', 'GetMessagePos', 'GetMessageA', 'GetMenuState', 'GetMenuItemID', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetInputState', 'GetIconInfo', 'GetFocus', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetCursorPos', 'GetComboBoxInfo', 'GetClientRect', 'GetClassNameW', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoExW', 'GetClassInfoExA', 'GetClassInfoA', 'GetCapture', 'FrameRect', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumDesktopWindows', 'EndPaint', 'EndDialog', 'EnableWindow', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExA', 'DrawTextA', 'DrawMenuBar', 'DrawFrameControl', 'DlgDirListComboBoxA', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DeregisterShellHookWindow', 'DefWindowProcA', 'DdeCmpStringHandles', 'CreateWindowExA', 'CreateDialogIndirectParamA', 'CopyRect', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextA', 'ChangeMenuA', 'CallWindowProcW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'AppendMenuW', 'AllowSetForegroundWindow', 'AdjustWindowRectEx', 'CloseDesktop', 'GetCursor', 'GetWindowTextLengthW', 'PaintDesktop', 'GetDesktopWindow', 'CreatePopupMenu', 'GetKeyboardType', 'DestroyCursor', 'EndMenu', 'AnyPopup', 'OemKeyScan', 'GetTopWindow', 'IsCharUpperA', 'GetKBCodePage', 'GetSysColor', 'GetOpenClipboardWindow', 'GetForegroundWindow', 'GetDoubleClickTime', 'GetActiveWindow', 'CreateMenu', 'LoadIconA', 'IsWindowVisible', 'CopyIcon', 'GetDC', 'CharLowerW', 'IsCharLowerA', 'ShowCaret', 'IsIconic', 'GetMenuCheckMarkDimensions', 'OpenIcon', 'GetKeyboardLayout', 'GetWindowTextLengthA', 'ReleaseCapture', 'GetDlgCtrlID', 'CharNextW', 'GetDialogBaseUnits', 'CharUpperW', 'CharUpperA', 'LoadCursorFromFileA', 'GetAsyncKeyState', 'GetMenuItemCount', 'PolyTextOutA', 'PtVisible', 'RectVisible', 'RemoveFontResourceExA', 'RestoreDC', 'STROBJ_bEnum', 'SaveDC', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'SelectObject', 'SetBkColor', 'PlayMetaFile', 'SetEnhMetaFileBits', 'SetICMMode', 'SetMapMode', 'SetPaletteEntries', 'SetRectRgn', 'SetTextColor', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'TextOutA', 'XLATEOBJ_piVector', 'OffsetViewportOrgEx', 'GetTextFaceA', 'GetOutlineTextMetricsA', 'GetObjectA', 'GetGraphicsMode', 'GetGlyphOutlineWow', 'GetFontData', 'GetEnhMetaFilePaletteEntries', 'GetDeviceCaps', 'GetClipBox', 'GdiValidateHandle', 'GdiResetDCEMF', 'GdiProcessSetup', 'GdiInitializeLanguagePack', 'GdiGetLocalDC', 'SetDIBits', 'EndDoc', 'GdiEntry10', 'FrameRgn', 'ExtTextOutA', 'Escape', 'EqualRgn', 'EngStretchBltROP', 'EngCreateClip', 'EngCreateBitmap', 'DeleteObject', 'DeleteDC', 'CreatePalette', 'CreateICA', 'CreateFontIndirectA', 'CreateDIBSection', 'CreateBitmap', 'CopyMetaFileA', 'CLIPOBJ_ppoGetPath', 'AddFontMemResourceEx', 'RealizePalette', 'StrokePath', 'DeleteMetaFile', 'GetLayout', 'GetStretchBltMode', 'GetPixelFormat', 'AddFontResourceW', 'GetFontLanguageInfo', 'GetStockObject', 'UnrealizeObject', 'CloseEnhMetaFile', 'GetMapMode', 'AbortPath', 'SwapBuffers', 'GetEnhMetaFileW', 'DeleteColorSpace', 'SetMetaRgn', 'DeleteEnhMetaFile', 'GetSystemPaletteUse', 'GetTextAlign', 'CreateMetaFileA', 'AbortDoc', 'CancelDC', 'GdiFlush', 'RegQueryValueExA', 'RegQueryValueA', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'CryptReleaseContext', 'CryptGenRandom', 'CryptAcquireContextW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegSetValueExA', 'ShellExecuteW', 'ShellExecuteEx', 'ShellAboutW', 'SHQueryRecycleBinW', 'SHPathPrepareForWriteA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHGetPathFromIDListA', 'SHGetPathFromIDList', 'SHGetFolderPathW', 'SHGetFolderPathA', 'SHGetFolderLocation', 'SHGetFileInfoW', 'SHGetFileInfo', 'SHGetDiskFreeSpaceExW', 'SHGetDiskFreeSpaceA', 'SHGetDesktopFolder', 'SHGetDataFromIDListA', 'SHFileOperationW', 'SHFileOperationA', 'SHEmptyRecycleBinA', 'SHCreateDirectoryExA', 'ExtractIconExW', 'ExtractIconA', 'DuplicateIcon', 'DragQueryFileW', 'DragQueryFile', 'DragFinish', 'DragAcceptFiles', 'DoEnvironmentSubstW', 'CommandLineToArgvW', 'OleFlushClipboard', 'OleInitialize', 'OleIsCurrentClipboard', 'OleUninitialize', 'CoSuspendClassObjects', 'CoRevokeClassObject', 'CoResumeClassObjects', 'CoRegisterMessageFilter', 'CoInitializeSecurity', 'CoInitializeEx', 'CoInitialize', 'CoFreeUnusedLibraries', 'CoCreateInstance', 'CoUninitialize', 'PathFindExtensionA', 'PathFindFileNameA', 'PathFindFileNameW', 'PathIsUNCA', 'PathStripToRootA', 'StrChrW', 'StrCmpNA', 'StrCmpNIA', 'StrCmpNIW'], ['GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'CreateSemaphoreW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindResourceExW', 'LocalFree', 'CreateDirectoryW', 'DeleteFileW', 'GetCurrentThread', 'WaitForMultipleObjects', 'LoadLibraryW', 'WaitForSingleObject', 'GetExitCodeProcess', 'DuplicateHandle', 'ReleaseMutex', 'GetEnvironmentVariableW', 'lstrcmpiW', 'VirtualQuery', 'GetTempPathW', 'GetLocalTime', 'OutputDebugStringA', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'lstrcmpW', 'lstrlenW', 'SetFilePointer', 'CreateMutexW', 'InitializeCriticalSection', 'TryEnterCriticalSection', 'SetEvent', 'ResetEvent', 'GetFileAttributesExW', 'SetLastError', 'VerifyVersionInfoW', 'VerSetConditionMask', 'MoveFileExW', 'GetFileTime', 'ReadFile', 'DeviceIoControl', 'SetProcessWorkingSetSize', 'OpenProcess', 'CreateProcessW', 'ReadProcessMemory', 'lstrcpynW', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'CreateThread', 'DebugActiveProcess', 'GetThreadContext', 'DebugActiveProcessStop', 'VirtualQueryEx', 'GetProcessId', 'GetSystemInfo', 'ContinueDebugEvent', 'WaitForDebugEvent', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetModuleHandleExW', 'ExitProcess', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'EncodePointer', 'LeaveCriticalSection', 'WaitNamedPipeW', 'TransactNamedPipe', 'SetNamedPipeHandleState', 'RtlCaptureContext', 'ReleaseSemaphore', 'EnterCriticalSection', 'OutputDebugStringW', 'DeleteCriticalSection', 'DecodePointer', 'HeapSize', 'GetProcAddress', 'GetLastError', 'RaiseException', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'GetModuleHandleW', 'HeapFree', 'IsDebuggerPresent', 'GetUserDefaultLangID', 'GetSystemDefaultLangID', 'GetComputerNameExW', 'GetOverlappedResult', 'ConnectNamedPipe', 'CreateNamedPipeW', 'DisconnectNamedPipe', 'UnregisterWait', 'GetProcessTimes', 'UnregisterWaitEx', 'RegisterWaitForSingleObject', 'VirtualProtect', 'VirtualAlloc', 'HeapAlloc', 'RemoveDirectoryW', 'HeapReAlloc', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'GetProcessWindowStation', 'CloseDesktop', 'CloseClipboard', 'CharUpperW', 'CharLowerW', 'PostThreadMessageW', 'DispatchMessageW', 'GetMessageW', 'PeekMessageW', 'EnumWindows', 'IsWindowVisible', 'GetWindowThreadProcessId', 'SetThreadDesktop', 'CreateWindowStationW', 'CloseWindowStation', 'GetThreadDesktop', 'SetProcessWindowStation', 'CreateDesktopW', 'wvsprintfW', 'wsprintfW', 'MessageBoxW', 'GetSecurityDescriptorSacl', 'GetSecurityDescriptorDacl', 'GetSecurityDescriptorGroup', 'GetSecurityDescriptorOwner', 'GetSecurityDescriptorControl', 'GetLengthSid', 'CopySid', 'IsValidSid', 'GetSidSubAuthority', 'InitializeSid', 'GetSidLengthRequired', 'SetSecurityDescriptorDacl', 'AddAce', 'InitializeAcl', 'GetAclInformation', 'InitializeSecurityDescriptor', 'MakeAbsoluteSD', 'OpenProcessToken', 'GetTokenInformation', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'GetAce', 'MakeSelfRelativeSD', 'GetSecurityDescriptorLength', 'EqualSid', 'SetNamedSecurityInfoW', 'ConvertStringSidToSidW', 'OpenThreadToken', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegQueryInfoKeyW', 'ConvertSidToStringSidW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'SetSecurityDescriptorSacl', 'GetTraceLoggerHandle', 'GetTraceEnableFlags', 'GetTraceEnableLevel', 'RegisterTraceGuidsW', 'UnregisterTraceGuids', 'TraceEvent', 'SetTokenInformation', 'CoCreateGuid', 'StringFromGUID2', 'SHGetFolderPathW', 'NetApiBufferFree', 'NetWkstaGetInfo', 'UuidCreate', 'PathRemoveExtensionW', 'PathRemoveFileSpecW', 'PathStripPathW', 'PathCanonicalizeW', 'PathIsRelativeW', 'SHQueryValueExW', 'PathAppendW', 'UnloadUserProfile', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW'], ['AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'sprintf', 'CreateProcessA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GetVersion', 'GetTempPathA', 'GetTickCount', 'ExitProcess', 'GetModuleFileNameA', 'CopyFileA', 'Sleep', 'CloseHandle', 'GetModuleHandleA', 'GetCurrentProcess', 'CreateFileA', 'ReadFile', 'SetFilePointer', 'WriteFile', 'GetFileSize', 'GlobalAlloc', 'DeleteFileA', 'ExitWindowsEx', 'ShellExecuteA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcessImageFileNameA', 'GetUserNameA', 'GetFileVersionInfoSizeW', 'WSACleanup', 'ClosePrinter', 'FlatSB_GetScrollInfo', 'AbortDoc', 'AlphaBlend', 'ExtractIconA', 'SHGetFolderPathA', 'ActivateKeyboardLayout', 'sndPlaySoundA', 'CLSIDFromString', 'GetActiveObject', 'GdipAddPathArc', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'CreateWindowExA', 'SafeArrayPtrOfIndex', 'StgIsStorageFile', 'GetErrorInfo', 'ImageList_SetIconSize', 'ShellExecuteA', 'SHGetSpecialFolderLocation', 'GetUpdateRect', 'PlaySoundA', 'WSACleanup'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'InternetOpenA', 'GetProcessImageFileNameW', 'GdipGetImagePaletteSize', 'GradientFill', '_TrackMouseEvent', 'PathIsUNCW', 'GetFileVersionInfoSizeW', 'RemovePropW', 'Escape', 'OpenPrinterW', 'GetFileTitleW', 'RegQueryValueW', 'ShellExecuteExW', 'CoTaskMemAlloc', 'SafeArrayGetLBound', 'CreateStdAccessibleObject', 'OleUIBusyW', 'VariantChangeTypeEx', 'RaiseException'], ['CreateToolhelp32Snapshot', 'EndUpdateResourceA', 'UpdateResourceA', 'BeginUpdateResourceA', 'WriteFile', 'CreateFileA', 'GetSystemDirectoryA', 'GetProcAddress', 'Process32First', 'lstrlenA', 'TerminateProcess', 'GetCurrentProcess', 'Sleep', 'GetTickCount', 'ExitProcess', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersionExA', 'HeapFree', 'HeapAlloc', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'Process32Next', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'SetLastError', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'LoadLibraryA', 'RtlUnwind', 'InterlockedExchange', 'VirtualQuery', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'InitializeCriticalSection', 'HeapSize', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'VirtualProtect', 'GetSystemInfo', 'CloseHandle', 'GetModuleHandleA', 'FindResourceA', 'LoadResource', 'SizeofResource', 'GetEnvironmentStringsW', 'LockResource', 'GetModuleFileNameExA', 'CloseServiceHandle', 'QueryServiceStatusEx', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'ChangeServiceConfigA', 'ControlService', 'OpenServiceA', 'OpenSCManagerA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegFlushKey', 'ImageList_Add', 'SaveDC', 'CoInitialize', 'VariantCopy', 'ShellExecuteA', 'GetDC', 'VerQueryValueA'], ['GetModuleHandleA', '__C_specific_handler'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'SysFreeString', 'RegQueryValueExA', 'GetKeyboardType', 'CreateWindowExA', 'UnrealizeObject', 'VerQueryValueA', 'WNetGetConnectionA', 'ReportEventA', 'GetErrorInfo', 'CoTaskMemFree', 'SafeArrayPtrOfIndex', '_TrackMouseEvent', 'Shell_NotifyIconA', 'OpenPrinterA', 'StartServiceCtrlDispatcherA', 'WSAStartup', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcessHeap', 'GetFileSize', 'CloseHandle', 'ExitProcess', 'DeleteFileA', 'GetModuleFileNameA', 'ReadFile', 'LoadResource', 'FindClose', 'HeapAlloc', 'CompareFileTime', 'SetFileAttributesA', 'SizeofResource', 'SetFileTime', 'CreateFileA', 'FindNextFileA', 'LockResource', 'FindFirstFileA', 'CreateThread', 'HeapReAlloc', 'HeapFree', 'FindResourceA', 'WriteFile', 'CreateWindowExA', 'UpdateWindow', 'SendMessageA', 'TranslateMessage', 'ShowWindow', 'SetWindowTextA', 'RegisterClassExA', 'PostQuitMessage', 'PostMessageA', 'LoadIconA', 'LoadCursorA', 'GetWindowTextA', 'GetMessageA', 'GetDlgItem', 'MessageBoxA', 'DispatchMessageA', 'DefWindowProcA', 'MakeSureDirectoryPathExists', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHChangeNotify', 'SHBrowseForFolderA', 'InitCommonControlsEx', 'GetStockObject'], ['WriteProcessMemory', 'VirtualProtect', 'GetCurrentProcess', 'VirtualAlloc', 'lstrlenA', 'CreateMutexA', 'GetModuleHandleA', 'OpenProcess', 'Sleep', 'OpenMutexA', 'CreateFileA', 'LoadLibraryA', 'CloseHandle', 'GetModuleFileNameA', 'FreeConsole', 'LoadLibraryW', 'HeapAlloc', 'K32EnumProcesses', 'GetProcAddress', 'ReadProcessMemory', 'GetProcessHeap', 'FreeLibrary', 'K32EnumProcessModules', 'GetSystemTime', 'GetTickCount', 'IsDebuggerPresent', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'K32GetModuleBaseNameA', 'ReadFile', 'QueryPerformanceCounter', 'GetModuleHandleW', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'LCMapStringEx', 'MultiByteToWideChar', 'DecodePointer', 'EncodePointer', 'DeleteCriticalSection', 'InitializeCriticalSectionEx', 'LeaveCriticalSection', 'EnterCriticalSection', 'WideCharToMultiByte', 'InitializeSListHead', 'GetUserNameA', '_chdir', 'localeconv', 'strlen', 'free', 'frexp', '_invalid_parameter_noinfo_noreturn', '_lock_locales', '_unlock_locales', '__acrt_iob_func', '_get_stream_buffer_pointers', 'fclose', 'fflush', 'fgetc', 'fgetpos', 'fputc', 'fread', 'fsetpos', '_fseeki64', 'fwrite', 'setvbuf', 'strcspn', '_lock_file', '_unlock_file', 'malloc', 'setlocale', 'rand_s', '__pctype_func', 'isupper', '___lc_locale_name_func', '___lc_codepage_func', '_wcsdup', '___mb_cur_max_func', 'islower', 'abort', '__strncnt', 'strcmp', '_callnewh', 'terminate', '_configure_narrow_argv', '_initialize_narrow_environment', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_cexit', '_seh_filter_exe', '_set_app_type', '__setusermatherr', '_get_initial_narrow_environment', '_initterm', '_initterm_e', '_exit', '_set_fmode', '__p___argc', '__p___argv', '_c_exit', '_register_thread_local_exe_atexit_callback', '_configthreadlocale', '_set_new_mode', '__p__commode', '_controlfp_s', 'fopen', 'abs', 'calloc', 'exit', 'fabs', '_except_handler4_common', '__current_exception_context', '__current_exception', '__uncaught_exceptions', '_CxxThrowException', 'strstr', '__std_terminate', 'memset', '_purecall', '__std_exception_copy', 'memcpy', 'memmove', '__std_exception_destroy', '__CxxFrameHandler3', '__stdio_common_vsprintf_s', 'ungetc'], ['GetModuleHandleA', 'PathFindFileNameA', 'malloc'], ['GetEnvironmentVariableW', 'LoadLibraryW', 'GetProcAddress', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'DecodePointer'], ['DecodePointer', 'CreateThread', 'SetEvent', 'WaitForSingleObject', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'Sleep', 'CreateTimerQueue', 'CreateEventW', 'CreateTimerQueueTimer', 'DeleteTimerQueueTimer', 'DeleteTimerQueue', 'GetCurrentProcessId', 'CreateToolhelp32Snapshot', 'Process32NextW', 'CopyFileW', 'SetConsoleCtrlHandler', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'CreateFileW', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'SetFileTime', 'CloseHandle', 'DeleteFileW', 'FindFirstFileW', 'GetModuleFileNameW', 'CreateProcessW', 'GetConsoleWindow', 'FindNextFileW', 'FindClose', 'OpenProcess', 'TerminateProcess', 'GetFileAttributesA', 'GetWindowsDirectoryW', 'FileTimeToSystemTime', 'GetFileInformationByHandle', 'GetFileSize', 'UnmapViewOfFile', 'GetLocalTime', 'GetTickCount', 'SetEndOfFile', 'LoadLibraryW', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'GetTimeZoneInformation', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'RaiseException', 'WideCharToMultiByte', 'InitializeSListHead', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetVersionExW', 'GetModuleHandleA', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileType', 'MoveFileExW', 'LoadLibraryExW', 'FreeLibrary', 'GetStdHandle', 'GetCurrentThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetConsoleMode', 'GetConsoleCP', 'SetEnvironmentVariableA', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'CreateSemaphoreW', 'GetStartupInfoW', 'SetLastError', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'UnregisterWait', 'RegisterWaitForSingleObject', 'GetCurrentThreadId', 'GetStringTypeW', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'GetCPInfo', 'GetCommandLineA', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'GetCurrentProcess', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetLogicalProcessorInformation', 'ChangeTimerQueueTimer', 'GetModuleHandleW', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'TranslateMessage', 'GetSystemMetrics', 'GetDC', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'wsprintfW', 'ReleaseDC', 'DispatchMessageW', 'GetDesktopWindow', 'GetMessageW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'DeleteObject', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoCreateGuid', 'StringFromGUID2', 'GdipDisposeImage', 'GdipSaveImageToFile', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipFree', 'GdiplusShutdown', 'recvfrom', 'inet_addr', 'htons', 'socket', 'WSAStartup', 'WSACleanup', 'closesocket', 'select', 'sendto', 'QueryWorkingSet'], ['FreeLibrary', 'CreateFileW', 'CloseHandle', 'ReadFile', 'WriteFile', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetProcAddress', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GetModuleHandleW', 'GetCommandLineW', 'HeapReAlloc', 'LoadLibraryA', 'VirtualAlloc', 'VirtualFree', 'GetCurrentProcess', 'VirtualProtect', 'HeapSize', 'GetConsoleCP', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlPcToFileHeader', 'EncodePointer', 'RaiseException', 'RtlUnwindEx', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'SetFilePointerEx', 'GetFileType', 'GetConsoleMode', 'ReadConsoleW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'WriteConsoleW', 'LookupPrivilegeNameW', 'OpenProcessToken', 'GetTokenInformation', 'AdjustTokenPrivileges', 'CommandLineToArgvW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'MessageBoxW', 'GetWindowThreadProcessId', 'FindWindowW', 'FindWindowA', 'CharLowerW', 'lstrcpyW', 'lstrcpyA', 'lstrcmpiW', 'lstrcmpW', 'lstrcatW', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualFreeEx', 'VirtualAllocEx', 'Sleep', 'SizeofResource', 'SetFileTime', 'SetFileAttributesW', 'OpenProcess', 'OpenMutexA', 'LockResource', 'LoadResource', 'LoadLibraryW', 'HeapFree', 'HeapAlloc', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetSystemDirectoryW', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLastError', 'GetFileTime', 'GetFileAttributesW', 'GetCurrentProcess', 'FreeResource', 'FreeLibrary', 'FindResourceW', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'DeleteFileW', 'CreateRemoteThread', 'CreateProcessW', 'CreateFileW', 'CreateDirectoryW', 'CopyFileW', 'CloseHandle', 'RegSetValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'SHGetFolderLocation', 'SHGetPathFromIDListW', 'GetLongPathNameW', 'GetStartupInfoW', 'FindExecutableW', '_snwprintf'], ['LoadLibraryA', 'WriteConsoleW', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'HeapFree', 'WideCharToMultiByte', 'MultiByteToWideChar', 'HeapAlloc', 'GetFileType', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'SetFilePointerEx', 'HeapSize', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'DecodePointer', 'CreateFileW', 'VirtualQuery'], ['GetCurrentProcessId', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'ExitProcess', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'RegDeleteKeyExW', 'recv', 'WSAStartup', 'socket', 'send', 'gethostbyname', 'WSACleanup', 'htons', 'closesocket', 'gethostbyaddr', 'connect', 'inet_addr', '?_Xlength_error@std@@YAXPBD@Z', 'memcpy', '__CxxFrameHandler3', 'strstr', '__std_exception_copy', '__std_exception_destroy', '_CxxThrowException', 'memset', '_except_handler4_common', 'memmove', '_set_fmode', '__p__commode', '__stdio_common_vsprintf', '_initialize_wide_environment', '_exit', '_configure_wide_argv', '_crt_atexit', '_controlfp_s', 'terminate', '_cexit', '_set_app_type', '_register_thread_local_exe_atexit_callback', '_seh_filter_exe', '_register_onexit_function', '_c_exit', 'exit', '_initterm_e', '_initterm', '_initialize_onexit_table', '_invalid_parameter_noinfo_noreturn', '_get_wide_winmain_command_line', 'malloc', 'realloc', '_callnewh', 'free', '_set_new_mode', 'strncpy', '__setusermatherr', '_configthreadlocale'], ['CreateFileA', 'WriteFile', 'CreateProcessA', 'GetStartupInfoA', 'GetLastError', 'CreateMutexA', 'ReleaseMutex', 'CloseHandle', 'lstrcpyA', 'GetTickCount', 'Sleep', 'FreeConsole', 'LocalAlloc', 'GetTempPathA', 'GetModuleHandleA', 'InternetConnectA', 'InternetReadFile', 'InternetSetOptionA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'HttpQueryInfoA', 'sprintf', 'atoi', 'rand', 'srand', '_stricmp', '_c_exit', '_exit', '_XcptFilter', '_cexit', 'exit', '__initenv', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp', '_except_handler3', '??2@YAPAXI@Z', 'memcpy', 'memset'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'IsEqualGUID', 'CoTaskMemFree', 'StringFromCLSID', 'CoCreateGuid', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ShellExecuteExW', 'mciSendCommandA', 'mciGetErrorStringA'], ['LoadPerfCounterTextStringsA', 'LoadPerfCounterTextStringsW', 'UnloadPerfCounterTextStringsA', 'UnloadPerfCounterTextStringsW', 'CreateBindCtx', 'HENHMETAFILE_UserUnmarshal', 'OleQueryCreateFromData', 'StgIsStorageFile', 'StringFromIID', 'UtGetDvtd32Info', 'WSAGetServiceClassInfoA', 'WSAGetServiceClassNameByClassIdW', 'WSAStringToAddressA', 'getsockopt', 'CoInternetCombineUrl', 'URLOpenPullStreamA', 'MultinetGetConnectionPerformanceW', 'WNetGetProviderNameA', 'WNetGetUserW', 'CharNextA', 'DdeEnableCallback', 'EnumDisplayMonitors', 'GetMenuContextHelpId', 'GetTitleBarInfo', 'LoadMenuA', 'SetClassLongW', 'SetUserObjectInformationA', 'TranslateMessage', 'MgmDeInitialize', 'MgmRegisterMProtocol', 'MgmTakeInterfaceOwnership', 'RtmBlockSetRouteEnable', 'RtmCreateEnumerationHandle', 'RtmGetRouteAge', 'RtmIsRoute', 'RtmRegisterClient', 'GetAddressByNameW', 'rexec', 'CreateFileW', 'GetCommandLineW', 'GetFileSize', 'ReadFile', 'VirtualAlloc', 'CommandLineToArgvW'], ['ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'CreateDirectoryExW', 'GlobalAlloc', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetCPInfoExW', 'SetFilePointer', 'BindIoCompletionCallback', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'MoveFileW', 'LoadLibraryA', 'CreateEventW', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'GetConsoleTitleW', 'SetCalendarInfoA', 'SetLastError', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'RtlUnwind', 'SetStdHandle', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ClientToScreen'], ['GetModuleHandleA', 'CreateWindowExA', 'RegisterEventSourceW', '_CorExeMain', 'SHChangeNotifyRegister', 'DrawStatusTextW'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'lstrcpyA', 'lstrcmpA', 'WritePrivateProfileStringA', 'WaitForSingleObject', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'MoveFileExA', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetPrivateProfileStringA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsA', 'EnumCalendarInfoA', 'DeleteFileA', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'LoadIconW', 'GetStockObject', 'GetUserNameW', 'RegOpenKeyA', 'RegQueryValueExA'], ['OpenProcessToken', 'GetTokenInformation', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'EnumDisplayDevicesA', 'SetEndOfFile', 'WriteConsoleW', 'CloseHandle', 'SetLastError', 'WaitForSingleObject', 'GetCurrentProcess', 'ResumeThread', 'CreateProcessA', 'SetPriorityClass', 'GetThreadContext', 'SetThreadContext', 'VirtualAlloc', 'VirtualAllocEx', 'WriteProcessMemory', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'WinExec', 'lstrlenA', 'FreeConsole', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'HeapSize', 'RtlPcToFileHeader', 'RaiseException', 'RtlUnwindEx', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'CreateFileW', 'RtlUnwind', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtFloodFill', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SuspendThread', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalMemoryStatus', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CloseEventLog', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'LresultFromObject', 'sndPlaySoundA'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameA', 'CreateStatusWindowA', 'rand', 'memset', 'exit', 'accept', '_configthreadlocale', '__setusermatherr', 'free', 'ShellAboutA', '??1_Lockit@std@@QAE@XZ', '_time64', 'fputc', '_lock_file'], ['GetVersionExA', 'GetTempPathA', 'GetModuleFileNameA', 'GetDiskFreeSpaceA', 'lstrlenA', 'GetDriveTypeA', 'GetCurrentProcess', 'WinExec', 'GlobalUnlock', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'CloseHandle', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'SetCurrentDirectoryA', 'MoveFileExA', 'FormatMessageA', 'lstrcatA', 'CopyFileA', 'SetFileTime', 'GetShortPathNameA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetSystemTime', 'GetTickCount', 'GetExitCodeProcess', 'CreateProcessA', 'GetFullPathNameA', 'MultiByteToWideChar', 'GlobalHandle', 'FindClose', 'FindFirstFileA', 'UnhandledExceptionFilter', 'GetACP', 'GetCPInfo', 'GetOEMCP', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'HeapReAlloc', 'VirtualAlloc', 'IsBadWritePtr', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetVersion', 'GetCommandLineA', 'GetEnvironmentVariableA', 'GetModuleHandleA', 'RaiseException', 'GetStartupInfoA', 'CreateDirectoryA', 'SetUnhandledExceptionFilter', 'RtlUnwind', 'HeapCompact', 'MoveFileA', 'TerminateProcess', 'ExitProcess', 'GetLastError', 'DeleteFileA', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'SetFileAttributesA', 'HeapAlloc', 'HeapFree', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStringTypeA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'IsBadReadPtr', 'IsBadCodePtr', 'IsDlgButtonChecked', 'SetTimer', 'CloseClipboard', 'GetWindowRect', 'GetDlgItem', 'KillTimer', 'CheckRadioButton', 'MessageBoxA', 'CreateDialogIndirectParamA', 'IsDialogMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DestroyWindow', 'EnableWindow', 'SetFocus', 'GetClipboardData', 'ShowWindow', 'wsprintfA', 'OpenClipboard', 'IsClipboardFormatAvailable', 'GetDlgItemTextA', 'SendDlgItemMessageA', 'SetDlgItemTextA', 'PeekMessageA', 'SendMessageA', 'EndPaint', 'BeginPaint', 'GetQueueStatus', 'CheckDlgButton', 'SetWindowLongA', 'GetWindowLongA', 'RegisterWindowMessageA', 'SetWindowTextA', 'GetParent', 'GetDC', 'ReleaseDC', 'DrawTextA', 'FillRect', 'GetWindow', 'LoadCursorA', 'CreateWindowExA', 'LoadIconA', 'GetLastActivePopup', 'RegisterClassA', 'FindWindowA', 'AdjustWindowRectEx', 'BringWindowToTop', 'GetSystemMetrics', 'ExitWindowsEx', 'UpdateWindow', 'DialogBoxIndirectParamA', 'IsIconic', 'DefWindowProcA', 'PostQuitMessage', 'EndDialog', 'RedrawWindow', 'PostMessageA', 'ScreenToClient', 'GetClientRect', 'SetWindowPos', 'GetSysColor', 'OemToCharA', 'GetStockObject', 'DeleteObject', 'CreateFontIndirectA', 'GetObjectA', 'ExtTextOutA', 'SetBkColor', 'CreatePalette', 'GetSystemPaletteEntries', 'GetDeviceCaps', 'StretchDIBits', 'RealizePalette', 'SelectPalette', 'IntersectClipRect', 'CreateDIBPatternBrush', 'SetTextColor', 'SetBkMode', 'SelectObject', 'DeleteDC', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateSolidBrush', 'AddFontResourceA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegCreateKeyA', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegQueryValueA', 'SHGetPathFromIDListA', 'DragQueryFileA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'DragFinish', 'DragAcceptFiles', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'VerFindFileA'], ['BufferedPaintRenderAnimation', 'GetThemeBitmap', 'DrawThemeTextEx', 'GetThemeDocumentationProperty', 'GetThemeSysString', 'SetWindowTheme', 'DrawThemeText', 'RasEnumEntriesA', 'RasSetCustomAuthDataW', 'RasGetCustomAuthDataW', 'RasGetAutodialEnableA', 'RasSetAutodialAddressA', 'RasValidateEntryNameA', 'RasSetEntryPropertiesW', 'RasGetEntryDialParamsW', 'RasGetErrorStringA', 'ExitProcess', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetProcessHeap', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'lstrcpyA', 'lstrcmpA', 'WriteProcessMemory', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFreeEx', 'VirtualAllocEx', 'VirtualAlloc', 'TerminateProcess', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixelV', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapDimensionEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WindowFromDC', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowRgn', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MoveWindow', 'MessageBoxIndirectA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CopyRect', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['GetModuleHandleA', 'GetLocaleInfoA', 'OpenProcess', 'SetFileAttributesW', 'CreateToolhelp32Snapshot', 'Sleep', 'CopyFileA', 'GetLastError', 'Process32NextW', 'GetDiskFreeSpaceExW', 'GetCurrentThread', 'LoadLibraryA', 'lstrcatW', 'DeleteFileW', 'Process32FirstW', 'CloseHandle', 'GetSystemInfo', 'HeapAlloc', 'GetThreadContext', 'GetProcAddress', 'SetFilePointerEx', 'LocalFree', 'ReadProcessMemory', 'GetCurrentProcessId', 'GetProcessHeap', 'GlobalMemoryStatusEx', 'GetModuleHandleW', 'ReleaseMutex', 'GetConsoleWindow', 'lstrcpyW', 'CreateDirectoryA', 'GetSystemTime', 'OpenMutexW', 'GetTickCount', 'lstrcmpW', 'GetDriveTypeW', 'IsDebuggerPresent', 'GetComputerNameA', 'WriteConsoleW', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetVersionExW', 'GetFileAttributesW', 'CreateFileW', 'LocalAlloc', 'WaitForSingleObject', 'CreateMutexW', 'SetProcessShutdownParameters', 'GetModuleFileNameW', 'TerminateProcess', 'DeviceIoControl', 'WriteFile', 'lstrlenW', 'GetCurrentProcess', 'FindNextFileW', 'SetPriorityClass', 'HeapFree', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetFileSizeEx', 'FindFirstFileW', 'ReadFile', 'MultiByteToWideChar', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'CopyFileW', 'SetProcessPriorityBoost', 'FindFirstFileExW', 'FindClose', 'GetConsoleOutputCP', 'GetFileAttributesExW', 'CreateProcessW', 'GetExitCodeProcess', 'ReadConsoleInputW', 'SetConsoleMode', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'InitializeCriticalSectionEx', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetConsoleCP', 'MoveFileExW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleMode', 'ReadConsoleW', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'DecodePointer', 'OpenSCManagerW', 'CryptGenKey', 'QueryServiceStatusEx', 'OpenServiceW', 'CryptImportKey', 'CryptDestroyKey', 'CryptAcquireContextW', 'CloseServiceHandle', 'CryptEncrypt', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameA', 'ControlService', 'CryptExportKey', 'EnumDependentServicesW', 'CryptBinaryToStringA', 'CryptStringToBinaryA', 'GetIpNetTable', 'NetShareEnum', 'NetApiBufferFree', 'RmRegisterResources', 'RmEndSession', 'RmGetList', 'RmStartSession', 'ShellExecuteW', 'SHEmptyRecycleBinA', 'ShellExecuteA', 'SystemParametersInfoW', 'ExitWindowsEx', 'ShowWindow', 'MessageBoxW', 'CharUpperW', 'GetKeyboardLayoutList', 'gethostbyname', 'connect', 'socket', 'recv', 'WSAStartup', 'send', 'WSACleanup', 'htons', 'inet_ntoa', 'WSAGetLastError', 'closesocket'], ['GetModuleHandleA', 'BeginPaint', 'RegQueryValueW', 'InitMUILanguage', 'ShellAboutW', '_CorExeMain'], ['GetTextExtentPoint32A', 'GetICMProfileA', 'CreateFontIndirectA', 'CreateDIBSection', 'ExtTextOutW', 'GetGlyphOutlineW', 'BitBlt', 'TextOutA', 'GetGlyphOutlineA', 'DeleteObject', 'ExtTextOutA', 'CreateCompatibleDC', 'GetDeviceCaps', 'SelectObject', 'GetKerningPairsA', 'Rectangle', 'GetTextExtentPoint32W', 'GetStockObject', 'TextOutW', 'DeleteDC', 'SetBkMode', 'CreatePen', 'waveOutReset', 'waveInStop', 'PlaySoundA', 'SHGetPathFromIDListW', 'SHFileOperationW', 'Shell_NotifyIconW', 'DragQueryFileA', 'SHBrowseForFolderW', 'DragQueryFileW', 'ShellExecuteW', 'SHBrowseForFolderA', 'ShellExecuteExW', 'SHGetFileInfoW', 'SHGetPathFromIDListA', 'Shell_NotifyIconA', 'SHGetMalloc', 'SHGetSpecialFolderPathW', 'GetFileVersionInfoSizeW', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoW', 'RegCloseKey', 'DeregisterEventSource', 'RegisterEventSourceA', 'CryptAcquireContextA', 'RegSetValueExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegEnumKeyExW', 'CryptCreateHash', 'CheckTokenMembership', 'RegEnumValueW', 'CryptDeriveKey', 'ReportEventA', 'RegSetValueExW', 'RegCreateKeyExW', 'CryptReleaseContext', 'CryptDecrypt', 'RegEnumKeyExA', 'CryptEncrypt', 'PropertySheetA', 'PropertySheetW', 'InitCommonControlsEx', 'GetSaveFileNameA', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetOpenFileNameA', 'InternetOpenA', 'InternetReadFile', 'InternetWriteFile', 'InternetConnectA', 'InternetCloseHandle', 'HttpEndRequestA', 'HttpOpenRequestA', 'HttpAddRequestHeadersA', 'HttpQueryInfoA', 'InternetQueryOptionA', 'EnterCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'MoveFileA', 'WriteConsoleW', 'FindResourceA', 'GetTimeFormatA', 'LeaveCriticalSection', 'TzSpecificLocalTimeToSystemTime', 'ExitProcess', 'SetEvent', 'FreeLibrary', 'GetSystemInfo', 'GetLongPathNameA', 'CreateDirectoryA', 'MapViewOfFile', 'HeapSize', 'LockResource', 'RaiseException', 'GetFileAttributesW', 'InterlockedExchange', 'CreateToolhelp32Snapshot', 'GetSystemDirectoryA', 'CopyFileExW', 'GetFileAttributesA', 'GetConsoleMode', 'RemoveDirectoryW', 'FindFirstChangeNotificationA', 'CreateFileW', 'LoadLibraryA', 'FormatMessageA', 'GetCurrentProcess', 'GetTempPathA', 'FreeEnvironmentStringsW', 'FlushFileBuffers', 'HeapDestroy', 'FindFirstFileW', 'HeapReAlloc', 'GetModuleHandleA', 'FreeEnvironmentStringsA', 'GetFileAttributesExA', 'FindNextFileA', 'ResetEvent', 'HeapCreate', 'GetEnvironmentStringsW', 'VirtualFree', 'SystemTimeToTzSpecificLocalTime', 'ReadFile', 'InterlockedIncrement', 'Module32First', 'TlsSetValue', 'LCMapStringW', 'DebugBreak', 'DeleteCriticalSection', 'GetLocaleInfoA', 'SetErrorMode', 'CompareStringW', 'GetThreadPriority', 'CreateFileA', 'SetEnvironmentVariableA', 'CopyFileA', 'CreateDirectoryExW', 'GetCurrentProcessId', 'RtlUnwind', 'GetCPInfo', 'SetFilePointer', 'GetLongPathNameW', 'LoadResource', 'CreateThread', 'GetVersionExA', 'MoveFileExA', 'GlobalAlloc', 'GetLastError', 'SearchPathA', 'WriteFile', 'LoadLibraryExW', 'GetShortPathNameA', 'VirtualQuery', 'GetVersion', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'SetFileAttributesW', 'GlobalFree', 'TlsFree', 'FindClose', 'GetDriveTypeA', 'Sleep', 'GetSystemDefaultLCID', 'OpenEventA', 'GetStringTypeW', 'SetThreadPriority', 'FindFirstChangeNotificationW', 'GetStdHandle', 'DeleteFileA', 'CreateEventA', 'FindFirstFileExW', 'CloseHandle', 'GetACP', 'SizeofResource', 'SetEndOfFile', 'GetUserDefaultLCID', 'GetModuleHandleW', 'OpenMutexA', 'CopyFileExA', 'FindNextFileW', 'CompareStringA', 'DeviceIoControl', 'GetFileAttributesExW', 'UnmapViewOfFile', 'GetConsoleOutputCP', 'SetStdHandle', 'CopyFileW', 'QueryPerformanceFrequency', 'GetConsoleCP', 'GetTimeFormatW', 'WaitForMultipleObjects', 'CreateMutexA', 'GetFileSize', 'GetOEMCP', 'RemoveDirectoryA', 'WaitForSingleObject', 'SetLastError', 'GetCurrentThread', 'GetTempPathW', 'DeleteFileW', 'HeapFree', 'FindFirstFileExA', 'FindFirstFileA', 'CreateFileMappingA', 'HeapAlloc', 'LoadLibraryW', 'LoadLibraryExA', 'GetProcAddress', 'Module32Next', 'GetCurrentThreadId', 'OutputDebugStringA', 'InterlockedDecrement', 'MoveFileWithProgressA', 'QueryPerformanceCounter', 'InitializeCriticalSection', 'IsDebuggerPresent', 'CreateProcessW', 'GetProcessTimes', 'TlsAlloc', 'GetShortPathNameW', 'GetCommandLineA', 'SetWindowsHookExA', 'PeekMessageA', 'GetAsyncKeyState', 'RedrawWindow', 'MoveWindow', 'GetDesktopWindow', 'AppendMenuW', 'DefWindowProcW', 'InsertMenuItemA', 'CreateWindowExW', 'LoadCursorA', 'LoadImageA', 'ClientToScreen', 'SetWindowLongA', 'SetDlgItemTextA', 'AdjustWindowRectEx', 'IsWindow', 'FindWindowExA', 'PostMessageA', 'IsDialogMessageA', 'EndDialog', 'DispatchMessageA', 'GetMenu', 'ReleaseDC', 'MsgWaitForMultipleObjects', 'DialogBoxIndirectParamA', 'EndPaint', 'SetActiveWindow', 'GetClassNameA', 'AppendMenuA', 'PostQuitMessage', 'DestroyWindow', 'GetWindowLongW', 'GetClassInfoA', 'GetFocus', 'SetWindowLongW', 'GetWindowTextLengthA', 'IsIconic', 'UnhookWindowsHookEx', 'InsertMenuItemW', 'SetWindowTextW', 'MessageBeep', 'SendMessageA', 'GetTopWindow', 'GetWindow', 'SetDlgItemTextW', 'CreateWindowExA', 'ScreenToClient', 'FlashWindowEx', 'MessageBoxA', 'GetParent', 'SendMessageW', 'GetDC', 'SetCursor', 'GetClientRect', 'UnregisterClassA', 'GetWindowLongA', 'LoadIconA', 'SetCapture', 'EnableWindow', 'GetDlgItem', 'CallNextHookEx', 'RegisterClassW', 'GetMenuItemInfoA', 'GetWindowTextA', 'SetWindowPos', 'GetWindowTextW', 'DialogBoxParamW', 'CallWindowProcW', 'RegisterClassA', 'DefWindowProcA', 'CallWindowProcA', 'BeginPaint', 'SystemParametersInfoA', 'MessageBoxW', 'SetForegroundWindow', 'ReleaseCapture', 'GetCursor', 'SetWindowTextA', 'IsWindowVisible', 'SetFocus', 'GetWindowRect', 'GetActiveWindow', 'UnregisterClassW', 'EnumThreadWindows', 'ShowWindow'], ['GetModuleHandleA', 'ScrollDC', 'RegQueryValueA', 'SHGetDiskFreeSpaceA', '_CorExeMain', 'DSA_Create'], ['ReportEventA', 'SetBkMode', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetOpenEnumW', 'NetRemoteTOD', 'ShellExecuteW', 'GetDC', 'gethostbyname'], ['GetModuleHandleA', 'OffsetRect', 'RegisterEventSourceA', 'DrawStatusTextW', 'ShellAboutA', '_CorExeMain'], ['CreateMutexW', 'SetLocaleInfoA', 'EnumDateFormatsExW', 'VirtualQuery', 'SetEndOfFile', 'ClearCommError', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'SetCommBreak', 'LockFile', 'GetModuleHandleW', 'GetTickCount', 'GetConsoleAliasesA', 'EscapeCommFunction', 'ReadConsoleW', 'FormatMessageA', 'GetCompressedFileSizeW', 'TlsSetValue', 'GetVolumePathNameW', 'FindResourceExA', 'GetSystemWindowsDirectoryA', 'FindNextVolumeW', 'GetACP', 'ReleaseSemaphore', 'ReplaceFileA', 'GetDateFormatW', 'GetProfileIntA', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'CopyFileA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'OpenSemaphoreW', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'CreateFileA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CloseHandle', 'SetFilePointer', 'FlushFileBuffers', 'GetStringTypeExA', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'HeapSize', 'VirtualAlloc', 'HeapReAlloc', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'LoadMenuA', 'CharUpperBuffA', 'LoadMenuW', 'GetSysColorBrush', 'DdeQueryStringA', 'SetCaretPos', 'GetClipboardOwner', 'InitializeAcl'], ['memcpy', 'LocaleNameToLCID', 'GetFileSize', 'AssignProcessToJobObject', 'TerminateJobObject', 'ClearCommBreak', 'GetModuleHandleA', 'GetProcessShutdownParameters', 'CreateTimerQueue', 'IsSystemResumeAutomatic', 'PdhCollectQueryData'], ['InterlockedIncrement', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'FindActCtxSectionStringA', 'GlobalAlloc', 'ReadConsoleInputA', 'GetStringTypeExW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'RaiseException', 'LCMapStringA', 'EnumSystemLocalesA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'EnterCriticalSection', 'GetAtomNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'GetFileType', 'LoadLibraryExA', 'ContinueDebugEvent', 'UpdateResourceW', 'CreateMailslotA', 'GetStringTypeW', 'GetConsoleTitleW', 'GetFileTime', 'GetVersionExA', 'GetVolumeNameForVolumeMountPointW', 'LocalFree', 'SetFileAttributesW', 'CreateThread', 'GetLocaleInfoA', 'GetDefaultCommConfigW', 'SetThreadContext', 'GetComputerNameA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringW', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'IsValidLocale', 'GetStringTypeA', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'ScreenToClient', 'GetCharWidthFloatW', 'ClearEventLogW'], ['RaiseException', 'GetLastError', 'IsBadReadPtr', 'VirtualProtect', 'GetProcAddress', 'GetModuleHandleA', 'MultiByteToWideChar', 'lstrlenA', 'WideCharToMultiByte', 'lstrlenW', 'GetModuleFileNameW', 'GetModuleFileNameA', 'LoadLibraryA', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'Module32Next', 'CloseHandle', 'Module32First', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'CreateFileA', 'CreateFileW', 'GetModuleHandleW', 'VirtualAlloc', 'VirtualFree', 'HeapFree', 'GetProcessHeap', 'FreeLibrary', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ReadFile', 'HeapSize', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'FlushFileBuffers', 'SetFilePointer', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'RtlUnwind', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetEndOfFile'], ['GetProcessHeap', 'GetProcAddress', 'LoadLibraryA', 'lstrcmpA', 'MultiByteToWideChar', 'FindNextFileW', 'HeapAlloc', 'SetEndOfFile', 'CreateFileW', 'CreateFileA', 'SetStdHandle', 'FindFirstFileW', 'VirtualProtect', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'HeapFree', 'RaiseException', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'LCMapStringW', 'GetCPInfo', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetStringTypeW', 'GetLocaleInfoW', 'HeapReAlloc', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'LoadLibraryW', 'WriteConsoleW', 'ShellExecuteA', 'CryptStringToBinaryA'], ['CopyFileA', 'IsDBCSLeadByte', 'WriteFile', 'ReadFile', 'GetTempFileNameA', 'GetTempPathA', 'DeleteFileA', 'SetFileAttributesA', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'SetEndOfFile', 'SetFilePointer', 'GetComputerNameA', 'SetFileTime', 'GetTickCount', 'CreateProcessA', 'GetSystemDirectoryA', 'GetCurrentProcess', 'GetVersionExA', 'GetVersion', 'WaitForSingleObject', 'GetCommandLineA', 'ExpandEnvironmentStringsA', 'GetDriveTypeA', 'CreateThread', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCurrentProcessId', 'LocalAlloc', 'LocalFree', 'GetLastError', 'GetLocalTime', 'UnmapViewOfFile', 'FreeLibrary', 'CreateFileA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'Process32First', 'Process32Next', 'GetModuleFileNameA', 'CreateToolhelp32Snapshot', 'Module32First', 'OpenProcess', 'ReadProcessMemory', 'TerminateProcess', 'Sleep', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'GetFileTime', 'SetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'GetStringTypeW', 'GetStringTypeA', 'RtlUnwind', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetModuleHandleA', 'GetStartupInfoA', 'ExitProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'HeapFree', 'HeapAlloc', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'FlushFileBuffers', 'StartServiceCtrlDispatcherA', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegCreateKeyA', 'RegSetValueExA', 'RegQueryValueExA', 'StartServiceA', 'RegConnectRegistryA', 'OpenProcessToken', 'GetTokenInformation', 'AllocateAndInitializeSid', 'EqualSid', 'FreeSid', 'RegisterServiceCtrlHandlerA', 'OpenServiceA', 'SetServiceStatus', 'OpenSCManagerA', 'CreateServiceA', 'CloseServiceHandle', 'RegEnumValueA', 'RegDeleteValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegCloseKey', 'gethostbyname', 'closesocket', 'WSACleanup', 'send', 'htons', 'connect', 'WSAGetLastError', 'WSAStartup', 'socket', 'recv', 'WNetOpenEnumA', 'WNetEnumResourceA', 'WNetCloseEnum'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ChooseColorA', 'mciSendCommandA', 'mciGetErrorStringA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenW', 'lstrcpynW', 'lstrcpyW', 'lstrcpyA', 'lstrcmpiW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueW', 'VerQueryValueA', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoW', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExW', 'CreateWindowExA', 'wvsprintfW', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'TrackMouseEvent', 'SystemParametersInfoW', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExW', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxW', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringW', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageW', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongW', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDialog', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextW', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DialogBoxParamW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_LoadImageW', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'PropertySheetW', 'CreatePropertySheetPageW', 'InitCommonControls', 'GetVersionExW', 'QueryServiceStatusEx', 'CloseServiceHandle', 'OpenServiceW', 'OpenSCManagerW', 'WSACleanup', 'WSAStartup', 'gethostbyname', 'inet_ntoa', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHGetMalloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'RasSetCredentialsW', 'RasSetEntryDialParamsW', 'RasGetEntryPropertiesW', 'RasSetEntryPropertiesW', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit'], ['WNetEnumResourceW', 'WNetUseConnectionW', 'WNetOpenEnumW', 'WNetCloseEnum', 'ioctlsocket', 'getpeername', 'ntohl', 'select', 'WSAGetLastError', 'htons', 'recv', 'socket', 'closesocket', 'getsockopt', 'WSAAddressToStringW', 'htonl', 'connect', 'GetIpAddrTable', 'WinHttpReceiveResponse', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpSendRequest', 'SystemTimeToFileTime', 'QueryPerformanceCounter', 'GetLocalTime', 'ReadProcessMemory', 'FindNextFileW', 'SetFileAttributesW', 'MoveFileW', 'GetFileSizeEx', 'GetFileAttributesW', 'SetFilePointerEx', 'SetEndOfFile', 'ExitProcess', 'SetFilePointer', 'WaitForSingleObject', 'GetComputerNameW', 'SetEvent', 'GetLogicalDrives', 'GetTickCount', 'Sleep', 'CopyFileW', 'ReadFile', 'CreateFileW', 'MultiByteToWideChar', 'CreateEventW', 'WaitForMultipleObjects', 'CloseHandle', 'CreateThread', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'EnterCriticalSection', 'ResetEvent', 'DeleteCriticalSection', 'AllocConsole', 'WriteFile', 'WideCharToMultiByte', 'WriteConsoleW', 'GetStdHandle', 'CreateMutexW', 'CreateProcessW', 'GetCurrentProcess', 'SetHandleInformation', 'OpenProcess', 'GetLocaleInfoW', 'FindClose', 'TerminateProcess', 'GetModuleFileNameW', 'FlushFileBuffers', 'OpenMutexW', 'GetLastError', 'GetProcAddress', 'Process32FirstW', 'GetExitCodeThread', 'CreatePipe', 'Process32NextW', 'GetModuleHandleA', 'CreateToolhelp32Snapshot', 'ReleaseMutex', 'GetVersion', 'DeleteFileW', 'GetCurrentProcessId', 'GetVolumeInformationW', 'ExpandEnvironmentStringsW', 'HeapAlloc', 'GetProcessHeap', 'HeapReAlloc', 'HeapFree', 'FindFirstFileW', 'GetCurrentThreadId', 'GetWindowThreadProcessId', 'GetShellWindow', 'FreeSid', 'LookupPrivilegeValueW', 'OpenProcessToken', 'GetTokenInformation', 'EqualSid', 'RegSetValueExW', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'LookupAccountSidW', 'AllocateAndInitializeSid', 'DuplicateTokenEx', 'RegQueryValueExW', 'ShellExecuteExW', 'CoGetObject', 'CoInitializeEx', 'CoUninitialize'], ['GetModuleHandleA', 'IsChild', 'GetUserNameW', 'CreateStatusWindowA', 'PathMakeUniqueName', '_CorExeMain'], ['GetModuleHandleA', 'CreateWindowExW', 'RegisterEventSourceA', '_CorExeMain', 'InitCommonControlsEx', 'SHChangeNotifyRegister'], ['ExitProcess', 'Sleep', 'CreateProcessW', 'CloseHandle', 'GetProcAddress', 'LoadLibraryA', 'socket', 'gethostbyname', 'accept', 'listen', 'bind', 'htons', 'WSAStartup', 'shutdown', 'closesocket', 'recv', 'send', 'connect', 'RasEnumDevicesW', 'RasSetEntryPropertiesW', 'RasGetEntryDialParamsW', 'RasDialW'], ['??1type_info@@UAE@XZ', 'wcstoul', '_vsnwprintf', '_CxxThrowException', '_except_handler3', '_onexit', '_lock', '_unlock', '_amsg_exit', '_initterm', '_XcptFilter', 'memcpy', 'memset', 'realloc', '_vsnprintf', 'wcsstr', '_snprintf', 'wcsncpy', 'malloc', '_snwprintf', 'swscanf', 'sprintf', '_wcsicmp', 'atoi', 'strchr', 'strstr', 'wcschr', 'strncpy', 'calloc', 'free', '_strlwr', '__dllonexit', 'memcmp', 'CryptUnprotectData', 'listen', 'accept', 'WSAEventSelect', 'htons', 'inet_addr', 'WSASocketA', 'getsockopt', 'WSAIoctl', 'gethostbyname', 'WSAStartup', 'WSACreateEvent', 'recv', 'WSAConnect', 'socket', 'WSAGetLastError', 'select', 'bind', 'send', 'shutdown', 'WSACloseEvent', 'inet_ntoa', 'closesocket', 'SetLastError', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'GetModuleHandleW', 'VirtualAllocEx', 'VirtualProtectEx', 'VirtualFreeEx', 'TlsFree', 'GetLocaleInfoW', 'EnumUILanguagesW', 'GetUserDefaultUILanguage', 'GetNativeSystemInfo', 'GetSystemTime', 'TlsAlloc', 'TlsSetValue', 'TlsGetValue', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InterlockedCompareExchange', 'InterlockedExchange', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'HeapSize', 'GetCurrentProcess', 'VirtualFree', 'RtlZeroMemory', 'Sleep', 'WaitForSingleObject', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetLastError', 'ExitProcess', 'FindResourceA', 'FreeLibrary', 'LoadResource', 'GetModuleFileNameW', 'GetExitCodeThread', 'GetModuleFileNameA', 'CloseHandle', 'DeleteFileW', 'CreateThread', 'lstrlenA', 'OpenProcess', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'LocalFree', 'lstrcpyA', 'GetCurrentThread', 'PeekMessageW', 'wsprintfW', 'wsprintfA', 'GetSystemMetrics', 'OpenProcessToken', 'RegQueryValueExW', 'RegCreateKeyExA', 'RegOpenKeyExA', 'LookupAccountSidW', 'RegOpenKeyExW', 'ImpersonateLoggedOnUser', 'AllocateAndInitializeSid', 'RevertToSelf', 'FreeSid', 'RegOpenKeyA', 'RegEnumKeyExW', 'RegCloseKey', 'RegQueryValueExA', 'GetErrorInfo', 'StrStrIW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueA'], ['WriteConsoleOutputW', 'GetStringTypeExA', 'GetProcAddress', 'LoadLibraryW', 'OpenFileMappingW', 'GetModuleHandleW', 'GlobalAlloc', 'GetLocaleInfoW', 'CompareStringW', 'CompareStringA', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'GetLastError', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetStartupInfoW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'GetModuleHandleA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'VirtualAlloc', 'CloseHandle', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryA', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'GetTimeZoneInformation', 'CreateFileA', 'SetEnvironmentVariableA', 'TransparentBlt'], ['GlobalHandle', 'GlobalReAlloc', 'GlobalUnlock', 'InitializeCriticalSection', 'ReadFile', 'ResetEvent', 'SetEndOfFile', 'SetEvent', 'SetFilePointer', 'SetLastError', 'SystemTimeToFileTime', 'WaitForSingleObject', 'TlsSetValue', 'RaiseException', 'WriteFile', 'ExitProcess', 'FindFirstFileA', 'GetCommandLineA', 'GetStartupInfoA', 'LoadLibraryExA', 'lstrcpynA', 'lstrlenA', 'MultiByteToWideChar', 'VirtualQuery', 'InterlockedIncrement', 'GetVersion', 'LocalAlloc', 'VirtualAlloc', 'EnterCriticalSection', 'DisableThreadLibraryCalls', 'UnhandledExceptionFilter', 'InterlockedExchange', 'GetModuleHandleA', 'GetWindowsDirectoryW', 'FindFirstFileW', 'FindNextFileW', 'GlobalAlloc', 'GetFullPathNameW', 'GetFileAttributesW', 'LoadLibraryW', 'FileTimeToSystemTime', 'GetDateFormatW', 'CloseHandle', 'LocalFree', 'TlsAlloc', 'TlsGetValue', 'TlsFree', 'GetModuleHandleW', 'GetLastError', 'InterlockedDecrement', 'HeapFree', 'Sleep', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'GetModuleFileNameW', 'RtlUnwind', 'LCMapStringW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GetTimeZoneInformation', 'GetThreadLocale', 'GetStringTypeExA', 'GetLocaleInfoA', 'GetLocalTime', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'CreateFileA', 'CreateEventA', 'CompareStringW', 'FindClose', 'CompareStringA', 'GetSystemMetrics', 'CharNextA', 'LoadStringA', 'GetKeyboardType', 'CharNextW', 'CharToOemA', 'RegSetValueExW', 'OpenServiceW', 'OpenSCManagerW', 'RegQueryValueExA', 'RegDeleteValueW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'InitiateSystemShutdownExW', 'CloseServiceHandle', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SysAllocStringLen', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SysFreeString', 'wcschr', 'towlower', 'towupper', 'iswalpha', 'wcsrchr', 'wprintf', 'memset', 'fputs', 'fputws', 'printf', 'SetupDiDestroyDeviceInfoList', 'SetupDiCallClassInstaller', 'SetupDiOpenDevRegKey', 'SetupScanFileQueueW', 'SetupOpenFileQueue', 'SetupDiSetSelectedDriverW', 'SetupDiGetDriverInstallParamsW', 'SetupDiOpenClassRegKeyExW', 'SetupDiEnumDeviceInfo', 'SetupDiGetDriverInfoDetailW', 'SetupDiCreateDeviceInfoList', 'SetupDiCreateDeviceInfoW', 'SetupDiBuildClassInfoListExW', 'SetupDiClassNameFromGuidExW', 'SetupCopyOEMInfW', 'SetupDiSetDeviceRegistryPropertyW', 'SetupDiSetClassInstallParamsW', 'SetupOpenInfFileW', 'SetupFindFirstLineW', 'SetupGetStringFieldW', 'SetupDiGetClassDescriptionExW', 'SetupDiGetDeviceInfoListDetailW', 'SetupDiOpenDeviceInfoW', 'SetupDiClassGuidsFromNameExW', 'SetupDiDestroyDriverInfoList', 'SetupDiSetDeviceInstallParamsW', 'SetupDiBuildDriverInfoList', 'SetupCloseInfFile', 'shutdown', 'setsockopt', 'send', 'getsockname', 'getpeername', 'ioctlsocket', 'closesocket', 'WSAStartup', 'WSACleanup', 'WSAGetLastError', 'gethostbyname'], ['GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'DisableThreadLibraryCalls', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetCurrentThreadId', 'WaitForSingleObject', 'ReleaseMutex', 'CloseHandle', 'CreateMutexA', 'GetLastError', 'GetSystemTimeAsFileTime'], ['GetAdaptersAddresses', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'HttpQueryInfoA', 'InternetOpenA', 'InternetOpenUrlA', 'HttpOpenRequestA', 'InternetCloseHandle', 'GetCommandLineA', 'GetOEMCP', 'GetModuleFileNameA', 'GetVolumeInformationA', 'Sleep', 'CopyFileA', 'CreateProcessA', 'AllocConsole', 'LocalFree', 'FormatMessageA', 'GetCurrentDirectoryW', 'CreateFileW', 'DeleteFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'CloseHandle', 'GetLastError', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'GetCurrentThreadId', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'GetACP', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'HeapSize', 'WriteConsoleW', 'GetCommandLineW', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'InitializeSListHead', 'SetEvent', 'CreateThread', 'GetCurrentThread', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'RaiseException', 'ExitThread', 'GetModuleHandleExW', 'GetDriveTypeW', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'ExitProcess', 'GetStdHandle', 'WriteFile', 'GetFileSizeEx', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapReAlloc', 'SetStdHandle', 'ReadFile', 'ReadConsoleW', 'GetTimeZoneInformation', 'IsValidCodePage', 'RegCloseKey', 'RegOpenKeyA', 'RegGetValueA', 'RegQueryValueExA', 'RegSetValueExA', 'RegOpenKeyExA'], ['GetStringTypeW', 'CompareStringW', 'WriteConsoleW', 'GetLocaleInfoW', 'IsValidLocale', 'GetDriveTypeW', 'SetEnvironmentVariableA', 'LCMapStringW', 'GetCurrentDirectoryW', 'GetTimeZoneInformation', 'IsValidCodePage', 'GetConsoleMode', 'GetConsoleCP', 'HeapCreate', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetHandleCount', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'SetStdHandle', 'ExitProcess', 'HeapQueryInformation', 'GetLastError', 'HeapSize', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'RaiseException', 'RtlUnwind', 'HeapSetInformation', 'GetCommandLineA', 'CreateFileW', 'FindFirstFileExA', 'GetDriveTypeA', 'GetFileInformationByHandle', 'QueryPerformanceCounter', 'HeapAlloc', 'CreateThread', 'ExitThread', 'GetSystemTimeAsFileTime', 'GetDateFormatA', 'GetTimeFormatA', 'DecodePointer', 'EncodePointer', 'HeapFree', 'FindResourceExW', 'GetUserDefaultLCID', 'VirtualProtect', 'SearchPathA', 'GetProfileIntA', 'InitializeCriticalSectionAndSpinCount', 'GetTempPathA', 'GetTempFileNameA', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'lstrcpyA', 'GetCurrentDirectoryA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetUserDefaultUILanguage', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'GetProcessHeap', 'GetLocaleInfoA', 'InterlockedExchange', 'GlobalFlags', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'CreateFileA', 'lstrcmpiA', 'FindResourceA', 'FreeResource', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryW', 'lstrcmpW', 'FileTimeToSystemTime', 'lstrcmpA', 'GlobalGetAtomNameA', 'InterlockedIncrement', 'GetModuleHandleW', 'CompareStringA', 'GetModuleHandleA', 'GetCurrentThreadId', 'ResumeThread', 'SetThreadPriority', 'CopyFileA', 'GlobalSize', 'lstrlenW', 'MultiByteToWideChar', 'MulDiv', 'lstrlenA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'WideCharToMultiByte', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedDecrement', 'GetModuleFileNameW', 'ActivateActCtx', 'ReleaseActCtx', 'DeactivateActCtx', 'TlsFree', 'GlobalFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalAlloc', 'GlobalHandle', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalLock', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'DeleteFileA', 'GetTickCount', 'WaitForMultipleObjects', 'GetFileType', 'LoadLibraryA', 'GetProcAddress', 'GetStdHandle', 'ReadFile', 'FreeLibrary', 'PeekNamedPipe', 'FormatMessageA', 'Sleep', 'ExpandEnvironmentStringsA', 'CloseHandle', 'WaitForSingleObject', 'GetVersionExA', 'SleepEx', 'DeleteCriticalSection', 'EnterCriticalSection', 'SetLastError', 'LeaveCriticalSection', 'InitializeCriticalSection', 'EnumSystemLocalesA', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'WaitMessage', 'PostThreadMessageA', 'IsMenu', 'MonitorFromPoint', 'UpdateLayeredWindow', 'UnionRect', 'MapVirtualKeyExA', 'IsCharLowerA', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'GetKeyNameTextA', 'LockWindowUpdate', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToAsciiEx', 'CopyAcceleratorTableA', 'DrawFrameControl', 'DrawEdge', 'DrawStateA', 'GetSystemMenu', 'LoadMenuW', 'SetClassLongA', 'DestroyAcceleratorTable', 'SetParent', 'SetWindowRgn', 'IsZoomed', 'WindowFromPoint', 'SetRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'LoadAcceleratorsA', 'InsertMenuItemA', 'BringWindowToTop', 'TranslateAcceleratorA', 'CreateDialogIndirectParamA', 'EndDialog', 'DrawIconEx', 'GetNextDlgGroupItem', 'LoadImageA', 'CopyImage', 'GetIconInfo', 'OffsetRect', 'GetNextDlgTabItem', 'MessageBeep', 'NotifyWinEvent', 'EnableScrollBar', 'HideCaret', 'DrawFocusRect', 'InvertRect', 'ReleaseCapture', 'GetAsyncKeyState', 'SetCapture', 'MapVirtualKeyA', 'CreatePopupMenu', 'GetMenuDefaultItem', 'RedrawWindow', 'LoadCursorW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'KillTimer', 'SetTimer', 'DeleteMenu', 'ShowOwnedPopups', 'SetCursor', 'IntersectRect', 'InvalidateRect', 'SetRectEmpty', 'IsIconic', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'CreateMenu', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'GetDesktopWindow', 'RealChildWindowFromPoint', 'ClientToScreen', 'CharUpperA', 'DestroyIcon', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckDlgButton', 'RegisterWindowMessageA', 'LoadIconW', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'SetFocus', 'GetForegroundWindow', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetClientRect', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetWindowRect', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'FrameRect', 'GetUpdateRect', 'RegisterClipboardFormatA', 'CopyIcon', 'CharUpperBuffA', 'GetDoubleClickTime', 'SubtractRect', 'PtInRect', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'GetWindow', 'GetWindowRgn', 'DestroyCursor', 'DrawIcon', 'MapDialogRect', 'GrayStringA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetWindowTextLengthA', 'GetWindowTextA', 'LoadCursorA', 'GetSystemMetrics', 'GetDC', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetWindowThreadProcessId', 'SendMessageA', 'GetParent', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxA', 'UnhookWindowsHookEx', 'IsRectEmpty', 'SetRectRgn', 'CombineRgn', 'PatBlt', 'DPtoLP', 'CreateDIBitmap', 'GetTextMetricsA', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'GetBkColor', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'CreateDIBSection', 'CreateRoundRectRgn', 'CreatePolygonRgn', 'GetTextColor', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'SetDIBColorTable', 'StretchBlt', 'SetPixel', 'Rectangle', 'OffsetRgn', 'GetRgnBox', 'CreateRectRgnIndirect', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetTextFaceA', 'TextOutA', 'RectVisible', 'PtVisible', 'EnumFontFamiliesExA', 'CreateCompatibleBitmap', 'Escape', 'CreateHatchBrush', 'CreateSolidBrush', 'CreatePen', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'GetDeviceCaps', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'ExtTextOutA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'DeleteObject', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'SelectObject', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegEnumKeyExA', 'CryptReleaseContext', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'CryptGetHashParam', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'SHGetFileInfoA', 'SHGetDesktopFolder', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'SHAppBarMessage', 'SHBrowseForFolderA', 'DragQueryFileA', 'DragFinish', 'ShellExecuteA', 'ImageList_GetIconSize', 'PathIsUNCA', 'PathFindFileNameA', 'PathFindExtensionA', 'PathStripToRootA', 'PathRemoveFileSpecW', 'recvfrom', 'sendto', 'select', '__WSAFDIsSet', 'inet_ntoa', 'listen', 'accept', 'getpeername', 'ntohs', 'getsockname', 'setsockopt', 'bind', 'WSASetLastError', 'getsockopt', 'WSAGetLastError', 'gethostname', 'connect', 'WSAStartup', 'htons', 'WSACleanup', 'send', 'gethostbyname', 'closesocket', 'socket', 'recv', 'getaddrinfo', 'freeaddrinfo', 'WSAIoctl', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'OleGetClipboard', 'CoInitializeEx', 'DoDragDrop', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'SysFreeString', 'SysAllocString', 'VariantInit', 'VarBstrFromDate', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SysAllocStringLen', 'VariantChangeType', 'VariantClear', 'SysStringLen', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GdipFree', 'GdipAlloc', 'GdipDeleteGraphics', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCreateFromHDC', 'GdipSetInterpolationMode', 'GdipDrawImageRectI', 'GdipCloneImage', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipBitmapLockBits', 'GdipBitmapUnlockBits', 'GdipGetImageGraphicsContext', 'GdipDrawImageI', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetForegroundWindow', 'GetCursorPos', 'MessageBoxA', 'CreateWindowExA', 'GetWindowRect', 'SetWindowPos', 'LoadBitmapA', 'CallWindowProcA', 'GetDlgItemTextA', 'PeekMessageA', 'CreateDialogParamA', 'SetWindowTextA', 'ShowWindow', 'BeginPaint', 'EndPaint', 'InternetOpenA', 'InternetOpenUrlA', 'InternetReadFile', 'InternetConnectA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'IsUserAnAdmin', 'OpenProcessToken', 'AllocateAndInitializeSid', 'GetTokenInformation', 'EqualSid', 'GetUserNameA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'FreeSid', 'strcat', 'strcpy', 'sprintf', 'strlen', 'fopen', 'fseek', 'ftell', 'fread', 'fwrite', 'fclose', 'memset', 'time', 'gmtime', 'memcpy', 'free', 'malloc', 'GetTickCount', 'Sleep', 'VirtualProtect', 'ExitProcess', 'ExpandEnvironmentStringsA', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'FindFirstFileA', 'GetSystemWow64DirectoryA', 'GetVersionExA', 'GetCurrentProcessId', 'OpenProcess', 'MultiByteToWideChar', 'WideCharToMultiByte', 'RtlZeroMemory', 'CreatePipe', 'GetStartupInfoA', 'CreateProcessA', 'PeekNamedPipe', 'ReadFile', 'CreateFileA', 'SetFilePointer', 'GetFileSize', 'CloseHandle', 'GetVolumeInformationA', 'GetComputerNameA', 'GetModuleHandleA', 'GetProcAddress'], ['LoadLibraryA', 'GetProcAddress', 'GetCommandLineA', 'HeapSetInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapFree', 'HeapAlloc', 'RtlUnwind', 'LoadLibraryW', 'Sleep', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'HeapReAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'IsProcessorFeaturePresent', 'RaiseException'], ['GetCurrentProcess', 'LoadLibraryA', 'CloseHandle', 'GetProcAddress', 'ReadFile', 'WriteFile', 'GetCommandLineA', 'GetLastError', 'SetEndOfFile', 'WriteConsoleW', 'HeapReAlloc', 'HeapSize', 'CreateFileW', 'ReadConsoleW', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetProcessHeap', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'DecodePointer', 'GetDesktopWindow', 'ShellExecuteA', 'PathFileExistsW', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'HttpOpenRequestA', 'InternetOpenA', 'InternetReadFile'], ['CloseHandle', 'ConnectNamedPipe', 'CreateFileA', 'CreateNamedPipeA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'ReadFile', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WriteFile', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'sprintf', 'strlen', 'strncmp', 'vfprintf'], ['FormatMessageW', 'GetAtomNameW', 'LocalHandle', 'ReadFile', 'CreateFileW', 'lstrcatA', 'lstrlenW', 'IsBadStringPtrA', 'WritePrivateProfileStringW', 'GetLastError', 'GetProcAddress', 'SizeofResource', 'BuildCommDCBW', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObjectEx', 'GlobalWire', 'SetConsoleTitleW', 'DebugBreakProcess', 'OpenFileMappingW', 'SetProcessShutdownParameters', 'GetCurrentProcessId', 'EnumSystemLocalesW', 'GetProcessTimes', 'GetDriveTypeA', 'BackupSeek', 'GetSystemDefaultLCID', 'GetCurrentProcess', 'FindResourceW', 'MapViewOfFile', 'CreateTimerQueue', 'HeapReAlloc', 'GetCommandLineW', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'VirtualAlloc', 'GetModuleHandleA', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'FreeSid', 'NotifyChangeEventLog', 'CopySid', 'SetServiceObjectSecurity', 'AccessCheckAndAuditAlarmW'], ['FindAtomA', 'lstrlenA', 'ExitThread', 'LocalAlloc', 'GetProcAddress', 'GetModuleHandleW', 'GlobalMemoryStatus', 'GetSystemTimes', 'GetMailslotInfo', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'UpdateWindow', 'FindWindowW', 'ShowWindow'], ['GetFileType', 'ExitProcess', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'Sleep', 'GetTimeZoneInformation', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'SetStdHandle', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'SizeofResource', 'GetStartupInfoA', 'GetProcessHeap', 'GetCommandLineA', 'VirtualAlloc', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'RaiseException', 'GetDateFormatA', 'GetTimeFormatA', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'SetErrorMode', 'WritePrivateProfileStringA', 'GetFileTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetProfileIntA', 'GetTickCount', 'CloseHandle', 'GetCurrentProcessId', 'InterlockedDecrement', 'GetModuleFileNameW', 'lstrcmpA', 'GlobalFree', 'CopyFileA', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'GetStringTypeExA', 'lstrlenA', 'lstrcmpiA', 'CompareStringW', 'CompareStringA', 'lstrlenW', 'GetVersion', 'MultiByteToWideChar', 'InterlockedExchange', 'MulDiv', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalReAlloc', 'GetLastError', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'FreeEnvironmentStringsW', 'CopyAcceleratorTableA', 'CreateMenu', 'PostThreadMessageA', 'GetTabbedTextExtentA', 'GetDCEx', 'LockWindowUpdate', 'RegisterClipboardFormatA', 'UnregisterClassA', 'GetSysColorBrush', 'DestroyCursor', 'GetMenuItemInfoA', 'ShowOwnedPopups', 'PostQuitMessage', 'GetMessageA', 'ValidateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetWindowThreadProcessId', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GetMenuState', 'GetMenuStringA', 'InsertMenuA', 'RemoveMenu', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'GetDlgCtrlID', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'IsIconic', 'GetWindowPlacement', 'GetWindow', 'WindowFromPoint', 'IsWindow', 'GetKeyState', 'GetSysColor', 'PtInRect', 'SetRect', 'InflateRect', 'OffsetRect', 'IsWindowVisible', 'ClientToScreen', 'IsRectEmpty', 'CopyRect', 'CharUpperA', 'GetSystemMetrics', 'EnumChildWindows', 'LoadIconA', 'GetWindowRect', 'GetSystemMenu', 'AppendMenuA', 'TranslateMessage', 'DispatchMessageA', 'SetWindowRgn', 'DrawIcon', 'FindWindowA', 'DestroyIcon', 'SetParent', 'RemovePropA', 'IntersectRect', 'FillRect', 'InvertRect', 'DrawEdge', 'SendMessageA', 'PostMessageA', 'GetClientRect', 'ScreenToClient', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'SetTimer', 'KillTimer', 'GetCapture', 'SetCapture', 'GetFocus', 'GetParent', 'LoadCursorA', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'DefWindowProcA', 'GetClassInfoA', 'SetCursor', 'IsClipboardFormatAvailable', 'GetCursorPos', 'ClipCursor', 'ReleaseCapture', 'EnableWindow', 'SystemParametersInfoA', 'IsDialogMessageW', 'IsDialogMessageA', 'GetWindowExtEx', 'GetPixel', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'DeleteDC', 'CreatePatternBrush', 'CreateBitmap', 'GetStockObject', 'GetViewportExtEx', 'CreateRectRgnIndirect', 'PatBlt', 'DPtoLP', 'SetRectRgn', 'CombineRgn', 'GetViewportOrgEx', 'GetCharWidthA', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'CreateRectRgn', 'SelectClipRgn', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'CreateSolidBrush', 'CreatePen', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateDCA', 'CopyMetaFileA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'DeleteObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetCurrentObject', 'EndDoc', 'AbortDoc', 'EndPage', 'StartPage', 'StartDocA', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'BitBlt', 'Rectangle', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetObjectA', 'CreateFontA', 'CreateFontIndirectA', 'GetFileTitleA', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyA', 'RegSetValueA', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'DragQueryFileA', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'PathFindFileNameA', 'PathFindExtensionA', 'PathStripToRootA', 'PathIsUNCA', 'CreateStreamOnHGlobal', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'DoDragDrop', 'OleSetClipboard', 'OleGetClipboard', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetProcessId', 'InitCommonControls', 'CheckDlgButton', 'GetGUIThreadInfo', 'CheckMenuRadioItem', 'GetCursorPos', 'CheckRadioButton', 'CheckMenuItem', 'PrintDlgW', 'DllCanUnloadNow', 'SafeArrayUnlock'], ['GetModuleHandleA', 'GetProcAddress', 'GetDC', 'BitBlt', 'FreeSid', 'SHChangeNotify', 'VerQueryValueW', 'CM_Get_Parent', 'StrChrW'], ['AllocConsole', 'GetDefaultCommConfigW', 'InterlockedIncrement', 'ReadConsoleA', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'SetFileTime', 'GetLocaleInfoW', 'FreeConsole', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'WriteConsoleW', 'CreateActCtxA', 'GetTempPathW', 'LCMapStringA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetCPInfoExW', 'GetProcAddress', 'GetLongPathNameA', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'GetStringTypeA', 'WriteProfileSectionA', 'GetFirmwareEnvironmentVariableW', 'EnterCriticalSection', 'SetFileAttributesA', 'FindClose', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'MoveFileA', 'BeginUpdateResourceA', 'GlobalGetAtomNameW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'SetConsoleTitleW', 'LoadLibraryExA', 'GetConsoleTitleW', 'GetFileTime', 'PeekConsoleInputA', 'SetCalendarInfoA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'CreateThread', 'GetVolumeNameForVolumeMountPointA', 'GetLocaleInfoA', 'GetSystemDefaultLangID', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'GetLastError', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpSetDefaultProxyConfiguration'], ['LocalFree', 'LocalAlloc', 'GetLastError', 'QueryDosDeviceA', 'GetLogicalDriveStringsA', 'OpenProcess', 'WideCharToMultiByte', 'FlushFileBuffers', 'GetFileSizeEx', 'GetCurrentProcessId', 'Sleep', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetComputerNameW', 'CloseHandle', 'GetVersionExW', 'GetExitCodeThread', 'GetTickCount', 'SetErrorMode', 'GetProcAddress', 'LoadLibraryA', 'ReadFile', 'CreateFileW', 'GetFileAttributesW', 'GetFileSize', 'WriteFile', 'DeleteFileW', 'MoveFileW', 'ProcessIdToSessionId', 'CompareStringW', 'CompareStringA', 'GetSystemInfo', 'GetModuleHandleA', 'TerminateThread', 'GetCurrentProcess', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'SetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'HeapAlloc', 'SetFilePointer', 'SetEnvironmentVariableA', 'HeapFree', 'VirtualFree', 'RtlUnwind', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCommandLineA', 'GetVersion', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'TerminateProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'GetSystemMetrics', 'GetTokenInformation', 'LookupAccountSidA', 'OpenProcessToken', 'setsockopt', 'shutdown', 'recv', 'send', 'WSAGetLastError', 'ioctlsocket', 'select', '__WSAFDIsSet', 'closesocket', 'WSAStartup', 'socket', 'htons', 'bind', 'listen', 'inet_addr', 'connect', 'GetTcpTable', 'VerQueryValueW', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA'], ['InterlockedIncrement', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteFileW', 'WriteFile', 'SetFilePointer', 'GetLastError', 'CreateFileW', 'GetSystemInfo', 'GetComputerNameW', 'InitializeCriticalSection', 'ReadFile', 'WaitForSingleObject', 'CreateProcessW', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedDecrement', 'GetTickCount', 'GetFileAttributesW', 'CreateDirectoryW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetSystemTime', 'FileTimeToSystemTime', 'GetFileSize', 'MoveFileW', 'FlushFileBuffers', 'GetFileSizeEx', 'CompareStringW', 'CompareStringA', 'LocalAlloc', 'LocalFree', 'Sleep', 'CloseHandle', 'GetVersionExW', 'CreateThread', 'LCMapStringW', 'LCMapStringA', 'SetStdHandle', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'RtlUnwind', 'SetEnvironmentVariableA', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'GetTimeZoneInformation', 'GetLocalTime', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCommandLineA', 'GetVersion', 'HeapFree', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'HeapReAlloc', 'HeapAlloc', 'HeapSize', 'DeleteCriticalSection', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'GetModuleHandleA', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'GetSystemMetrics', 'RegQueryValueExW', 'RegCloseKey', 'RegisterServiceCtrlHandlerW', 'SetServiceStatus', 'RegOpenKeyExW', 'SystemTimeToVariantTime', 'recv', 'send', 'WSAGetLastError', 'ioctlsocket', 'connect', 'socket', 'setsockopt', 'shutdown', 'closesocket', 'listen', 'WSAStartup', 'WSACleanup', 'select', '__WSAFDIsSet', 'accept', 'htons', 'bind', 'GetAdaptersInfo'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'memcpy'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA'], ['Sleep', 'WaitForSingleObject', 'CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'GetLastError', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'ShowWindow'], ['GetCurrentProcessId', 'FindAtomA', 'HeapCreate', 'GetStdHandle', 'GetCommandLineA', 'GetModuleFileNameA', 'DeleteAtom', 'IsBadCodePtr', 'GetEnvironmentVariableA', 'GetFileAttributesA', 'CreateMailslotW', 'HeapDestroy', 'DeleteFileA', 'GetModuleHandleA', 'CloseHandle', 'GetProcessTimes', 'GetPriorityClass', 'SuspendThread', 'GetStartupInfoA', 'ReadFile', 'DrawTextW', 'GetKeyState', 'DispatchMessageA', 'GetSysColor', 'GetClassInfoA', 'DestroyMenu', 'GetWindowLongA', 'SetFocus', 'IsZoomed', 'GetClientRect', 'CallWindowProcW', 'GetWindowInfo', 'DispatchMessageA', 'DllCanUnloadNow', 'DllCanUnloadNow', 'DllCanUnloadNow', 'DllCanUnloadNow', 'DestroyMenu'], ['GetModuleHandleW', 'GetLastError', 'FindActCtxSectionStringW', 'SetVolumeMountPointW', 'VirtualProtect', 'LocalAlloc', 'FindAtomW', 'LoadLibraryW', 'CreateIoCompletionPort', 'DeleteAtom', 'GlobalDeleteAtom', 'GetCPInfoExA', 'lstrlenW', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'CloseHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetProcAddress', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'CreateFileA', 'LoadLibraryA', 'GetLocaleInfoW', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'CoGetCurrentProcess'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WindowFromDC', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MoveWindow', 'MessageBoxIndirectW', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameW', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CreateAcceleratorTableW', 'CopyRect', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixelV', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'ResizePalette', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetNearestPaletteIndex', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapDimensionEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'lstrcpyW', 'lstrcmpW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'IsDebuggerPresent', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateThread', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SHGetFileInfoW', 'ShellExecuteExW', 'ExtractIconW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'MessageBoxW', 'ntohl'], ['WriteFile', 'UnmapViewOfFile', 'GetWindowsDirectoryA', 'GetModuleHandleA', 'CopyFileA', 'GetProcAddress', 'ExitProcess', 'GetFileSize', 'GetModuleFileNameA', 'LocalAlloc', 'CreateFileMappingA', 'GetVersionExA', 'GetSystemDirectoryA', 'CreateFileA', 'CloseHandle', 'LocalFree', 'MapViewOfFile', 'ReadFile', 'RegSetValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'ReleaseDC', 'RegisterClassA', 'PostQuitMessage', 'PeekMessageA', 'GetDC', 'DispatchMessageA', 'DefWindowProcA', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'TranslateMessage', 'SetPixelV'], ['FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'CloseHandle', 'WriteConsoleW', 'ExitProcess', 'CreateThread', 'Sleep', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'DecodePointer', 'GetSystemMetrics', 'DrawIcon', 'GetWindowRect', 'GetDesktopWindow', 'MessageBoxW', 'SetProcessDPIAware', 'LoadIconW', 'GetDC', 'CreateEllipticRgn', 'BitBlt', 'SelectObject', 'PatBlt', 'StretchBlt', 'PlgBlt', 'CreateRectRgn', 'CreatePen', 'Rectangle', 'SelectClipRgn', 'Ellipse', 'CreateSolidBrush'], ['AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegSetValueExA', 'AddAtomA', 'CloseHandle', 'CopyFileA', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreateSemaphoreA', 'CreateToolhelp32Snapshot', 'DefineDosDeviceA', 'DeleteCriticalSection', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemDirectoryA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OpenProcess', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WinExec', 'WriteFile', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strchr', 'strcmp', 'strcoll', 'strcpy', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'system', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'GetForegroundWindow', 'MessageBoxA', 'ShowWindow'], ['LoadLibraryA', 'GetModuleHandleA', 'GetTickCount', 'GetStdHandle', 'GetProcAddress', 'Sleep', 'RaiseException', 'CreateFileW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'CloseHandle', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'VirtualProtect', 'SystemFunction036', 'AbortSystemShutdownW', 'VarNeg'], ['FlushFileBuffers', 'SetStdHandle', 'SetEnvironmentVariableA', 'CompareStringW', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'CompareStringA', 'Sleep', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'GetProcAddress', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'RtlUnwind', 'GetLastError', 'SetConsoleCtrlHandler', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RaiseException', 'MultiByteToWideChar', 'CloseHandle', 'MessageBoxA', 'LoadIconA', 'ReleaseDC', 'GetDC', 'GetSystemMetrics', 'RedrawWindow', 'LoadIconW', 'DrawIcon', 'InvalidateRect', 'DeleteObject'], ['OutputDebugStringA', 'lstrcpynW', 'UnmapViewOfFile', 'MultiByteToWideChar', 'MapViewOfFile', 'CloseHandle', 'CreateFileMappingW', 'GetFileSize', 'CreateFileW', 'lstrlenW', 'GetCommandLineW', 'ExitProcess', 'Sleep', 'DeleteFileW', 'SetFileAttributesW', 'GetFileAttributesW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetTempPathW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'GetTickCount', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'ReadFile', 'WriteFile', 'SetFileTime', 'SetFilePointer', 'MessageBoxA', 'wvsprintfA', 'wsprintfW', 'PostMessageW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW'], ['GetLocaleInfoW', 'SetEndOfFile', 'CreateFileA', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'ReadFile', 'FindResourceA', 'IsBadReadPtr', 'SetStdHandle', 'GetStringTypeW', 'GetStringTypeA', 'GetTimeZoneInformation', 'GetProcAddress', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'LoadResource', 'SizeofResource', 'GetTickCount', 'GetModuleFileNameA', 'IsBadCodePtr', 'GetLastError', 'IsValidCodePage', 'IsValidLocale', 'IsBadWritePtr', 'EnterCriticalSection', 'Sleep', 'InitializeCriticalSection', 'InterlockedExchange', 'DeleteCriticalSection', 'LeaveCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CreateThread', 'GetCurrentThreadId', 'TlsSetValue', 'TlsGetValue', 'ExitThread', 'RtlUnwind', 'GetFileAttributesA', 'RaiseException', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'CompareStringA', 'CompareStringW', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'TlsAlloc', 'SetLastError', 'UnhandledExceptionFilter', 'CloseHandle', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'SetUnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'SetEnvironmentVariableA', 'GetAsyncKeyState', 'LoadImageA', 'GetDC', 'SetCursorPos', 'DefWindowProcA', 'LoadIconA', 'LoadCursorA', 'MessageBoxA', 'GetSystemMetrics', 'CreateWindowExA', 'SetWindowPos', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'RegisterClassExA', 'SelectObject', 'BitBlt', 'DeleteObject', 'DeleteDC', 'CreateCompatibleDC', 'ShellExecuteA', 'SHGetSpecialFolderPathA'], ['BitBlt', 'SetPixel', 'StretchBlt', 'AddAtomA', 'Beep', 'EnumResourceNamesA', 'ExitProcess', 'FindAtomA', 'GetAtomNameA', 'GetCommandLineA', 'GetModuleHandleA', 'GetStartupInfoA', 'LoadLibraryA', 'LocalAlloc', 'SetUnhandledExceptionFilter', 'Sleep', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_assert', '_beginthreadex', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'free', 'malloc', 'memset', 'rand', 'signal', 'sin', 'system', 'DrawIcon', 'FindWindowA', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetSystemMetrics', 'GetWindowDC', 'GetWindowRect', 'LoadIconA', 'MessageBoxA', 'ShowWindow'], ['GetModuleHandleA', 'LoadLibraryA', 'AllocConsole', 'CloseHandle', 'HeapCreate', 'HeapDestroy', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'Sleep', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'FlushInstructionCache', 'VirtualProtect', 'GetModuleHandleW', 'GetProcAddress', 'CreateToolhelp32Snapshot', 'Thread32First', 'Thread32Next', 'GetSystemInfo', 'VirtualAlloc', 'VirtualFree', 'VirtualQuery', 'RaiseException', 'MultiByteToWideChar', 'IsDebuggerPresent', 'FreeLibrary', 'WideCharToMultiByte', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetLastError', 'GetProcessHeap', '?_Xlength_error@std@@YAXPEBD@Z', '__std_type_info_destroy_list', '_CxxThrowException', '__C_specific_handler_noexcept', 'memset', 'memcpy', '__std_exception_copy', '__std_exception_destroy', '__vcrt_GetModuleFileNameW', '__C_specific_handler', '__vcrt_LoadLibraryExW', 'memmove', '_execute_onexit_table', '_initialize_onexit_table', '_initialize_narrow_environment', '_configure_narrow_argv', '_seh_filter_dll', '_cexit', '_invalid_parameter_noinfo_noreturn', '_initterm_e', '_initterm', 'malloc', 'free', '_callnewh', 'strcat_s', 'strcpy_s'], ['GetObjectA', 'GetTextMetricsA', 'SelectObject', 'GetStockObject', 'CreateFontIndirectA', 'DispatchMessageA', 'GetWindowLongA', 'GetKeyState', 'PostMessageA', 'CallWindowProcA', 'GetDC', 'ReleaseDC', 'GetSystemMetrics', 'SetWindowPos', 'GetClientRect', 'SendMessageA', 'SetWindowLongA', 'SetFocus', 'SetWindowTextA', 'PostQuitMessage', 'DefWindowProcA', 'LoadIconA', 'LoadCursorA', 'LoadImageA', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'TerminateProcess', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'FlushFileBuffers', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'SetStdHandle', 'LoadLibraryA', 'GetProcAddress', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'SetFilePointer', 'GetLastError', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'GetEnvironmentStringsW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'HeapDestroy', 'SetHandleCount', 'GetFileType', 'HeapFree', 'HeapCreate', 'VirtualFree', 'RtlUnwind'], ['FreeLibrary', 'GetModuleHandleA', 'RtlUnwind', 'VirtualFree', 'lstrcmpiA', 'lstrlenA', '__GetMainArgs', '_sleep', 'exit', 'raise', 'signal'], ['GetACP', 'GetCPInfo', 'GetOEMCP', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'MultiByteToWideChar', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'LocalAlloc', 'LocalFree', 'ExitProcess', 'WinExec', 'CreateThread', 'TerminateThread', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'GetProcessHeap', 'HeapAlloc', 'Sleep', 'VirtualAlloc', 'HeapFree', 'GetLastError', 'FlushFileBuffers', 'RtlUnwind', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetVersionExA', 'GetEnvironmentVariableA', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'InterlockedIncrement', 'GetModuleFileNameA', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'ShowWindow', 'FindWindowA', 'ChangeDisplaySettingsA', 'EnumDisplaySettingsA', 'ReleaseDC', 'LoadIconA', 'LoadCursorA', 'DrawIcon', 'FindWindowExA', 'SendMessageA', 'GetWindowRect', 'SetWindowPos', 'MessageBoxA', 'GetSystemMetrics', 'GetDC', 'CreateEllipticRgn', 'DeleteDC', 'Ellipse', 'CreateSolidBrush', 'FillRgn', 'StretchBlt', 'CreateFontIndirectA', 'SetBkMode', 'CreatePen', 'PolyBezier', 'SetBkColor', 'SetTextColor', 'CreateFontA', 'TextOutA', 'CreatePolygonRgn', 'SelectClipRgn', 'PatBlt', 'PlgBlt', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'BitBlt', 'DeleteObject', 'CreateRectRgn', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutReset', 'waveOutUnprepareHeader', 'AlphaBlend'], ['GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'GetCommandLineA', 'GetVersionExA', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'RtlUnwind', 'GetLocaleInfoA', 'VirtualProtect', 'GetSystemInfo', 'VirtualQuery'], ['LoadLibraryA', 'GetProcAddress', 'GetModuleHandleA', 'OpenClipboard', 'GetClipRgn', 'midiStreamRestart', 'ClosePrinter', 'RegCloseKey', 'ShellExecuteA', 'OleUninitialize', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ioctlsocket', 'GetFileTitleA', 'GetModuleInformation'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'ExitProcess', 'MessageBoxA'], ['ExpandEnvironmentStringsA', 'GetTickCount', 'ExitProcess', 'GetModuleFileNameA', 'GetVersionExA', 'GetVersion', 'CreateFileA', 'GetFileSize', 'WriteFile', 'GetCurrentProcess', 'CloseHandle', 'GetLocalTime', 'GlobalAlloc', 'GlobalFree', 'GetModuleHandleA', 'GetLastError', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'SetStdHandle', 'ReadFile', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapReAlloc', 'SetEnvironmentVariableA', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetCommandLineA', 'GetStartupInfoA', 'WideCharToMultiByte', 'GetSystemTime', 'GetTimeZoneInformation', 'HeapAlloc', 'HeapFree', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'OpenSCManagerA', 'CreateServiceA', 'OpenServiceA', 'CloseServiceHandle', 'RegSetValueExA', 'StartServiceA', 'RegCreateKeyA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'StartServiceCtrlDispatcherA', 'NtReadVirtualMemory', 'NtQueryVirtualMemory', 'RtlUnwind', '_stricmp', 'NtEnumerateValueKey', 'NtQuerySystemInformation', 'NtCreateSection', 'NtMapViewOfSection', 'NtUnmapViewOfSection', 'NtCreateFile', 'NtOpenKey', 'NtQueryObject', 'RtlCompareUnicodeString', 'NtOpenThread', 'NtSuspendThread', 'NtClose', 'NtOpenProcess', 'NtResumeThread', 'NtQueryInformationThread', 'RtlRunDecodeUnicodeString', 'RtlInitUnicodeString', 'NtFlushInstructionCache', 'NtProtectVirtualMemory', 'NtAllocateVirtualMemory', 'NtWriteVirtualMemory', 'NtFreeVirtualMemory', 'NtQueryInformationProcess', 'LdrGetProcedureAddress', 'RtlAnsiStringToUnicodeString', 'LdrGetDllHandle', 'RtlFreeUnicodeString', 'RtlFreeAnsiString', 'RtlUnicodeStringToAnsiString', 'LdrFindResource_U', 'LdrAccessResource', 'RtlInitAnsiString'], ['Sleep', 'GetCurrentThreadId', 'GetModuleFileNameA', 'SetEndOfFile', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'CloseHandle', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetTimeZoneInformation', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'SetFilePointerEx', 'ReadFile', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'EnumSystemLocalesW', 'WriteFile', 'CreateThread', 'CreateFileA', 'ExitProcess', 'GetCurrentProcess', 'GetConsoleWindow', 'lstrlenW', 'GlobalFree', 'GetACP', 'GlobalAlloc', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'GetModuleHandleExW', 'ResumeThread', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'DuplicateHandle', 'WaitForSingleObjectEx', 'SwitchToThread', 'GetCurrentThread', 'GetExitCodeThread', 'GetNativeSystemInfo', 'GetLastError', 'FormatMessageW', 'WideCharToMultiByte', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetModuleHandleW', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'IsDebuggerPresent', 'RaiseException', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'InitializeSListHead', 'GetStartupInfoW', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'CreateTimerQueue', 'SetEvent', 'SignalObjectAndWait', 'SetThreadPriority', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'RegisterWaitForSingleObject', 'UnregisterWait', 'OutputDebugStringW', 'GetThreadTimes', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryExW', 'GetVersionExW', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'SetProcessAffinityMask', 'ReleaseSemaphore', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'UnregisterWaitEx', 'WaitForMultipleObjectsEx', 'LoadLibraryW', 'WaitForSingleObject', 'RtlUnwind', 'ExitThread', 'GetDesktopWindow', 'EnumChildWindows', 'ShowWindow', 'SendMessageTimeoutW', 'ExitWindowsEx', 'ReleaseDC', 'MoveWindow', 'GetWindowRect', 'SystemParametersInfoA', 'LoadIconA', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetCursorPos', 'SetCursorPos', 'GetActiveWindow', 'GetDC', 'GetForegroundWindow', 'DrawIcon', 'GetSystemMetrics', 'SetWindowPos', 'CloseWindow', 'MessageBoxA', 'IsWindowVisible', 'BitBlt', 'StretchBlt', 'RegOpenKeyExA', 'RegCloseKey', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'OpenProcessToken', 'RegSetValueExA', 'SHGetSpecialFolderPathA', 'NtSetInformationProcess', 'RtlCaptureStackBackTrace', 'RtlAdjustPrivilege', 'URLDownloadToFileA', 'mciSendCommandA'], ['GetModuleHandleA', 'GetProcAddress', 'NetUserAdd', 'RtlGetVersion', 'GetDC', 'BitBlt', 'FreeSid', 'ShellExecuteW', 'CoTaskMemFree', 'BCryptGenRandom', 'wcsstr', 'wmemcpy_s', 'exit', '__setusermatherr', '_set_fmode', '_configthreadlocale', '_set_new_mode'], ['SHGetFolderPathA', 'DeleteFileA', 'GetModuleFileNameA', 'CopyFileA', 'RtlUnwind', 'RtlZeroMemory', 'Sleep', 'CreateProcessA', 'MessageBoxA', 'wsprintfA', 'PathAppendA', 'PathFindFileNameA', 'WSCWriteProviderOrder', 'WSCInstallProvider', 'WSCEnumProtocols', '_iob', '_itoa', '__GetMainArgs', 'abort', 'exit', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'raise', 'signal', 'strcat', 'wcscpy'], ['AddAtomA', '__C_specific_handler', 'MessageBoxW', 'GetInterfaceInfo', 'GetMappedFileNameW', 'RegSetValueExA', 'SHGetFolderPathW'], ['GetLocalTime', 'GetTimeZoneInformation', 'ReadFile', 'DeleteFileA', 'VirtualAlloc', 'VirtualFree', 'TerminateThread', 'GetProcAddress', 'ExitProcess', 'GetLastError', 'GetSystemTime', 'Sleep', 'CreateMutexA', 'LoadLibraryA', 'GetModuleHandleA', 'GetCommandLineA', 'SetCurrentDirectoryA', 'WriteFile', 'CloseHandle', 'GetTickCount', 'CreateFileA', 'ExitThread', 'GetModuleFileNameA', 'ExpandEnvironmentStringsA', 'ReleaseMutex', 'SetFilePointer', 'HttpOpenRequestA', 'HttpSendRequestA', 'HttpQueryInfoA', 'InternetReadFile', 'InternetConnectA', 'InternetCloseHandle', 'InternetOpenA', 'ControlService', 'OpenSCManagerA', 'OpenServiceW', 'CloseServiceHandle', 'RtlRandom', 'strstr', 'atoi', 'strncpy', '_chkstk', 'memset', 'memcpy', '_itoa', 'sprintf', '_stricmp', 'inet_addr', 'gethostname'], ['exit', 'printf', 'fclose', 'fwrite', 'fopen', 'strtoul', 'strncpy', '_exit', '_XcptFilter', '__p___initenv', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_controlfp'], ['CloseHandle', 'CreateThread', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'GetCurrentProcess', 'GetStdHandle', 'FillConsoleOutputCharacterW', 'FillConsoleOutputAttribute', 'GetProcAddress', 'GetModuleHandleW', 'CreateFileW', 'SetConsoleTitleW', 'Sleep', 'ExitProcess', 'GetConsoleWindow', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'LocalAlloc', 'SetFilePointer', 'SetConsoleCursorPosition', 'WriteFile', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'DrawMenuBar', 'MessageBoxW', 'GetSystemMenu', 'DeleteMenu', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LookupPrivilegeValueW', '?id@?$ctype@D@std@@2V0locale@2@A', '?_Xlength_error@std@@YAXPBD@Z', '?_Ipfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE_N_N@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?sgetc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?getloc@ios_base@std@@QBE?AVlocale@2@XZ', '?_Getcat@?$ctype@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', '??Bid@locale@std@@QAEIXZ', '?cin@std@@3V?$basic_istream@DU?$char_traits@D@std@@@1@A', '??1_Lockit@std@@QAE@XZ', '??0_Lockit@std@@QAE@H@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ', '?snextc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ', '__CxxFrameHandler3', '__std_terminate', 'memcpy', '_except_handler4_common', '__std_exception_copy', 'memset', '__std_exception_destroy', '_CxxThrowException', 'memmove', '__stdio_common_vfprintf', '__acrt_iob_func', '_set_fmode', '__p__commode', '_c_exit', '_initterm', 'system', '_initialize_onexit_table', '_register_onexit_function', '_cexit', '_crt_atexit', '_exit', '_controlfp_s', 'terminate', '_get_initial_narrow_environment', '_invalid_parameter_noinfo_noreturn', '__p___argv', '_register_thread_local_exe_atexit_callback', '_initialize_narrow_environment', '_configure_narrow_argv', '__p___argc', '_set_app_type', '_seh_filter_exe', 'exit', '_initterm_e', '_callnewh', 'malloc', 'free', '_set_new_mode', '__setusermatherr', '_configthreadlocale'], ['GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'SetConsoleTitleA', 'GetStdHandle', 'GetModuleHandleA', 'FillConsoleOutputAttribute', 'GetProcAddress', 'GetConsoleWindow', 'SetConsoleCursorPosition', 'FillConsoleOutputCharacterA', 'ExitProcess', 'SetFileAttributesA', 'CreateThread', 'CloseHandle', 'DeleteFileA', 'GetSystemDirectoryA', 'CreateFileA', 'Sleep', 'GetCurrentThreadId', 'FindClose', 'LocalAlloc', 'SetFilePointer', 'FindNextFileA', 'DeviceIoControl', 'WriteFile', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'GetLastError', 'SetLastError', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'InitializeSListHead', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'GetFileAttributesExW', 'HeapReAlloc', 'HeapSize', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'CreateFileW', 'SetEndOfFile', 'WriteConsoleW', 'FindFirstFileA', 'RtlUnwind', 'GetDC', 'DeleteMenu', 'RedrawWindow', 'DrawMenuBar', 'GetSystemMenu', 'GetDesktopWindow', 'CallNextHookEx', 'GetSystemMetrics', 'SetWindowsHookExA', 'MessageBoxA', 'UnhookWindowsHookEx', 'GetWindowDC', 'BitBlt', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'CreatePatternBrush', 'SetTextColor', 'TextOutA', 'SetBkColor', 'Ellipse', 'DeleteObject', 'AdjustTokenPrivileges', 'CryptAcquireContextA', 'CryptGenRandom', 'LookupPrivilegeValueA', 'OpenProcessToken', 'SHGetSpecialFolderPathA'], ['lstrcmpiA', 'GetProcAddress', 'RemoveDirectoryA', 'CopyFileA', 'FindClose', 'LoadLibraryA', 'Process32Next', 'LocalAlloc', 'GetModuleFileNameA', 'FindNextFileA', 'CreateToolhelp32Snapshot', 'GetCurrentThreadId', 'CloseHandle', 'LocalFree', 'GetLastError', 'CreateThread', 'SetStdHandle', 'WriteConsoleW', 'LoadLibraryW', 'HeapReAlloc', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'lstrlenW', 'FindFirstFileA', 'lstrcmpW', 'ReadFile', 'TerminateProcess', 'Sleep', 'OpenProcess', 'WriteFile', 'Process32First', 'SetFilePointerEx', 'GetCurrentProcess', 'lstrlenA', 'SetPriorityClass', 'lstrcmpA', 'CreateFileA', 'GetCommandLineW', 'DeleteFileA', 'ExitProcess', 'GetACP', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'CreateFileW', 'GetConsoleCP', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'GetLocaleInfoW', 'HeapSize', 'LoadIconA', 'CallNextHookEx', 'GetWindowDC', 'ExitWindowsEx', 'MessageBoxA', 'SetWindowsHookExA', 'GetDesktopWindow', 'GetCursorPos', 'UnhookWindowsHookEx', 'GetSystemMetrics', 'DrawIcon', 'StretchBlt', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyA', 'RegEnumValueA', 'CryptGenRandom', 'RegOpenKeyExA', 'CryptAcquireContextA', 'RegCreateKeyExA', 'LookupPrivilegeValueA', 'RegEnumKeyExA', 'RegOpenKeyW', 'RegSetValueExA', 'RegCreateKeyW', 'OpenProcessToken', 'RegSetValueExW', 'ShellExecuteExA', 'ShellExecuteA', 'CommandLineToArgvW', 'GetProcessImageFileNameA'], ['GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'DeleteFileW', 'CloseHandle', 'GetFileType', 'GetSystemInfo', 'GetStringTypeW', 'GetCommandLineA', 'MoveFileA', 'VirtualFree', 'GetConsoleMode', 'RemoveDirectoryW', 'GetFileAttributesA', 'SetLastError', 'SizeofResource', 'CreateProcessW', 'Module32Next', 'GetStartupInfoA', 'InterlockedIncrement', 'GetDriveTypeA', 'CopyFileW', 'TlsFree', 'CopyFileExA', 'SetErrorMode', 'DeleteFileA', 'RemoveDirectoryA', 'CompareStringA', 'FileTimeToSystemTime', 'MapViewOfFile', 'InterlockedCompareExchange', 'HeapReAlloc', 'FindFirstFileExW', 'GetModuleHandleW', 'QueryPerformanceFrequency', 'GetLongPathNameW', 'CopyFileExW', 'SetHandleCount', 'GetProcessTimes', 'InitializeCriticalSection', 'GetFileSize', 'GetFileAttributesExW', 'InterlockedExchange', 'SetEnvironmentVariableA', 'WriteConsoleW', 'GetStdHandle', 'IsDebuggerPresent', 'FindClose', 'LeaveCriticalSection', 'SetFilePointer', 'FindFirstChangeNotificationA', 'MoveFileW', 'FindResourceA', 'GetFileAttributesW', 'TzSpecificLocalTimeToSystemTime', 'SetUnhandledExceptionFilter', 'MoveFileExW', 'GetTempPathW', 'CreateDirectoryExA', 'GetProcAddress', 'GetEnvironmentStringsW', 'EnterCriticalSection', 'MoveFileWithProgressA', 'LoadLibraryA', 'FlushFileBuffers', 'QueryPerformanceCounter', 'LocalFree', 'SetEndOfFile', 'FreeEnvironmentStringsA', 'WriteFile', 'CreateFileA', 'CopyFileA', 'FindFirstFileExA', 'CreateDirectoryA', 'CreateThread', 'FindFirstFileW', 'LoadLibraryExA', 'SearchPathA', 'SetStdHandle', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'TlsGetValue', 'GetDateFormatW', 'GlobalFree', 'FindNextFileW', 'Module32First', 'VirtualQuery', 'CreateDirectoryExW', 'GetStringTypeA', 'FindFirstFileA', 'OpenEventA', 'GetTimeFormatW', 'DeleteCriticalSection', 'FreeLibrary', 'CreateEventA', 'GetCPInfo', 'MoveFileWithProgressW', 'WaitForSingleObject', 'SetFileAttributesW', 'GetVersion', 'GetSystemDirectoryA', 'HeapAlloc', 'GetCurrentProcess', 'GetCurrentThreadId', 'LoadLibraryW', 'GetCurrentProcessId', 'GetOEMCP', 'GetVersionExA', 'OutputDebugStringA', 'TlsAlloc', 'GetModuleFileNameW', 'FindNextFileA', 'ReleaseMutex', 'FormatMessageA', 'GetUserDefaultLCID', 'ReadFile', 'LockResource', 'RtlUnwind', 'GetConsoleCP', 'SetFileAttributesA', 'GetCurrentThread', 'GetShortPathNameA', 'ExitProcess', 'IsValidCodePage', 'DeviceIoControl', 'SetThreadPriority', 'CreateFileW', 'TlsSetValue', 'LoadResource', 'RaiseException', 'LCMapStringW', 'HeapDestroy', 'CompareStringW', 'SystemTimeToTzSpecificLocalTime', 'GetLocaleInfoA', 'GetThreadPriority', 'LCMapStringA', 'GetProcessHeap', 'GetTempPathA', 'FindFirstChangeNotificationW', 'GetShortPathNameW', 'WaitForMultipleObjects', 'ResetEvent', 'DebugBreak', 'HeapSize', 'HeapFree', 'SetEvent', 'GetEnvironmentStringsA', 'OpenMutexA', 'InterlockedDecrement', 'LoadLibraryExW', 'GetTimeFormatA', 'GetLastError', 'GetLongPathNameA', 'GetFileAttributesExA', 'GetSystemDefaultLCID', 'GetACP', 'GetModuleFileNameA', 'CreateFileMappingA', 'CreateToolhelp32Snapshot', 'MoveFileExA', 'CreateMutexA', 'HeapCreate', 'GlobalAlloc', 'CreateProcessA', 'GetConsoleOutputCP', 'Sleep', 'UnmapViewOfFile', 'CreateFontIndirectA', 'SetBkMode', 'GetKerningPairsA', 'CreateCompatibleDC', 'DeleteDC', 'GetGlyphOutlineW', 'DeleteObject', 'TextOutW', 'GetTextExtentPoint32W', 'CreateDIBSection', 'TextOutA', 'GetGlyphOutlineA', 'GetICMProfileA', 'Rectangle', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'CreatePen', 'SelectObject', 'ExtTextOutA', 'GetStockObject', 'ExtTextOutW', 'GetSaveFileNameW', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetOpenFileNameW', 'CryptAcquireContextA', 'ReportEventA', 'RegSetValueExA', 'CryptDeriveKey', 'CryptDecrypt', 'RegCreateKeyExW', 'RegEnumKeyExA', 'RegQueryValueExA', 'RegOpenKeyExW', 'RegisterEventSourceA', 'CryptCreateHash', 'CryptHashData', 'RegSetValueExW', 'RegCloseKey', 'RegEnumValueA', 'RegOpenKeyExA', 'CryptReleaseContext', 'RegEnumKeyExW', 'DeregisterEventSource', 'RegEnumValueW', 'CryptEncrypt', 'RegCreateKeyExA', 'RegQueryValueExW', 'CheckTokenMembership', 'DefWindowProcA', 'SendMessageA', 'ReleaseCapture', 'SetFocus', 'GetWindowTextLengthA', 'GetClientRect', 'CallWindowProcA', 'FlashWindowEx', 'SetCursor', 'EnumThreadWindows', 'DefWindowProcW', 'GetWindowLongA', 'MessageBoxA', 'GetWindowTextLengthW', 'CallWindowProcW', 'CreateWindowExA', 'MsgWaitForMultipleObjects', 'SetMenuItemInfoW', 'IsDialogMessageA', 'LoadCursorA', 'EnableWindow', 'SetWindowLongA', 'GetMenuItemInfoW', 'RegisterClassW', 'UnhookWindowsHookEx', 'GetAsyncKeyState', 'CreateDialogParamA', 'SystemParametersInfoA', 'PostQuitMessage', 'InsertMenuItemA', 'SetWindowPos', 'DialogBoxIndirectParamA', 'GetDC', 'GetDlgItem', 'SetForegroundWindow', 'LoadImageA', 'GetActiveWindow', 'EndPaint', 'IsWindowVisible', 'RedrawWindow', 'DialogBoxParamW', 'AdjustWindowRectEx', 'AppendMenuA', 'BeginPaint', 'SetWindowLongW', 'GetFocus', 'GetWindowTextW', 'ShowWindow', 'IsIconic', 'GetWindowRect', 'SetDlgItemTextA', 'SetWindowTextA', 'SetDlgItemTextW', 'GetDesktopWindow', 'GetMenuItemInfoA', 'RegisterClassA', 'MessageBoxW', 'InsertMenuItemW', 'GetWindowLongW', 'GetClassInfoA', 'CreateDialogParamW', 'DispatchMessageA', 'ScreenToClient', 'AppendMenuW', 'GetSystemMetrics', 'GetTopWindow', 'GetWindowTextA', 'SendMessageW', 'SetCapture', 'EndDialog', 'SetWindowTextW', 'SetClassLongA', 'DialogBoxParamA', 'CallNextHookEx', 'PostMessageA', 'PeekMessageA', 'ReleaseDC', 'SetParent', 'SetWindowsHookExA', 'FindWindowExA', 'ClientToScreen', 'TranslateAcceleratorA', 'SetClassLongW', 'MessageBeep', 'GetClassNameA', 'GetCursor', 'UnregisterClassW', 'TranslateMessage', 'DestroyWindow', 'CreateWindowExW', 'SetActiveWindow', 'SetMenuItemInfoA', 'GetWindow', 'MoveWindow', 'GetParent', 'IsWindow', 'LoadIconA', 'UnregisterClassA', 'GetForegroundWindow', 'GetMenu', 'gethostbyname', 'FindMimeFromData', 'PropertySheetA', 'CreatePropertySheetPageW', 'InitCommonControlsEx', 'PropertySheetW', 'CreatePropertySheetPageA', 'mciSendCommandA', 'ShellExecuteA', 'ShellExecuteExA', 'SHGetMalloc', 'Shell_NotifyIconA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'DragQueryFileA', 'SHGetFileInfoW', 'SHFileOperationA', 'Shell_NotifyIconW', 'SHFileOperationW', 'SHGetPathFromIDListA', 'ShellExecuteW', 'SHGetPathFromIDListW', 'SHGetSpecialFolderPathW', 'DragQueryFileW', 'ShellExecuteExW', 'SHBrowseForFolderW', 'SHGetSpecialFolderPathA', 'InternetGetConnectedState', 'InternetSetOptionA', 'InternetCloseHandle', 'InternetOpenA', 'HttpQueryInfoA', 'InternetGetConnectedStateExA', 'InternetErrorDlg', 'HttpAddRequestHeadersA', 'HttpSendRequestA', 'InternetWriteFile', 'HttpSendRequestExA', 'HttpEndRequestA', 'HttpOpenRequestA', 'InternetReadFile', 'InternetCrackUrlA', 'InternetQueryOptionA', 'InternetSetStatusCallbackA', 'InternetConnectA'], ['CreateFileA', 'CreateFileW', 'SetFilePointer', 'WriteFile', 'CloseHandle', 'LocalAlloc', 'ReadFile', 'DecodePointer', 'GetConsoleMode', 'GetCurrentThreadId', 'IsDebuggerPresent', 'RaiseException', 'MultiByteToWideChar', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'GetProcAddress', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'GetModuleHandleExW', 'GetStdHandle', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'HeapValidate', 'GetSystemInfo', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'GetCurrentThread', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'ReadConsoleW', 'MessageBoxA'], ['CloseHandle', 'WriteFile', 'SetFilePointer', 'CreateFileA', 'lstrcpynA', 'lstrcmpA', 'lstrcpyA', 'lstrlenA', 'GetProcAddress', 'LoadLibraryA', 'LocalFree', 'wsprintfA', 'IsCharAlphaNumericA', 'GetErrorInfo', 'exit', '_controlfp', '??1type_info@@UAE@XZ', '_except_handler3', '__set_app_type', '__p__fmode', 'strlen', '__p__commode', 'strstr', '__CxxFrameHandler', '_CxxThrowException', '??3@YAXPAX@Z', '_exit', '_XcptFilter', 'memset', '__p___initenv', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv'], ['GetTickCount', 'GetLastError', 'LocalAlloc', 'VirtualProtect', 'CloseHandle', 'CreateFileA', 'HeapSize', 'GetCommandLineA', 'GetStartupInfoA', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RaiseException', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetModuleHandleA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SendMessageA', 'DlgDirListA', 'GetAltTabInfoW', 'GetSysColorBrush', 'UpdateWindow', 'DestroyWindow'], ['GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'LoadLibraryExW', 'SetConsoleCtrlHandler', 'FindClose', 'FindFirstFileExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'SetEndOfFile', 'GetProcAddress', 'GetModuleFileNameW', 'SetDllDirectoryW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'GetCommandLineA', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindNextFileW', 'SetStdHandle', 'DeleteFileW', 'ReadFile', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'HeapReAlloc', 'GetFileAttributesExW', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'WriteConsoleW', 'DecodePointer', 'ConvertSidToStringSidW', 'GetTokenInformation', 'OpenProcessToken', 'ConvertStringSecurityDescriptorToSecurityDescriptorW'], ['GetVersion', 'GetVersionExA', 'LoadIconA', 'GetTextMetricsA', 'waveOutUnprepareHeader', 'OpenPrinterA', 'RegSetValueExA', 'ShellExecuteA', 'CLSIDFromString', 'UnRegisterTypeLib', 'ImageList_Destroy', 'inet_ntoa', 'ChooseColorA', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetModuleHandleA', 'GetProcAddress', 'SysFreeString', 'RegCloseKey', 'CharNextA', 'SHGetFolderPathA'], ['WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum', 'htonl', 'WaitForMultipleObjects', 'CloseHandle', 'CreateThread', 'SetEvent', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'EnterCriticalSection', 'ResetEvent', 'CreateEventW', 'DeleteCriticalSection', 'CreateMutexW', 'CreateProcessW', 'GetCurrentProcess', 'SetHandleInformation', 'OpenProcess', 'GetLocaleInfoW', 'TerminateProcess', 'OpenMutexW', 'GetProcAddress', 'Process32FirstW', 'GetExitCodeThread', 'CreatePipe', 'Process32NextW', 'CreateFileW', 'CreateToolhelp32Snapshot', 'ReleaseMutex', 'GetVersion', 'GetVolumeInformationW', 'ExpandEnvironmentStringsW', 'GetLastError', 'GetModuleFileNameW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'SetEndOfFile', 'SetFilePointerEx', 'GetFileAttributesW', 'ReadFile', 'GetFileSizeEx', 'MoveFileW', 'DeleteFileW', 'SetFileAttributesW', 'IsDebuggerPresent', 'CopyFileW', 'Sleep', 'HeapSize', 'TerminateThread', 'WriteFile', 'GetTickCount', 'GetLogicalDrives', 'GetComputerNameW', 'WaitForSingleObject', 'LoadLibraryW', 'MultiByteToWideChar', 'RtlUnwind', 'GetModuleHandleA', 'UnhandledExceptionFilter', 'GetSystemTimeAsFileTime', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapCreate', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'GetStdHandle', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'IsProcessorFeaturePresent', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetShellWindow', 'GetWindowThreadProcessId', 'RegQueryValueExW', 'CryptDecrypt', 'CryptDestroyKey', 'CryptEncrypt', 'CryptImportKey', 'CryptGenRandom', 'CryptSetKeyParam', 'CryptAcquireContextW', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'DuplicateTokenEx', 'GetTokenInformation', 'OpenProcessToken', 'ShellExecuteExW'], ['OpenProcess', 'CreateToolhelp32Snapshot', 'Sleep', 'GetLastError', 'Process32NextW', 'GetCurrentThread', 'LoadLibraryA', 'GlobalAlloc', 'DeleteFileW', 'Process32FirstW', 'GetModuleHandleA', 'CloseHandle', 'HeapAlloc', 'GetWindowsDirectoryW', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetProcessHeap', 'FreeLibrary', 'CreateRemoteThread', 'VirtualFreeEx', 'GetVersionExW', 'CreateFileW', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetCommandLineW', 'SetLastError', 'HeapFree', 'GlobalFree', 'DecodePointer', 'WriteConsoleW', 'SetFilePointerEx', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'RtlUnwind', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetACP', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'WriteProcessMemory', 'SystemFunction036', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'ImpersonateSelf', 'OpenProcessToken', 'OpenThreadToken', 'LookupAccountSidW', 'GetTokenInformation', 'CommandLineToArgvW', 'ShellExecuteW'], ['FindAtomA', 'lstrlenA', 'ExitThread', 'GlobalAlloc', 'GetProcAddress', 'GetModuleHandleW', 'GlobalMemoryStatus', 'GetMailslotInfo', 'GetCPInfo', 'GetSystemTimeAdjustment', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'UpdateWindow', 'FindWindowW', 'ShowWindow'], ['GetFileType', 'GetFileInformationByHandle', 'GetThreadTimes', 'GetProcessTimes', 'TerminateThread', 'GetProcessId', 'GetLongPathNameA', 'GetThreadSelectorEntry', 'GetProcessHandleCount', 'lstrlenA', 'GetMailslotInfo', 'GetModuleHandleA', 'GlobalAlloc', 'VirtualProtect', 'CloseHandle', 'GetTickCount', 'GetProcessWorkingSetSize', 'TerminateProcess', 'FlushFileBuffers', 'WriteConsoleW', 'RaiseException', 'RtlUnwind', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'DecodePointer', 'IsProcessorFeaturePresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetProcAddress', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'HeapSize', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LoadLibraryW', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'HeapReAlloc', 'SetStdHandle', 'CreateFileW', 'SetScrollRange', 'EnableScrollBar', 'PostMessageA', 'FillPath', 'StretchBlt', 'SetRectRgn', 'BeginPath', 'InitiateSystemShutdownA', 'OpenEventLogW', 'GradientFill'], ['GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoA', 'MultiByteToWideChar', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'CreateFileA', 'CloseHandle', 'CreateToolhelp32Snapshot', 'GetModuleHandleA', 'Process32NextW', 'LocalAlloc', 'GetLocalTime', 'GetProcAddress', 'GetLastError', 'lstrcatA', 'GetModuleFileNameW', 'FileTimeToSystemTime', 'LoadLibraryW', 'FreeEnvironmentStringsA', 'Sleep', 'GetFileType', 'SetHandleCount', 'InitializeCriticalSection', 'LoadLibraryA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'GetCurrentThreadId', 'SetLastError', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetVersionExA', 'HeapFree', 'GetCommandLineA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'GetProcessHeap', 'SystemTimeToFileTime', 'HeapAlloc', 'lstrlenA', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'EndDeferWindowPos', 'GetClassLongA', 'SetClipboardData', 'UpdateWindow', 'GetDialogBaseUnits', 'BroadcastSystemMessageA', 'IsWindow', 'ShowWindow', 'SetWindowPos', 'GetDesktopWindow', 'DefWindowProcA', 'MoveWindow', 'CharToOemA', 'OpenClipboard', 'GetWindow', 'LoadCursorA', 'EndPaint', 'CloseClipboard', 'SetWindowRgn', 'GetWindowRect', 'SendDlgItemMessageA', 'GetKeyState', 'CopyImage', 'GetParent', 'LoadIconA', 'GetClientRect', 'GetDC', 'MessageBoxA', 'GetWindowLongA', 'CreateWindowExA', 'ReleaseDC', 'EmptyClipboard', 'SetClassLongA', 'EndDialog', 'CreateEllipticRgn', 'PatBlt', 'DeleteDC', 'CreateHalftonePalette', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CombineRgn', 'CreateCompatibleBitmap', 'Rectangle', 'SetStretchBltMode', 'CreateRectRgn', 'CreatePatternBrush', 'CreatePen', 'GetStockObject', 'CreateSolidBrush', 'RegOpenKeyExW', 'GetTokenInformation', 'InitializeSecurityDescriptor', 'AllocateAndInitializeSid', 'GetUserNameW', 'SetEntriesInAclW', 'SHGetDesktopFolder', 'SHFileOperationA', 'SHChangeNotify', 'SHGetMalloc', 'StgOpenStorage', 'WSASocketA', 'getsockopt', 'closesocket', 'WSALookupServiceEnd', 'WSACleanup', 'WSAGetLastError', 'WSAStartup', 'NetUserGetInfo', 'NetApiBufferFree', 'waveInGetNumDevs', 'waveInGetDevCapsA', 'PathRemoveFileSpecW', 'StrRetToBufA', 'glBlendFunc', 'glLightfv', 'glEnable', 'DCICreateOverlay', 'DCICreateOffscreen', 'DCIBeginAccess'], ['VirtualAlloc', 'GetCPInfo', 'GetOEMCP', 'HeapAlloc', 'lstrcmpiW', 'GetCurrentProcess', 'lstrcpynW', 'GetCommandLineA', 'lstrcmpW', 'FreeEnvironmentStringsA', 'HeapFree', 'GetProcessHeap', 'GetStartupInfoA', 'GetEnvironmentVariableW', 'GetEnvironmentStringsA', 'ShowStartGlass', 'EndPaint', 'IsIconic', 'GetWindowTextA', 'SetCursor', 'BeginPaint', 'GetCursorPos', 'SysStringLen', 'VariantChangeTypeEx', 'SysAllocStringLen', 'VarI1FromR8', 'SafeArrayGetDim', 'VarDecMul', 'VarBstrFromR8', 'VarUI8FromI2', 'VarDateFromI1', 'VariantClear', 'UnRegisterTypeLib', 'VarTokenizeFormatString', 'VariantCopyInd', 'CreateTypeLib2', 'VarI2FromI8', 'VarR8Round', 'VarUI4FromUI8'], ['GetDeviceCaps', 'SetTextAlign', 'GetStretchBltMode', 'GetFontLanguageInfo', 'SetTextJustification', 'GetRandomRgn', 'GetPixelFormat', 'GetCurrentObject', 'UpdateColors', 'GetTextAlign', 'GetTextCharset', 'GetTextCharsetInfo', 'GetFontUnicodeRanges', 'SetSystemPaletteUse', 'SetTextColor', 'GetBkColor', 'GetNearestColor', 'GetDCBrushColor', 'GetTextColor', 'GetSystemPaletteUse', 'SetPixel', 'GetPolyFillMode', 'GetDCPenColor', 'GetMapMode', 'GetClipRgn', 'GetNearestPaletteIndex', 'GetMetaRgn', 'SetTextCharacterExtra', 'GetTextCharacterExtra', 'GetGraphicsMode', 'GetModuleHandleA', 'GetProcAddress', 'LoadResource', 'FindResourceA', 'GetDriveTypeA', 'WriteFile', 'LocalFlags', 'IsProcessorFeaturePresent', 'GetFileTime', 'LockResource', 'DeleteFileA', 'GlobalSize', 'SizeofResource', 'MoveFileA', 'GetProcessId', 'GlobalFlags', 'FindClose', 'GetProcessHeap', 'SetFilePointer', 'GetFileType', 'GetVersion', 'GlobalHandle', 'GetCurrentThreadId', 'GetTickCount', 'GetCurrentProcessId', 'IsDebuggerPresent', 'GetCurrentProcess', 'GetLastError', 'QueryPerformanceCounter', 'LocalAlloc', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetEndOfFile', 'CreateProcessA', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateFileA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetLocaleInfoW', 'GetStringTypeW', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'HeapSize', 'GetFileAttributesA', 'GetTimeZoneInformation', 'SetHandleCount', 'ReadFile', 'CloseHandle', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'FreeLibrary', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FindFirstFileA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'HeapAlloc', 'GetModuleHandleW', 'ExitProcess', 'HeapReAlloc', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetFullPathNameA', 'GetCurrentDirectoryA', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'GetStdHandle', 'GetModuleFileNameA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CheckDlgButton', 'GetWindowContextHelpId', 'IsWindowEnabled', 'ShowWindow', 'GetPropA', 'GetDialogBaseUnits', 'GetDlgItemInt', 'WindowFromDC', 'GetDlgItem', 'EndPaint', 'PostMessageA', 'GetMenuContextHelpId', 'GetDC', 'GetMenuState', 'IsWindowUnicode', 'GetWindowDC', 'EnableWindow', 'GetForegroundWindow', 'GetCursor', 'BeginPaint', 'EndDialog', 'GetScrollPos', 'GetKeyboardType', 'GetWindowLongA', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenuItemID', 'RemovePropA', 'GetMenu', 'SetFocus', 'DrawTextA', 'LoadIconA', 'GetQueueStatus', 'CallWindowProcA', 'GetInputState', 'SendMessageA', 'MoveWindow', 'SetWindowTextA', 'SetDlgItemTextA'], ['htonl', 'sendto', 'ioctlsocket', 'gethostbyname', 'WSAStartup', 'htons', 'socket', 'bind', 'select', 'WSAGetLastError', 'closesocket', '__WSAFDIsSet', 'recvfrom', 'ntohl', 'GetStringTypeA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetEndOfFile', 'LoadLibraryA', 'CreateFileA', 'SetFilePointer', 'ReadFile', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'GetEnvironmentStringsW', 'GetModuleFileNameA', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetSystemTimeAsFileTime', 'GetLastError', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'HeapFree', 'GetCommandLineA', 'GetVersion', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'MultiByteToWideChar', 'GetStringTypeW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'CloseHandle', 'WriteFile', 'UnhandledExceptionFilter', 'GetProcAddress', 'GetModuleHandleA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings'], ['GetComputerNameA', 'IsDBCSLeadByte', 'WriteFile', 'ReadFile', 'GetTempFileNameA', 'MultiByteToWideChar', 'CopyFileA', 'SetFileAttributesA', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'SetEndOfFile', 'LocalAlloc', 'GetTempPathA', 'DeleteFileA', 'WideCharToMultiByte', 'CreateProcessA', 'GetSystemDirectoryA', 'GetCurrentProcess', 'SystemTimeToFileTime', 'GetSystemTime', 'GetVersionExA', 'GetVersion', 'WaitForSingleObject', 'GetCommandLineA', 'ExpandEnvironmentStringsA', 'GetDriveTypeA', 'CreateThread', 'GetCurrentProcessId', 'GetLocalTime', 'LocalFree', 'GetLastError', 'SetFilePointer', 'GetFileTime', 'GetFileSize', 'FreeLibrary', 'LoadLibraryA', 'UnmapViewOfFile', 'CreateFileA', 'Process32First', 'CreateFileMappingA', 'MapViewOfFile', 'CreateToolhelp32Snapshot', 'Process32Next', 'GetModuleFileNameA', 'ReadProcessMemory', 'Module32First', 'OpenProcess', 'CloseHandle', 'TerminateProcess', 'Sleep', 'SetFileTime', 'GetTickCount', 'GetProcAddress', 'LCMapStringW', 'LCMapStringA', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'GetStringTypeW', 'GetStringTypeA', 'RtlUnwind', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'GetModuleHandleA', 'GetStartupInfoA', 'ExitProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'SetHandleCount', 'HeapFree', 'HeapAlloc', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'OpenSCManagerA', 'StartServiceCtrlDispatcherA', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegSetValueExA', 'RegQueryValueExA', 'RegCreateKeyA', 'RegConnectRegistryA', 'OpenProcessToken', 'StartServiceA', 'AllocateAndInitializeSid', 'EqualSid', 'GetTokenInformation', 'RegisterServiceCtrlHandlerA', 'OpenServiceA', 'FreeSid', 'CloseServiceHandle', 'RegEnumValueA', 'CreateServiceA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteValueA', 'SetServiceStatus', 'RegCloseKey', 'gethostbyname', 'closesocket', 'WSACleanup', 'recv', 'send', 'htons', 'connect', 'WSAGetLastError', 'WSAStartup', 'socket', 'WNetOpenEnumA', 'WNetEnumResourceA', 'WNetCloseEnum'], ['ExitProcess', 'LoadLibraryA', 'lstrlenA', 'GetCurrentProcess', 'GetProcAddress', 'lstrcmpiA', 'CloseHandle', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'OpenProcessToken'], ['CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'SetStdHandle', 'FlushFileBuffers', 'Sleep', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'GetProcAddress', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'RtlUnwind', 'GetLastError', 'SetConsoleCtrlHandler', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RaiseException', 'MultiByteToWideChar', 'GetStringTypeA', 'GetStringTypeW', 'CloseHandle', 'GetSystemMetrics', 'ReleaseDC', 'RedrawWindow', 'GetDC', 'MessageBoxA', 'BitBlt', 'PlgBlt', 'StretchBlt', 'CreateSolidBrush', 'PatBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'DeleteObject', 'AlphaBlend'], ['CloseHandle', 'TerminateThread', 'CreateThread', 'ExitProcess', 'GetProcessHeap', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'HeapAlloc', 'Sleep', 'HeapFree', 'LoadLibraryA', 'GetProcAddress', 'SetStdHandle', 'FreeLibrary', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'RaiseException', 'HeapReAlloc', 'VirtualAlloc', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'GetLastError', 'SetConsoleCtrlHandler', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'FlushFileBuffers', 'GetSystemMetrics', 'GetDC', 'DrawIcon', 'LoadIconA', 'RedrawWindow', 'MessageBoxA', 'PatBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'BitBlt', 'CreateSolidBrush', 'waveOutReset', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutUnprepareHeader'], ['GetProcAddress', 'MessageBoxA', 'strncpy', 'GetInterfaceInfo', 'GetMappedFileNameW', 'RegDeleteKeyA', 'SHGetFolderPathW'], ['GetCurrentProcess', 'WriteFile', 'DeviceIoControl', 'Thread32Next', 'Thread32First', 'GetCurrentDirectoryA', 'CreateToolhelp32Snapshot', 'Sleep', 'Process32NextW', 'CreateFileA', 'DefineDosDeviceA', 'TerminateThread', 'Process32FirstW', 'CreateThread', 'VirtualFreeEx', 'lstrcmpW', 'OpenThread', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'GetModuleHandleW', 'SetLastError', 'CreateRemoteThread', 'GetCurrentProcessId', 'VirtualAllocEx', 'GetProcAddress', 'CloseHandle', 'LoadLibraryA', 'OpenProcess', 'WaitForSingleObject', 'TerminateProcess', 'SetFileAttributesA', 'WriteProcessMemory', 'MessageBoxW', 'GetWindowThreadProcessId', 'SendMessageW', 'GetSystemMetrics', 'ShowWindow', 'RegisterWindowMessageA', 'FindWindowA', 'SetCursorPos', 'GetWindowRect', 'PostThreadMessageW', 'EnumWindows', 'MoveWindow', 'MessageBoxA', 'AdjustTokenPrivileges', 'CloseServiceHandle', 'OpenSCManagerW', 'RegCreateKeyExW', 'RegSetValueExW', 'OpenProcessToken', 'StartServiceW', 'OpenServiceA', 'CreateServiceA', 'LookupPrivilegeValueW', 'RegCloseKey', '__current_exception', '__current_exception_context', 'memset', '__C_specific_handler', '__acrt_iob_func', '__p__commode', '__stdio_common_vfprintf', '_set_fmode', '_set_new_mode', 'free', 'malloc', 'rand', '_cexit', '_initialize_onexit_table', '_register_onexit_function', '_exit', '_crt_atexit', '_initialize_narrow_environment', 'terminate', '_get_narrow_winmain_command_line', 'exit', '_initterm_e', 'system', '_initterm', '_c_exit', '_configure_narrow_argv', '_register_thread_local_exe_atexit_callback', '_set_app_type', '_seh_filter_exe', '_itoa', '__setusermatherr', '_configthreadlocale'], ['GetTickCount', 'GetACP', 'GetComputerNameW', 'GetDriveTypeW', 'LocalAlloc', 'Sleep', 'MoveFileA', 'GetModuleFileNameA', 'GetProcAddress', 'LoadLibraryA', 'lstrcpyA', 'lstrlenA', 'CompareStringW', 'CompareStringA', 'GetStringTypeW', 'GetStringTypeA', 'GetOEMCP', 'GetCPInfo', 'FlushFileBuffers', 'SetStdHandle', 'LCMapStringW', 'LCMapStringA', 'IsBadCodePtr', 'IsBadReadPtr', 'SetUnhandledExceptionFilter', 'WriteFile', 'GetEnvironmentStringsW', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'RtlUnwind', 'GetLastError', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFileAttributesW', 'HeapAlloc', 'HeapFree', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'CloseHandle', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetFilePointer', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'SetEnvironmentVariableA', 'GetSystemMetrics', 'SHGetSpecialFolderPathA', 'WSAGetLastError', 'setsockopt', 'send', 'shutdown', 'recv', 'ioctlsocket', 'connect', 'select', 'closesocket', 'htons', 'ntohs', 'htonl', 'socket'], ['Process32First', 'Process32Next', 'CreateMutexA', 'CreateRemoteThread', 'VirtualAllocEx', 'WriteProcessMemory', 'OpenMutexA', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'SetThreadPriority', 'GetProcessId', 'CreateToolhelp32Snapshot', 'VirtualQueryEx', 'ReadProcessMemory', 'GetCurrentProcess', 'IsWow64Process', 'GetFileSize', 'ReadFile', 'WriteFile', 'ConnectNamedPipe', 'DisconnectNamedPipe', 'TerminateThread', 'CreateNamedPipeA', 'CallNamedPipeA', 'WaitNamedPipeA', 'GetComputerNameA', 'GetVolumeInformationA', 'CopyFileA', 'GetModuleFileNameA', 'OpenProcess', 'CreateProcessA', 'TerminateProcess', 'GetCurrentProcessId', 'Sleep', 'GetLastError', 'CloseHandle', 'GetFileAttributesA', 'DeleteFileA', 'CreateFileA', 'GetTickCount', 'CreateDirectoryA', 'CreateFileW', 'SetEnvironmentVariableA', 'FlushFileBuffers', 'SetStdHandle', 'GetStringTypeW', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'EnumSystemLocalesEx', 'IsValidLocaleName', 'LCMapStringEx', 'GetUserDefaultLocaleName', 'GetLocaleInfoEx', 'InterlockedIncrement', 'InterlockedDecrement', 'InitializeCriticalSectionEx', 'InterlockedExchange', 'EncodePointer', 'DecodePointer', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'MultiByteToWideChar', 'GetModuleFileNameW', 'GetSystemTimeAsFileTime', 'RaiseException', 'RtlUnwind', 'LoadLibraryExW', 'lstrlenA', 'LoadLibraryW', 'WideCharToMultiByte', 'GetCommandLineA', 'InitializeCriticalSectionAndSpinCount', 'FatalAppExitA', 'GetStdHandle', 'HeapValidate', 'GetSystemInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'FreeLibrary', 'SetConsoleCtrlHandler', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointer', 'SetFilePointerEx', 'GetFileType', 'InitOnceExecuteOnce', 'GetConsoleCP', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'OutputDebugStringA', 'WriteConsoleW', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount64', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetTimeFormatEx', 'GetDateFormatEx', 'CompareStringEx', 'SetEndOfFile', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'CreateServiceA', 'ControlService', 'CloseServiceHandle', 'FreeSid', 'CheckTokenMembership', 'AllocateAndInitializeSid', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'StartServiceA', 'SHGetSpecialFolderPathA', 'SHGetFolderPathA', 'HttpOpenRequestA', 'HttpQueryInfoA', 'InternetConnectA', 'InternetCloseHandle', 'InternetOpenA', 'InternetReadFile', 'HttpSendRequestA', 'URLDownloadToFileA'], ['CreateMutexA', 'ExitProcess', 'GetLastError', 'GetStdHandle', 'WaitForSingleObject', 'WriteConsoleA', 'CreateEventA'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegCloseKey', 'memset', 'wsprintfA', 'WSAStartup'], ['GetFocus', 'MessageBoxA', '_onexit', '_decode_pointer', '_lock', '_invoke_watson', '_strdup', '_crt_debugger_hook', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '__set_app_type', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '_acmdln', 'exit', '_ismbblead', '_XcptFilter', '_exit', '_cexit', '__getmainargs', '_amsg_exit', 'realloc', 'bsearch', 'qsort', 'memset', 'memcpy', 'fprintf', '__iob_func', 'setbuf', 'getenv', 'atoi', 'malloc', 'free', 'strncmp', 'strrchr', '__argv', '__argc', 'strncpy', '_snprintf', '_stricmp', '_except_handler4_common', '_controlfp_s', 'IsDebuggerPresent', 'GetCurrentProcess', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'HeapAlloc', 'IsBadReadPtr', 'SetLastError', 'GetProcessHeap', 'HeapFree', 'VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'FreeLibrary', 'GetModuleHandleA', 'OutputDebugStringA', 'GetFullPathNameA', 'LoadLibraryA', 'GetProcAddress', 'UnmapViewOfFile', 'CreateFileA', 'GetFileSize', 'CreateFileMappingA', 'CloseHandle', 'MapViewOfFile', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetLastError', 'FormatMessageA', 'LocalFree', 'lstrlenA', 'UnhandledExceptionFilter'], ['GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'CompareStringA', 'CompareStringW', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'CreateThread', 'Sleep', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'SetStdHandle', 'ReadFile', 'IsBadCodePtr', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'MultiByteToWideChar', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'RtlUnwind', 'RaiseException', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'TerminateProcess', 'GetCurrentProcess', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'InterlockedIncrement', 'GetModuleFileNameA', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetLastError', 'SetFilePointer', 'FlushFileBuffers', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'VirtualAlloc', 'SetConsoleCtrlHandler', 'SetEnvironmentVariableA', 'RedrawWindow', 'MessageBoxA', 'ReleaseDC', 'GetDC', 'GetSystemMetrics', 'PatBlt', 'SetBkMode', 'SetTextColor', 'CreateFontA', 'TextOutA', 'StretchBlt', 'CreateDIBSection', 'DeleteDC', 'Pie', 'Ellipse', 'Rectangle', 'PlgBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'BitBlt', 'DeleteObject', 'CreateSolidBrush', 'waveOutReset', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutUnprepareHeader'], ['HeapReAlloc', 'GetStringTypeW', 'MultiByteToWideChar', 'LoadLibraryW', 'HeapSize', 'CreateThread', 'DeleteFileA', 'CloseHandle', 'GetCurrentThreadId', 'FindNextFileA', 'LocalAlloc', 'LoadLibraryA', 'FindClose', 'RemoveDirectoryA', 'GetProcAddress', 'FindFirstFileA', 'GetSystemDirectoryA', 'Sleep', 'SetFilePointer', 'WriteFile', 'CreateFileA', 'LCMapStringW', 'ExitProcess', 'RtlUnwind', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'EnterCriticalSection', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'DecodePointer', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'UnhookWindowsHookEx', 'GetSystemMetrics', 'mouse_event', 'keybd_event', 'FillRect', 'LoadIconA', 'CallNextHookEx', 'DrawIcon', 'GetDC', 'GetCursorInfo', 'MessageBoxA', 'SetWindowsHookExA', 'PatBlt', 'Polygon', 'StretchBlt', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Ellipse', 'PlgBlt', 'CreatePatternBrush', 'GetPixel', 'CreateSolidBrush', 'BitBlt', 'CryptAcquireContextA', 'CryptGenRandom', 'SHDeleteKeyA', 'waveOutOpen', 'waveOutWrite', 'waveOutPrepareHeader'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'GetThreadLocale', 'GetStartupInfoA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteProcessMemory', 'VirtualFreeEx', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'LoadLibraryA', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetCommandLineW', 'ExitProcess', 'CreateRemoteThread', 'CreateProcessW', 'CloseHandle', 'MessageBoxW', 'MessageBoxA', 'CharNextW'], ['HeapDestroy', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetCommandLineA', 'GetVersion', 'HeapFree', 'GetLastError', 'CloseHandle', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'LoadLibraryA', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'WriteFile', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'ReadFile', 'CreateFileA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetProcAddress', 'SetEndOfFile', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW'], ['GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'LoadLibraryExW', 'SetConsoleCtrlHandler', 'FindClose', 'FindFirstFileExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'SetEndOfFile', 'GetProcAddress', 'GetModuleFileNameW', 'SetDllDirectoryW', 'FreeLibrary', 'GetLastError', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwindEx', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCommandLineA', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindNextFileW', 'SetStdHandle', 'DeleteFileW', 'ReadFile', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'HeapReAlloc', 'GetFileAttributesExW', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'WriteConsoleW', 'ConvertSidToStringSidW', 'GetTokenInformation', 'OpenProcessToken', 'ConvertStringSecurityDescriptorToSecurityDescriptorW'], ['AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'RegCloseKey', 'RegDeleteValueA', 'RegOpenKeyExA', 'CloseHandle', 'CreateFileA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FreeConsole', 'GetConsoleWindow', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LocalAlloc', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetConsoleTitleA', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WriteFile', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_onexit', '_pgmptr', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'getenv', 'malloc', 'memcpy', 'printf', 'putchar', 'puts', 'signal', 'strlen', 'strncmp', 'strncpy', 'strrchr', 'system', 'vfprintf', 'ShellExecuteA', 'ShellExecuteExA', 'ShellExecuteW', 'DeleteMenu', 'DrawMenuBar', 'FindWindowA', 'GetSystemMenu', 'MessageBoxA', 'MessageBoxTimeoutA', 'PostMessageA', 'SetWindowPos'], ['GetStdHandle', 'DeviceIoControl', 'SetFilePointer', 'LocalAlloc', 'Sleep', 'FillConsoleOutputCharacterW', 'LoadLibraryW', 'CreateThread', 'FillConsoleOutputAttribute', 'GetProcAddress', 'ExitProcess', 'GetModuleHandleW', 'FreeLibrary', 'GetCurrentProcess', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'LCMapStringW', 'CompareStringW', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'CloseHandle', 'CreateFileW', 'SetConsoleCursorPosition', 'WriteFile', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'RaiseException', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'DecodePointer', 'SendMessageTimeoutW', 'MessageBoxW', 'EnumChildWindows', 'SendMessageW', 'GetSystemMetrics', 'FindWindowExW', 'LoadIconW', 'FindWindowW', 'GetWindowDC', 'GetDesktopWindow', 'GetCursorPos', 'DrawIcon', 'BitBlt', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LookupPrivilegeValueW'], ['InitializeCriticalSection', 'PostQuitMessage', 'RegOpenKeyExA', '?_Getcat@?$ctype@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', 'PlaySoundA', '_CxxThrowException', '_itoa_s', '__stdio_common_vsprintf', '_initialize_narrow_environment', 'strcat_s', '_callnewh', 'srand', '_getch', '_time64', '_mbsrchr', '_CIcos', '_configthreadlocale', 'SetPixelV', 'ExtractIconA', 'CoInitialize', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['CreateFileA', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'VirtualAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'RtlUnwind', 'HeapSize', 'ExitProcess', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetFilePointer', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'GetACP', 'IsValidCodePage', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'WriteFile', 'GetOEMCP', 'GetCPInfo', 'GetLocaleInfoA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpW', 'GetVersionExA', 'GetThreadLocale', 'GlobalGetAtomNameA', 'GlobalFlags', 'lstrcmpA', 'GetCurrentThreadId', 'InterlockedIncrement', 'InterlockedDecrement', 'GetModuleHandleA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'SetLastError', 'InterlockedExchange', 'LoadLibraryA', 'SizeofResource', 'FreeLibrary', 'FlushFileBuffers', 'PrepareTape', 'Sleep', 'GetCurrentProcess', 'GetVersion', 'CompareStringA', 'LockResource', 'SetEvent', 'GetProcAddress', 'CloseHandle', 'VirtualProtect', 'lstrlenA', 'DeleteFileA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetLastError', 'FindResourceA', 'LocalFree', 'LocalAlloc', 'CreateProcessA', 'FindResourceExA', 'GetStartupInfoA', 'LoadResource', 'IsDebuggerPresent', 'GetTickCount', 'SetForegroundWindow', 'GetMenu', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetFocus', 'ClientToScreen', 'GetWindow', 'GetDlgCtrlID', 'GetClassNameA', 'PtInRect', 'GetWindowTextA', 'SetWindowTextA', 'UnregisterClassA', 'SetWindowsHookExA', 'GetKeyState', 'LoadCursorA', 'GetSystemMetrics', 'GetDC', 'GetSysColor', 'UnhookWindowsHookEx', 'GetWindowThreadProcessId', 'SendMessageA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'DrawTextA', 'InflateRect', 'GetWindowRect', 'CreatePopupMenu', 'GetForegroundWindow', 'CallNextHookEx', 'DispatchMessageA', 'EnumWindows', 'CreateDialogIndirectParamA', 'SetParent', 'GetSysColorBrush', 'GetClientRect', 'IntersectRect', 'DefWindowProcA', 'GetWindowLongA', 'ExitWindowsEx', 'DialogBoxIndirectParamA', 'EndDeferWindowPos', 'GetClassInfoExA', 'ReleaseDC', 'MapWindowPoints', 'ValidateRect', 'PostQuitMessage', 'GrayStringA', 'DrawTextExA', 'TabbedTextOutA', 'DestroyMenu', 'RegisterWindowMessageA', 'LoadIconA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'PeekMessageA', 'GetMessagePos', 'ExtTextOutA', 'SaveDC', 'RestoreDC', 'SetMapMode', 'ScaleViewportExtEx', 'PtVisible', 'SelectObject', 'SetViewportOrgEx', 'SetWindowExtEx', 'DeleteDC', 'GetStockObject', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'DeleteObject', 'GetDeviceCaps', 'SetViewportExtEx', 'ScaleWindowExtEx', 'OffsetViewportOrgEx', 'Escape', 'TextOutA', 'RectVisible', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'CoInitialize', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoUninitialize', 'CoTaskMemFree', 'VariantClear', 'OleLoadPicture', 'OleCreatePictureIndirect', 'OleCreateFontIndirect', 'SysReAllocStringLen', 'SysFreeString', 'SysStringLen', 'OleCreatePropertyFrame', 'OleTranslateColor', 'SysAllocStringLen', 'SysReAllocString', 'OleIconToCursor', 'OleCreatePropertyFrameIndirect', 'SysAllocString', 'VariantChangeType', 'VariantInit', 'LresultFromObject', 'CreateStdAccessibleObject'], ['NetApiBufferFree', 'NetApiBufferAllocate', 'NetRemoteTOD', 'NetScheduleJobDel', 'WSAStartup', 'inet_ntoa', 'gethostbyname', 'gethostname', 'WSACleanup', 'LocalAlloc', 'GetLastError', 'MoveFileExW', 'DeleteFileW', 'GetProcAddress', 'GetModuleHandleW', 'WriteFile', 'CreateFileW', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GetCommandLineW', 'GetFileTime', 'GetWindowsDirectoryW', 'Sleep', 'CreateThread', 'CreateProcessW', 'CopyFileW', 'MoveFileW', 'ReadFile', 'GetSystemTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'WaitForSingleObject', 'InitializeCriticalSection', 'GetStringTypeW', 'IsValidCodePage', 'LocalFree', 'VirtualAlloc', 'VirtualFree', 'GetCurrentProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'CloseHandle', 'GetTickCount', 'HeapReAlloc', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'CreateFileA', 'SetEndOfFile', 'SetFileTime', 'GetOEMCP', 'GetACP', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'HeapFree', 'ExitProcess', 'HeapSetInformation', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'HeapAlloc', 'IsProcessorFeaturePresent', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'LoadLibraryW', 'GetLocaleInfoW', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadImageW', 'StartServiceCtrlDispatcherW', 'RegisterServiceCtrlHandlerW', 'SetServiceStatus', 'RegQueryValueExW', 'OpenSCManagerW', 'OpenServiceW', 'QueryServiceConfigW', 'ChangeServiceConfigW', 'CloseServiceHandle', 'CreateServiceW', 'ChangeServiceConfig2W', 'RegOpenKeyExW', 'RegDeleteValueW', 'RegCloseKey', 'StartServiceW', 'CommandLineToArgvW'], ['GetTempPathA', 'GetPrivateProfileStringA', 'GetTickCount', 'UnmapViewOfFile', 'Sleep', 'SetEvent', 'WaitForSingleObjectEx', 'CreateEventA', 'FlushViewOfFile', 'GetProfileStringA', 'GetPrivateProfileIntA', 'GetWindowsDirectoryA', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalDeleteAtom', '_lclose', 'OpenFile', 'CreateThread', 'GetLastError', 'GetTempFileNameA', 'lstrcpyA', 'lstrcatA', 'CreateFileA', 'WriteFile', 'FlushFileBuffers', 'GlobalHandle', 'GlobalSize', 'SetFilePointer', 'ReadFile', 'CloseHandle', 'DeleteFileA', 'lstrlenA', 'GlobalUnlock', 'GlobalAlloc', 'CreateFileMappingA', 'MapViewOfFile', 'GlobalFree', 'HeapFree', 'HeapAlloc', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'RaiseException', 'GetStringTypeA', 'LCMapStringW', 'GetStringTypeW', 'MultiByteToWideChar', 'LoadLibraryA', 'LCMapStringA', 'GetFileType', 'GetStdHandle', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'SetHandleCount', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'WideCharToMultiByte', 'GlobalLock', 'HeapReAlloc', 'VirtualAlloc', 'InitializeCriticalSection', 'VirtualFree', 'DeleteCriticalSection', 'HeapDestroy', 'RtlUnwind', 'HeapCreate', 'GetCurrentProcess', 'TerminateProcess', 'UnhandledExceptionFilter', 'TlsGetValue', 'SetLastError', 'TlsAlloc', 'GetProcAddress', 'GetACP', 'GetCPInfo', 'GetModuleFileNameA', 'GetFileSize', 'GlobalReAlloc', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'TlsSetValue', 'ExitThread', 'GetOEMCP', 'LeaveCriticalSection', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'EnterCriticalSection', 'IsDialogMessageA', 'DispatchMessageA', 'TranslateMessage', 'RegisterClassA', 'GetMessageA', 'CreateDialogParamA', 'PeekMessageA', 'LoadCursorA', 'LoadIconA', 'ReleaseDC', 'SetFocus', 'EnableWindow', 'ClientToScreen', 'GetDC', 'ScreenToClient', 'SetDlgItemTextA', 'GetClientRect', 'GetDlgItem', 'GetWindowRect', 'PostQuitMessage', 'GetParent', 'GetActiveWindow', 'MoveWindow', 'FindWindowA', 'MessageBoxA', 'GetSysColor', 'CharUpperA', 'SetCursor', 'IsWindow', 'ShowWindow', 'SetWindowTextA', 'InvalidateRect', 'UpdateWindow', 'BringWindowToTop', 'CopyRect', 'DestroyWindow', 'BeginPaint', 'LoadStringA', 'OffsetRect', 'FillRect', 'InSendMessage', 'wsprintfA', 'EndPaint', 'GetDeviceCaps', 'DeleteDC', 'CreateICA', 'GetTextExtentPoint32A', 'DeleteObject', 'BitBlt', 'TextOutA', 'SetBkMode', 'SelectObject', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateSolidBrush', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiDestroyDeviceInfoList'], ['SetEndOfFile', 'DeleteFileA', 'ReadFile', 'GetFileSize', 'FreeResource', 'LoadResource', 'CreateFileA', 'SizeofResource', 'FindResourceA', 'GetModuleFileNameA', 'GetSystemTime', 'GetComputerNameA', 'SetErrorMode', 'GetVersionExA', 'GetWindowsDirectoryA', 'CreateThread', 'WriteFile', 'SetFilePointer', 'DeleteCriticalSection', 'lstrlenA', 'GetTickCount', 'CreateProcessA', 'GetDriveTypeA', 'GetLogicalDrives', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'GetFileAttributesA', 'CopyFileA', 'MoveFileA', 'CreateDirectoryA', 'GetTempPathA', 'GetShortPathNameA', 'ResetEvent', 'EnterCriticalSection', 'InitializeCriticalSection', 'CreateEventA', 'LoadLibraryA', 'LCMapStringW', 'GetACP', 'GetCPInfo', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetLastError', 'TlsGetValue', 'SetLastError', 'TlsAlloc', 'TlsSetValue', 'CloseHandle', 'HeapSize', 'HeapReAlloc', 'SetEvent', 'Sleep', 'LeaveCriticalSection', 'GetProcAddress', 'FreeLibrary', 'GetModuleHandleA', 'ExitProcess', 'OpenProcess', 'WaitForSingleObject', 'TerminateProcess', 'GetCurrentThreadId', 'HeapFree', 'HeapAlloc', 'GetVersion', 'GetCurrentProcess', 'LCMapStringA', 'GetOEMCP', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'CharLowerA', 'wsprintfA', 'EnumWindows', 'PostMessageA', 'DispatchMessageA', 'GetWindowThreadProcessId', 'GetParent', 'ExitWindowsEx', 'CreateDialogParamA', 'PeekMessageA', 'IsDialogMessageA', 'UpdateWindow', 'GetDC', 'GetClientRect', 'SetWindowTextA', 'ReleaseDC', 'SetFocus', 'DefWindowProcA', 'PostQuitMessage', 'EndDialog', 'GetDlgItemTextA', 'GetDlgItem', 'EnableWindow', 'ShowWindow', 'DialogBoxParamA', 'FindWindowA', 'RegisterClassExA', 'CreateWindowExA', 'SetTimer', 'GetMessageA', 'MessageBoxA', 'CharUpperA', 'GetStockObject', 'DeleteObject', 'Rectangle', 'SelectObject', 'CreateSolidBrush', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyExA', 'GetUserNameA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'ShellExecuteA', 'htons', 'WSACleanup', 'WSAStartup', 'send', 'ioctlsocket', 'gethostbyname', 'connect', 'WSAAsyncSelect', 'closesocket', 'socket', 'recv', 'GetFileVersionInfoA', 'VerQueryValueA', 'LZCopy', 'LZClose', 'LZOpenFileA'], ['GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'OutputDebugStringW', 'EncodePointer', 'IsDebuggerPresent', 'Sleep', 'DeleteCriticalSection', 'DecodePointer', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'GetWindow', 'FindWindowExW', 'FindWindowW', '?_Xout_of_range@std@@YAXPBD@Z', '?_Syserror_map@std@@YAPBDH@Z', '?_Xbad_alloc@std@@YAXXZ', '?_Xlength_error@std@@YAXPBD@Z', '?_Winerror_map@std@@YAPBDH@Z', '__CxxFrameHandler3', '_CxxThrowException', '_controlfp_s', '_invoke_watson', '__crtSetUnhandledExceptionFilter', '_except_handler4_common', '?terminate@@YAXXZ', '__crtTerminateProcess', '__crtUnhandledException', '_crt_debugger_hook', '_commode', '_fmode', '__winitenv', '??3@YAXPAX@Z', 'free', '??2@YAPAXI@Z', 'memmove', 'wcstok_s', 'wcsncmp', 'swscanf', 'wcstoul', 'printf', '_purecall', 'memset', '??1type_info@@UAE@XZ', '_lock', '_unlock', '_calloc_crt', '__dllonexit', '_onexit', '_XcptFilter', '_amsg_exit', '__wgetmainargs', '__set_app_type', 'exit', '_exit', '_cexit', '_configthreadlocale', '__setusermatherr', '_initterm_e', '_initterm', 'memcpy', 'SetHook', 'UnsetHook', 'GetLoadStatus'], ['IoDeleteDevice', 'IoFreeWorkItem', 'MmUnmapIoSpace', 'MmGetPhysicalAddress', 'ExAllocatePool', 'IoAllocateWorkItem', 'MmMapIoSpace', 'IoAttachDeviceToDeviceStack', 'IoCreateSymbolicLink', 'IoInitializeRemoveLockEx', 'IoCreateDevice', 'IoQueueWorkItem', 'RtlInitUnicodeString', 'ZwClose', 'ZwOpenFile', 'ZwQueryInformationFile', 'KdDebuggerEnabled', 'InitSafeBootMode', 'IofCompleteRequest', 'RtlDeleteElementGenericTable', 'KeGetCurrentThread', 'RtlLookupElementGenericTable', 'RtlInitializeGenericTable', 'RtlInsertElementGenericTable', 'RtlUpcaseUnicodeChar', 'IoRegisterDriverReinitialization', 'ExFreePoolWithTag', 'ZwReadFile', 'IoDeleteSymbolicLink', 'ZwAllocateVirtualMemory', 'KeInitializeMutex', 'KeReleaseMutex', 'KeWaitForSingleObject', 'ZwQueryValueKey', 'ZwOpenKey', '_stricmp', 'MmGetSystemRoutineAddress', 'PsGetVersion', 'ZwQueryInformationProcess', 'ObOpenObjectByPointer', 'PsLookupProcessByProcessId', 'ObfDereferenceObject', 'memcpy', '_except_handler3', 'memset', 'KfAcquireSpinLock', 'KeGetCurrentIrql', 'KfReleaseSpinLock'], ['HeapAlloc', 'GetProcAddress', 'GetProcessHeap', 'GetCurrentProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'LoadLibraryW', 'lstrcmpiW', 'LocalAlloc', 'GetLastError', 'LocalFree', 'WriteFile', 'WideCharToMultiByte', 'CloseHandle', 'DeleteFileW', 'lstrcatW', 'GetEnvironmentVariableW', 'Process32FirstW', 'HeapFree', 'WriteConsoleW', 'DecodePointer', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'GetFileType', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'CompareStringW', 'LCMapStringW', 'SetStdHandle', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'FlushFileBuffers', 'CreateFileW', 'GetSidSubAuthority', 'GetTokenInformation', 'AdjustTokenPrivileges', 'OpenProcessToken', 'GetSidSubAuthorityCount', 'ShellExecuteW'], ['WideCharToMultiByte', 'MultiByteToWideChar', 'WriteFile', 'SetFilePointer', 'TerminateProcess', 'OpenProcess', 'GetVersionExA', 'GetSystemInfo', 'GetModuleHandleA', 'Process32Next', 'lstrcatA', 'HeapFree', 'HeapAlloc', 'Process32First', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteFileA', 'GetComputerNameA', 'SetEvent', 'Sleep', 'WaitForSingleObject', 'lstrlenW', 'DeleteFileW', 'CopyFileW', 'CreateDirectoryW', 'CreateEventA', 'VirtualFreeEx', 'WriteProcessMemory', 'VirtualAllocEx', 'lstrlenA', 'ExitProcess', 'CreateRemoteThread', 'DuplicateHandle', 'CreateProcessW', 'GetProcessVersion', 'CreateThread', 'MapViewOfFile', 'CreateFileMappingA', 'InitializeCriticalSection', 'VirtualQuery', 'lstrcpyW', 'GetModuleFileNameW', 'lstrcatW', 'GetProcessHeap', 'GetCurrentProcessId', 'CreateMutexA', 'GetCommandLineA', 'ReadProcessMemory', 'VirtualQueryEx', 'lstrcmpA', 'lstrcmpiA', 'LockResource', 'LoadResource', 'SizeofResource', 'FindResourceA', 'GetCurrentDirectoryA', 'TerminateThread', 'CreateFileW', 'ResumeThread', 'SuspendThread', 'VirtualFree', 'SetLastError', 'CreateFileA', 'GetLastError', 'GetFileSize', 'VirtualAlloc', 'ReadFile', 'LoadLibraryA', 'GetProcAddress', 'GetCurrentProcess', 'CloseHandle', 'lstrcpyA', 'IsBadReadPtr', 'GetTickCount', 'CreateWindowExA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'RegisterClassExA', 'GetSystemMetrics', 'SetWindowsHookExA', 'wsprintfA', 'wsprintfW', 'DefWindowProcA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'RegCloseKey', 'RegSetValueExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegDeleteValueA', 'GetUserNameA', 'RegCreateKeyExA', 'RegSetValueExW', 'RegNotifyChangeKeyValue', 'RegDeleteKeyA', 'LookupPrivilegeValueA', 'SHGetFolderPathW', 'CoCreateGuid', 'StrStrA', 'StrCmpNIA', 'HttpSendRequestA', 'InternetCloseHandle', 'HttpOpenRequestA', 'InternetOpenA', 'InternetGetCookieA', 'InternetReadFile', 'InternetOpenUrlA', 'InternetConnectA', 'ObtainUserAgentString', 'gethostname', 'inet_ntoa', 'gethostbyname', 'UuidToStringA'], ['WriteFile', 'SetFilePointer', 'LocalAlloc', 'CreateFileW', 'CloseHandle', 'ExitProcess', 'WriteConsoleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwindEx', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'FreeSid', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'OpenProcess', 'MulDiv', 'MoveFileA', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectType', 'GetObjectA', 'GetNearestPaletteIndex', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'timeGetTime', 'sndPlaySoundA', 'PlaySoundA', 'RtlSetProcessIsCritical', 'CheckTokenMembership'], ['GetModuleHandleA', 'GetProcAddress', 'wsprintfW', 'RegOpenKeyExW', 'ShellExecuteExW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'WriteFile', 'WinExec', 'TerminateProcess', 'Sleep', 'SetFilePointer', 'SetFileAttributesA', 'OpenProcess', 'LoadLibraryA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetTempPathA', 'GetSystemDirectoryA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocalTime', 'GetLastError', 'GetFileAttributesA', 'GetDriveTypeA', 'GetCurrentProcess', 'FreeLibrary', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'DeleteFileA', 'CreateThread', 'CreateFileA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'WNetCancelConnectionA', 'WNetAddConnection2A', 'keybd_event', 'SetTimer', 'PostMessageA', 'MapVirtualKeyA', 'KillTimer', 'GetWindowTextA', 'GetMessageA', 'GetDesktopWindow', 'FindWindowExA', 'FindWindowA', 'DispatchMessageA', 'CharUpperBuffA', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'socket', 'inet_ntoa', 'inet_addr', 'htons', 'connect', 'closesocket', 'InternetGetConnectedState', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA', 'InternetCloseHandle', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'ControlService', 'CloseServiceHandle', 'NetRemoteTOD', 'NetScheduleJobAdd', 'URLDownloadToFileA'], ['LoadLibraryA', 'Process32Next', 'LocalAlloc', 'GetModuleFileNameA', 'FindNextFileA', 'CreateToolhelp32Snapshot', 'GetCurrentThreadId', 'CloseHandle', 'LocalFree', 'DeleteFileA', 'CreateThread', 'SetStdHandle', 'WriteConsoleW', 'LoadLibraryW', 'FindClose', 'HeapReAlloc', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'GetLocaleInfoW', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GlobalFree', 'RemoveDirectoryA', 'GetProcAddress', 'FindFirstFileA', 'lstrlenW', 'lstrcmpW', 'Sleep', 'ReadFile', 'GlobalAlloc', 'OpenProcess', 'WriteFile', 'Process32First', 'SetFilePointerEx', 'GetCurrentProcess', 'SetPriorityClass', 'lstrcmpA', 'CreateFileA', 'GetCommandLineW', 'ExitProcess', 'GetCurrentProcessId', 'CreateFileW', 'GetTickCount', 'QueryPerformanceCounter', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'SetCursorPos', 'GetWindowRect', 'SendInput', 'GetWindowDC', 'LoadIconA', 'CallNextHookEx', 'DrawIcon', 'ExitWindowsEx', 'MoveWindow', 'GetForegroundWindow', 'MessageBoxA', 'GetDC', 'ReleaseDC', 'SetWindowsHookExA', 'GetDesktopWindow', 'GetCursorPos', 'EnumChildWindows', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'MessageBoxW', 'GetSystemMetrics', 'DeleteDC', 'StretchBlt', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyA', 'CryptGenRandom', 'CryptAcquireContextA', 'LookupPrivilegeValueA', 'RegOpenKeyW', 'RegSetValueExA', 'RegCreateKeyW', 'OpenProcessToken', 'RegSetValueExW', 'ShellExecuteExA', 'ShellExecuteA', 'CommandLineToArgvW', 'GetProcessImageFileNameA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'LookupPrivilegeValueA', 'VariantChangeTypeEx', 'RaiseException'], ['LeaveCriticalSection', 'FileTimeToLocalFileTime', 'Sleep', 'WaitForMultipleObjects', 'GetTickCount', 'SetPriorityClass', 'GetCurrentProcess', 'lstrlenA', 'lstrcatA', 'GetLastError', 'ReadFile', 'GetStdHandle', 'WriteFile', 'MoveFileW', 'DeleteFileW', 'FreeLibrary', 'LoadLibraryExA', 'LoadLibraryA', 'AreFileApisANSI', 'LoadLibraryExW', 'LoadLibraryW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'LocalFree', 'FormatMessageA', 'FormatMessageW', 'SetCurrentDirectoryA', 'CloseHandle', 'SetFileTime', 'CreateFileW', 'SetLastError', 'SetFileAttributesA', 'RemoveDirectoryA', 'MoveFileA', 'CreateDirectoryA', 'DeleteFileA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'SetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryW', 'GetShortPathNameA', 'GetFullPathNameA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'SearchPathA', 'GetTempPathA', 'GetTempPathW', 'GetTempFileNameA', 'GetTempFileNameW', 'GetFullPathNameW', 'SearchPathW', 'FindClose', 'FindCloseChangeNotification', 'FindFirstChangeNotificationA', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'FindNextFileW', 'FindFirstChangeNotificationW', 'GetLogicalDriveStringsA', 'GetLogicalDriveStringsW', 'GetFileSize', 'SetFilePointer', 'GetFileInformationByHandle', 'SetEndOfFile', 'CreateFileA', 'CompareFileTime', 'FileTimeToSystemTime', 'EnterCriticalSection', 'GetModuleHandleW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'CreateEventA', 'SetEvent', 'ResetEvent', 'CreateSemaphoreA', 'ReleaseSemaphore', 'InitializeCriticalSection', 'GetVersionExA', 'UnmapViewOfFile', 'ExpandEnvironmentStringsW', 'MapViewOfFile', 'CreateFileMappingA', 'GetFileSizeEx', 'GetCommandLineW', 'CompareStringW', 'CompareStringA', 'GetTimeZoneInformation', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetDateFormatA', 'GetTimeFormatA', 'InitializeCriticalSectionAndSpinCount', 'InterlockedExchange', 'GetLocaleInfoA', 'GetLocaleInfoW', 'IsValidCodePage', 'SetEnvironmentVariableA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'SetConsoleCtrlHandler', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'HeapDestroy', 'HeapCreate', 'HeapReAlloc', 'FatalAppExitA', 'ExitProcess', 'HeapSize', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentThread', 'InterlockedDecrement', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStartupInfoA', 'GetCommandLineA', 'CreateThread', 'GetCurrentThreadId', 'GetProcAddress', 'DeleteCriticalSection', 'ExitThread', 'HeapFree', 'HeapAlloc', 'RtlUnwind', 'RaiseException', 'CharPrevExA', 'MoveWindow', 'InvalidateRect', 'SetFocus', 'CharToOemA', 'CharLowerW', 'CharUpperW', 'CharLowerA', 'CharUpperA', 'DialogBoxParamW', 'CreateDialogParamW', 'DialogBoxParamA', 'CreateDialogParamA', 'GetDialogBaseUnits', 'SystemParametersInfoA', 'GetDlgCtrlID', 'GetWindowLongA', 'SetWindowLongA', 'GetWindowTextLengthW', 'GetWindowTextW', 'SetWindowTextW', 'SetWindowTextA', 'CreateWindowExW', 'RegisterClassW', 'RegisterClassA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CreateWindowExA', 'SendMessageW', 'LoadStringW', 'LoadStringA', 'CharPrevA', 'CharNextA', 'MessageBoxW', 'LoadIconA', 'LoadCursorA', 'wsprintfA', 'SetDlgItemTextA', 'ShowWindow', 'KillTimer', 'SetTimer', 'PostMessageA', 'ScreenToClient', 'IsDlgButtonChecked', 'IsWindow', 'EndDialog', 'SendMessageA', 'GetWindowRect', 'MapDialogRect', 'GetDlgItem', 'SetCursor', 'GetStockObject', 'DragFinish', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'DragQueryFileA', 'DragQueryFileW', 'SHGetMalloc', 'SHGetFileInfoA', 'CoInitialize', 'CoUninitialize', 'VariantCopy', 'SysAllocStringByteLen', 'VariantClear', 'SysAllocString', 'SysFreeString', 'PathFileExistsW'], ['sprintf', 'WriteFile', 'CloseHandle', 'GetCommandLineW', 'CreateFileA', 'GetFileSize', 'SetFilePointer', 'lstrlenA', 'lstrcmpiW', 'ReadFile', 'CommandLineToArgvW'], ['VirtualAlloc', 'VirtualProtect', 'WideCharToMultiByte', 'CreateFileA', 'GetFileSize', 'WriteFile', 'ReadFile', 'WaitForSingleObject', 'CreateRemoteThread', 'ReadProcessMemory', 'CloseHandle', 'WriteProcessMemory', 'DeviceIoControl', 'GetLastError', 'GetComputerNameA', 'FindResourceA', 'LoadResource', 'SizeofResource', 'Module32First', 'LockResource', 'Module32Next', 'CreateToolhelp32Snapshot', 'LoadLibraryA', 'Process32Next', 'Sleep', 'OpenProcess', 'Process32First', 'FindNextFileA', 'GetModuleFileNameA', 'FindFirstFileA', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetModuleHandleA', 'GetProcessId', 'GetProcAddress', 'VirtualAllocEx', 'GetCurrentProcess', 'ExitWindowsEx', 'MessageBoxA', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CryptDecrypt', 'CryptDestroyKey', 'CryptImportKey', 'CryptGenRandom', 'CryptAcquireContextA', 'CryptReleaseContext', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'GetUserNameA', 'AdjustTokenPrivileges', 'StrStrIA', 'PathCombineA', 'StrCmpNA', 'StrCmpNIA', 'CryptStringToBinaryA', 'CryptBinaryToStringA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'InternetConnectA'], ['CreateErrorInfo', 'DispGetIDsOfNames', 'BstrFromVector', 'OleLoadPictureEx', 'GetErrorInfo', 'GetVersionExW', 'GlobalLock', 'GlobalAlloc', 'GlobalReAlloc', 'GetModuleHandleW', 'GlobalSize', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'LocalAlloc', 'LocalFree', 'CreateFileA', 'lstrcmpA', 'GetFileAttributesA', 'GetProcAddress', 'GetModuleFileNameA', 'GetTempPathA', 'DeleteFileA', 'CloseHandle', 'GetCurrentDirectoryA', 'GetLocalTime', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'EnumResourceLanguagesA', 'WideCharToMultiByte', 'ReadFile', 'WriteFile', 'SetFilePointer', 'GlobalHandle', 'IsDBCSLeadByte', 'GetModuleHandleA', 'VirtualProtect', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetProcessHeap', 'CreateProcessA', 'GetTempFileNameA', 'HeapFree', 'HeapAlloc', 'LoadLibraryW', 'InterlockedExchange', 'Sleep', 'InterlockedCompareExchange', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'GlobalFree', 'GlobalUnlock', 'GetCurrentThread', 'lstrlenA', 'MulDiv', 'MultiByteToWideChar', 'FreeLibrary', 'RaiseException', 'LoadLibraryA', 'FormatMessageA', 'GetSystemDirectoryW', 'CM_Get_DevNode_Status', 'SetupDiGetDeviceRegistryPropertyW', 'CMP_WaitNoPendingInstallEvents', 'SetWindowLongA', 'SetWindowTextA', 'SendMessageA', 'GetDlgItem', 'wsprintfA', 'WaitForInputIdle', 'CharUpperA', 'MessageBoxA'], ['_allshl', '_chkstk', 'strlen', 'memcpy', 'memset', 'strcmp', '_allmul', '_aulldiv', '_aullshr', 'strrchr', 'strcpy', '__dllonexit', 'printf', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '__p___initenv', 'exit', '_XcptFilter', '_exit', '_onexit', 'FindClose', 'WriteFile', 'GetLastError', 'GetTickCount', 'WaitForSingleObject', 'Sleep', 'FindNextFileW', 'GetFileAttributesW', 'CreateDirectoryW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFileTime', 'DosDateTimeToFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'FindFirstFileW', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'GetFileSize', 'SetFilePointer', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapValidate', 'lstrlenA', 'GetCurrentDirectoryA', 'DeleteFileA', 'GetFileAttributesA', 'CloseHandle', 'ReadFile', 'CreateFileW', 'lstrlenW', 'wsprintfA', 'PathMatchSpecW', 'PathSkipRootW', 'PathCombineW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetLengthSid', 'InitCommonControlsEx', 'GetSaveFileNameW', 'CoUninitialize', 'ShellExecuteW', 'StrCmpNIA', 'EndDialog'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'CommandLineToArgvW', 'StrChrW', 'bind'], ['VirtualProtect', 'MessageBoxW', 'CryptReleaseContext', '_CxxThrowException', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'system', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm'], ['midiStreamOut', 'WSACleanup', 'GetVersion', 'GetVersionExA', 'DeleteMenu', 'GetViewportExtEx', 'OpenPrinterA', 'RegQueryValueExA', 'ShellExecuteA', 'CLSIDFromString', 'LoadTypeLib', 'ImageList_GetIcon', 'ChooseColorA', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetModuleHandleA', 'SetWindowsHookExA', 'RealizePalette', 'midiStreamRestart', 'ClosePrinter', 'RegCloseKey', 'Shell_NotifyIconA', 'OleInitialize', 'UnRegisterTypeLib', 'ImageList_Add', 'WSACleanup', 'GetFileTitleA'], ['InitCommonControlsEx', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'ShellExecuteExW', 'ShellExecuteW', 'CommandLineToArgvW', 'HeapAlloc', 'LocalFree', 'GetProcessHeap', 'GetFileAttributesW', 'LoadLibraryW', 'CloseHandle', 'GetProcAddress', 'FreeLibrary', 'GetCurrentProcess', 'GetVersionExW', 'GetModuleHandleW', 'ExpandEnvironmentStringsW', 'InitializeCriticalSectionAndSpinCount', 'WaitForSingleObject', 'CreateProcessW', 'GetModuleFileNameW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'SetFileApisToOEM', 'SetPriorityClass', 'SetThreadPriority', 'GetEnvironmentVariableW', 'GetCurrentThread', 'GetCommandLineW', 'FindResourceW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'GetLongPathNameW', 'CreateFileW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'LoadLibraryExW', 'WriteFile', 'SetFileTime', 'SetEndOfFile', 'FormatMessageW', 'InterlockedExchangeAdd', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'ResumeThread', 'GetACP', 'GetLastError', 'WideCharToMultiByte', 'CreateDirectoryW', 'GetFullPathNameW', 'lstrlenW', 'RemoveDirectoryW', 'GetTempPathW', 'SetFileAttributesW', 'DeleteFileW', 'GetWindowsDirectoryW', 'MoveFileExW', 'GetTempFileNameW', 'MoveFileW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'WaitForMultipleObjects', 'GetCurrentProcessId', 'FileTimeToSystemTime', 'WriteConsoleW', 'DecodePointer', 'FlushFileBuffers', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindFirstFileExW', 'LCMapStringW', 'HeapFree', 'MultiByteToWideChar', 'VirtualFree', 'VirtualAlloc', 'GetStringTypeW', 'ExitProcess', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'WaitForSingleObjectEx', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStdHandle', 'GetFileType', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'DispatchMessageW', 'SetTimer', 'IsDialogMessageW', 'TranslateMessage', 'LoadIconW', 'KillTimer', 'PostQuitMessage', 'EnableWindow', 'ScreenToClient', 'IsWindow', 'MessageBoxW', 'ShowWindow', 'PostMessageW', 'GetWindowRect', 'SetWindowPos', 'DialogBoxParamW', 'SendMessageW', 'EndDialog', 'SetWindowTextW', 'SetFocus', 'GetDlgItem', 'GetWindowTextW', 'IsWindowVisible', 'CreateDialogParamW', 'GetMessageW', 'GetDesktopWindow', 'LoadStringW', 'DestroyIcon', 'GetSystemMetrics', 'CreateSolidBrush', 'DeleteObject', 'CoCreateInstance', 'CoInitializeEx', 'CoUninitialize', 'CoInitialize'], ['GetModuleFileNameW', 'CreateProcessWithLogonW', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'SizeofResource', 'SetFilePointer', 'SetFileAttributesA', 'SetEnvironmentVariableA', 'SetEndOfFile', 'ReadFile', 'LockResource', 'LoadResource', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetThreadLocale', 'GetTempFileNameA', 'GetStringTypeExA', 'GetStdHandle', 'GetShortPathNameA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetDiskFreeSpaceA', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharPrevA', 'CharNextA', 'CharToOemA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'wsprintfA'], ['FindFirstFileA', 'GetModuleHandleA', 'Sleep', 'GetLastError', 'LockResource', 'LoadResource', 'SizeofResource', 'FindResourceA', 'CopyFileA', 'GetModuleFileNameA', 'CreateThread', 'DeleteFileA', 'CreateFileA', 'SetStdHandle', 'FreeLibrary', 'VirtualQuery', 'GetProcessHeap', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoA', 'GetStringTypeW', 'GetLocaleInfoW', 'GetEnvironmentStringsW', 'FindNextFileA', 'FindClose', 'CreateFileW', 'RemoveDirectoryA', 'FreeEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'IsValidCodePage', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'InitializeCriticalSectionAndSpinCount', 'FatalAppExitA', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThread', 'lstrlenA', 'LoadLibraryW', 'CloseHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'IsProcessorFeaturePresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'ExitProcess', 'ReadFile', 'SetFilePointer', 'FlushFileBuffers', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'SetConsoleCtrlHandler', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'SetEndOfFile', 'mouse_event', 'GetDesktopWindow', 'GetWindowDC', 'FindWindowA', 'GetSystemMetrics', 'SystemParametersInfoA', 'GetCursorPos', 'DrawIcon', 'LoadIconA', 'MessageBoxA', 'GetForegroundWindow', 'ShowWindow', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyA', 'ShellExecuteA', 'ShellAboutA', 'SHFileOperationW', 'PlaySoundA'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm'], ['midiStreamOut', 'inet_ntoa', 'GetVersion', 'GetVersionExA', 'GetWindowTextA', 'GetViewportExtEx', 'OpenPrinterA', 'RegCloseKey', 'Shell_NotifyIconA', 'OleInitialize', 'UnRegisterTypeLib', 'ImageList_Destroy', 'GetOpenFileNameA', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueA', 'CreateToolbarEx', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetBkColor', 'GetOpenFileNameA', 'GetSaveFileNameA', 'CreateFontIndirectA', 'DeleteObject', 'GetObjectA', 'GetStockObject', 'SelectObject', 'SetBkMode', 'SetPixel', 'SetTextColor', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeConsole', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStdHandle', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', '_strdup', '_stricoll', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_fpreset', '_fullpath', '_iob', '_isctype', '_onexit', '_pctype', '_setmode', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'malloc', 'mbstowcs', 'memcpy', 'realloc', 'setlocale', 'signal', 'strcoll', 'strlen', 'tolower', 'vfprintf', 'wcstombs', 'AppendMenuA', 'BeginPaint', 'CharLowerA', 'CheckRadioButton', 'ClientToScreen', 'CreatePopupMenu', 'DefWindowProcW', 'DestroyMenu', 'DispatchMessageA', 'EnableWindow', 'EndPaint', 'FindWindowA', 'GetClientRect', 'GetDlgItem', 'GetMessageA', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowTextA', 'IsWindow', 'RedrawWindow', 'RegisterClassA', 'SendDlgItemMessageA', 'SetCursor', 'SetWindowPos', 'TranslateMessage', 'UnregisterClassA', 'wvsprintfA', 'CreateEnvironmentBlock', 'DestroyEnvironmentBlock', 'GetUserProfileDirectoryW'], ['DeleteCriticalSection', '__getmainargs', 'NtCancelIoFileEx', 'AllocateAndInitializeSid', 'BCryptGenRandom', 'CertAddCertificateContextToStore', 'FreeMibTable', 'AcquireSRWLockExclusive', 'NetApiBufferFree', 'NtCreateFile', 'CoCreateInstance', 'GetErrorInfo', 'PdhAddEnglishCounterW', 'CallNtPowerInformation', 'AcceptSecurityContext', 'CommandLineToArgvW', 'MessageBoxW', 'WSACleanup', 'GetModuleFileNameExW', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress'], ['lstrlenW', 'CloseHandle', 'SetErrorMode', 'CreateThread', 'GetModuleHandleW', 'OutputDebugStringA', 'MessageBoxW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'OleDraw', 'VariantCopy', 'GetDC', 'VerQueryValueA', 'mciSendCommandA'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA'], ['MessageBoxA', 'FreeLibrary', 'lstrcatA', 'GetModuleFileNameA', 'ExitProcess', 'LoadLibraryA', 'GetProcAddress', 'lstrlenA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyExA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree'], ['LoadLibraryA', 'GetProcAddress'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'TlsAlloc', 'SwitchToThread', 'SuspendThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatusEx', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateWaitableTimerExW', 'CreateThread', 'CreateIoCompletionPort', 'CreateFileA', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['MessageBoxW'], ['lstrlenW', 'CloseHandle', 'SetErrorMode', 'CreateThread', 'MessageBoxW'], ['GetModuleHandleA', 'FindWindowA'], ['MessageBoxA', '__current_exception', '__current_exception_context', 'memset', '_except_handler4_common', '_initialize_onexit_table', '_register_onexit_function', '__p___argc', '__p___argv', '_controlfp_s', 'terminate', '_exit', '_initterm', 'exit', '_register_thread_local_exe_atexit_callback', '_c_exit', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '_set_app_type', '_seh_filter_exe', '_cexit', '_crt_atexit', '_initterm_e', '__setusermatherr', '_set_fmode', '__p__commode', '_configthreadlocale', '_set_new_mode', 'GetCurrentProcessId', 'GetModuleHandleW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter'], ['lstrcpy'], ['MessageBoxA', 'wsprintfA', 'CloseHandle', 'CreateFileA', 'ExitProcess', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'lstrcpyA', 'memset', 'memcpy'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileW', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeW', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA', 'GetCaretBlinkTime'], ['GetModuleHandleA', 'MessageBoxA'], ['GetModuleHandleA'], ['GetModuleHandleA', 'MessageBoxA', 'RegOpenKeyExA'], ['MessageBoxA', 'TlsAlloc', 'WinExec', 'MultiByteToWideChar', 'GetWindowsDirectoryW', 'WideCharToMultiByte', 'GetModuleFileNameW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoW', 'CloseHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'HeapCreate', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'IsProcessorFeaturePresent', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'GetModuleFileNameA', 'GlobalAddAtomW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'CreateDirectoryA', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetStdHandle', 'FlushFileBuffers', 'Sleep', 'CreateFileA', 'GetCPInfo', 'GetACP', 'VirtualProtect', 'GetOEMCP', 'IsValidCodePage', 'CreateFileW', 'LoadLibraryW', 'WriteConsoleW', 'HeapReAlloc', 'SetEndOfFile', 'GetProcessHeap', 'LCMapStringW', 'GetStringTypeW', 'HeapSize'], ['GetProcAddress'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'ShellExecuteA', 'ShowWindow'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect'], ['MessageBoxA', 'LoadAcceleratorsA', 'GetMessageA', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'LoadIconA', 'LoadCursorA', 'RegisterClassExA', 'LoadStringA', 'SetScrollInfo', 'PostQuitMessage', 'GetDC', 'ReleaseDC', 'BeginPaint', 'GetClientRect', 'DrawTextA', 'EndPaint', 'DefWindowProcA', 'ScrollWindowEx', 'DestroyWindow', 'DialogBoxParamA', 'EndDialog', 'CreateWindowExA', 'UpdateWindow', 'ShowWindow', 'CreateFontIndirectA', 'SelectObject', 'GetTextMetricsA', 'CryptAcquireContextA', 'memcpy', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter', '_ismbblead', 'exit', '_acmdln', '_initterm', '_initterm_e', '_configthreadlocale', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '_encode_pointer', '__set_app_type', '_crt_debugger_hook', '?terminate@@YAXXZ', '_unlock', '__dllonexit', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', '_invoke_watson', '_controlfp_s', 'memset', '_wcslwr', '__CxxFrameHandler3', '_invalid_parameter_noinfo', '_mbsnbcpy', 'malloc', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Unlock@_Mutex@std@@QAEXXZ', '?_Lock@_Mutex@std@@QAEXXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@PB_W@Z', '??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z', '??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@XZ', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'QueryPerformanceCounter', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'OleInitialize'], ['GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'CreateSemaphoreW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindResourceExW', 'LocalFree', 'CreateDirectoryW', 'DeleteFileW', 'GetCurrentThread', 'WaitForMultipleObjects', 'LoadLibraryW', 'WaitForSingleObject', 'GetExitCodeProcess', 'DuplicateHandle', 'ReleaseMutex', 'GetEnvironmentVariableW', 'lstrcmpiW', 'VirtualQuery', 'GetTempPathW', 'GetLocalTime', 'OutputDebugStringA', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'lstrcmpW', 'lstrlenW', 'SetFilePointer', 'CreateMutexW', 'InitializeCriticalSection', 'TryEnterCriticalSection', 'SetEvent', 'ResetEvent', 'GetFileAttributesExW', 'SetLastError', 'VerifyVersionInfoW', 'VerSetConditionMask', 'MoveFileExW', 'GetFileTime', 'ReadFile', 'DeviceIoControl', 'SetProcessWorkingSetSize', 'OpenProcess', 'CreateProcessW', 'ReadProcessMemory', 'lstrcpynW', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'CreateThread', 'DebugActiveProcess', 'GetThreadContext', 'DebugActiveProcessStop', 'VirtualQueryEx', 'GetProcessId', 'GetSystemInfo', 'ContinueDebugEvent', 'WaitForDebugEvent', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetModuleHandleExW', 'ExitProcess', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'EncodePointer', 'LeaveCriticalSection', 'WaitNamedPipeW', 'TransactNamedPipe', 'SetNamedPipeHandleState', 'RtlCaptureContext', 'ReleaseSemaphore', 'EnterCriticalSection', 'OutputDebugStringW', 'DeleteCriticalSection', 'DecodePointer', 'HeapSize', 'GetProcAddress', 'GetLastError', 'RaiseException', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'GetModuleHandleW', 'HeapFree', 'IsDebuggerPresent', 'GetUserDefaultLangID', 'GetSystemDefaultLangID', 'GetComputerNameExW', 'GetOverlappedResult', 'ConnectNamedPipe', 'CreateNamedPipeW', 'DisconnectNamedPipe', 'UnregisterWait', 'GetProcessTimes', 'UnregisterWaitEx', 'RegisterWaitForSingleObject', 'VirtualProtect', 'VirtualAlloc', 'HeapAlloc', 'RemoveDirectoryW', 'HeapReAlloc', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'GetProcessWindowStation', 'CloseDesktop', 'CloseClipboard', 'CharUpperW', 'CharLowerW', 'PostThreadMessageW', 'DispatchMessageW', 'GetMessageW', 'PeekMessageW', 'EnumWindows', 'IsWindowVisible', 'GetWindowThreadProcessId', 'SetThreadDesktop', 'CreateWindowStationW', 'CloseWindowStation', 'GetThreadDesktop', 'SetProcessWindowStation', 'CreateDesktopW', 'wvsprintfW', 'wsprintfW', 'MessageBoxW'], ['SetErrorMode'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'wcscmp', 'SHSetValueA', 'GetModuleFileNameExA', 'WSAGetLastError', 'GetAdaptersInfo', 'WNetOpenEnumA', 'DestroyEnvironmentBlock', 'GdipGetImageEncodersSize', 'GetDC', 'BitBlt', 'SetEntriesInAclA', 'SHGetSpecialFolderPathA'], ['InterlockedDecrement', 'GetModuleFileNameW', 'lstrcmpA', 'lstrcmpiA', 'GetProcAddress', 'InterlockedIncrement', 'GetModuleHandleA', 'ExitProcess', 'TerminateProcess', 'HeapAlloc', 'HeapFree', 'GetSystemTimeAsFileTime', 'DeleteFileW', 'GetModuleHandleW', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetEndOfFile', 'SetStdHandle', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetConsoleMode', 'GetConsoleCP', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetModuleFileNameA', 'GetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'EnterCriticalSection', 'TlsFree', 'WriteFile', 'TlsAlloc', 'ReadFile', 'SetFileTime', 'SetFilePointer', 'CreateFileW', 'GetDiskFreeSpaceExW', 'SystemTimeToFileTime', 'SetWaitableTimer', 'CreateWaitableTimerW', 'WideCharToMultiByte', 'lstrlenW', 'GetTempFileNameW', 'GetTempPathW', 'GetLastError', 'ResetEvent', 'CancelWaitableTimer', 'WaitForMultipleObjects', 'GetTickCount', 'MultiByteToWideChar', 'lstrlenA', 'TlsSetValue', 'IsBadWritePtr', 'IsBadReadPtr', 'GetCurrentProcess', 'Sleep', 'WaitForSingleObject', 'SetEvent', 'CreateEventW', 'DeviceIoControl', 'LeaveCriticalSection', 'DeleteCriticalSection', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'LCMapStringW', 'LCMapStringA', 'SetLastError', 'TlsGetValue', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'CreateThread', 'GetCurrentThreadId', 'ExitThread', 'CloseHandle', 'FlushFileBuffers', 'RegQueryInfoKeyW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumKeyExW', 'RegCloseKey', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'SysAllocString', 'SysFreeString', 'SHSetValueW', 'PathAppendW', 'PathRemoveFileSpecW', 'SHDeleteKeyW', 'SHGetValueA', 'StrStrIW', 'PathGetDriveNumberW', 'SHGetValueW', 'FtpCommandW', 'InternetWriteFile', 'HttpEndRequestW', 'FtpOpenFileW', 'InternetReadFileExA', 'InternetGetLastResponseInfoW', 'InternetSetStatusCallbackW', 'InternetCloseHandle', 'InternetOpenW', 'FtpGetFileSize', 'InternetSetOptionW', 'InternetConnectW', 'InternetQueryOptionW', 'InternetCrackUrlW', 'InternetReadFile', 'HttpQueryInfoW', 'HttpSendRequestExW', 'HttpOpenRequestW', 'InternetSetOptionA', 'ObtainUserAgentString', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'Netbios'], ['TlsAlloc', 'TlsFree', 'MultiByteToWideChar', 'DebugBreak', 'OutputDebugStringA', 'TerminateProcess', 'GetCurrentProcess', 'InterlockedIncrement', 'lstrcpynA', 'lstrlenW', 'WideCharToMultiByte', 'GetFileAttributesExA', 'CloseHandle', 'GetLastError', 'CreateFileA', 'ReadFile', 'GetFileSize', 'WriteFile', 'GetLongPathNameA', 'RaiseException', 'VirtualQuery', 'SearchPathW', 'GetLongPathNameW', 'LocalFree', 'GetSystemDirectoryW', 'GetCurrentProcessId', 'DeviceIoControl', 'LoadLibraryA', 'GetProcAddress', 'GetFileAttributesW', 'LocalAlloc', 'GetVersionExA', 'SetFilePointer', 'CreateFileW', 'GetPrivateProfileStringA', 'GetSystemWindowsDirectoryA', 'GetEnvironmentVariableA', 'GetSystemInfo', 'GlobalMemoryStatusEx', 'OpenProcess', 'LoadLibraryExW', 'GetShortPathNameA', 'GetPrivateProfileIntA', 'FindResourceA', 'LoadResource', 'WaitForSingleObject', 'SizeofResource', 'IsDBCSLeadByte', 'DisableThreadLibraryCalls', 'LoadLibraryExA', 'CreateThread', 'CreateDirectoryA', 'GetCurrentThreadId', 'SetEndOfFile', 'GetTickCount', 'SetUnhandledExceptionFilter', 'CreateRemoteThread', 'GetCommandLineW', 'SetErrorMode', 'VirtualFree', 'GetModuleFileNameW', 'TlsGetValue', 'GlobalAlloc', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'GetPrivateProfileSectionA', 'CreateEventA', 'SetEvent', 'WaitForMultipleObjects', 'GetModuleHandleW', 'LoadLibraryW', 'lstrcpynW', 'lstrcmpA', 'IsBadCodePtr', 'SetLastError', 'GetFileAttributesExW', 'GetSystemTime', 'SystemTimeToFileTime', 'VirtualProtect', 'Sleep', 'GetPrivateProfileStringW', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'FlushInstructionCache', 'lstrcmpW', 'GetExitCodeThread', 'ResetEvent', 'GetProcessHeap', 'IsBadReadPtr', 'TlsSetValue', 'GetModuleFileNameA', 'GetModuleHandleA', 'lstrcmpiA', 'FreeLibrary', 'InterlockedDecrement', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'GetLocaleInfoA', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetStartupInfoA', 'SetHandleCount', 'lstrlenA', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCurrentThread', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedExchange', 'VirtualAlloc', 'InterlockedCompareExchange', 'HeapFree', 'OpenThread', 'SetEnvironmentVariableA', 'CreateMutexA', 'FormatMessageW', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'ReleaseMutex', 'HeapDestroy', 'HeapCreate', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'SetFilePointerEx', 'GetFileSizeEx', 'LocalFileTimeToFileTime', 'GetFileType', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'SuspendThread', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapReAlloc', 'GetCommandLineA', 'RtlUnwind', 'ExitProcess', 'HeapSize', 'GetStdHandle', 'GetCPInfo', 'GetACP', 'GetStringTypeA', 'IsValidCodePage', 'GetOEMCP', 'HeapAlloc', 'EnumThreadWindows', 'GetActiveWindow', 'MessageBoxW', 'FindWindowA', 'IsWindow', 'SendMessageTimeoutA', 'PostMessageA', 'DestroyWindow', 'KillTimer', 'DefWindowProcA', 'RegisterClassA', 'CreateWindowExA', 'SetTimer', 'GetMessageA', 'TranslateMessage', 'LoadStringA', 'CharNextA', 'CallNextHookEx', 'SetWindowsHookExA', 'BroadcastSystemMessageA', 'UnhookWindowsHookEx', 'CharLowerA', 'RegisterWindowMessageA', 'ScreenToClient', 'GetClassNameA', 'DispatchMessageA', 'FindWindowExA', 'RegDeleteValueA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegEnumKeyExA', 'RegDeleteKeyA', 'RegSetValueExA', 'RegOpenKeyExW', 'RegEnumKeyExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegCloseKey', 'SHGetFolderPathA', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderPathA', 'CommandLineToArgvW', 'ShellExecuteW', 'CoTaskMemRealloc', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CreateStreamOnHGlobal', 'StringFromGUID2', 'CoCreateInstance', 'StringFromCLSID', 'SysStringByteLen', 'SysAllocStringByteLen', 'UnRegisterTypeLib', 'VarBstrCmp', 'SysAllocString', 'SysAllocStringLen', 'LoadRegTypeLib', 'VarUI4FromStr', 'VariantInit', 'LoadTypeLib', 'SysStringLen', 'DispCallFunc', 'SysFreeString', 'VariantClear', 'StrToIntA', 'PathRemoveExtensionA', 'SHGetValueW', 'PathIsPrefixW', 'PathIsRootW', 'PathRemoveFileSpecW', 'StrCpyNW', 'PathFileExistsA', 'PathCombineA', 'PathFindFileNameW', 'StrCmpW', 'StrChrW', 'PathCombineW', 'StrStrIW', 'StrCmpIW', 'StrDupW', 'PathFileExistsW', 'PathIsDirectoryW', 'SHGetValueA', 'StrCmpNIA', 'PathFindFileNameA', 'PathRemoveFileSpecA', 'StrStrIA', 'StrCmpNA', 'StrChrA', 'PathRemoveBackslashW', 'PathRemoveExtensionW', 'PathFindExtensionW', 'SHDeleteKeyA', 'SHSetValueA', 'UrlGetPartW', 'UrlGetPartA', 'UrlCanonicalizeA', 'StrCmpNIW', 'StrStrW', 'PathAppendA', 'PathIsDirectoryA', 'GetModuleInformation', 'GetModuleBaseNameA', 'EnumProcessModules', 'GetModuleFileNameExA', 'GetFileVersionInfoA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'HttpOpenRequestA', 'InternetSetStatusCallbackA', 'HttpAddRequestHeadersA', 'InternetCloseHandle', 'HttpSendRequestExA', 'InternetWriteFile', 'InternetReadFileExA', 'HttpEndRequestA', 'HttpQueryInfoA', 'InternetConnectA', 'InternetOpenA', 'InternetSetOptionA', 'WSASetLastError']] \ No newline at end of file +function_list = [['LoadLibraryA', 'GetProcAddress', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'GetDC', '?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDXZ', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?widen@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDD@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QBE?AVlocale@2@XZ', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?tie@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_ostream@DU?$char_traits@D@std@@@2@XZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?unshift@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PAD1AAPAD@Z', '?setg@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD00@Z', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAPAD0PAH001@Z', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '?in@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?out@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?eback@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?gptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?pptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?egptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?gbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXH@Z', '?epptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ', '?_Gndec@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '?_Gninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '?_Gnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBE_JXZ', '?pbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXH@Z', '?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '?_Getcat@?$codecvt@DDU_Mbstatet@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?rdbuf@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@XZ', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ', '?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PAD_J@Z', '?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@_JH@Z', '?tellg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@U_Mbstatet@@@2@XZ', '?width@ios_base@std@@QAE_J_J@Z', '?width@ios_base@std@@QBE_JXZ', '?flags@ios_base@std@@QBEHXZ', '?good@ios_base@std@@QBE_NXZ', '?always_noconv@codecvt_base@std@@QBE_NXZ', '??Bid@locale@std@@QAEIXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '??1_Lockit@std@@QAE@XZ', '??0_Lockit@std@@QAE@H@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ', '?uncaught_exception@std@@YA_NXZ', '?_Xout_of_range@std@@YAXPBD@Z', '?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A', '?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z', '?_Xlength_error@std@@YAXPBD@Z', '?_Pnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBE_JXZ', '_CxxThrowException', '__current_exception_context', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', 'memcpy', '__current_exception', 'memset', '_except_handler4_common', 'memmove', '_fseeki64', '__p__commode', 'fsetpos', 'ungetc', 'setvbuf', 'fgetpos', 'fwrite', '_set_fmode', '_get_stream_buffer_pointers', '__stdio_common_vfprintf', 'fgetc', 'fclose', 'fflush', '__acrt_iob_func', 'fputc', 'fread', '_lock_file', '_unlock_file', 'exit', '_exit', '_configure_narrow_argv', '__p___argc', '_initterm_e', '_cexit', '_c_exit', '_register_thread_local_exe_atexit_callback', '_initterm', '_set_app_type', '_get_initial_narrow_environment', '_seh_filter_exe', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_controlfp_s', 'terminate', '_initialize_narrow_environment', '_invalid_parameter_noinfo_noreturn', '__p___argv', 'free', '_set_new_mode', 'malloc', '_callnewh', '__setusermatherr', '_configthreadlocale'], ['GetCurrentProcess', 'FindNextFileA', 'FindClose', 'GetSystemDirectoryA', 'DeleteFileA', 'SetFileAttributesA', 'ExitProcess', 'FreeLibrary', 'CreateEventW', 'WaitForSingleObjectEx', 'FindFirstFileA', 'SetEvent', 'GetConsoleWindow', 'RemoveDirectoryA', 'CreateThread', 'Sleep', 'GetProcAddress', 'CloseHandle', 'LoadLibraryA', 'CreateFileA', 'ResetEvent', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetLastError', 'SetLastError', 'QueryPerformanceFrequency', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileAttributesExW', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadFile', 'ReadConsoleW', 'FlushFileBuffers', 'HeapReAlloc', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'HeapSize', 'CreateFileW', 'WriteConsoleW', 'SetEndOfFile', 'DeviceIoControl', 'RtlUnwind', 'SystemParametersInfoA', 'GetSystemMenu', 'GetWindowRect', 'GetDC', 'ShowWindow', 'SetWindowTextA', 'GetForegroundWindow', 'MoveWindow', 'DrawMenuBar', 'FindWindowA', 'DeleteMenu', 'CryptReleaseContext', 'CryptAcquireContextA', 'CryptGenRandom', 'AllocateAndInitializeSid', 'FreeSid', 'CheckTokenMembership', 'SHGetSpecialFolderPathA', 'PathFileExistsA'], ['_CorExeMain'], ['GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'Sleep', 'GetStdHandle', 'GetTimeZoneInformation', 'GetACP', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetCommandLineA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetDateFormatA', 'GetTimeFormatA', 'GetDriveTypeA', 'SetEnvironmentVariableA', 'HeapReAlloc', 'VirtualAlloc', 'SetCurrentDirectoryA', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'GetCurrentDirectoryA', 'LocalFileTimeToFileTime', 'CreateFileA', 'GetShortPathNameA', 'GetVolumeInformationA', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'SystemTimeToFileTime', 'GetThreadLocale', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'CloseHandle', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpW', 'GetVersionExA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindNextFileA', 'FindClose', 'FreeLibrary', 'InterlockedDecrement', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'lstrcmpiA', 'SetLastError', 'GetLastError', 'InterlockedExchange', 'GetStringTypeExA', 'MultiByteToWideChar', 'CompareStringW', 'WideCharToMultiByte', 'lstrlenA', 'FreeEnvironmentStringsA', 'GetComputerNameA', 'CopyAcceleratorTableA', 'CreateMenu', 'PostThreadMessageA', 'GetTabbedTextExtentA', 'RegisterClipboardFormatA', 'GetSysColorBrush', 'UnregisterClassA', 'LoadCursorA', 'DestroyCursor', 'SetCursorPos', 'SetCapture', 'RedrawWindow', 'InflateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'IsZoomed', 'WindowFromPoint', 'KillTimer', 'SetTimer', 'SetRect', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'SetRectEmpty', 'IsRectEmpty', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'PostQuitMessage', 'IsWindowEnabled', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetWindow', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'ScreenToClient', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetWindowRgn', 'DrawIcon', 'FindWindowA', 'LockWindowUpdate', 'GetDCEx', 'DestroyIcon', 'GetClassLongA', 'GetMenuItemInfoA', 'GetDlgCtrlID', 'IsChild', 'InvalidateRect', 'IsIconic', 'AdjustWindowRectEx', 'ReleaseDC', 'GetDC', 'GetClientRect', 'CopyRect', 'IsWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'UnhookWindowsHookEx', 'ShowWindow', 'UpdateWindow', 'LoadBitmapA', 'CharUpperA', 'SendMessageA', 'SetWindowLongA', 'GetWindowLongA', 'EnableWindow', 'GetForegroundWindow', 'DeleteDC', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetStockObject', 'GetDeviceCaps', 'TextOutA', 'CreatePen', 'CreateSolidBrush', 'CreateDCA', 'GetBkColor', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetViewportOrgEx', 'DPtoLP', 'Rectangle', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'CreateFontIndirectA', 'SetRectRgn', 'CombineRgn', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'StartPage', 'CreateBitmap', 'GetObjectA', 'CreateRectRgn', 'SelectClipRgn', 'DeleteObject', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'PatBlt', 'CreateRectRgnIndirect', 'ExtTextOutA', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetJobA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear'], ['Sleep', 'WaitForSingleObject', 'CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'GetLastError', 'CreateMutexW', 'FreeConsole', 'GetModuleHandleA', 'CloseHandle', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetClipboardViewer'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'GetVersionExA', 'FreeResource', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'ReadConsoleInputA', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'CopyFileW', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetPrivateProfileIntA', 'WriteProfileStringW', 'GetLastError', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetModuleHandleW', 'ExitProcess', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetModuleFileNameA', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA'], ['SetErrorMode', 'LoadLibraryW', 'FlushFileBuffers', 'CloseHandle', 'CreateFileW', 'IsProcessorFeaturePresent', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleW', 'SetStdHandle', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'GetLastError', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapCreate', 'EncodePointer', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'MultiByteToWideChar', 'HeapSize', 'RtlUnwind', 'PostQuitMessage', 'DefWindowProcW', 'DestroyWindow', 'UpdateWindow', 'CreateWindowExW', 'RegisterClassExW', 'DispatchMessageW', 'TranslateMessage', 'TranslateAcceleratorW', 'GetMessageW', 'LoadAcceleratorsW'], ['htonl', 'FindClose', 'FindFirstFileA', 'GetVolumeInformationA', 'WaitForSingleObject', 'CreateMutexA', 'OpenMutexA', 'ReadFile', 'FindNextFileA', 'FreeLibrary', 'GetTempPathA', 'GetSystemDirectoryA', 'GetSystemTime', 'lstrlenA', 'lstrcpynA', 'GetComputerNameA', 'OpenProcess', 'GetVersionExA', 'GetModuleFileNameA', 'LocalFree', 'LocalAlloc', 'GetCurrentProcess', 'GetCurrentThread', 'CreateMutexW', 'SetLastError', 'lstrcpyA', 'GetVersion', 'lstrcatA', 'VirtualFree', 'ReleaseMutex', 'VirtualAlloc', 'OpenMutexW', 'GetModuleHandleA', 'LoadLibraryExA', 'IsBadReadPtr', 'CreateFileW', 'GetEnvironmentVariableW', 'LoadLibraryW', 'MapViewOfFile', 'CreateFileMappingA', 'LoadLibraryA', 'SetFilePointer', 'GetProcAddress', 'CreateThread', 'Sleep', 'CreateFileA', 'WriteFile', 'CloseHandle', 'GetFileTime', 'SetFileTime', 'CreateProcessA', 'BeginUpdateResourceA', 'UpdateResourceA', 'EndUpdateResourceA', 'FindResourceA', 'LoadResource', 'SizeofResource', 'LockResource', 'DeleteFileA', 'GetLastError', 'CopyFileA', 'SetFileAttributesA', 'GetEnvironmentVariableA', 'GetCurrentProcessId', 'GetFileSize', 'UnregisterClassA', 'SetPropA', 'CreateWindowExW', 'DestroyWindow', 'wsprintfA', 'UnregisterClassW', 'RegDeleteValueA', 'RegEnumValueA', 'LookupAccountNameA', 'RegEnumKeyExA', 'LookupAccountSidA', 'IsValidSid', 'AccessCheck', 'OpenProcessToken', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetUserNameW', 'LookupAccountSidW', 'AllocateAndInitializeSid', 'FreeSid', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegSetValueExA', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'InitializeSecurityDescriptor', 'AddAccessAllowedAce', 'InitializeAcl', 'DuplicateTokenEx', 'OpenThreadToken', 'GetSidIdentifierAuthority', 'SetSecurityDescriptorDacl', '_mbschr', '_local_unwind2', 'strcmp', 'wcsncat', 'wcscpy', 'strncmp', '_wcsicmp', '_adjust_fdiv', '_itoa', '_stricmp', 'sscanf', 'strcat', 'memset', 'strstr', 'strncpy', 'memcpy', 'strlen', 'malloc', 'strcpy', 'free', 'strncat', 'memcmp', '_snprintf', '_ftol', 'realloc', '_abnormal_termination', 'wcscmp', 'wcslen', '??3@YAXPAX@Z', '??2@YAPAXI@Z', '_initterm'], ['WSACleanup', 'socket', 'inet_ntoa', 'setsockopt', 'ntohs', 'recvfrom', 'ioctlsocket', 'htons', 'WSAStartup', '__WSAFDIsSet', 'select', 'accept', 'listen', 'bind', 'closesocket', 'WSAGetLastError', 'recv', 'sendto', 'send', 'inet_addr', 'gethostbyname', 'gethostname', 'connect', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_ReplaceIcon', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'InitCommonControlsEx', 'ImageList_Create', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetQueryDataAvailable', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetQueryOptionW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetReadFile', 'InternetConnectW', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'DestroyEnvironmentBlock', 'UnloadUserProfile', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'DuplicateHandle', 'CreateThread', 'WaitForSingleObject', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'IsWow64Process', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleFileNameW', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'SetEndOfFile', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'SetCurrentDirectoryW', 'GetLongPathNameW', 'GetShortPathNameW', 'DeleteFileW', 'FindNextFileW', 'CopyFileExW', 'MoveFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'CopyFileW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'HeapReAlloc', 'HeapSize', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'GetProcessId', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'DecodePointer', 'GetLastError', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCurrentThread', 'CloseHandle', 'GetFullPathNameW', 'EncodePointer', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'WriteConsoleW', 'FindClose', 'SetEnvironmentVariableA', 'AdjustWindowRectEx', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'SetRect', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'MonitorFromRect', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'MessageBoxW', 'DefWindowProcW', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'UnregisterHotKey', 'CheckMenuRadioItem', 'CharLowerBuffW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'SystemParametersInfoW', 'LoadImageW', 'GetClassNameW', 'StrokePath', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'GetDeviceCaps', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'LineTo', 'AngleArc', 'MoveToEx', 'Ellipse', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'GetTextFaceW', 'CreateFontW', 'SetTextColor', 'PolyDraw', 'BeginPath', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'StrokeAndFillPath', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetAce', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'RegCreateKeyExW', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'AddAce', 'SetSecurityDescriptorDacl', 'GetUserNameW', 'InitiateSystemShutdownExW', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHCreateShellItem', 'SHGetDesktopFolder', 'SHGetSpecialFolderLocation', 'SHGetFolderPathW', 'SHFileOperationW', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoSetProxyBlanket', 'CoCreateInstanceEx', 'CoInitializeSecurity', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'SafeArrayAllocDescriptorEx', 'SafeArrayCreateVector', 'RegisterTypeLib', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'VariantCopy', 'VariantClear', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'RegisterTypeLibForUser', 'UnRegisterTypeLibForUser', 'UnRegisterTypeLib', 'CreateDispTypeInfo', 'SysAllocString', 'VariantInit'], ['ImmGetConversionStatus', 'ImmGetConversionListW', 'ImmGetStatusWindowPos', 'ImmEnumRegisterWordA', 'ImmCreateContext', 'GetOpenFileNamePreviewA', 'DrawDibProfileDisplay', 'DrawDibEnd', 'DrawDibDraw', 'DrawDibBegin', 'ICSeqCompressFrameEnd', 'ICCompress', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode'], ['HeapFree', 'RtlUnwind', 'VirtualAlloc', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'LocalFileTimeToFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'WriteFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'InterlockedIncrement', 'FindResourceExA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'InterlockedDecrement', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'MulDiv', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'VirtualProtect', 'SizeofResource', 'ExitProcess', 'GetFileSize', 'GlobalAlloc', 'GlobalFree', 'ReadFile', 'GlobalUnlock', 'GlobalReAlloc', 'SetFilePointer', 'CreateFileA', 'CloseHandle', 'GlobalLock', 'GetLastError', 'FindResourceA', 'LoadResource', 'LockResource', 'LocalAlloc', 'LocalFree', 'lstrlenA', 'lstrcmpiA', 'GetStringTypeExA', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'MultiByteToWideChar', 'GetVersion', 'FreeEnvironmentStringsA', 'InterlockedExchange', 'SetParent', 'SetRect', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'PostQuitMessage', 'ShowOwnedPopups', 'GetSysColorBrush', 'LoadCursorA', 'GetMenuItemInfoA', 'UnregisterClassA', 'GetDCEx', 'SetCapture', 'DestroyIcon', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'SetMenu', 'RedrawWindow', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'BringWindowToTop', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetWindowTextA', 'IsDialogMessageA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'RegisterWindowMessageA', 'GetSystemMenu', 'SendDlgItemMessageA', 'WinHelpA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'TrackPopupMenu', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'GetMenu', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'GetWindow', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'InflateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetWindowThreadProcessId', 'LoadIconA', 'SetCursor', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'LockWindowUpdate', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'ShowWindow', 'UpdateWindow', 'IsWindowEnabled', 'GetDlgItem', 'GetParent', 'PostMessageA', 'GetWindowLongA', 'GetWindowRect', 'SetFocus', 'GetFocus', 'GetAsyncKeyState', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'GetCapture', 'GetActiveWindow', 'SetActiveWindow', 'MapDialogRect', 'SetWindowPos', 'IsChild', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'CreatePatternBrush', 'GetStockObject', 'SetViewportOrgEx', 'CreateSolidBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'PatBlt', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetBkColor', 'EnumFontFamiliesExA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'CreateRectRgn', 'CreateDIBitmap', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'BitBlt', 'DeleteObject', 'CreatePalette', 'SelectPalette', 'RealizePalette', 'SelectClipRgn', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'timeEndPeriod', 'WSAGetOverlappedResult'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__C_specific_handler', '__dllonexit', '__iob_func', '_amsg_exit', '_beginthreadex', '_endthreadex', '_ftime', '_initterm', '_lock', '_onexit', '_setjmp', '_unlock', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'longjmp', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'realloc', 'signal', 'sprintf', 'strcmp', 'strlen', 'strncmp', 'vfprintf'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'GetFileAttributesExW', 'FreeLibrary', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'GetCommandLineA', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'TlsAlloc', 'GetProcessAffinityMask', 'SetLocaleInfoA', 'SetFileTime', 'CompareFileTime', 'SearchPathW', 'GetShortPathNameW', 'GetFullPathNameW', 'MoveFileW', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTickCount', 'GetFileSize', 'CopyFileW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'lstrcpynA', 'lstrcpynW', 'GetDiskFreeSpaceW', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessW', 'lstrcmpiA', 'GetTempFileNameW', 'lstrcatW', 'LoadLibraryA', 'GetModuleHandleA', 'OpenProcess', 'lstrcpyW', 'GetVersionExW', 'GetSystemDirectoryW', 'GetVersion', 'lstrcpyA', 'RemoveDirectoryW', 'lstrcmpA', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GlobalFree', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MulDiv', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW', 'lstrlenW', 'LoadIconW', 'MessageBoxW', 'wsprintfW', 'SetClassWord', 'EnableScrollBar', 'LoadCursorA', 'DrawTextA', 'ToUnicode', 'SendDlgItemMessageW', 'GetMessageTime', 'SetWinEventHook', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'ScreenToClient', 'GetMessagePos', 'CallWindowProcW', 'IsWindowVisible', 'LoadBitmapW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'GetWindowRect', 'AppendMenuW', 'CreatePopupMenu', 'GetSystemMetrics', 'EndDialog', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'SetWindowPos', 'DialogBoxParamW', 'CheckDlgButton', 'CreateWindowExW', 'SystemParametersInfoW', 'RegisterClassW', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharNextA', 'CharUpperW', 'CharPrevW', 'wvsprintfW', 'DispatchMessageW', 'PeekMessageW', 'wsprintfA', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'SendMessageTimeoutW', 'LoadCursorW', 'SetCursor', 'GetWindowLongW', 'GetSysColor', 'CharNextW', 'GetClassInfoW', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'EndPaint', 'FindWindowExW', 'GetStockObject', 'GetStringBitmapA', 'SetBoundsRect', 'FONTOBJ_vGetInfo', 'GetETM', 'FONTOBJ_pfdg', 'GdiEntry4', 'FONTOBJ_pifi', 'SetMetaFileBitsEx', 'AnimatePalette', 'ResetDCA', 'CLIPOBJ_cEnumStart', 'SetBkColor', 'GdiConvertRegion', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectW', 'SetBkMode', 'SetTextColor', 'SelectObject', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegEnumKeyW', 'RegCloseKey', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumValueW', 'SHGetFolderPathW', 'SHGetDiskFreeSpaceA', 'Shell_NotifyIconW', 'SHCreateProcessAsUserW', 'ShellExecuteEx', 'SHFormatDrive', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'SHGetSpecialFolderLocation', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'PathAppendW', 'PathRemoveFileSpecW', 'StrCmpNA', 'StrStrIA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create'], ['WriteConsoleW', 'GetConsoleOutputCP', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoW', 'CreateFileA', 'FreeConsole', 'GetLogicalDrives', 'GetConsoleWindow', 'GetModuleHandleA', 'MultiByteToWideChar', 'WriteConsoleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'HeapAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'GetClassInfoA', 'CallWindowProcA', 'SetWindowLongA', 'CheckDlgButton', 'GetActiveWindow', 'LoadCursorA', 'MessageBoxA', 'wsprintfA', 'GetDlgItemTextA', 'SetWindowTextA', 'GetStockObject', 'DeleteObject', 'SetBkMode', 'SetTextColor', 'CreateFontIndirectA', 'SelectObject', 'GetObjectA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegDeleteKeyA'], ['GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'GetConsoleAliasesLengthW', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'lstrlenA', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['ExitProcess', 'GetNativeSystemInfo', 'FreeLibrary', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'GetLastError', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'Sleep', 'SetConsoleTextAttribute', 'SetConsoleCursorPosition', 'GetStdHandle', 'SetConsoleCursorInfo', 'SetEnvironmentVariableA', 'HeapSize', 'FlushFileBuffers', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetConsoleMode', 'GetNumberOfConsoleInputEvents', 'PeekConsoleInputA', 'ReadConsoleInputA', 'SetConsoleMode', 'MultiByteToWideChar', 'WideCharToMultiByte', 'EncodePointer', 'DecodePointer', 'CreateThread', 'GetCurrentThreadId', 'ExitThread', 'LoadLibraryExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'GetModuleHandleExW', 'AreFileApisANSI', 'WriteFile', 'GetModuleFileNameW', 'DeleteCriticalSection', 'CreateFileW', 'CloseHandle', 'RtlUnwind', 'ReadFile', 'ReadConsoleW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetConsoleCP', 'GetTimeZoneInformation', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetFileType', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'WriteConsoleW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessA', 'GetFileAttributesExW', 'SetStdHandle', 'SetFilePointerEx', 'GetStringTypeW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'SetEndOfFile', 'SendMessageA', 'ShowWindow', 'PlaySoundW'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['GetProcessHeap', 'CreateFileA', 'CloseHandle', 'GetLastError', 'HeapWalk', 'CreateFiber', 'SwitchToFiber', 'CreateActCtxA', 'ActivateActCtx', 'DeactivateActCtx', 'OpenThread', 'GetFileAttributesA', 'FindFirstFileA', 'FindNextFileA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'CreateFileMappingA', 'VirtualAlloc', 'RaiseException', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'SetLastError', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsSetValue', 'FreeLibrary', 'LoadLibraryExW', 'CompareStringW', 'LCMapStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'ExitProcess', 'GetModuleHandleExW', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'HeapReAlloc', 'RtlUnwindEx', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA'], ['SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetVolumePathNameW', 'GetPrivateProfileIntA', 'GetSystemPowerStatus', 'GetCalendarInfoA', 'GetProcessHandleCount', 'GetConsoleAliasExesLengthW', 'LeaveCriticalSection', 'GetFileAttributesA', 'WriteConsoleW', 'GetModuleFileNameW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'DeleteFiber', 'SetLastError', 'InterlockedDecrement', 'HeapSize', 'SetComputerNameA', 'SearchPathA', 'OpenWaitableTimerA', 'LoadLibraryA', 'Process32FirstW', 'GetProcessId', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'GetModuleHandleA', 'FindNextFileW', 'CompareStringA', 'SetFileShortNameA', 'FindAtomW', 'AreFileApisANSI', 'InterlockedIncrement', 'GetProcAddress', 'GetVolumeNameForVolumeMountPointA', 'GetLastError', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'EnterCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsW', 'SelectObject'], ['OpenProcess', 'GetTickCount', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'lstrcmpW', 'lstrlenW', 'SetVolumeMountPointW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'CreateFileW', 'WriteFile', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'lstrlenA', 'GetCommandLineW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetFileSizeEx', 'GetCurrentProcess', 'ReadFile', 'SetFileAttributesW', 'SetFilePointerEx', 'WaitForSingleObject', 'CreateMutexA', 'WaitForMultipleObjects', 'GetCurrentProcessId', 'ExitProcess', 'CreateThread', 'ExitThread', 'SetProcessShutdownParameters', 'GetSystemInfo', 'lstrcmpiW', 'lstrcpyW', 'lstrcatW', 'OpenMutexA', 'MoveFileExW', 'WideCharToMultiByte', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'ReleaseSemaphore', 'CreateSemaphoreA', 'TerminateProcess', 'Sleep', 'GetLastError', 'CloseHandle', 'GetVolumePathNamesForVolumeNameW', 'GetDriveTypeW', 'FindVolumeClose', 'FindNextVolumeW', 'GetLogicalDrives', 'FindFirstVolumeW', 'wsprintfA', 'QueryServiceStatusEx', 'OpenSCManagerA', 'EnumDependentServicesA', 'ControlService', 'CloseServiceHandle', 'CryptAcquireContextW', 'CryptReleaseContext', 'CryptGenRandom', 'OpenServiceA', 'SHEmptyRecycleBinA', 'CommandLineToArgvW', 'ShellExecuteW', 'NetShareEnum', 'NetApiBufferFree', 'RmGetList', 'RmStartSession', 'RmEndSession', 'RmRegisterResources', 'WNetCloseEnum', 'WNetEnumResourceW', 'WNetOpenEnumW', 'WNetGetConnectionW'], ['GetMailslotInfo', 'lstrcmpA', 'lstrlenA', 'OpenSemaphoreW', 'LoadLibraryA', 'LoadLibraryW', 'GetModuleFileNameW', 'GetFirmwareEnvironmentVariableA', 'FindResourceExW', 'EndUpdateResourceW', 'WritePrivateProfileSectionA', 'GetPrivateProfileSectionNamesA', 'GetCurrentDirectoryW', 'CreateDirectoryExW', 'DefineDosDeviceA', 'GetFileAttributesExA', 'DeleteFileW', 'CopyFileW', 'IsBadStringPtrA', 'BuildCommDCBAndTimeoutsW', 'GetNamedPipeInfo', 'GetDefaultCommConfigW', 'OpenJobObjectA', 'SetInformationJobObject', 'AddRefActCtx', 'GetNumaHighestNodeNumber', 'GetNumaProcessorNode', 'GetCalendarInfoW', 'SetCalendarInfoA', 'EnumDateFormatsA', 'GetSystemDefaultLangID', 'GetSystemDefaultLCID', 'PeekConsoleInputA', 'AllocConsole', 'WriteConsoleW', 'SetFilePointerEx', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'GetSystemTimes', 'GetCommState', 'GetFileTime', 'DeviceIoControl', 'LockFileEx', 'GetExitCodeThread', 'TerminateThread', 'FreeEnvironmentStringsW', 'GetProcessTimes', 'HeapUnlock', 'HeapAlloc', 'VirtualQuery', 'VirtualProtect', 'LocalAlloc', 'GlobalUnWire', 'GlobalUnlock', 'CommConfigDialogA', 'GlobalAlloc', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'LCMapStringW', 'GetLocaleInfoW', 'GetCPInfo', 'CloseHandle', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'GetLastError', 'FreeLibrary', 'LoadLibraryExW', 'HeapFree', 'HeapReAlloc', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'GetACP', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetProcessHeap', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'TranslateMDISysAccel', 'GetCaretPos', 'GetWindowDC', 'IsIconic', 'ReplyMessage', 'GetMonitorInfoW', 'ControlService', 'RegQueryValueExW', 'RegQueryValueA', 'RegQueryInfoKeyW', 'RegOpenKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'SetKernelObjectSecurity', 'GetPrivateObjectSecurity', 'GetSecurityDescriptorControl', 'AddAuditAccessAce', 'GetAce', 'MapGenericMask', 'ObjectPrivilegeAuditAlarmA', 'OpenBackupEventLogW', 'ClearEventLogW', 'RegisterServiceCtrlHandlerA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'InterlockedExchange', 'FormatMessageA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['Sleep', 'WaitForSingleObject', 'CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'GetLastError', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'CloseHandle', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ShowWindow', 'SetClipboardViewer'], ['FindCloseChangeNotification', 'CreateDirectoryExA', 'GetFileAttributesExA', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'GetPrivateProfileIntA', 'LoadLibraryW', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetModuleFileNameW', 'GetCPInfoExW', 'GetLastError', 'GetLongPathNameW', 'InterlockedIncrement', 'SetComputerNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'MoveFileA', 'CreateEventW', 'OpenJobObjectW', 'EnumDateFormatsA', 'SetConsoleTitleW', 'LocalSize', 'WriteFileEx', 'LocalFree', 'HeapReAlloc', 'FreeLibrary', 'GetConsoleAliasesLengthW', 'GetProcAddress', 'FindFirstChangeNotificationW', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'Sleep', 'RtlUnwind', 'HeapSize', 'RaiseException', 'ClientToScreen', 'IsTokenRestricted', 'GetOldestEventLogRecord'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'CharUpperBuffW', 'VariantChangeTypeEx', 'RaiseException'], ['CreateDirectoryExA', 'ReadConsoleInputA', 'GetTempPathA', 'GetSystemDirectoryW', 'RemoveDirectoryW', 'OutputDebugStringA', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'GetCurrentProcess', 'RtlCaptureContext', 'InterlockedDecrement', 'SetFileTime', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'SetProcessPriorityBoost', 'EndUpdateResourceA', 'GetModuleHandleW', 'FindFirstVolumeA', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'SetErrorMode', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructA', 'AddConsoleAliasA', 'GetConsoleAliasA', 'FindNextFileA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['GetFileInformationByHandle', 'GetFullPathNameW', 'GetFullPathNameA', 'GetLogicalDriveStringsW', 'SetUnhandledExceptionFilter', 'ConnectNamedPipe', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'DeviceIoControl', 'LeaveCriticalSection', 'OpenMutexW', 'GetCurrentProcess', 'GetCurrentThread', 'TlsAlloc', 'TlsGetValue', 'TlsFree', 'FlushInstructionCache', 'GetSystemInfo', 'GetLocalTime', 'GetVersion', 'GetTickCount', 'GetSystemDirectoryA', 'GetSystemDirectoryW', 'GetWindowsDirectoryW', 'VirtualAlloc', 'VirtualProtect', 'VirtualAllocEx', 'CreateFileMappingW', 'MapViewOfFileEx', 'VirtualLock', 'VirtualUnlock', 'FindResourceExW', 'GetModuleFileNameA', 'GetModuleHandleW', 'LoadResource', 'FindResourceW', 'LoadLibraryA', 'LoadLibraryW', 'GlobalAlloc', 'LocalAlloc', 'MulDiv', 'FileTimeToDosDateTime', 'lstrlenA', 'lstrlenW', 'OpenMutexA', 'OpenSemaphoreA', 'CreateFileMappingA', 'GlobalAddAtomW', 'WritePrivateProfileStringA', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WaitNamedPipeA', 'IsBadWritePtr', 'IsBadCodePtr', 'SystemTimeToFileTime', 'GetConsoleCP', 'GetConsoleOutputCP', 'WriteConsoleA', 'WriteConsoleW', 'GetConsoleScreenBufferInfo', 'IsDebuggerPresent', 'CreateDirectoryA', 'GetLastError', 'GetFileAttributesW', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentThreadId', 'ExitProcess', 'FreeLibrary', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsSetValue', 'GetSystemTimeAsFileTime', 'LoadLibraryExW', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'SetFilePointerEx', 'GetConsoleMode', 'WriteFile', 'FlushFileBuffers', 'GetFileType', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetModuleFileNameW', 'EncodePointer', 'InterlockedFlushSList', 'RtlUnwind', 'RaiseException', 'InitializeSListHead', 'GetCurrentProcessId', 'GetStartupInfoW', 'CompareFileTime', 'ExpandEnvironmentStringsW', 'ExpandEnvironmentStringsA', 'GetFileAttributesA', 'GetDriveTypeW', 'GetDriveTypeA', 'FindFirstFileW', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'CreateFileW', 'CreateFileA', 'SetLastError', 'CreateDirectoryW', 'SetStdHandle', 'GetStdHandle', 'GetProcAddress', 'UnhandledExceptionFilter', 'GetModuleHandleA', 'DecodePointer', 'LoadIconW', 'CreateIconIndirect', 'RegisterWindowMessageA', 'RegisterWindowMessageW', 'AttachThreadInput', 'SetWindowsHookExW', 'GetWindowThreadProcessId', 'FindWindowW', 'EqualRect', 'SetRect', 'MapWindowPoints', 'ScreenToClient', 'MessageBeep', 'MessageBoxW', 'SetPropW', 'RedrawWindow', 'SetForegroundWindow', 'SetActiveWindow', 'CheckMenuItem', 'CreatePopupMenu', 'LoadMenuW', 'SetCapture', 'MapVirtualKeyW', 'GetActiveWindow', 'CharUpperW', 'CharUpperA', 'CheckDlgButton', 'SetWindowPlacement', 'GetStockObject', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreatePalette', 'CreateICW', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateBitmap', 'GetOpenFileNameW', 'GetSaveFileNameW', 'ChooseFontW', 'RegNotifyChangeKeyValue', 'DeleteService', 'RegCloseKey', 'CoGetClassObject', 'CoInitializeEx', 'CoCreateGuid'], ['InitCommonControlsEx', 'GdipDrawImageRectI', 'GdipFree', 'GdipLoadImageFromStream', 'GdipLoadImageFromFile', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromFileICM', 'GdipCloneImage', 'GdipDisposeImage', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdiplusShutdown', 'GdiplusStartup', 'GdipSetClipRectI', 'GdipAlloc', 'GdipGraphicsClear', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'HeapSize', 'HeapReAlloc', 'LCMapStringEx', 'GetStringTypeW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'LoadLibraryW', 'MulDiv', 'GetLastError', 'GlobalLock', 'GlobalUnlock', 'VirtualAlloc', 'CloseHandle', 'SetEvent', 'CreateEventA', 'CreateThread', 'OutputDebugStringW', 'LoadLibraryExW', 'LeaveCriticalSection', 'EnterCriticalSection', 'Sleep', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount64', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'InitOnceExecuteOnce', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetModuleHandleW', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'FlsAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'GetModuleFileNameW', 'WriteFile', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleExW', 'ExitProcess', 'GetProcessHeap', 'DecodePointer', 'RaiseException', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'HeapFree', 'HeapAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'MultiByteToWideChar', 'GetCommandLineA', 'GetCurrentThreadId', 'SetLastError', 'RtlPcToFileHeader', 'EncodePointer', 'CreateFileW', 'EndPaint', 'GetClientRect', 'GetWindowLongPtrA', 'BeginPaint', 'LoadCursorA', 'LoadIconA', 'DefMDIChildProcA', 'LoadStringA', 'RegisterClassExA', 'SetWindowLongPtrA', 'SetWindowTextA', 'MsgWaitForMultipleObjects', 'SendDlgItemMessageA', 'SetDlgItemTextA', 'EndDialog', 'DialogBoxParamA', 'PeekMessageA', 'TranslateMDISysAccel', 'DefFrameProcA', 'SetCursor', 'MessageBoxA', 'GetSubMenu', 'EnableMenuItem', 'GetMenu', 'DestroyWindow', 'PostQuitMessage', 'SendMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CreateWindowExA', 'ShellAboutA', 'CoTaskMemAlloc', 'PropVariantClear', 'CLSIDFromString', 'CoTaskMemFree', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CoTaskMemRealloc', 'GetHGlobalFromStream', 'CreateStreamOnHGlobal'], ['SetConsoleMode', 'GetConsoleMode', 'PeekConsoleInputA', 'GetNumberOfConsoleInputEvents', 'RaiseException', 'RtlUnwind', 'SetConsoleCtrlHandler', 'ExitThread', 'CreateThread', 'PeekNamedPipe', 'GetDriveTypeA', 'FindFirstFileA', 'ExitProcess', 'GetTimeZoneInformation', 'HeapSize', 'VirtualAlloc', 'VirtualQuery', 'SetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetStartupInfoA', 'HeapCreate', 'CreateDirectoryA', 'GetConsoleCP', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetCurrentDirectoryA', 'GetFullPathNameA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEnvironmentVariableA', 'GetProcessHeap', 'FindResourceW', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'DeleteFileA', 'HeapAlloc', 'HeapFree', 'GetStartupInfoW', 'FindResourceExW', 'ReadConsoleInputA', 'GetProfileIntW', 'SearchPathW', 'GetTempPathW', 'GetTempFileNameW', 'GetFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'lstrcpyW', 'GetFullPathNameW', 'GetVolumeInformationW', 'DuplicateHandle', 'GetFileSize', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'MoveFileW', 'LocalReAlloc', 'GlobalHandle', 'GlobalReAlloc', 'LocalAlloc', 'GetCurrentDirectoryW', 'FileTimeToSystemTime', 'GetThreadLocale', 'HeapReAlloc', 'lstrlenA', 'GlobalGetAtomNameW', 'GlobalFlags', 'InitializeCriticalSection', 'GlobalFindAtomW', 'CompareStringW', 'GetVersionExA', 'GlobalSize', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'SuspendThread', 'ResumeThread', 'SetThreadPriority', 'FreeResource', 'GlobalFree', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'GlobalAddAtomW', 'GlobalDeleteAtom', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetModuleFileNameW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'GetDateFormatA', 'VirtualProtect', 'GetTimeFormatA', 'FormatMessageA', 'CompareStringA', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'GetModuleHandleW', 'lstrlenW', 'FlushConsoleInputBuffer', 'GetTickCount', 'GlobalMemoryStatus', 'GetVersion', 'GetFileType', 'FreeLibrary', 'VirtualLock', 'VirtualUnlock', 'GetSystemInfo', 'GlobalMemoryStatusEx', 'ResetEvent', 'GetVersionExW', 'ReleaseSemaphore', 'CreateSemaphoreW', 'GetFileInformationByHandle', 'GetDiskFreeSpaceW', 'CreateFileW', 'DeleteFileW', 'RemoveDirectoryW', 'CopyFileW', 'CreateDirectoryW', 'WriteFileGather', 'SetEndOfFile', 'LoadLibraryA', 'GetCurrentProcess', 'SetFilePointerEx', 'ReadFileScatter', 'GetFileSizeEx', 'DeviceIoControl', 'CreateWaitableTimerW', 'SetLastError', 'GetSystemTimeAsFileTime', 'TlsAlloc', 'CreateFileA', 'GetQueuedCompletionStatus', 'ReadFile', 'PostQueuedCompletionStatus', 'WaitForMultipleObjects', 'TerminateThread', 'QueueUserAPC', 'SetWaitableTimer', 'WriteFile', 'GetOverlappedResult', 'GetModuleHandleA', 'GetProcAddress', 'CancelIo', 'TlsSetValue', 'InterlockedDecrement', 'SetEvent', 'SleepEx', 'GetCurrentProcessId', 'CreateMutexW', 'ReleaseMutex', 'WaitForSingleObject', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'VerSetConditionMask', 'VerifyVersionInfoW', 'CreateIoCompletionPort', 'GetCurrentThreadId', 'CreateEventW', 'CloseHandle', 'InterlockedExchange', 'InterlockedExchangeAdd', 'GetFileAttributesW', 'GetDriveTypeW', 'DeleteCriticalSection', 'WideCharToMultiByte', 'TlsGetValue', 'InterlockedIncrement', 'LeaveCriticalSection', 'EnterCriticalSection', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'TlsFree', 'FindNextFileW', 'GetConsoleScreenBufferInfo', 'FindClose', 'GetLastError', 'FillConsoleOutputCharacterW', 'GetStdHandle', 'SetConsoleCursorPosition', 'Sleep', 'FindFirstFileW', 'MultiByteToWideChar', 'LockResource', 'SizeofResource', 'LoadResource', 'VirtualFree', 'IsClipboardFormatAvailable', 'MapVirtualKeyExW', 'IsCharLowerW', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'UpdateLayeredWindow', 'EnableScrollBar', 'UnionRect', 'SetCursorPos', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'UnpackDDElParam', 'ReuseDDElParam', 'InsertMenuItemW', 'TranslateAcceleratorW', 'UnregisterClassW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'LoadImageW', 'CopyImage', 'OpenClipboard', 'DrawStateW', 'RegisterClipboardFormatW', 'EnumChildWindows', 'LockWindowUpdate', 'BringWindowToTop', 'KillTimer', 'IsMenu', 'SetClassLongW', 'SetParent', 'CreatePopupMenu', 'NotifyWinEvent', 'SetWindowRgn', 'CreateAcceleratorTableW', 'LoadAcceleratorsW', 'DestroyAcceleratorTable', 'GetAsyncKeyState', 'GetKeyboardState', 'GetKeyboardLayout', 'ToUnicodeEx', 'PostThreadMessageW', 'SetRectEmpty', 'LoadMenuW', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'CopyAcceleratorTableW', 'SetRect', 'IsRectEmpty', 'CharNextW', 'CharUpperW', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'DeleteMenu', 'LoadCursorW', 'GetSysColorBrush', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'CheckDlgButton', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'IsChild', 'GetCapture', 'DefFrameProcW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'PtInRect', 'GetMenu', 'SetWindowLongW', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'DestroyMenu', 'GetMenuItemInfoW', 'InflateRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'ScreenToClient', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'FillRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetScrollPos', 'SetScrollPos', 'SetFocus', 'WinHelpW', 'SystemParametersInfoW', 'OffsetRect', 'MessageBeep', 'RedrawWindow', 'IsZoomed', 'GetMenuStringW', 'GetMenuItemID', 'InsertMenuW', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'MapVirtualKeyW', 'GetKeyNameTextW', 'DefMDIChildProcW', 'DrawMenuBar', 'TranslateMDISysAccel', 'FrameRect', 'GetUpdateRect', 'CharUpperBuffW', 'CopyIcon', 'SubtractRect', 'GetIconInfo', 'GetDoubleClickTime', 'CreateMenu', 'GetWindowRgn', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'DestroyCursor', 'GetClassLongW', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'ShowOwnedPopups', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetProcessWindowStation', 'MessageBoxA', 'GetUserObjectInformationW', 'GetSystemMenu', 'SetTimer', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadIconW', 'AppendMenuW', 'GetSystemMetrics', 'EnableWindow', 'SendMessageW', 'RemovePropW', 'GetDCOrgEx', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetTextMetricsW', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'OffsetRgn', 'CreateDIBitmap', 'EnumFontFamiliesW', 'GetTextCharsetInfo', 'CreateRoundRectRgn', 'SetDIBColorTable', 'GetDIBits', 'RealizePalette', 'StretchBlt', 'SetPixel', 'CreateDIBSection', 'PtVisible', 'CreateEllipticRgn', 'CreatePolygonRgn', 'Polyline', 'Ellipse', 'Polygon', 'Rectangle', 'RoundRect', 'CreatePalette', 'GetTextExtentPoint32W', 'GetWindowOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'GetViewportOrgEx', 'LPtoDP', 'ExtFloodFill', 'SetPaletteEntries', 'GetNearestPaletteIndex', 'GetSystemPaletteEntries', 'EnumFontFamiliesExW', 'GetTextFaceW', 'SetPixelV', 'GetPixel', 'GetWindowExtEx', 'CreateHatchBrush', 'CreateFontIndirectW', 'CreateSolidBrush', 'CreatePen', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutW', 'TextOutW', 'GetPaletteEntries', 'GetViewportExtEx', 'GetObjectW', 'CreateRectRgn', 'SelectClipRgn', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CopyMetaFileW', 'PatBlt', 'CreateRectRgnIndirect', 'CreateBitmap', 'BitBlt', 'DeleteDC', 'GetDeviceCaps', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'RectVisible', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleW', 'OpenPrinterW', 'ClosePrinter', 'DocumentPropertiesW', 'DeregisterEventSource', 'ReportEventA', 'RegCloseKey', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegEnumKeyW', 'RegOpenKeyW', 'RegQueryValueW', 'RegEnumKeyExW', 'RegisterEventSourceA', 'RegDeleteValueW', 'RegSetValueExW', 'RegCreateKeyExW', 'DragFinish', 'SHGetFileInfoW', 'SHAppBarMessage', 'ShellExecuteW', 'DragQueryFileW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'PathRemoveFileSpecW', 'OleUIBusyW', 'OleLockRunning', 'CoTaskMemFree', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'OleDuplicateData', 'CoCreateInstance', 'CoGetClassObject', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CreateILockBytesOnHGlobal', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoInitializeEx', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'DoDragDrop', 'OleGetClipboard', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'CLSIDFromString', 'CLSIDFromProgID', 'IsAccelerator', 'OleTranslateAccelerator', 'SysStringLen', 'SysAllocString', 'OleCreateFontIndirect', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SafeArrayDestroy', 'VariantCopy', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdiplusShutdown', 'GdiplusStartup', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipCloneImage', 'send', 'socket', 'closesocket', 'WSAIoctl', 'getaddrinfo', 'WSAStringToAddressA', 'WSAAddressToStringA', 'select', 'WSASocketW', 'WSASendTo', 'WSASend', 'WSARecvFrom', 'WSARecv', 'listen', 'shutdown', 'ioctlsocket', 'getsockname', 'getpeername', 'getsockopt', 'setsockopt', 'connect', 'bind', 'WSAGetLastError', 'accept', 'WSACleanup', 'WSAStartup', 'htons', 'ntohs', 'htonl', 'ntohl', 'freeaddrinfo', 'WSASetLastError', '__WSAFDIsSet', 'recv', 'AcceptEx', 'GetAcceptExSockaddrs', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundW'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'GetConsoleAliasExesLengthA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetWindowsDirectoryW', 'DeleteFileW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'FindResourceExW', 'LoadLibraryA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['FindFirstChangeNotificationA', 'MulDiv', 'Sleep', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetProcessWorkingSetSize', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OutputDebugStringA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LocalFree', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsValidCodePage', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetTempFileNameA', 'GetSystemInfo', 'GetSystemDefaultLangID', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProfileIntA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'Beep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'CreateFileA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'GetUserNameA', 'CreateStreamOnHGlobal', 'IsAccelerator', 'ReleaseStgMedium', 'OleDraw', 'OleSetMenuDescriptor', 'RevokeDragDrop', 'RegisterDragDrop', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoDisconnectObject', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'DoDragDrop', 'RegisterDragDrop', 'CoUninitialize', 'CoInitialize', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'CoCreateInstance', 'CoCreateInstance', 'CoTaskMemFree', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VarBstrFromBool', 'VarBstrFromDate', 'VarBstrFromCy', 'VarBoolFromStr', 'VarCyFromStr', 'VarDateFromStr', 'VarR8FromStr', 'VarI4FromStr', 'VarNot', 'VarNeg', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHGetMalloc', 'SHGetDesktopFolder', 'Shell_NotifyIconA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetInstanceExplorer', 'wvsprintfA', 'mouse_event', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterHotKey', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendNotifyMessageA', 'SendMessageTimeoutA', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterHotKey', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWindowUpdate', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsClipboardFormatAvailable', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursorInfo', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExA', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DrawCaption', 'DrawAnimatedRects', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CopyIcon', 'CloseClipboard', 'ClipCursor', 'ClientToScreen', 'ChildWindowFromPointEx', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BringWindowToTop', 'BeginPaint', 'AttachThreadInput', 'AppendMenuA', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemTime', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetInputState', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'mciSendCommandA', 'mciGetErrorStringA'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'VariantCopy', 'ShellExecuteA', 'CharNextA'], ['__WSAFDIsSet', 'recv', 'send', 'setsockopt', 'ntohs', 'recvfrom', 'select', 'WSAStartup', 'htons', 'accept', 'listen', 'bind', 'closesocket', 'connect', 'WSACleanup', 'ioctlsocket', 'sendto', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'socket', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_ReplaceIcon', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetQueryOptionW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetConnectW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleFileNameW', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'GetLongPathNameW', 'GetCurrentThread', 'FindNextFileW', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'WaitForSingleObject', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'CloseHandle', 'GetLastError', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedIncrement', 'CreateThread', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'SetFilePointer', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'DeleteFileW', 'SetEnvironmentVariableA', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'DrawMenuBar', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'MonitorFromRect', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'CopyImage', 'CheckMenuRadioItem', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'UnregisterHotKey', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'AdjustWindowRectEx', 'SetRect', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'DeleteMenu', 'PeekMessageW', 'MessageBoxW', 'DefWindowProcW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'SystemParametersInfoW', 'CharLowerBuffW', 'GetWindowTextW', 'SetPixel', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'GetDeviceCaps', 'CloseFigure', 'LineTo', 'AngleArc', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'MoveToEx', 'Ellipse', 'PolyDraw', 'BeginPath', 'SelectObject', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'EndPath', 'GetSaveFileNameW', 'GetOpenFileNameW', 'GetAclInformation', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'InitiateSystemShutdownExW', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'SetSecurityDescriptorDacl', 'AddAce', 'GetAce', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHCreateShellItem', 'SHGetDesktopFolder', 'SHGetSpecialFolderLocation', 'SHGetFolderPathW', 'SHFileOperationW', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'RegisterTypeLib', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'UnRegisterTypeLib', 'SafeArrayCreateVector', 'SysAllocString', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'VariantCopy', 'VariantClear', 'CreateDispTypeInfo', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SafeArrayAllocDescriptorEx', 'VariantInit'], ['MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'CopyFileA', 'GetLastError', 'OpenMutexA', 'GetFileAttributesA', 'CreateFileA', 'LoadLibraryA', 'LockResource', 'DeleteFileA', 'HeapReAlloc', 'CloseHandle', 'RaiseException', 'FindResourceExW', 'LoadResource', 'FindResourceW', 'HeapAlloc', 'SetFileAttributesA', 'DecodePointer', 'HeapDestroy', 'GetProcAddress', 'DeleteCriticalSection', 'GetProcessHeap', 'WideCharToMultiByte', 'CreateProcessA', 'CreateDirectoryA', 'GetComputerNameA', 'AreFileApisANSI', 'ReadFile', 'HeapCreate', 'GetFullPathNameW', 'InterlockedCompareExchange', 'GetDiskFreeSpaceW', 'OutputDebugStringA', 'LockFile', 'InitializeCriticalSection', 'SetFilePointer', 'HeapSize', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'CreateFileW', 'GetFileAttributesW', 'GetVersionExW', 'UnmapViewOfFile', 'HeapValidate', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesExW', 'OutputDebugStringW', 'EnterCriticalSection', 'DeleteFileW', 'GetSystemInfo', 'LoadLibraryW', 'HeapCompact', 'UnlockFile', 'CreateFileMappingA', 'LocalFree', 'LockFileEx', 'GetFileSize', 'GetCurrentProcessId', 'SystemTimeToFileTime', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'SetStdHandle', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'FreeEnvironmentStringsW', 'GetModuleHandleA', 'CreateMutexA', 'FindResourceA', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetFullPathNameA', 'WriteFile', 'SetLastError', 'HeapFree', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'CreateThread', 'GetTimeZoneInformation', 'GetExitCodeProcess', 'HeapQueryInformation', 'SetEnvironmentVariableA', 'GetConsoleCP', 'ReadConsoleW', 'GetConsoleMode', 'SetFilePointerEx', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetACP', 'GetCommandLineW', 'GetCommandLineA', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'GetModuleHandleExW', 'ExitProcess', 'SizeofResource', 'GetVersionExA', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'RtlUnwind', 'GetModuleFileNameW', 'LoadLibraryExW', 'InterlockedPushEntrySList', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'InitializeSListHead', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentThreadId', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetDC', 'ReleaseDC', 'GetDesktopWindow', 'wsprintfA', 'GetSystemMetrics', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'BitBlt', 'RegOpenKeyExA', 'RegCloseKey', 'RegQueryValueExA', 'SystemFunction036', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoSetProxyBlanket', 'CoInitializeEx', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeSecurity', 'VariantInit', 'VariantClear', 'PathFindExtensionW', 'PathFindExtensionA', 'GdipSaveImageToFile', 'GdipCreateBitmapFromScan0', 'GdipGetImageEncodersSize', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipGetImageEncoders', 'GdipCloneImage', 'GdipAlloc', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCheckConnectionA', 'InternetOpenA', 'InternetCloseHandle', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['ConnectNamedPipe', 'GetModuleHandleW', 'CreateNamedPipeW', 'TerminateThread', 'DisconnectNamedPipe', 'FlushFileBuffers', 'GetTempPathW', 'GetProcAddress', 'DeleteFileW', 'FreeLibrary', 'GlobalAlloc', 'LoadLibraryW', 'GetComputerNameExW', 'GlobalFree', 'ExitProcess', 'GetVersionExW', 'GetModuleFileNameW', 'DisableThreadLibraryCalls', 'ResumeThread', 'GetEnvironmentVariableW', 'GetFileSize', 'SetFilePointer', 'SetLastError', 'LoadResource', 'GetCurrentThread', 'OpenProcess', 'GetSystemDirectoryW', 'SizeofResource', 'GetLocalTime', 'Process32FirstW', 'LockResource', 'Process32NextW', 'GetModuleHandleA', 'lstrcatW', 'CreateToolhelp32Snapshot', 'GetCurrentProcess', 'VirtualFree', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'WideCharToMultiByte', 'GetExitCodeProcess', 'WaitForMultipleObjects', 'CreateProcessW', 'PeekNamedPipe', 'GetTempFileNameW', 'InterlockedExchange', 'LeaveCriticalSection', 'MultiByteToWideChar', 'CreateFileA', 'GetTickCount', 'CreateThread', 'LocalFree', 'FindNextFileW', 'CreateFileMappingW', 'LocalAlloc', 'FindClose', 'GetFileSizeEx', 'CreateFileW', 'Sleep', 'FlushViewOfFile', 'GetLogicalDrives', 'WaitForSingleObject', 'GetDriveTypeW', 'UnmapViewOfFile', 'MapViewOfFile', 'FindFirstFileW', 'CloseHandle', 'DeviceIoControl', 'GetLastError', 'GetSystemDirectoryA', 'ReadFile', 'WriteFile', 'GetProcessHeap', 'InitializeCriticalSection', 'HeapReAlloc', 'GetWindowsDirectoryW', 'EnterCriticalSection', 'HeapFree', 'SetFilePointerEx', 'HeapAlloc', 'FindResourceW', 'ExitWindowsEx', 'wsprintfA', 'wsprintfW', 'CryptGenRandom', 'CryptAcquireContextA', 'CryptExportKey', 'CryptAcquireContextW', 'CreateProcessAsUserW', 'InitiateSystemShutdownExW', 'DuplicateTokenEx', 'SetTokenInformation', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'OpenThreadToken', 'GetSidSubAuthority', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetThreadToken', 'CredEnumerateW', 'CredFree', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptSetKeyParam', 'CryptReleaseContext', 'CommandLineToArgvW', 'SHGetFolderPathW', 'CoCreateGuid', 'CoTaskMemFree', 'StringFromCLSID', 'CryptStringToBinaryW', 'CryptBinaryToStringW', 'CryptDecodeObjectEx', 'PathAppendW', 'StrToIntW', 'PathFindFileNameW', 'PathFileExistsW', 'StrCmpW', 'StrCmpIW', 'StrChrW', 'StrCatW', 'StrStrW', 'PathFindExtensionW', 'PathCombineW', 'StrStrIW', 'GetIpNetTable', 'GetAdaptersInfo', 'inet_ntoa', 'gethostbyname', '__WSAFDIsSet', 'ntohl', 'ioctlsocket', 'connect', 'inet_addr', 'select', 'recv', 'send', 'htons', 'closesocket', 'socket', 'WSAStartup', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCancelConnection2W', 'WNetAddConnection2W', 'WNetCloseEnum', 'NetServerEnum', 'NetApiBufferFree', 'NetServerGetInfo', 'DhcpEnumSubnetClients', 'DhcpRpcFreeMemory', 'DhcpGetSubnetInfo', 'DhcpEnumSubnets', 'malloc', '_itoa', 'free', 'memset', 'rand', 'memcpy'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'LoadLibraryA', 'LocalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalWire', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'IsDebuggerPresent', 'SetConsoleCursorPosition', 'GetLastError', 'DebugActiveProcess', 'lstrcmpW', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'SetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GetProcAddress', 'GlobalCompact', 'UnregisterWait', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'CreateIoCompletionPort', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'GetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'GlobalDeleteAtom', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'InitAtomTable', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'VirtualAlloc', 'GetBinaryTypeW', 'QueryDosDeviceW', 'LeaveCriticalSection', 'Sleep', 'EnterCriticalSection', 'RaiseException', 'RtlUnwind', 'MoveFileA', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleHandleA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'WideCharToMultiByte', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetStdHandle', 'CloseHandle', 'CreateFileA', 'OemToCharA', 'AlphaBlend'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetConsoleWindow', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetConsoleTitleA', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_findclose', '_findfirst64', '_findnext64', '_fmode', '_fstat64', '_ftime', '_initterm', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'remove', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strncpy', 'strrchr', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'DrawIcon', 'EnableMenuItem', 'GetCursorPos', 'GetSystemMenu', 'GetWindowDC', 'LoadIconA', 'MessageBoxA'], ['SetLocaleInfoA', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'WriteConsoleA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemDefaultLangID', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'VariantInit', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'GetOpenFileNameA', 'sndPlaySoundA', 'MulDiv', 'LresultFromObject'], ['GetMappedFileNameA', 'GetModuleFileNameExA', 'EnumProcessModules', 'StrRChrW', 'StrRChrA', 'PathStripPathA', 'StrDupA', 'wnsprintfA', 'PathCombineW', 'StrChrA', 'StrCmpIW', 'StrCmpNIW', 'StrChrW', 'PathRemoveBlanksA', 'PathRemoveArgsA', 'StrCmpW', 'PathRemoveBlanksW', 'PathRemoveArgsW', 'StrStrIW', 'StrTrimW', 'RtlEqualUnicodeString', 'NtQueryObject', 'NtQueryInformationFile', 'NtQuerySystemInformation', '_strnicmp', '_wcsnicmp', '_strupr', 'NtQueryVirtualMemory', 'RtlUnwind', 'RtlCompareUnicodeString', 'RtlInitUnicodeString', 'memcmp', 'ZwQueryInformationProcess', 'RtlNtStatusToDosError', 'ZwClose', 'NtUnmapViewOfSection', 'memset', 'memcpy', 'DbgPrint', 'ZwQueryKey', 'htonl', 'socket', 'WSAStringToAddressW', 'WSACleanup', 'WSAStartup', 'shutdown', 'setsockopt', 'send', 'select', 'recv', 'htons', 'ioctlsocket', 'connect', 'closesocket', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'lstrcmpA', 'lstrcpyA', 'lstrlenA', 'SetLastError', 'lstrcmpiW', 'lstrcpyW', 'lstrcatA', 'lstrcatW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LocalFree', 'lstrcmpiA', 'VirtualAlloc', 'VirtualFree', 'OpenProcess', 'ReadProcessMemory', 'GetFileSize', 'ReadFile', 'SetFilePointer', 'GetModuleFileNameA', 'CreateFileA', 'MapViewOfFile', 'CreateFileMappingW', 'CreateFileW', 'GetCurrentThread', 'TerminateThread', 'InitializeCriticalSection', 'ReleaseMutex', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'SetErrorMode', 'CreateMutexA', 'SetEnvironmentVariableW', 'GetVersionExA', 'IsBadStringPtrA', 'ExpandEnvironmentStringsW', 'GetCurrentProcess', 'VirtualProtect', 'GetModuleHandleA', 'GetCurrentProcessId', 'LoadLibraryA', 'GetVersion', 'VerLanguageNameW', 'GetLocaleInfoW', 'GetSystemTimeAsFileTime', 'GetProcessTimes', 'RemoveDirectoryW', 'CreateDirectoryW', 'DuplicateHandle', 'SetFilePointerEx', 'SetEndOfFile', 'GetFileInformationByHandle', 'GetProcessId', 'GetProcessHeap', 'Process32NextW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'GetSystemWindowsDirectoryW', 'GetSystemWindowsDirectoryA', 'GetTempPathW', 'GetLongPathNameW', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'SystemTimeToFileTime', 'GetSystemTime', 'MulDiv', 'OpenFileMappingA', 'CreateFileMappingA', 'UnmapViewOfFile', 'InterlockedDecrement', 'InterlockedIncrement', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW', 'lstrcmpW', 'FindClose', 'WriteFile', 'GetEnvironmentVariableW', 'OpenEventA', 'lstrcpynW', 'FreeLibrary', 'GetComputerNameW', 'GetVolumeInformationW', 'LoadLibraryW', 'CreateEventA', 'lstrlenW', 'GetTickCount', 'WaitForMultipleObjects', 'WaitForSingleObject', 'ResetEvent', 'SetEvent', 'GetCurrentThreadId', 'ExitProcess', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'HeapDestroy', 'OpenThread', 'SwitchToThread', 'CreateThread', 'HeapCreate', 'LocalAlloc', 'GetProcAddress', 'GetModuleHandleW', 'CloseHandle', 'Sleep', 'ResumeThread', 'GetLastError', 'SleepEx', 'wsprintfA', 'IsWindow', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetAncestor', 'GetWindowInfo', 'CallNextHookEx', 'GetClassNameA', 'FindWindowA', 'GetParent', 'SetClassLongA', 'GetClassLongA', 'SetWindowLongA', 'GetWindowLongA', 'FillRect', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'RedrawWindow', 'MenuItemFromPoint', 'GetMenuItemRect', 'EndMenu', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetSystemMenu', 'GetMenuState', 'HiliteMenuItem', 'GetMenu', 'SetKeyboardState', 'SetLayeredWindowAttributes', 'PrintWindow', 'CallWindowProcA', 'DefWindowProcA', 'PostMessageA', 'SendMessageTimeoutA', 'SendMessageA', 'ActivateKeyboardLayout', 'GetDC', 'ReleaseDC', 'MessageBoxA', 'FindWindowW', 'wsprintfW', 'GetUserObjectInformationA', 'AttachThreadInput', 'ShowWindow', 'SetWindowPos', 'IsWindowVisible', 'IsIconic', 'BringWindowToTop', 'SetFocus', 'SetActiveWindow', 'SetForegroundWindow', 'GetWindowRect', 'MapWindowPoints', 'WindowFromPoint', 'PtInRect', 'EnumChildWindows', 'GetLastActivePopup', 'GetWindow', 'GetGUIThreadInfo', 'RealChildWindowFromPoint', 'IntersectRect', 'SetThreadDesktop', 'DrawEdge', 'SendMessageW', 'GetWindowTextA', 'GetWindowLongW', 'SetWindowLongW', 'GetScrollBarInfo', 'GetDoubleClickTime', 'GetSystemMetrics', 'GetMenuItemInfoA', 'GetMenuDefaultItem', 'IsRectEmpty', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'PostThreadMessageA', 'DestroyWindow', 'CreateDialogIndirectParamW', 'EndDialog', 'GetDlgItem', 'SetWindowTextA', 'ExitWindowsEx', 'GetKeyState', 'CreatePopupMenu', 'DestroyMenu', 'AppendMenuA', 'CreateDesktopA', 'OpenDesktopA', 'CloseDesktop', 'RegisterWindowMessageA', 'PostMessageW', 'GetDesktopWindow', 'GetShellWindow', 'EnumWindows', 'ChangeDisplaySettingsExA', 'EnumDisplaySettingsA', 'EnumDisplayDevicesA', 'ChildWindowFromPointEx', 'SetWinEventHook', 'UnhookWinEvent', 'ToUnicodeEx', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'ToAscii', 'VkKeyScanA', 'VkKeyScanExA', 'VkKeyScanExW', 'MapVirtualKeyA', 'MapVirtualKeyExA', 'RegisterClassA', 'CreateWindowExA', 'MoveWindow', 'CharUpperBuffW', 'SetTimer', 'KillTimer', 'DrawTextW', 'BeginPaint', 'EndPaint', 'GetSysColor', 'SendNotifyMessageA', 'OpenClipboard', 'CloseClipboard', 'GetClipboardOwner', 'SetClipboardViewer', 'ChangeClipboardChain', 'SetClipboardData', 'GetClipboardData', 'EmptyClipboard', 'FindWindowExA', 'GetThreadDesktop', 'GetWindowThreadProcessId', 'WindowFromDC', 'GetStockObject', 'GdiFlush', 'CreateDIBSection', 'SetDIBColorTable', 'GetDIBits', 'GetRegionData', 'CreateFontA', 'GetClipBox', 'SetBkColor', 'SetBkMode', 'SetTextColor', 'ExtTextOutA', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SetViewportOrgEx', 'SelectClipRgn', 'GetViewportOrgEx', 'GetClipRgn', 'DeleteObject', 'CreateRectRgn', 'BitBlt', 'GetSystemPaletteEntries', 'CombineRgn', 'CreateBitmap', 'CreatePatternBrush', 'DeleteDC', 'GetDeviceCaps', 'SetWindowOrgEx', 'OpenProcessToken', 'OpenThreadToken', 'GetTokenInformation', 'GetUserNameW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'DuplicateTokenEx', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'CreateProcessWithTokenW', 'ShellExecuteA', 'SHGetFolderPathW', 'CertFreeCertificateContext', 'CryptQueryObject', 'CertGetNameStringW', 'CertFindCertificateInStore', 'CertCloseStore', 'CryptMsgGetParam', 'CryptDecodeObject', 'CryptMsgClose', 'AlphaBlend', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'SysFreeString'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'DecodePointer', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['SetFilePointerEx', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'VirtualAlloc', 'SetErrorMode', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetLocaleInfoA', 'HeapSize', 'SetEvent', 'HeapReAlloc', 'HeapAlloc', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LoadLibraryA', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'VirtualFree', 'HeapCreate', 'InterlockedDecrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'DeleteCriticalSection', 'SetHandleCount', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'ExitProcess', 'GetCommandLineA', 'SetEnvironmentVariableW', 'QueryPerformanceCounter', 'OpenEventW', 'MultiByteToWideChar', 'LocalFree', 'LocalAlloc', 'LoadLibraryW', 'IsDebuggerPresent', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedCompareExchange', 'InitializeCriticalSectionAndSpinCount', 'GetVolumeInformationW', 'GetTimeZoneInformation', 'GetTimeFormatW', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetLastError', 'GetEnvironmentStringsW', 'GetFileType', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCommandLineW', 'GetAtomNameA', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'CreateThread', 'CreateMutexW', 'CreateHardLinkA', 'CreateEventW', 'RtlUnwind', 'CloseHandle', 'LoadCursorW', 'LoadIconA', 'keybd_event', 'UnregisterHotKey', 'UnhookWindowsHookEx', 'ShowCaret', 'SetWindowsHookExW', 'SetProcessDefaultLayout', 'SetKeyboardState', 'SetForegroundWindow', 'SetDeskWallpaper', 'SendDlgItemMessageW', 'RegisterWindowMessageW', 'RegisterHotKey', 'PostMessageW', 'OemToCharW', 'MapVirtualKeyExA', 'LoadStringW', 'IsCharAlphaNumericA', 'InvertRect', 'InvalidateRect', 'GetWindowThreadProcessId', 'GetWindowRgn', 'GetUpdateRect', 'GetMonitorInfoW', 'GetMenuState', 'GetLastActivePopup', 'GetKeyState', 'GetForegroundWindow', 'GetDlgItemTextW', 'GetDlgItem', 'GetClipboardSequenceNumber', 'GetAsyncKeyState', 'EnumDisplayMonitors', 'EndDialog', 'EnableWindow', 'DlgDirListW', 'DialogBoxParamW', 'DestroyIcon', 'CharUpperW', 'CallNextHookEx', 'AttachThreadInput', 'wsprintfW', 'SetDIBitsToDevice', 'SetDCPenColor', 'SetDCBrushColor', 'STROBJ_bGetAdvanceWidths', 'RoundRect', 'Polyline', 'PolyTextOutA', 'Pie', 'GetWinMetaFileBits', 'GetMetaFileW', 'GetMetaFileA', 'GetLogColorSpaceA', 'GetDIBits', 'GetDCBrushColor', 'GetArcDirection', 'GdiPlayEMF', 'GdiEntry16', 'GdiConvertEnhMetaFile', 'ExcludeClipRect', 'EngDeleteSemaphore', 'EngComputeGlyphSet', 'EngCheckAbort', 'DeviceCapabilitiesExW', 'DeleteObject', 'CreateColorSpaceA', 'SetFontEnumeration', 'StartServiceCtrlDispatcherW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegEnumValueW', 'RegConnectRegistryW', 'RegCloseKey', 'OpenServiceW', 'OpenSCManagerW', 'OpenProcessToken', 'ControlService', 'CloseServiceHandle', 'RegOpenKeyExA', 'SHGetFolderPathW', 'SHGetFileInfoW', 'ExtractIconExW', 'CommandLineToArgvW', 'ShellExecuteExW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetMessageW', 'DeleteDC', 'ShellExecuteW', 'WSAStartup'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'memcpy', 'memset', 'realloc', 'sprintf', 'strchr', 'strlen', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationA', 'ShellExecuteA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetLastInputInfo', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['GetModuleHandleA', 'ShowWindow', 'RegQueryValueA', '??1_Lockit@std@@QAE@XZ', '__setusermatherr', 'ShellAboutW', '_lock_file', 'fputc', 'accept', 'free', '_time64', 'DllGetVersion', 'rand', '_configthreadlocale', 'exit', 'memset'], ['waveOutUnprepareHeader', 'timeKillEvent', 'timeSetEvent', 'mmioAscend', 'mmioWrite', 'mmioCreateChunk', 'mmioOpenA', 'waveOutReset', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutSetVolume', 'waveOutGetVolume', 'mmioClose', 'mmioFlush', 'waveOutWrite', 'waveOutPrepareHeader', 'GetCPInfo', 'GetOEMCP', 'WriteFile', 'FlushFileBuffers', 'GetCurrentProcess', 'SetErrorMode', 'GetFileAttributesA', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetThreadLocale', 'VirtualAlloc', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'HeapSize', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GlobalFlags', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'GetModuleHandleA', 'GetProcAddress', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'SetFilePointer', 'GetFullPathNameA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'GlobalReAlloc', 'CreateThread', 'SetThreadPriority', 'ExitThread', 'LoadLibraryW', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalAlloc', 'GlobalLock', 'DeleteCriticalSection', 'WaitForSingleObject', 'Sleep', 'InitializeCriticalSection', 'CreateEventA', 'CloseHandle', 'SetEvent', 'EnterCriticalSection', 'LeaveCriticalSection', 'ResetEvent', 'GlobalHandle', 'GlobalUnlock', 'GlobalFree', 'lstrlenA', 'CompareStringA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'IsWindowEnabled', 'PostQuitMessage', 'ValidateRect', 'SetCursor', 'GetWindowThreadProcessId', 'EndDialog', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'GetDesktopWindow', 'DestroyMenu', 'GetSysColorBrush', 'LoadCursorA', 'UnregisterClassA', 'SendDlgItemMessageA', 'WinHelpA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'TrackPopupMenu', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'GetMenu', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'EnableMenuItem', 'CheckMenuItem', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'ScreenToClient', 'GrayStringA', 'DrawTextExA', 'TabbedTextOutA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetCursorPos', 'SetWindowRgn', 'SetRect', 'GetWindowRect', 'PostMessageA', 'LoadMenuA', 'GetSubMenu', 'CopyRect', 'GetSystemMetrics', 'LoadIconA', 'IsIconic', 'DrawIcon', 'ShowWindow', 'PtInRect', 'ReleaseCapture', 'SendMessageA', 'GetWindowLongA', 'WindowFromPoint', 'GetParent', 'SetCapture', 'GetCapture', 'GetActiveWindow', 'ClientToScreen', 'GetFocus', 'SetFocus', 'PeekMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'EnableWindow', 'SetWindowTextA', 'IsDialogMessageA', 'UpdateWindow', 'RegisterWindowMessageA', 'KillTimer', 'SetTimer', 'InvalidateRect', 'GetDC', 'GetClientRect', 'DrawTextA', 'ModifyMenuA', 'ExtCreateRegion', 'CreateDIBSection', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteObject', 'CreateBitmap', 'DPtoLP', 'GetClipBox', 'DeleteDC', 'StretchBlt', 'CombineRgn', 'CreateCompatibleBitmap', 'GetStockObject', 'GetTextExtentPoint32A', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'GetObjectA', 'CreateFontIndirectA', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'RegOpenKeyExW', 'PathFindFileNameA', 'PathFindExtensionA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CreateStreamOnHGlobal', 'OleLoadPicture', 'VariantInit', 'VariantChangeType', 'VariantClear'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'AddAce', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLangID', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetSystemDefaultLangID', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeProcess', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'GetOpenFileNameA', 'sndPlaySoundA', 'MulDiv'], ['GetModuleHandleA', 'CharNextA', 'RegCloseKey', 'ShellAboutW', '_CorExeMain', 'DrawStatusTextW'], ['GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReplaceFileA', 'CreateMutexW', 'FindFirstFileA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'IsValidCodePage', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'GetDateFormatW', 'SetCurrentDirectoryA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'CharUpperBuffW', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetDateFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'BuildCommDCBAndTimeoutsW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['getaddrinfo', 'freeaddrinfo', 'closesocket', 'WSAStartup', 'socket', 'send', 'recv', 'connect', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'SetLastError', 'GetLastError', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'VariantInit', 'SysFreeString', 'SysAllocString'], ['GetMetaRgn', 'GdiGetBatchLimit', 'GetBitmapDimensionEx', 'CloseHandle', 'WaitForSingleObject', 'CreateThread', 'VirtualProtectEx', 'FreeConsole', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RaiseException', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'OutputDebugStringW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'SetConsoleCtrlHandler', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadFile', 'ReadConsoleW', 'CreateFileW', 'DecodePointer'], ['GetThreadUILanguage', 'AreFileApisANSI', 'GetThreadErrorMode', 'GetCurrentProcessorNumber', 'GetCommandLineW', 'GetTickCount', 'IsSystemResumeAutomatic', 'IsDebuggerPresent', 'GetACP', 'SwitchToThread', 'GetLastError', 'TlsAlloc', 'GetCommandLineA', 'UnregisterApplicationRestart', 'FlushProcessWriteBuffers', 'GetCurrentThreadId', 'GetSystemDefaultUILanguage', 'RaiseException', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'DecodePointer', 'MultiByteToWideChar', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryExW', 'GetEnvironmentStringsW', 'lstrcmpiW', 'FreeLibrary', 'WriteConsoleW', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileSizeEx', 'HeapSize', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetFileType', 'GetStdHandle', 'GetProcessHeap', 'SetFileApisToOEM', 'CloseHandle', 'ReadFile', 'FindClose', 'GetTickCount64', 'GetModuleFileNameW', 'LoadLibraryA', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleExW', 'ExitProcess', 'InterlockedFlushSList', 'RtlUnwindEx', 'RtlPcToFileHeader', 'OutputDebugStringW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'EncodePointer', 'SetLastError', 'IsProcessDPIAware', 'GetForegroundWindow', 'CreateMenu', 'GetMenuCheckMarkDimensions', 'CloseClipboard', 'GetCapture', 'GetKBCodePage', 'GetMessageTime', 'AnyPopup', 'EmptyClipboard', 'InSendMessage', 'GetMessageExtraInfo', 'GetClipboardSequenceNumber', 'GetFocus', 'SetCursor', 'LoadCursorW', 'CharNextW', 'GetActiveWindow', 'GetOpenClipboardWindow', 'RegSetValueExW', 'RegEnumKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'CoTaskMemFree', 'CoCreateInstance', 'CoTaskMemAlloc', 'CoFreeUnusedLibraries', 'CoTaskMemRealloc', 'VarUI4FromStr', 'InternetQueryDataAvailable'], ['CreateFileA', 'FindResourceW', 'LoadResource', 'WriteFile', 'WideCharToMultiByte', 'SizeofResource', 'GetTempPathW', 'LockResource', 'CloseHandle', 'GetFullPathNameA', 'GetDriveTypeW', 'CreateFileW', 'EncodePointer', 'DecodePointer', 'GetLastError', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetCommandLineW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetStdHandle', 'GetModuleFileNameW', 'HeapFree', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'GetProcessHeap', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'HeapSize', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringW', 'RtlUnwind', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'GetCurrentDirectoryW', 'ShellExecuteA', 'PathAppendA'], ['GetProcAddress', 'LoadLibraryA', 'WaitForSingleObject', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'GetLastError', 'EnterCriticalSection', 'ReleaseMutex', 'CloseHandle'], ['HeapFree', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetCurrentProcess', 'GetThreadLocale', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'InterlockedDecrement', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'GetFileType', 'GetSysColorBrush', 'LoadCursorA', 'UnregisterClassA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'PtInRect', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'SystemParametersInfoA', 'DestroyMenu', 'CopyRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindow', 'SetFocus', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DdeFreeDataHandle', 'DdeDisconnect', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'SetWindowTextA', 'IsDialogMessageA', 'GetDlgCtrlID', 'EnableWindow', 'DdeNameService', 'GetSystemMetrics', 'DdeConnect', 'DdeClientTransaction', 'CreateWindowExW', 'AppendMenuA', 'ShowWindow', 'DdeUninitialize', 'DdeFreeStringHandle', 'SendMessageA', 'GetClientRect', 'DdeUnaccessData', 'DrawIcon', 'DdeInitializeA', 'LoadIconA', 'DdeAccessData', 'IsIconic', 'PostMessageA', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetSystemMenu', 'DdeCreateStringHandleA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'CreateBitmap', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'PtVisible', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetEvent', 'SetTapeParameters', 'GetModuleHandleW', 'GetNumberFormatA', 'ReadConsoleW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapCreate', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLargestConsoleWindowSize', 'WriteConsoleOutputW', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'ReadFileEx', 'GetTempFileNameA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'BeginUpdateResourceA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'RequestWakeupLatency', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'EnumCalendarInfoExA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'GetDefaultCommConfigW', 'TlsGetValue', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetThreadContext', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsA', 'GetCharABCWidthsI'], ['GetModuleHandleA', 'DefWindowProcA', 'RegOpenKeyExA', '_CorExeMain', 'ShellAboutW', 'ImageList_Draw'], ['GetComputerNameW', 'GetModuleFileNameA', 'GetCurrentProcessId', 'OpenProcess', 'GetModuleFileNameW', 'SetLastError', 'WaitForSingleObject', 'CreateEventW', 'FreeLibrary', 'WinExec', 'GetPrivateProfileStringW', 'CopyFileW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'LocalFree', 'LocalAlloc', 'LoadResource', 'FindResourceW', 'SizeofResource', 'LockResource', 'GetTickCount', 'GetCurrentThread', 'Sleep', 'GetProcessHeap', 'HeapAlloc', 'GetLastError', 'GetTempPathA', 'SetCurrentDirectoryW', 'GetShortPathNameA', 'LoadLibraryW', 'GetProcAddress', 'WideCharToMultiByte', 'MultiByteToWideChar', 'SystemTimeToFileTime', 'DosDateTimeToFileTime', 'GetCurrentProcess', 'DuplicateHandle', 'CloseHandle', 'WriteFile', 'SetFileTime', 'SetFilePointer', 'ReadFile', 'GetFileType', 'CreateFileW', 'CreateDirectoryW', 'TerminateProcess', 'GetCurrentDirectoryW', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetTimeZoneInformation', 'GetFileSizeEx', 'GetConsoleOutputCP', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'ExitProcess', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'RtlUnwind', 'RaiseException', 'GetStringTypeW', 'WriteConsoleW', 'GetCPInfo', 'CompareStringEx', 'LCMapStringEx', 'DecodePointer', 'EncodePointer', 'InitializeCriticalSectionEx', 'InitializeSListHead', 'GetStartupInfoW', 'IsDebuggerPresent', 'GetModuleHandleW', 'ResetEvent', 'SetEvent', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'FlushFileBuffers', 'QueryPerformanceCounter', 'MapViewOfFile', 'CreateFileMappingW', 'AreFileApisANSI', 'TryEnterCriticalSection', 'HeapCreate', 'HeapFree', 'EnterCriticalSection', 'GetFullPathNameW', 'GetDiskFreeSpaceW', 'OutputDebugStringA', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetFullPathNameA', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'GetFileAttributesW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesA', 'GetFileAttributesExW', 'OutputDebugStringW', 'FlushViewOfFile', 'CreateFileA', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'GetSystemInfo', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'LookupAccountNameW', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'IsValidSecurityDescriptor', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetTokenInformation', 'GetLengthSid', 'FreeSid', 'EqualSid', 'DuplicateToken', 'AllocateAndInitializeSid', 'AddAccessAllowedAce', 'AccessCheck', 'OpenThreadToken', 'OpenProcessToken', 'ShellExecuteExA', 'CoInitializeEx', 'CoGetObject', 'CoUninitialize', 'InternetGetCookieExA', 'Netbios', 'RtlInitUnicodeString', 'NtFreeVirtualMemory', 'LdrEnumerateLoadedModules', 'RtlEqualUnicodeString', 'RtlAcquirePebLock', 'NtAllocateVirtualMemory', 'RtlReleasePebLock', 'RtlNtStatusToDosError', 'RtlCreateHeap', 'RtlDestroyHeap', 'RtlAllocateHeap', 'RtlFreeHeap', 'NtClose', 'NtOpenKey', 'NtEnumerateValueKey', 'NtQueryValueKey'], ['GetShortPathNameA', 'CreateFileA', 'GetCPInfo', 'GetOEMCP', 'GetAtomNameA', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileAttributesA', 'GetFileTime', 'HeapFree', 'RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'TerminateProcess', 'UnhandledExceptionFilter', 'GetFullPathNameA', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'GetACP', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GlobalFlags', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetModuleFileNameW', 'InterlockedDecrement', 'InterlockedIncrement', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'lstrcatA', 'WinExec', 'lstrcpyA', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'SetUnhandledExceptionFilter', 'InterlockedExchange', 'DestroyIcon', 'GetDialogBaseUnits', 'GetMenuItemInfoA', 'DestroyMenu', 'UnregisterClassA', 'FillRect', 'WindowFromPoint', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'DeleteMenu', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'GetScrollInfo', 'SetScrollInfo', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetWindowsHookExA', 'CallNextHookEx', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'GetSysColor', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'GetClassInfoExA', 'TabbedTextOutA', 'SendMessageA', 'MessageBeep', 'SetCapture', 'RedrawWindow', 'ReleaseCapture', 'PtInRect', 'GetClientRect', 'SetCursor', 'SetWindowLongA', 'IsWindow', 'InvalidateRect', 'InflateRect', 'ReleaseDC', 'GetDC', 'GetParent', 'GetWindowRect', 'CopyIcon', 'LoadCursorA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageA', 'PostQuitMessage', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'SetWindowPlacement', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'GetViewportExtEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'SetViewportExtEx', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'SelectPalette', 'GetStockObject', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'GetObjectA', 'CreateFontIndirectA', 'GetWindowExtEx', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCloseKey', 'RegCreateKeyA', 'ExtractIconA', 'SHGetFileInfoA', 'ShellExecuteA', 'PathFindExtensionA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetPrivateProfileSectionNamesW', 'CreateTimerQueue', 'CreateMutexW', 'SearchPathW', 'lstrcmpA', 'SetLocaleInfoA', 'EnumCalendarInfoA', 'GetModuleHandleExA', 'BuildCommDCBAndTimeoutsA', 'CallNamedPipeA', 'LocalCompact', 'EnumCalendarInfoW', 'SetDefaultCommConfigW', 'InterlockedCompareExchange', 'WriteConsoleInputA', 'BackupSeek', '_lclose', 'GetWindowsDirectoryA', 'FindActCtxSectionStringA', 'SetProcessPriorityBoost', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GlobalAlloc', 'GetSystemDirectoryW', 'GetFirmwareEnvironmentVariableA', 'LoadLibraryW', 'GetFileAttributesA', 'GetComputerNameExA', 'TransactNamedPipe', 'PulseEvent', 'IsDBCSLeadByte', 'CompareStringW', 'GetDevicePowerState', 'DeactivateActCtx', 'GetConsoleOutputCP', 'GetStdHandle', 'SetLastError', 'GetProcAddress', 'ResetEvent', 'OpenWaitableTimerA', 'OpenMutexA', 'CreateFileMappingA', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'WriteProfileSectionW', 'AddAtomA', 'WaitForMultipleObjects', 'EnumResourceTypesW', 'FindNextFileA', 'GetModuleHandleA', 'GetStringTypeW', 'WaitForDebugEvent', 'GetCurrentThreadId', 'DeleteFileW', 'CopyFileExA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetConsoleAliasW', 'LocalUnlock', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetLastError', 'InterlockedDecrement', 'GetCurrentThread', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapFree', 'FatalAppExitA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'GetLocaleInfoW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'SetFilePointer', 'IsProcessorFeaturePresent', 'HeapSize', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle', 'CreateFileW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'DeleteFileA', 'LoadMenuA', 'ReportEventW'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationW', 'SetPriorityClass', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointA', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'GetTimeZoneInformation', 'GetSystemDirectoryA', 'GetDriveTypeW', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'WaitForDebugEvent', 'EndUpdateResourceW', 'GetLastError', 'GetSystemTime', 'GlobalMemoryStatusEx', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'TerminateThread', 'GetACP', 'FindAtomA', 'EnterCriticalSection', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'GetOverlappedResult', 'CreateNamedPipeA', 'InterlockedDecrement', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'AreFileApisANSI', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'GetStringTypeW', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileA', 'GetCommMask', 'CloseHandle', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotA', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'CopyFileExA', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'HeapUnlock', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ImpersonateSelf'], ['GetFileAttributesW', 'GetFileSizeEx', 'CreateFileA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'ReadFile', 'GetFileSize', 'WriteFile', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetFileAttributesW', 'SetCurrentDirectoryW', 'CreateDirectoryW', 'GetTempPathW', 'GetWindowsDirectoryW', 'GetFileAttributesA', 'SizeofResource', 'LockResource', 'LoadResource', 'MultiByteToWideChar', 'Sleep', 'OpenMutexA', 'GetFullPathNameA', 'CopyFileA', 'GetModuleFileNameA', 'VirtualAlloc', 'VirtualFree', 'FreeLibrary', 'HeapAlloc', 'GetProcessHeap', 'GetModuleHandleA', 'SetLastError', 'VirtualProtect', 'IsBadReadPtr', 'HeapFree', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'CreateDirectoryA', 'GetStartupInfoA', 'SetFilePointer', 'SetFileTime', 'GetComputerNameW', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'GlobalAlloc', 'LoadLibraryA', 'GetProcAddress', 'GlobalFree', 'CreateProcessA', 'CloseHandle', 'WaitForSingleObject', 'TerminateProcess', 'GetExitCodeProcess', 'FindResourceA', 'wsprintfA', 'CreateServiceA', 'OpenServiceA', 'StartServiceA', 'CloseServiceHandle', 'CryptReleaseContext', 'RegCreateKeyW', 'RegSetValueExA', 'RegQueryValueExA', 'RegCloseKey', 'OpenSCManagerA', 'realloc', 'fclose', 'fwrite', 'fread', 'fopen', 'sprintf', 'rand', 'srand', 'strcpy', 'memset', 'strlen', 'wcscat', 'wcslen', '__CxxFrameHandler', '??3@YAXPAX@Z', 'memcmp', '_except_handler3', '_local_unwind2', 'wcsrchr', 'swprintf', '??2@YAPAXI@Z', 'memcpy', 'strcmp', 'strrchr', '__p___argv', '__p___argc', '_stricmp', 'free', 'malloc', '??0exception@@QAE@ABV0@@Z', '??1exception@@UAE@XZ', '??0exception@@QAE@ABQBD@Z', '_CxxThrowException', 'calloc', 'strcat', '_mbsstr', '??1type_info@@UAE@XZ', '_exit', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp'], ['GetModuleHandleA', '_CorExeMain'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'GetPrivateProfileIntW', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['CreateDirectoryExW', 'ReadConsoleInputA', 'GetTempPathW', 'GetSystemDirectoryW', 'RemoveDirectoryA', 'OutputDebugStringW', 'GetProcAddress', 'LocalAlloc', 'MoveFileWithProgressW', 'SearchPathW', 'VerifyVersionInfoW', 'CopyFileExW', 'GetThreadLocale', 'FindNextFileA', 'FindFirstVolumeW', 'LocalShrink', 'LocalFlags', 'ExitThread', 'GetModuleHandleW', 'SetFileTime', 'InterlockedDecrement', 'RemoveVectoredExceptionHandler', 'lstrcatA', 'CreateActCtxW', 'UpdateResourceW', 'CopyFileW', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'EnumResourceLanguagesA', 'InterlockedIncrement', 'SetFileApisToOEM', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructA', 'AddConsoleAliasA', 'GetConsoleAliasW', 'FindResourceA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['GetConsoleAliasesLengthW', 'AllocConsole', 'GetConsoleAliasExesLengthA', 'InterlockedIncrement', 'OpenJobObjectA', 'InterlockedDecrement', 'GetUserDefaultLCID', 'WriteConsoleInputA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetCommandLineA', 'GetPriorityClass', 'GetVolumePathNameW', 'SetFileShortNameW', 'GetCalendarInfoW', 'LeaveCriticalSection', 'CreateSemaphoreA', 'GetFileAttributesW', 'WriteConsoleW', 'GetCompressedFileSizeA', 'CompareStringW', 'GetVolumePathNameA', 'SetThreadPriority', 'CreateMailslotW', 'DeleteFiber', 'GetCPInfoExW', 'CreateMutexW', 'SetLastError', 'GetProcAddress', 'SearchPathA', 'GlobalFree', 'GetTempFileNameA', 'OpenWaitableTimerA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'SetCalendarInfoW', 'MoveFileA', 'GetNumberFormatW', 'BeginUpdateResourceA', 'AddAtomA', 'HeapWalk', 'OpenJobObjectW', 'GetPrivateProfileSectionNamesA', 'FindNextFileA', 'GetModuleHandleA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'EnumDateFormatsW', 'GetShortPathNameW', 'GetCPInfoExA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'LocalFileTimeToFileTime', 'GetCurrentDirectoryW', 'GetVolumeNameForVolumeMountPointA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'WideCharToMultiByte', 'HeapSetInformation', 'GetStartupInfoW', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'CloseHandle', 'RaiseException', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'MultiByteToWideChar', 'IsProcessorFeaturePresent', 'LCMapStringW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LoadLibraryW', 'HeapReAlloc', 'ReadFile', 'CreateFileW', 'ReadEventLogW'], ['memset', 'wcsncmp', 'memmove', 'wcsncpy', 'wcsstr', '_wcsnicmp', '_wcsdup', 'free', '_wcsicmp', 'wcslen', 'wcscpy', 'wcscmp', 'wcscat', 'memcpy', 'tolower', 'malloc', 'GetModuleHandleW', 'HeapCreate', 'GetStdHandle', 'SetConsoleCtrlHandler', 'HeapDestroy', 'ExitProcess', 'WriteFile', 'GetTempFileNameW', 'LoadLibraryExW', 'EnumResourceTypesW', 'FreeLibrary', 'RemoveDirectoryW', 'EnumResourceNamesW', 'GetCommandLineW', 'LoadResource', 'SizeofResource', 'FreeResource', 'FindResourceW', 'GetNativeSystemInfo', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'EnterCriticalSection', 'CloseHandle', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'TerminateThread', 'CreateThread', 'GetProcAddress', 'GetVersionExW', 'Sleep', 'WideCharToMultiByte', 'HeapAlloc', 'HeapFree', 'LoadLibraryW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetModuleFileNameW', 'PeekNamedPipe', 'TerminateProcess', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GetCurrentProcess', 'DuplicateHandle', 'CreatePipe', 'CreateProcessW', 'GetExitCodeProcess', 'SetUnhandledExceptionFilter', 'HeapSize', 'MultiByteToWideChar', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTempPathW', 'DeleteFileW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'CreateFileW', 'SetFilePointer', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TlsAlloc', 'HeapReAlloc', 'DeleteCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetLastError', 'SetLastError', 'UnregisterWait', 'GetCurrentThread', 'RegisterWaitForSingleObject', 'CharUpperW', 'CharLowerW', 'MessageBoxW', 'DefWindowProcW', 'DestroyWindow', 'GetWindowLongW', 'GetWindowTextLengthW', 'GetWindowTextW', 'UnregisterClassW', 'LoadIconW', 'LoadCursorW', 'RegisterClassExW', 'IsWindowEnabled', 'EnableWindow', 'GetSystemMetrics', 'CreateWindowExW', 'SetWindowLongW', 'SendMessageW', 'SetFocus', 'CreateAcceleratorTableW', 'SetForegroundWindow', 'BringWindowToTop', 'GetMessageW', 'TranslateAcceleratorW', 'TranslateMessage', 'DispatchMessageW', 'DestroyAcceleratorTable', 'PostMessageW', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'IsWindowVisible', 'EnumWindows', 'SetWindowPos', 'GetStockObject', 'InitCommonControlsEx', 'ShellExecuteExW', 'SHGetFolderLocation', 'SHGetPathFromIDListW', 'timeBeginPeriod', 'CoInitialize', 'CoTaskMemFree', 'PathAddBackslashW', 'PathRenameExtensionW', 'PathQuoteSpacesW', 'PathRemoveArgsW', 'PathRemoveBackslashW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'sndPlaySoundA', 'PlaySoundA', 'LresultFromObject', 'InetIsOffline'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'PatBlt', 'NtQueryInformationProcess', 'VariantCopy', 'SHGetFileInfoA', 'GetDC', 'WSAIoctl', 'send'], ['HeapFree', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'Sleep', 'GetACP', 'FileTimeToLocalFileTime', 'LCMapStringW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetOEMCP', 'GetCPInfo', 'FileTimeToSystemTime', 'CreateFileA', 'GetFullPathNameA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'GetThreadLocale', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'InterlockedDecrement', 'FormatMessageA', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'LocalFree', 'LocalAlloc', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'CompareStringW', 'WideCharToMultiByte', 'lstrlenA', 'LCMapStringA', 'GetSysColorBrush', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckRadioButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetClassInfoExA', 'GetClassInfoA', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SystemParametersInfoA', 'DestroyMenu', 'CopyRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'EnableWindow', 'GetSystemMetrics', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'UnregisterClassA', 'CreateWindowExA', 'LoadCursorA', 'AppendMenuA', 'SendMessageA', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'PostQuitMessage', 'PostMessageA', 'SetCursor', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'RegisterClassA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'CreateBitmap', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'PtVisible', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'DragAcceptFiles', 'DragFinish', 'DragQueryFileA', 'PathFindExtensionA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'WTSSendMessageW', 'GetProcessWindowStation', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'exit'], ['GetLastError', 'SetLastError', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'GetTickCount', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'DebugBreak', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', 'ShowWindow', 'memmove', '_register_onexit_function', '_set_fmode', '_callnewh', '__setusermatherr', '_configthreadlocale', 'VariantChangeTypeEx', 'RaiseException'], ['CreateWindowExA'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'FreeSid', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetKeyboardType', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'TranslateMessage', 'SetWindowLongW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'ExitWindowsEx', 'DispatchMessageW', 'DestroyWindow', 'CharUpperBuffW', 'CallWindowProcW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SizeofResource', 'SignalObjectAndWait', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'MultiByteToWideChar', 'LockResource', 'LoadResource', 'LoadLibraryW', 'GetWindowsDirectoryW', 'GetVersionExW', 'GetVersion', 'GetUserDefaultLangID', 'GetThreadLocale', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeProcess', 'GetEnvironmentVariableW', 'GetDiskFreeSpaceW', 'GetCurrentProcess', 'GetCommandLineW', 'GetCPInfo', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'EnumCalendarInfoW', 'DeleteFileW', 'CreateProcessW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CloseHandle', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'InitCommonControls', 'Sleep', 'AdjustTokenPrivileges'], ['WinHttpOpen', 'WinHttpConnect', 'WinHttpReadData', 'WinHttpOpenRequest', 'WinHttpSendRequest', 'WinHttpReceiveResponse', 'WinHttpQueryDataAvailable', 'WinHttpCloseHandle', 'WSAStartup', 'WSACleanup', 'gethostname', 'gethostbyname', 'inet_ntoa', 'accept', 'GetVersionExW', 'GetProcAddress', 'GetModuleHandleW', 'GetSystemInfo', 'LocalAlloc', 'GetTickCount', 'GetTempPathA', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'CreateFileW', 'GetFileSize', 'ReadFile', 'CloseHandle', 'LocalShrink', 'CreateThread', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'GetLocaleInfoW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'LocalCompact', 'LocalFlags', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'LoadLibraryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'CreateProcessA', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'CompareStringW', 'SetEnvironmentVariableA', 'SetEndOfFile', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetModuleFileNameW', 'FlushFileBuffers', 'Sleep', 'InitializeCriticalSection', 'SetFilePointer', 'GetConsoleMode', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'GetProcessHeap', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'MultiByteToWideChar', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapSize', 'ExitProcess', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'GetFileAttributesA', 'WriteFile', 'GetConsoleCP', 'ShowOwnedPopups', 'ShowCaret', 'wsprintfW', 'GetKeyboardLayoutList', 'FlashWindow', 'ShowWindow', 'CreateCompatibleDC', 'CreateMetaFileW', 'GetBrushOrgEx', 'DrawEscape', 'DescribePixelFormat', 'CreateCompatibleBitmap', 'CopyMetaFileA', 'Arc', 'GetPixel', 'AddFontResourceA', 'AnimatePalette', 'ChoosePixelFormat', 'CreateBitmap', 'ImpersonateSelf', 'SetThreadToken', 'DragQueryPoint', 'DragFinish', 'FindExecutableW', 'GetAdaptersInfo', 'timeGetTime'], ['ExitProcess', 'GetNativeSystemInfo', 'FreeLibrary', 'HeapAlloc', 'HeapFree', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'GetLastError', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'SetEnvironmentVariableA', 'CreateFileW', 'HeapReAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'GetModuleHandleExW', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetTimeZoneInformation', 'RtlUnwind', 'GetConsoleMode', 'GetConsoleCP', 'CloseHandle', 'GetFileType', 'DeleteCriticalSection', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'LoadLibraryExW', 'OutputDebugStringW', 'SetFilePointerEx', 'SetStdHandle', 'WriteConsoleW', 'FlushFileBuffers', 'HeapSize', 'RaiseException', 'ShowWindow', 'MessageBoxA'], ['SHAutoComplete', 'PathCombineA', 'StrFormatByteSize64A', 'PathRemoveFileSpecA', 'PathRenameExtensionA', 'GetCurrentDirectoryA', 'lstrcpyA', 'MulDiv', 'lstrcpynA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FlushInstructionCache', 'GetCurrentProcess', 'lstrcmpA', 'FindFirstFileExA', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'Sleep', 'lstrcatA', 'GetProcAddress', 'FindResourceExA', 'LockResource', 'GetFileAttributesA', 'GetVersionExA', 'ExpandEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InterlockedExchange', 'HeapSize', 'HeapReAlloc', 'HeapDestroy', 'VirtualAlloc', 'IsDBCSLeadByte', 'IsProcessorFeaturePresent', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'InterlockedCompareExchange', 'FreeLibrary', 'LoadLibraryA', 'GetCurrentThreadId', 'DeleteCriticalSection', 'RaiseException', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'InterlockedIncrement', 'VirtualFree', 'InterlockedDecrement', 'lstrlenW', 'GetModuleHandleA', 'MultiByteToWideChar', 'lstrlenA', 'GetModuleFileNameA', 'GetLastError', 'WideCharToMultiByte', 'SizeofResource', 'LoadResource', 'FindResourceA', 'LoadLibraryExA', 'lstrcmpiA', 'FillRect', 'DefWindowProcA', 'MessageBoxA', 'DestroyWindow', 'CharNextA', 'GetActiveWindow', 'GetDialogBaseUnits', 'GetWindow', 'MonitorFromWindow', 'GetMonitorInfoA', 'GetDlgCtrlID', 'SetDlgItemTextA', 'GetWindowRect', 'SetWindowPos', 'SetFocus', 'GetWindowTextA', 'LoadCursorA', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColorBrush', 'UnregisterClassA', 'GetSysColor', 'LoadImageA', 'GetDesktopWindow', 'CallWindowProcA', 'InvalidateRect', 'EnableWindow', 'SetCursor', 'GetClientRect', 'MapWindowPoints', 'RegisterWindowMessageA', 'ReleaseDC', 'GetWindowTextLengthA', 'GetParent', 'PostMessageA', 'SetWindowTextA', 'GetDlgItem', 'GetDC', 'SendMessageA', 'GetObjectA', 'CreatePen', 'Polygon', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetDeviceCaps', 'CreateFontIndirectA', 'SelectObject', 'GetTextMetricsA', 'DeleteObject', 'DeleteDC', 'GetOpenFileNameA', 'GetSaveFileNameA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegCloseKey', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegSetValueExA', 'RegDeleteValueA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'OleUninitialize', 'VarDecCmp', 'VarDecFromStr', 'VarR8FromStr', 'VarI4FromStr', 'VarDateFromStr', 'VarUI4FromStr', 'CreatePropertySheetPageA', 'PropertySheetA', 'DestroyPropertySheetPage', 'InitCommonControlsEx', '_purecall', '_mbscmp', '_mbsinc', '_ismbcspace', '?terminate@@YAXXZ', '_CxxThrowException', '_unlock', '__dllonexit', '_encode_pointer', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', '_malloc_crt', '_initterm', '_initterm_e', '_amsg_exit', '_adjust_fdiv', '__CppXcptFilter', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_crt_debugger_hook', '__clean_type_info_names_internal', 'memset', 'memcpy_s', 'free', '??2@YAPAXI@Z', '_stricmp', '_atoi64', '_vscprintf', 'vsprintf_s', 'memmove_s', 'strnlen', 'strlen', '_recalloc', '__CxxFrameHandler3', '??_V@YAXPAX@Z', '??3@YAXPAX@Z', 'malloc', '_resetstkoflw', '??_U@YAPAXI@Z', '_mbsnbcpy_s', '_encoded_null', '_mbsstr'], ['Sleep', 'lstrlenW', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'UnlockFile', 'TerminateThread', 'TerminateProcess', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetPriorityClass', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'MulDiv', 'MoveFileExA', 'MoveFileA', 'LockResource', 'LockFile', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'HeapAlloc', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetVolumeInformationA', 'GetVersionExA', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetThreadContext', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileA', 'DeleteCriticalSection', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'DeleteService', 'CloseServiceHandle', 'RegDeleteValueA', 'UnrealizeObject', 'StretchBlt', 'SetWinMetaFileBits', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'NtQueryInformationProcess', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'SHGetFileInfoA', 'SHFileOperationA', 'CreateWindowExA', 'mouse_event', 'keybd_event', 'UpdateWindow', 'UnregisterClassA', 'TranslateMessage', 'SwapMouseButton', 'SetWindowPos', 'SetWindowLongA', 'SetTimer', 'SetRect', 'SetProcessWindowStation', 'SetCursorPos', 'SendMessageA', 'ReleaseDC', 'RegisterClassExA', 'RegisterClassA', 'PostMessageA', 'OpenWindowStationA', 'OpenDesktopA', 'MessageBoxA', 'LoadStringA', 'LoadIconA', 'KillTimer', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowLongA', 'GetWindowDC', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetProcessWindowStation', 'GetMessageA', 'GetLastInputInfo', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClipboardData', 'GetClassInfoA', 'FillRect', 'ExitWindowsEx', 'EnumWindows', 'EnumChildWindows', 'EnableMenuItem', 'EmptyClipboard', 'DrawIconEx', 'DispatchMessageA', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcA', 'CreateIcon', 'CloseWindowStation', 'CloseClipboard', 'CallWindowProcA', 'AttachThreadInput', 'CharNextA', 'CharLowerBuffA', 'CharUpperBuffA', 'CharToOemA', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'WSAIoctl', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetServByName', 'WSAAsyncGetHostByName', 'WSAAsyncSelect', 'getservbyname', 'gethostbyname', 'socket', 'shutdown', 'send', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'getsockname', 'connect', 'closesocket', 'bind'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'GetThreadLocale', 'GetStartupInfoA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'GetTokenInformation', 'FreeSid', 'EqualSid', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'TerminateProcess', 'SystemTimeToFileTime', 'Sleep', 'SetFileTime', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'ReadFile', 'OpenProcess', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'LoadLibraryA', 'GlobalFree', 'GlobalAlloc', 'GetVersion', 'GetUserDefaultLangID', 'GetProcAddress', 'GetModuleHandleA', 'GetLocalTime', 'GetLastError', 'GetFileTime', 'GetFileSize', 'GetExitCodeProcess', 'GetCurrentThread', 'GetCurrentProcess', 'FreeLibrary', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'DosDateTimeToFileTime', 'CompareFileTime', 'CloseHandle', 'StretchDIBits', 'StretchBlt', 'SetWindowOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetRectRgn', 'SetROP2', 'SetPixel', 'SetDIBits', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectObject', 'SaveDC', 'RestoreDC', 'OffsetRgn', 'MoveToEx', 'IntersectClipRect', 'GetStockObject', 'GetPixel', 'GetDIBits', 'ExtSelectClipRgn', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CombineRgn', 'BitBlt', 'WaitMessage', 'ValidateRect', 'TranslateMessage', 'ShowWindow', 'SetWindowPos', 'SetTimer', 'SetParent', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SendMessageA', 'ScreenToClient', 'ReleaseDC', 'PostQuitMessage', 'OffsetRect', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'InvalidateRect', 'GetWindowRgn', 'GetWindowRect', 'GetWindowDC', 'GetUpdateRgn', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetParent', 'GetWindow', 'GetKeyState', 'GetFocus', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetCapture', 'FillRect', 'ExitWindowsEx', 'EnumWindows', 'EndPaint', 'EnableWindow', 'EnableMenuItem', 'DrawIcon', 'DestroyWindow', 'DestroyIcon', 'DeleteMenu', 'CopyImage', 'ClientToScreen', 'BeginPaint', 'CharLowerBuffA', 'timeKillEvent', 'timeSetEvent', 'SysAllocStringLen', 'OleInitialize', 'ImageList_Draw', 'ImageList_SetBkColor', 'ImageList_Create', 'InitCommonControls', 'SHGetFileInfoA', 'wvsprintfA', 'SetWindowLongA', 'SetPropA', 'SendMessageA', 'RemovePropA', 'RegisterClassA', 'PostMessageA', 'PeekMessageA', 'MessageBoxA', 'LoadIconA', 'LoadCursorA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindowLongA', 'GetPropA', 'GetClassLongA', 'GetClassInfoA', 'FindWindowA', 'DrawTextA', 'DispatchMessageA', 'DefWindowProcA', 'CreateWindowExA', 'CallWindowProcA', 'GetTextExtentPoint32A', 'GetObjectA', 'CreateFontIndirectA', 'AddFontResourceA', 'WritePrivateProfileStringA', 'SetFileAttributesA', 'SetCurrentDirectoryA', 'RemoveDirectoryA', 'LoadLibraryA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetTimeFormatA', 'GetTempPathA', 'GetSystemDirectoryA', 'GetShortPathNameA', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetComputerNameA', 'GetCommandLineA', 'FindNextFileA', 'FindFirstFileA', 'ExpandEnvironmentStringsA', 'DeleteFileA', 'CreateFileA', 'CreateDirectoryA', 'CompareStringA', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegEnumKeyExA', 'RegCreateKeyExA', 'LookupPrivilegeValueA', 'GetUserNameA', 'ShellExecuteExA', 'ShellExecuteA', 'FDIDestroy', 'FDICopy', 'FDICreate', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHChangeNotify', 'SHBrowseForFolderA'], ['GetModuleHandleA', '_CIcos'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'VariantChangeTypeEx', 'RaiseException'], ['GetLastError', 'WaitForSingleObject', 'CreateMutexW', 'Sleep', 'CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'lstrlenW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow', 'SetClipboardViewer'], ['Sleep', 'GetSystemDirectoryA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'FindResourceA', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'SetEndOfFile', 'LoadResource', 'LockResource', 'SizeofResource', 'DeleteFileA', 'CreateFileA', 'SetFileTime', 'CloseHandle', 'WriteFile', 'GetTickCount', 'GetLocalTime', 'SystemTimeToFileTime', 'GetFileAttributesA', 'CreateDirectoryA', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapFree', 'GetLastError', 'ReadFile', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetProcAddress', 'LoadLibraryA', 'GetStringTypeW', 'ShowWindow', 'EndDialog', 'PostQuitMessage', 'DialogBoxParamA', 'OpenSCManagerA', 'OpenServiceA', 'CloseServiceHandle', 'QueryServiceStatus', 'ControlService', 'DeleteService', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCloseKey', 'CreateServiceA', 'ChangeServiceConfig2A', 'RegCreateKeyA', 'StartServiceA'], ['SizeofResource', 'GetCommandLineW', 'VirtualAlloc', 'FreeResource', 'LockResource', 'LoadResource', 'FindResourceW', 'ExitProcess', 'GetModuleHandleW', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'LCMapStringW', 'LocalFree', 'GetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CommandLineToArgvW', 'CoInitialize', 'SafeArrayDestroy', 'VariantInit', 'SysAllocString', 'SafeArrayPutElement', 'SafeArrayUnaccessData', 'SafeArrayCreate', 'SafeArrayCreateVector', 'SafeArrayAccessData', 'VariantClear', 'CLRCreateInstance'], ['CreateDirectoryExW', 'ReadConsoleInputA', 'GetTempPathW', 'GetSystemDirectoryW', 'RemoveDirectoryA', 'OutputDebugStringW', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'FindResourceA', 'LoadModule', 'InterlockedDecrement', 'RemoveVectoredExceptionHandler', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'CopyFileExW', 'GetThreadLocale', 'GetModuleHandleW', 'FindFirstVolumeW', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'EnumResourceLanguagesA', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructW', 'AddConsoleAliasA', 'GetConsoleAliasW', 'FindNextFileA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleAliasExesLengthA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'DeleteFileA', 'FindResourceExW', 'SearchPathA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetSysColorBrush', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleHandleW', 'MessageBoxW', 'RegOpenKeyExW', '_CorExeMain', 'ImageList_Create', 'ShellAboutW'], ['GetLastError', 'SetLastError', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'GetTickCount', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetStdHandle', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer'], ['GetModuleHandleA', 'PeekMessageA', 'RegQueryValueA', 'SHGetFolderPathW', 'ImageList_SetBkColor'], ['GetModuleHandleA', 'GetDlgItem', 'RegCloseKey', '_CorExeMain', 'PathMakeUniqueName', 'ImageList_Draw'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'TlsSetValue', 'TlsGetValue', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'WriteFile', 'SizeofResource', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GetTempPathA', 'GetTempFileNameA', 'GetProcAddress', 'FreeResource', 'FreeLibrary', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'DeleteFileA', 'CreateFileA', 'CloseHandle', 'TranslateMessage', 'PeekMessageA', 'MessageBoxA', 'GetActiveWindow', 'DispatchMessageA'], ['GetLocaleInfoA', 'CreateToolhelp32Snapshot', 'OpenMutexA', 'Process32NextW', 'LoadLibraryA', 'Process32FirstW', 'GetProcAddress', 'VirtualProtect', 'SetLastError', 'VirtualFree', 'VirtualAlloc', 'GetNativeSystemInfo', 'HeapAlloc', 'GetProcessHeap', 'FreeLibrary', 'IsBadReadPtr', 'GetTempPathW', 'OpenProcess', 'lstrcatW', 'GetCurrentProcessId', 'GetTempFileNameW', 'GetCurrentProcess', 'GetSystemDirectoryA', 'GlobalAlloc', 'GlobalLock', 'GetTickCount', 'GlobalUnlock', 'WriteProcessMemory', 'ResumeThread', 'GetThreadContext', 'VirtualAllocEx', 'ReadProcessMemory', 'CreateProcessW', 'SetThreadContext', 'LocalAlloc', 'GlobalFree', 'MulDiv', 'SizeofResource', 'GetLongPathNameW', 'SetFilePointer', 'FindResourceA', 'LockResource', 'LoadResource', 'LocalFree', 'FormatMessageA', 'GetModuleFileNameA', 'lstrcpynA', 'AllocConsole', 'CreateMutexA', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'HeapSize', 'WriteConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindFirstFileExA', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'GetTimeZoneInformation', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'HeapReAlloc', 'GetACP', 'GetStdHandle', 'GetModuleHandleExW', 'MoveFileExW', 'RtlUnwind', 'RaiseException', 'LoadLibraryExW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'TlsFree', 'TlsSetValue', 'CopyFileW', 'DeleteFileA', 'ExpandEnvironmentStringsA', 'FindNextFileA', 'FindFirstFileA', 'GetFileSize', 'TerminateThread', 'CreateDirectoryW', 'GetLastError', 'SetFileAttributesW', 'GetModuleHandleA', 'RemoveDirectoryW', 'MoveFileW', 'SetFilePointerEx', 'GetLogicalDriveStringsA', 'DeleteFileW', 'GetFileAttributesW', 'FindClose', 'lstrlenA', 'GetDriveTypeA', 'FindNextFileW', 'GetFileSizeEx', 'FindFirstFileW', 'ExitProcess', 'CreateProcessA', 'PeekNamedPipe', 'CreatePipe', 'TerminateProcess', 'ReadFile', 'HeapFree', 'HeapCreate', 'CreateEventA', 'GetLocalTime', 'CreateThread', 'SetEvent', 'CreateEventW', 'WaitForSingleObject', 'Sleep', 'GetModuleFileNameW', 'CloseHandle', 'ExitThread', 'CreateFileW', 'WriteFile', 'QueryPerformanceFrequency', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'DecodePointer', 'EncodePointer', 'WideCharToMultiByte', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEndOfFile', 'SetForegroundWindow', 'SetClipboardData', 'EnumWindows', 'ExitWindowsEx', 'EmptyClipboard', 'ShowWindow', 'SetWindowTextW', 'MessageBoxW', 'IsWindowVisible', 'TranslateMessage', 'DispatchMessageA', 'GetMessageA', 'GetWindowTextW', 'wsprintfW', 'GetClipboardData', 'UnhookWindowsHookEx', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'GetKeyboardLayout', 'SetWindowsHookExA', 'CloseClipboard', 'OpenClipboard', 'GetKeyboardState', 'CallNextHookEx', 'CloseWindow', 'SendInput', 'mouse_event', 'DrawIcon', 'GetSystemMetrics', 'GetIconInfo', 'SystemParametersInfoW', 'GetCursorPos', 'RegisterClassExA', 'GetKeyboardLayoutNameA', 'GetWindowTextLengthW', 'GetKeyState', 'ToUnicodeEx', 'AppendMenuA', 'CreateWindowExA', 'DefWindowProcA', 'TrackPopupMenu', 'CreatePopupMenu', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'DeleteObject', 'CreateDCA', 'GetObjectA', 'SelectObject', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameW', 'RegEnumKeyExA', 'QueryServiceStatus', 'CloseServiceHandle', 'OpenSCManagerW', 'OpenSCManagerA', 'ControlService', 'StartServiceW', 'QueryServiceConfigW', 'ChangeServiceConfigW', 'OpenServiceW', 'EnumServicesStatusW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCreateKeyA', 'RegCloseKey', 'RegQueryInfoKeyW', 'RegQueryValueExA', 'RegCreateKeyExW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegSetValueExA', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegQueryValueExW', 'RegDeleteKeyA', 'ShellExecuteW', 'ShellExecuteExA', 'Shell_NotifyIconA', 'ExtractIconA', 'PathFileExistsW', 'PathFileExistsA', 'StrToIntA', 'PlaySoundW', 'mciSendStringA', 'mciSendStringW', 'waveInClose', 'waveInAddBuffer', 'waveInStart', 'waveInOpen', 'waveInUnprepareHeader', 'waveInPrepareHeader', 'waveInStop', 'send', 'socket', 'connect', 'recv', 'gethostbyname', 'WSASetLastError', 'inet_addr', 'gethostbyaddr', 'getservbyport', 'ntohs', 'getservbyname', 'htonl', 'htons', 'inet_ntoa', 'closesocket', 'WSAGetLastError', 'WSAStartup', 'URLDownloadToFileW', 'URLOpenBlockingStreamW', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipCloneImage', 'GdipAlloc', 'GdipDisposeImage', 'GdipFree', 'GdipGetImageEncodersSize', 'GdipSaveImageToStream', 'GdipSaveImageToFile', 'GdipLoadImageFromStream'], ['GetSysColorBrush', 'TlsAlloc', 'GetSystemTimeAsFileTime', 'CharUpperBuffW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PtVisible', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetSysColorBrush', 'CharUpperBuffW', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleHandleA', 'GetProcessWindowStation', 'RegCloseKey', 'PropertySheet'], ['GetStringTypeA', 'ReleaseMutex', 'ResumeThread', 'SetThreadPriority', 'GetLastError', 'WaitForSingleObject', 'CreateMutexA', 'CreateThread', 'GetCommandLineA', 'GetProcAddress', 'ExitProcess', 'GlobalFree', 'LoadLibraryA', 'GlobalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetDriveTypeA', 'FindClose', 'FindNextFileA', 'CloseHandle', 'SetFileTime', 'GetFileTime', 'CreateFileA', 'FindFirstFileA', 'SetCurrentDirectoryA', 'WriteFile', 'ReadFile', 'SetFilePointer', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'FreeLibrary', 'GetStartupInfoA', 'GetVersion', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'MultiByteToWideChar', 'MessageBoxA', 'ShellExecuteA'], ['GetProcessHeap', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'GetCommandLineA', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'FileTimeToLocalFileTime', 'GetFileTime', 'GetFileAttributesW', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringW', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'GetModuleHandleA', 'lstrlenW', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GlobalAddAtomW', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'SetHandleCount', 'ExitProcess', 'CharUpperW', 'CharNextW', 'CopyAcceleratorTableW', 'IsRectEmpty', 'SetRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'FindWindowW', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadAcceleratorsW', 'InsertMenuItemW', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorW', 'InvalidateRect', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'TrackPopupMenu', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'SystemParametersInfoW', 'DestroyMenu', 'GetMenuItemInfoW', 'InflateRect', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'ScreenToClient', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'FillRect', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindow', 'GetSysColorBrush', 'LoadCursorW', 'DestroyCursor', 'SetCursorPos', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuW', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'ShowOwnedPopups', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SetCapture', 'GetFocus', 'GetParent', 'OffsetRect', 'RedrawWindow', 'GetSystemMenu', 'GetWindowRect', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadIconW', 'AppendMenuW', 'GetSystemMetrics', 'SendMessageW', 'EnableWindow', 'DeferWindowPos', 'UnregisterClassA', 'CreatePatternBrush', 'SelectObject', 'CreateCompatibleDC', 'GetStockObject', 'GetDeviceCaps', 'CreateSolidBrush', 'CreateFontIndirectW', 'GetTextExtentPoint32W', 'CreateCompatibleBitmap', 'DeleteDC', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'PatBlt', 'CreateBitmap', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectW', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'SetViewportOrgEx', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'DragQueryFileW', 'DragFinish', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'SysFreeString'], ['ExitProcess', 'GetNativeSystemInfo', 'FreeLibrary', 'HeapAlloc', 'HeapFree', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'GetLastError', 'HeapReAlloc', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'GetModuleHandleExW', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetStringTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'LCMapStringW', 'LoadLibraryExW', 'OutputDebugStringW', 'RtlUnwind', 'HeapSize', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CloseHandle', 'SetStdHandle', 'WriteConsoleW', 'CreateFileW'], ['AllocConsole', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetConsoleAliasesW', 'SetFilePointer', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'MoveFileA', 'FindFirstChangeNotificationA', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'GetStdHandle', 'UnregisterWait', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['OpenProcessToken', 'getaddrinfo', 'EnumDisplayDevicesA', 'SetEndOfFile', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['RaiseException', 'GetLastError', 'MultiByteToWideChar', 'lstrlenA', 'InterlockedDecrement', 'GetProcAddress', 'LoadLibraryA', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetModuleHandleA', 'Module32Next', 'CloseHandle', 'Module32First', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'SetEndOfFile', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetLocaleInfoA', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'GetCommandLineA', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'FlushFileBuffers', 'SetFilePointer', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'RtlUnwind', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'OleInitialize', 'SafeArrayCreate', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysAllocString'], ['OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'MoveFileExW', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'VirtualUnlock', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'ExitThread', 'GetModuleFileNameW', 'VirtualAlloc', 'TerminateProcess', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'lstrlenW', 'CloseHandle', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'HttpQueryInfoA', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'wglDeleteContext', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetVolumePathNameW', 'GetCalendarInfoA', 'GetProcessHandleCount', 'GetFileAttributesA', 'WriteConsoleW', 'SetSystemPowerState', 'GetModuleFileNameW', 'CompareStringW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'GetPrivateProfileIntW', 'DeleteFiber', 'SetLastError', 'GetProcAddress', 'InterlockedIncrement', 'HeapSize', 'SetComputerNameA', 'EnterCriticalSection', 'SearchPathA', 'OpenWaitableTimerA', 'LoadLibraryA', 'Process32FirstW', 'GetProcessId', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetFileShortNameA', 'FindAtomW', 'AreFileApisANSI', 'GetConsoleAliasExesLengthA', 'AttachConsole', 'GetVolumeNameForVolumeMountPointA', 'GetLastError', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsW', 'SelectObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'wglDeleteContext', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'RtlUnwind', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'GetTickCount', 'GetFileTime', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringW', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GetModuleHandleA', 'InterlockedDecrement', 'lstrlenW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomW', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetEnvironmentStrings', 'ExitProcess', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'MessageBeep', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'CharNextW', 'CharUpperW', 'SetPropW', 'GetSysColorBrush', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageW', 'PostQuitMessage', 'InvalidateRect', 'LoadBitmapW', 'GetParent', 'GetClientRect', 'IsIconic', 'DrawIcon', 'GetSystemMetrics', 'SendMessageW', 'GetSystemMenu', 'AppendMenuW', 'LoadIconW', 'EnableWindow', 'UnregisterClassA', 'ScaleWindowExtEx', 'GetWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'SetWindowExtEx', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'GetViewportExtEx', 'DeleteObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'BitBlt', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetPixel', 'GetObjectW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SetPixelV', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString'], ['DirectDrawCreate', 'GetConsoleMode', 'GetConsoleCP', '_lclose', 'FlushFileBuffers', 'CompareStringW', 'CompareStringA', 'GetTimeZoneInformation', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetModuleHandleA', 'FindResourceA', 'LoadResource', 'LockResource', '_lopen', 'SetEnvironmentVariableA', '_lread', 'OutputDebugStringA', 'InitializeCriticalSection', 'LCMapStringW', 'LCMapStringA', 'HeapAlloc', 'GetLastError', 'HeapFree', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapCreate', 'HeapDestroy', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryA', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'CreateFileA', 'LoadCursorA', 'RegisterClassExA', 'GetSystemMetrics', 'CreateWindowExA', 'ShowWindow', 'PeekMessageA', 'DispatchMessageA', 'DestroyWindow', 'DefWindowProcA', 'ShowCursor', 'SendMessageA', 'PostQuitMessage', 'LoadImageA', 'TranslateMessage', 'CreateFontA', 'SetTextColor', 'SetBkColor', 'SetBkMode', 'TextOutA', 'DeleteObject', 'GetPixel', 'SetPixel', 'CreateCompatibleDC', 'SelectObject', 'GetObjectA', 'StretchBlt', 'DeleteDC', 'GetStockObject', 'SetFileSecurityW', 'CommandLineToArgvW'], ['RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'FatalAppExitA', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'GetModuleFileNameW', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'FreeResource', 'GetCurrentThreadId', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'GetCurrentProcessId', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'WideCharToMultiByte', 'lstrlenW', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'InterlockedExchange', 'GetVersion', 'FreeEnvironmentStringsA', 'GetEnvironmentVariableW', 'MapVirtualKeyA', 'IsRectEmpty', 'DeleteMenu', 'GetSystemMenu', 'SetParent', 'UnionRect', 'DestroyIcon', 'UnregisterClassA', 'WindowFromPoint', 'GetDCEx', 'LockWindowUpdate', 'SetCapture', 'EndDialog', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'GetDialogBaseUnits', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'IsChild', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetKeyNameTextA', 'CallWindowProcA', 'GetWindowPlacement', 'RegisterWindowMessageA', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetClassNameA', 'WinHelpA', 'GetWindowThreadProcessId', 'GetActiveWindow', 'EqualRect', 'GetKeyState', 'GetMenu', 'LoadIconA', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'LoadAcceleratorsA', 'SetActiveWindow', 'IsWindowVisible', 'IsIconic', 'InsertMenuItemA', 'CreatePopupMenu', 'GetClassInfoA', 'IntersectRect', 'SetRectEmpty', 'GetLastActivePopup', 'BringWindowToTop', 'PostMessageA', 'SetMenu', 'GetDesktopWindow', 'TranslateAcceleratorA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetFocus', 'SetWindowPos', 'ScrollWindowEx', 'SetFocus', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'IsWindow', 'SetWindowTextA', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'UpdateWindow', 'EnableWindow', 'GetWindowLongA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'SendDlgItemMessageA', 'GetDlgItemTextA', 'GetDlgItemInt', 'GetDlgItem', 'CheckRadioButton', 'CheckDlgButton', 'GetWindow', 'GetMenuState', 'GetMenuItemInfoA', 'GetSysColorBrush', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcA', 'GetWindowDC', 'SendMessageA', 'GetMessagePos', 'PtInRect', 'GetWindowRect', 'LoadImageA', 'GetSysColor', 'GetSystemMetrics', 'CopyRect', 'InflateRect', 'DrawEdge', 'DrawFrameControl', 'DrawFocusRect', 'SetRect', 'GetParent', 'GetClientRect', 'OffsetRect', 'SetTimer', 'SetCursor', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'LoadCursorA', 'KillTimer', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'GetCursorPos', 'SystemParametersInfoA', 'StartDocA', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'GetPixel', 'CreatePatternBrush', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateHatchBrush', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetTextExtentPoint32A', 'GetCharWidthA', 'StretchDIBits', 'GetBkColor', 'GetTextMetricsA', 'BitBlt', 'SetTextCharacterExtra', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'CreateDIBPatternBrushPt', 'CreateFontA', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateCompatibleBitmap', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'SelectObject', 'RoundRect', 'GetTextColor', 'GetBkMode', 'CreateFontIndirectA', 'CreateSolidBrush', 'GetStockObject', 'StretchBlt', 'Polygon', 'CreateCompatibleDC', 'GetObjectA', 'SetMapperFlags', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['WaitNamedPipeA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'SetFirmwareEnvironmentVariableW', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedIncrement', 'GetLastError', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['VirtualAlloc', 'Sleep', 'GetProcAddress', 'LoadLibraryW', 'CreateFileW', 'VirtualQuery', 'VirtualFree', 'VirtualProtect', 'GetCurrentProcess', 'FlushInstructionCache', 'LoadLibraryA', 'IsBadReadPtr', 'FreeLibrary', 'lstrcmpA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'GetCurrentThread', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FindClose', 'FindFirstFileExA', 'FindFirstFileExW', 'FindNextFileA', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'SetConsoleCtrlHandler', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'OutputDebugStringA', 'OutputDebugStringW', 'CloseHandle', 'WaitForSingleObjectEx', 'CreateThread', 'WriteConsoleW', 'EncodePointer', 'DecodePointer'], ['lstrcatA', 'GetModuleHandleA', 'CreateFileA', 'lstrcpyA', 'CreateThread', 'GetProcAddress', 'GetFileSize', 'GetConsoleWindow', 'GetLastError', 'lstrlenA', 'WriteConsoleW', 'CreateFileW', 'CloseHandle', 'QueryPerformanceCounter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RaiseException', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapReAlloc', 'SetFilePointerEx', 'GetFileType', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'GetConsoleMode', 'FlushFileBuffers', 'GetConsoleOutputCP', 'HeapSize', 'DecodePointer', 'ShowWindow'], ['GetOEMCP', 'GetCommandLineA', 'RtlUnwind', 'ExitProcess', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetCPInfo', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetModuleHandleW', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'LocalFree', 'lstrlenA', 'InterlockedDecrement', 'MulDiv', 'MultiByteToWideChar', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GlobalAddAtomA', 'GetCurrentProcessId', 'GetLastError', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'WideCharToMultiByte', 'CompareStringA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleA', 'CreateThread', 'CloseHandle', 'VirtualProtect', 'LoadLibraryA', 'VirtualAlloc', 'GetProcAddress', 'SetLastError', 'Sleep', 'IsBadReadPtr', 'GetProcessHeap', 'VirtualFree', 'HeapFree', 'HeapAlloc', 'FreeLibrary', 'VirtualQuery', 'SetHandleCount', 'GetNativeSystemInfo', 'LoadCursorA', 'GetSysColorBrush', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'GetDlgItemTextA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindow', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'DestroyMenu', 'UpdateWindow', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SetTimer', 'IsIconic', 'KillTimer', 'LoadIconA', 'DrawIcon', 'GetClientRect', 'SendMessageA', 'ShowWindow', 'PostMessageA', 'GetSystemMetrics', 'EnableWindow', 'GetMenu', 'GetStockObject', 'SelectObject', 'GetDeviceCaps', 'DeleteDC', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'CreateBitmap', 'PtVisible', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'SetViewportOrgEx', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit', 'htons', 'setsockopt', 'sendto', 'htonl', 'bind', 'socket', 'closesocket', 'inet_addr', 'recvfrom', 'WSACleanup', 'WSAStartup'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'SetFilePointer', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'InterlockedPushEntrySList', 'GetProcAddress', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['EnumCalendarInfoA', 'GetDriveTypeW', 'GlobalCompact', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'InterlockedCompareExchange', 'SetComputerNameW', 'OpenSemaphoreA', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'LoadLibraryW', 'GetConsoleAliasExesLengthW', 'InitAtomTable', 'WriteConsoleW', 'GetModuleFileNameW', 'lstrcatA', 'MultiByteToWideChar', 'GetStringTypeExA', 'SearchPathW', 'DeleteFiber', 'GetLastError', 'GetCurrentDirectoryW', 'GetProcAddress', 'CreateJobSet', 'RemoveDirectoryA', 'GetLocalTime', 'WriteConsoleA', 'InterlockedExchangeAdd', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'SetFileApisToANSI', 'AddAtomA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'FindNextFileW', 'VirtualProtect', 'CompareStringA', 'FileTimeToLocalFileTime', 'DeleteFileW', 'MoveFileWithProgressW', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'GetProfileIntA', 'GetVolumeNameForVolumeMountPointA', 'CreateFileW', 'CloseHandle', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MoveFileA', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'IsProcessorFeaturePresent', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'DeleteFileA', 'GetCharABCWidthsA', 'WinHttpGetProxyForUrl'], ['FindWindowA', 'GetSysColorBrush', 'MessageBoxW', 'GetSystemMetrics', 'FreeLibrary', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'GetLastError', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemInfo', 'VirtualAlloc', 'MultiByteToWideChar', 'GetConsoleWindow', 'SetEnvironmentVariableW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'WriteConsoleW', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['GetModuleHandleW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'SetLastError', 'GetCurrentProcessId', 'LocalFree', 'LocalAlloc', 'FormatMessageW', 'GetModuleFileNameW', 'GetTempPathW', 'GetTempFileNameW', 'GetProcAddress', 'WriteFile', 'CloseHandle', 'DeleteFileW', 'GetFileAttributesW', 'GetLastError', 'ReadFile', 'MultiByteToWideChar', 'WriteConsoleW', 'FlushFileBuffers', 'FreeLibrary', 'LoadLibraryW', 'CreateFileW', 'lstrcpynW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'WideCharToMultiByte', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlPcToFileHeader', 'EncodePointer', 'RaiseException', 'RtlUnwindEx', 'InterlockedFlushSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'HeapFree', 'HeapAlloc', 'GetStringTypeW', 'GetACP', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetWindowThreadProcessId', 'EnumWindows', 'MessageBoxW', 'LoadStringW', 'RealGetWindowClassW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysAllocString'], ['midiOutGetDevCapsW', 'HGLOBAL_UserMarshal', 'HPALETTE_UserUnmarshal', 'SHQueryValueExW', 'RegOverridePredefKey', 'SetupDiCreateDeviceInfoList', 'tolower', 'AVIStreamStart', 'GetProcAddress', 'GetModuleHandleW', 'CloseHandle', 'GetSystemTimeAdjustment', 'GetModuleHandleA', 'InterlockedPopEntrySList'], ['lstrcpy', 'InitCommonControls'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'TranslateMessage', 'RegCreateKeyExA', 'CLSIDFromProgID', 'inet_addr', 'PathFileExistsA', 'DnsQuery_A', 'SHGetSpecialFolderPathA', 'strrchr', 'VariantChangeType'], ['GetConsoleAliasesLengthW', 'FindResourceExW', 'GetLogicalDriveStringsW', 'AddConsoleAliasW', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'VirtualFree', 'GenerateConsoleCtrlEvent', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetPriorityClass', 'GlobalAlloc', 'AddRefActCtx', 'GetLocaleInfoW', 'GetCalendarInfoW', 'ReplaceFileW', 'GetModuleFileNameW', 'DeactivateActCtx', 'OpenMutexW', 'GetLastError', 'WritePrivateProfileStructA', 'ChangeTimerQueueTimer', 'lstrcmpiA', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'VirtualAllocEx', 'LoadLibraryA', 'InterlockedExchangeAdd', 'GetConsoleScreenBufferInfo', 'WritePrivateProfileStringA', 'FindFirstVolumeMountPointW', 'CreateEventW', 'GetCurrentConsoleFont', 'FindAtomA', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCommTimeouts', 'WaitForDebugEvent', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'FindNextVolumeA', 'CreateMutexW', 'GetCurrentDirectoryW', 'GetDateFormatW', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapCreate', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'CloseHandle', 'CreateFileA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'CharLowerBuffA', 'GetCharABCWidthsFloatA', 'GetCharWidthA'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'GetUserNameW', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryW', 'CreateFileW', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileW', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'FindNextFileW', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameW', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileW', 'MultiByteToWideChar', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesW', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_assert', '_beginthreadex', '_errno', '_filelengthi64', '_mkdir', '_snwprintf', '_stat', '_vscprintf', '_vsnprintf', '_wfopen', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'freopen', 'fseek', 'fsetpos', 'ftell', 'fwprintf', 'fwrite', 'getenv', 'localtime', 'malloc', 'memcmp', 'mktime', 'realloc', 'remove', 'sprintf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strncpy', 'time', 'utime', 'wcscat', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationW', 'ShellExecuteA', 'ShellExecuteW', 'CreateWindowExW', 'DefWindowProcW', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextW', 'GetKeyState', 'GetKeyboardState', 'GetLastInputInfo', 'GetMessageW', 'GetSystemMetrics', 'GetWindowTextW', 'IsWindowVisible', 'MapVirtualKeyW', 'PostQuitMessage', 'RegisterClassExW', 'ReleaseDC', 'SendMessageA', 'SendMessageW', 'SetCursorPos', 'SetWindowTextW', 'ShowWindow', 'ToUnicode', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['GetDateFormatW', 'CreateMutexW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'FindResourceExW', 'GetLogicalDriveStringsW', 'AddConsoleAliasW', 'GetModuleHandleW', 'GetTickCount', 'VirtualFree', 'GenerateConsoleCtrlEvent', 'GetConsoleAliasesA', 'GetPriorityClass', 'GlobalAlloc', 'AddRefActCtx', 'GetLocaleInfoW', 'GetCalendarInfoW', 'ReplaceFileW', 'GetModuleFileNameW', 'DeactivateActCtx', 'OpenMutexW', 'GetLastError', 'GetCurrentDirectoryW', 'ChangeTimerQueueTimer', 'lstrcmpiA', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'LoadLibraryA', 'InterlockedExchangeAdd', 'GetConsoleScreenBufferInfo', 'WritePrivateProfileStringA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'CreateEventW', 'GetCurrentConsoleFont', 'FindAtomA', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCommTimeouts', 'WaitForDebugEvent', 'GetCurrentThreadId', 'GetVersionExA', 'OpenFileMappingA', 'FindNextVolumeA', 'ReadFile', 'GetProcessHeap', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapCreate', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'HeapSize', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'CloseHandle', 'CreateFileA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'SetEndOfFile', 'GetComboBoxInfo', 'CharToOemBuffW', 'CharLowerBuffA'], ['BCryptGenRandom', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'QueryPerformanceCounter', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'ExitProcess', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'SetLastError', 'SetThreadErrorMode', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WriteConsoleW', 'WriteFile', 'MessageBoxA'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleAliasExesLengthA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'DeleteFileA', 'FindResourceExW', 'SearchPathA', 'GetSystemDefaultLangID', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'CreateFileA', 'GetShortPathNameW', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringW', 'GetThreadLocale', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetTickCount', 'GetCurrentProcessId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'InterlockedExchange', 'lstrcmpW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GetCurrentThreadId', 'CloseHandle', 'FreeLibrary', 'GetModuleFileNameW', 'GetModuleHandleW', 'MulDiv', 'GetModuleHandleA', 'GetProcAddress', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrlenW', 'WideCharToMultiByte', 'lstrlenA', 'CompareStringW', 'InterlockedDecrement', 'InterlockedIncrement', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'FreeEnvironmentStringsA', 'ExitProcess', 'LoadCursorW', 'GetSysColorBrush', 'DestroyIcon', 'RegisterClipboardFormatW', 'GetWindowThreadProcessId', 'SetCursor', 'ShowWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'MessageBoxW', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'DestroyMenu', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'PostMessageW', 'PostQuitMessage', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'PostThreadMessageW', 'DrawTextW', 'TabbedTextOutW', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetWindowLongW', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'TranslateAcceleratorW', 'GetSystemMenu', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadAcceleratorsW', 'LoadIconW', 'AppendMenuW', 'RemoveMenu', 'GetSystemMetrics', 'SendMessageW', 'EnableWindow', 'UnregisterClassA', 'DeleteDC', 'GetStockObject', 'SetViewportOrgEx', 'GetDeviceCaps', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'CreateBitmap', 'GetObjectW', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'OffsetViewportOrgEx', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegSetValueExW', 'RegQueryValueW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyW', 'RegSetValueW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'ExtractIconW', 'PathFindExtensionW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleIsCurrentClipboard', 'CoDisconnectObject', 'StringFromCLSID', 'CoTaskMemFree', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'LoadTypeLib', 'VariantInit', 'SysAllocString', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'SysAllocStringLen', 'SysStringLen', 'SysStringByteLen', 'RevokeActiveObject', 'RegisterActiveObject', 'SysFreeString'], ['AllocConsole', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesA', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'InitializeCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetStdHandle', 'GetLastError', 'SetFilePointer', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetProcAddress', 'UnregisterWait', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'LocalFileTimeToFileTime', 'EnumResourceTypesA', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['SetThreadStackGuarantee', 'GetFileInformationByHandle', 'GetFileInformationByHandleEx', 'SetFilePointerEx', 'VirtualAlloc', 'CreateThread', 'WaitForSingleObject', 'VirtualProtect', 'VirtualFree', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'CreateIoCompletionPort', 'SetFileCompletionNotificationModes', 'SetLastError', 'GetFinalPathNameByHandleW', 'GetQueuedCompletionStatusEx', 'TryAcquireSRWLockExclusive', 'Sleep', 'GetModuleHandleA', 'GetProcAddress', 'CompareStringW', 'LCMapStringW', 'SwitchToThread', 'GetStringTypeW', 'GetFileType', 'SetStdHandle', 'SetEnvironmentVariableW', 'HeapSize', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetConsoleOutputCP', 'GetCPInfo', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'GetOEMCP', 'HeapReAlloc', 'GetACP', 'IsValidCodePage', 'SetHandleInformation', 'GetCurrentThread', 'GetStdHandle', 'GetConsoleMode', 'MultiByteToWideChar', 'WriteConsoleW', 'WaitForSingleObjectEx', 'LoadLibraryA', 'CreateMutexA', 'GetCurrentProcess', 'ReleaseMutex', 'GetEnvironmentVariableW', 'RtlLookupFunctionEntry', 'GetModuleHandleW', 'FormatMessageW', 'GetFullPathNameW', 'CreateFileW', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'CloseHandle', 'GetCurrentDirectoryW', 'RtlCaptureContext', 'AcquireSRWLockShared', 'ReleaseSRWLockShared', 'GetCommandLineW', 'PostQueuedCompletionStatus', 'GetProcessHeap', 'GetCommandLineA', 'GetModuleHandleExW', 'TerminateProcess', 'AddVectoredExceptionHandler', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'GetModuleFileNameW', 'WriteFile', 'RtlPcToFileHeader', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'RtlUnwindEx', 'EncodePointer', 'RaiseException', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'WSASend', 'getsockopt', 'connect', 'shutdown', 'freeaddrinfo', 'WSAStartup', 'WSACleanup', 'recv', 'WSASocketW', 'send', 'getsockname', 'WSAGetLastError', 'getpeername', 'closesocket', 'bind', 'WSAIoctl', 'setsockopt', 'ioctlsocket', 'getaddrinfo', 'NtCancelIoFileEx', 'RtlNtStatusToDosError', 'NtDeviceIoControlFile', 'NtCreateFile', 'NtWriteFile', 'NtReadFile', 'CertVerifyCertificateChainPolicy', 'CertFreeCertificateChain', 'CertGetCertificateChain', 'CertEnumCertificatesInStore', 'CertDuplicateCertificateChain', 'CertAddCertificateContextToStore', 'CertOpenStore', 'CertDuplicateStore', 'CertDuplicateCertificateContext', 'CertCloseStore', 'CertFreeCertificateContext', 'AcceptSecurityContext', 'DeleteSecurityContext', 'FreeContextBuffer', 'EncryptMessage', 'AcquireCredentialsHandleA', 'ApplyControlToken', 'FreeCredentialsHandle', 'DecryptMessage', 'QueryContextAttributesW', 'InitializeSecurityContextW', 'RegQueryValueExW', 'RegCloseKey', 'SystemFunction036', 'RegOpenKeyExW', 'BCryptGenRandom'], ['GetVolumePathNameW', 'LoadLibraryW', 'GetProcessHandleCount', 'InterlockedPopEntrySList', 'lstrcpynW', 'WriteConsoleW', 'LocalHandle', 'GetMailslotInfo', 'GetModuleFileNameW', 'GetConsoleAliasesW', 'GetLongPathNameW', 'SetLastError', 'MoveFileW', 'SetComputerNameA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'LocalAlloc', 'IsWow64Process', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'UpdateResourceW', 'GetConsoleTitleW', 'VirtualProtect', 'GetFileAttributesExW', 'GetShortPathNameW', 'GetCPInfoExA', 'GetFileInformationByHandle', 'SetFileAttributesW', 'CreateThread', 'CreateFileW', 'GetConsoleAliasesLengthA', 'WriteProfileSectionW', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'Sleep', 'HeapSize', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'RaiseException', 'HeapReAlloc', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'CloseHandle', 'ClientToScreen', 'GetTextExtentExPointW', 'ClearEventLogA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SelectClipPath', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedFlushSList', 'WaitNamedPipeA', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'SetFirmwareEnvironmentVariableW', 'RemoveDirectoryA', 'SetStdHandle', 'CreateSemaphoreW', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'GetCommState', 'InterlockedIncrement', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'RaiseException', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapReAlloc', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['GetProcAddress', 'GetModuleHandleW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'SetLastError', 'GetCurrentProcessId', 'LocalFree', 'LocalAlloc', 'FormatMessageW', 'GetModuleFileNameW', 'GetTempPathW', 'GetTempFileNameW', 'InterlockedDecrement', 'WriteFile', 'CloseHandle', 'DeleteFileW', 'GetFileAttributesW', 'GetLastError', 'ReadFile', 'MultiByteToWideChar', 'WriteConsoleW', 'DecodePointer', 'FreeLibrary', 'LoadLibraryW', 'CreateFileW', 'lstrcpynW', 'FlushFileBuffers', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'EncodePointer', 'RtlUnwind', 'RaiseException', 'InterlockedFlushSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'HeapFree', 'HeapAlloc', 'GetStringTypeW', 'GetACP', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetWindowThreadProcessId', 'EnumWindows', 'MessageBoxW', 'LoadStringW', 'RealGetWindowClassW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysAllocString'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenIcon', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'mciSendStringA', 'mciSendCommandA', 'mciGetErrorStringA', 'GetProcAddress', 'NtFlushInstructionCache', 'FileProtocolHandlerA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'VariantChangeTypeEx', 'RaiseException'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetMessageTime', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'GetActiveObject', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetUserDefaultLCID', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'OleRegEnumVerbs', 'IsAccelerator', 'CoCreateInstance', 'CoUninitialize', 'IsEqualGUID', 'CreateStreamOnHGlobal', 'OleInitialize', 'ProgIDFromCLSID', 'OleUninitialize', 'CoGetClassObject', 'CoInitialize', 'CoTaskMemFree', 'OleDraw', 'CoTaskMemAlloc', 'OleSetMenuDescriptor', 'StringFromCLSID', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'SetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['lstrlenW', 'CloseHandle', 'SetErrorMode', 'CreateThread'], ['GetCommandLineA', 'RtlUnwind', 'Sleep', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'HeapAlloc', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'HeapFree', 'GetTickCount', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringW', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetModuleHandleA', 'GlobalFindAtomW', 'GetVersionExW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'MulDiv', 'InterlockedDecrement', 'lstrlenA', 'lstrlenW', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GlobalAddAtomW', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetModuleFileNameW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'GetEnvironmentStringsW', 'ExitProcess', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'CharUpperW', 'ReleaseCapture', 'SetCapture', 'LoadCursorW', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetForegroundWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'UpdateWindow', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSysColor', 'GetSystemMetrics', 'DestroyMenu', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'EnableWindow', 'SendMessageW', 'AppendMenuW', 'LoadIconW', 'UnhookWindowsHookEx', 'GetWindowTextW', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'GetTopWindow', 'CharNextW', 'GetSystemMenu', 'InvalidateRect', 'GetClientRect', 'GetWindowRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuW', 'GetParent', 'GetFocus', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'PostQuitMessage', 'PostMessageW', 'SetCursor', 'MessageBoxW', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongW', 'GetWindowThreadProcessId', 'SetWindowPos', 'MapDialogRect', 'SetWindowContextHelpId', 'GetWindow', 'ValidateRect', 'GetCursorPos', 'PeekMessageW', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'CallNextHookEx', 'SetWindowsHookExW', 'EndDialog', 'GetClassNameW', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'CreateBitmap', 'GetWindowExtEx', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'ExtTextOutW', 'GetObjectW', 'GetDeviceCaps', 'GetFileTitleW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'OleUIBusyW', 'CoRevokeClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'OleIsCurrentClipboard', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoGetClassObject', 'SysAllocStringLen', 'SysStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'OleDraw', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['GetConsoleAliasesLengthW', 'FindResourceExW', 'GetLogicalDriveStringsW', 'AddConsoleAliasW', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'VirtualFree', 'GenerateConsoleCtrlEvent', 'GetConsoleAliasesA', 'IsBadReadPtr', 'GetNumberFormatA', 'GlobalAlloc', 'AddRefActCtx', 'GetLocaleInfoW', 'GetCalendarInfoW', 'ReplaceFileW', 'GetModuleFileNameW', 'DeactivateActCtx', 'OpenMutexW', 'GetLastError', 'GetCurrentDirectoryW', 'WritePrivateProfileStructA', 'lstrcmpiA', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'VirtualAllocEx', 'LoadLibraryA', 'InterlockedExchangeAdd', 'GetConsoleScreenBufferInfo', 'WritePrivateProfileStringA', 'FindFirstVolumeMountPointW', 'CreateEventW', 'GetCurrentConsoleFont', 'FindAtomA', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetCommTimeouts', 'WaitForDebugEvent', 'GetVersionExA', 'AddConsoleAliasA', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'FindNextVolumeA', 'CreateMutexW', 'ChangeTimerQueueTimer', 'GetDateFormatW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'WideCharToMultiByte', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'HeapSize', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'RegisterClassW', 'CharLowerBuffA', 'GetCharABCWidthsFloatA', 'GetCharWidthA'], ['GetModuleHandleA', 'MessageBoxA', 'GetUserNameA', 'PropertySheet', 'SHGetIconOverlayIndexA', '_CorExeMain'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegDeleteValueA', 'lstrlenW', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'UnlockFile', 'TerminateThread', 'TerminateProcess', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetPriorityClass', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'MulDiv', 'MoveFileExA', 'MoveFileA', 'LockResource', 'LockFile', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'HeapAlloc', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetVolumeInformationA', 'GetVersionExA', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetThreadContext', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileA', 'DeleteCriticalSection', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWinMetaFileBits', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'mouse_event', 'keybd_event', 'UpdateWindow', 'UnregisterClassA', 'TranslateMessage', 'SwapMouseButton', 'SetWindowPos', 'SetWindowLongA', 'SetTimer', 'SetRect', 'SetProcessWindowStation', 'SetCursorPos', 'SendMessageA', 'ReleaseDC', 'RegisterClassExA', 'RegisterClassA', 'PostMessageA', 'OpenWindowStationA', 'OpenDesktopA', 'MessageBoxA', 'LoadStringA', 'LoadIconA', 'KillTimer', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowLongA', 'GetWindowDC', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetProcessWindowStation', 'GetMessageA', 'GetLastInputInfo', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClipboardData', 'GetClassInfoA', 'FillRect', 'ExitWindowsEx', 'EnumWindows', 'EnumChildWindows', 'EnableMenuItem', 'EmptyClipboard', 'DrawIconEx', 'DispatchMessageA', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcA', 'CreateIcon', 'CloseWindowStation', 'CloseClipboard', 'CallWindowProcA', 'AttachThreadInput', 'CharNextA', 'CharLowerBuffA', 'CharUpperBuffA', 'CharToOemA', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'DeleteService', 'CloseServiceHandle', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetServByName', 'WSAAsyncGetHostByName', 'WSAAsyncSelect', 'getservbyname', 'gethostbyname', 'socket', 'shutdown', 'send', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'getsockname', 'connect', 'closesocket', 'bind', 'NtQueryInformationProcess', 'SHGetFileInfoA', 'SHFileOperationA', 'WSAIoctl'], ['SysFreeString', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA', 'CharToOemA', 'WriteFile', 'VirtualQuery', 'LoadLibraryA', 'GetVersionExA', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCPInfo', 'FreeLibrary', 'EnumCalendarInfoA'], ['OpenProcess', 'GetEnvironmentVariableA', 'FindFirstFileA', 'GetProcAddress', 'VirtualAlloc', 'CopyFileA', 'FindClose', 'LoadLibraryA', 'Process32Next', 'GlobalMemoryStatusEx', 'GetModuleFileNameA', 'FindNextFileA', 'CreateToolhelp32Snapshot', 'CloseHandle', 'lstrcpyA', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetConsoleWindow', 'lstrcpynA', 'SetEvent', 'WaitForSingleObject', 'CreateEventA', 'CreateThread', 'GetTickCount', 'GetModuleHandleA', 'FreeConsole', 'AllocConsole', 'SetConsoleCtrlHandler', 'InitializeCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'LockResource', 'GlobalAlloc', 'GlobalReAlloc', 'GlobalFree', 'ReadFile', 'CreateDirectoryW', 'GetLastError', 'EncodePointer', 'DecodePointer', 'GetFileAttributesExW', 'GetConsoleMode', 'ReadConsoleInputA', 'SetConsoleMode', 'HeapAlloc', 'GetDriveTypeW', 'GetFullPathNameA', 'GetSystemTimeAsFileTime', 'GetModuleHandleExW', 'AreFileApisANSI', 'GetCommandLineA', 'RaiseException', 'Process32First', 'HeapFree', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'HeapSize', 'SetLastError', 'InterlockedIncrement', 'GetCurrentThreadId', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WideCharToMultiByte', 'CreateFileW', 'GetProcessHeap', 'GetCurrentDirectoryW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoW', 'GetModuleHandleW', 'LoadLibraryExW', 'GetFileType', 'InitOnceExecuteOnce', 'QueryPerformanceCounter', 'GetTickCount64', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetConsoleCP', 'SetFilePointerEx', 'HeapReAlloc', 'OutputDebugStringW', 'LoadLibraryW', 'CompareStringEx', 'LCMapStringEx', 'SetStdHandle', 'FlushFileBuffers', 'WriteConsoleW', 'GetExitCodeProcess', 'CreateProcessA', 'SetEndOfFile', 'ReadConsoleW', 'SetEnvironmentVariableA', 'lstrlenA', 'LocalFree', 'InterlockedDecrement', 'ExitProcess', 'GetLocalTime', 'RtlUnwind', 'Sleep', 'ValidateRect', 'GetWindowRect', 'AdjustWindowRectEx', 'ScreenToClient', 'LoadCursorA', 'DestroyIcon', 'IsWindowVisible', 'ReleaseDC', 'SendMessageA', 'PeekMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetForegroundWindow', 'SetWindowPos', 'DestroyWindow', 'CreateWindowExA', 'GetAsyncKeyState', 'GetDC', 'RegisterClassExA', 'UnregisterClassA', 'PostQuitMessage', 'DefWindowProcA', 'DrawTextA', 'ShowWindow', 'PostMessageA', 'OpenProcessToken', 'GetLengthSid', 'CoInitializeSecurity', 'CoCreateInstance', 'CoInitializeEx', 'ExtractIconA', 'SysFreeString', 'VariantInit', 'VariantClear', 'SysAllocString', 'socket', 'recv', 'WSACleanup', 'htons', 'inet_addr', 'WSAStartup', 'connect', 'send', 'closesocket'], ['RtlUnwind', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'RaiseException', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetFileTime', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'FatalAppExitA', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileSizeEx', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetStringTypeExA', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetModuleHandleW', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetCurrentProcessId', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'InterlockedDecrement', 'GetModuleFileNameW', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'lstrlenA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'WinExec', 'MulDiv', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'FreeEnvironmentStringsW', 'SizeofResource', 'InsertMenuItemA', 'LoadAcceleratorsA', 'GetMenuBarInfo', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'SetRect', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'WindowFromPoint', 'DestroyMenu', 'GetMenuItemInfoA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'GetMenuStringA', 'InsertMenuA', 'RemoveMenu', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'CreatePopupMenu', 'GetClassNameA', 'GetPropA', 'RemovePropA', 'GetFocus', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'EnableWindow', 'ReleaseDC', 'GetDC', 'SendMessageA', 'CopyRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'GetDesktopWindow', 'BringWindowToTop', 'TranslateAcceleratorA', 'SetRectEmpty', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'SetCapture', 'DeleteMenu', 'UnregisterClassA', 'GetSysColorBrush', 'GetClassLongA', 'GetDialogBaseUnits', 'GetDlgItem', 'KillTimer', 'SetTimer', 'SetWindowTextA', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'LoadIconA', 'GetSystemMetrics', 'SetCursor', 'PtInRect', 'InflateRect', 'GetWindowRect', 'ScreenToClient', 'InvalidateRect', 'RedrawWindow', 'GetParent', 'LoadCursorA', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowLongA', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'RegisterWindowMessageA', 'SetWindowLongA', 'CopyIcon', 'DestroyCursor', 'MessageBeep', 'IsWindow', 'GetSysColor', 'GetMessagePos', 'SetPropA', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'ScaleViewportExtEx', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateHatchBrush', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetBkColor', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'SelectClipPath', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'EnumMetaFile', 'GetTextExtentPoint32A', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CopyMetaFileA', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'GetStockObject', 'CreateSolidBrush', 'GetObjectA', 'CreateDCA', 'GetDeviceCaps', 'DeleteDC', 'CreateFontIndirectA', 'DeleteObject', 'SelectObject', 'GetTextMetricsA', 'GetViewportExtEx', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegSetValueA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCloseKey', 'RegDeleteValueA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ShellExecuteA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathRemoveFileSpecW', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'StringFromGUID2', 'CoDisconnectObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'CoCreateInstance', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CLSIDFromString', 'CoUninitialize', 'CoInitializeEx', 'StringFromCLSID', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetLastError', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'SetCommState', 'EnumResourceTypesA', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'HeapValidate', 'SetConsoleCursorPosition', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'InterlockedDecrement', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'BackupWrite', 'WriteProfileSectionA', 'RemoveDirectoryA', 'SetStdHandle', 'LocalAlloc', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'FoldStringA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'QueryPerformanceFrequency', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'DeleteFileA', 'GetCommState', 'VerSetConditionMask', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'RaiseException', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'Sleep', 'SetFilePointer', 'SetEvent', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetEnvironmentVariableA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA', 'CharToOemA', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'waveOutGetNumDevs'], ['CloseHandle', 'SetErrorMode', 'CreateThread'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'GetACP', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'capCreateCaptureWindowA', 'PatBlt', 'CoInitialize', 'VariantCopy', 'ShellExecuteA', 'GetDC', 'sndPlaySoundA', 'send'], ['SetLocaleInfoA', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetMessageTime', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'GetActiveObject', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetUserDefaultLCID', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'CompareStringA', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'OleRegEnumVerbs', 'IsAccelerator', 'CoCreateInstance', 'CoUninitialize', 'IsEqualGUID', 'CreateStreamOnHGlobal', 'OleInitialize', 'ProgIDFromCLSID', 'OleUninitialize', 'CoGetClassObject', 'CoInitialize', 'CoTaskMemFree', 'OleDraw', 'CoTaskMemAlloc', 'OleSetMenuDescriptor', 'StringFromCLSID', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'SetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetProcessHeap', 'GetUserDefaultLangID', 'GetTickCount64', 'TlsAlloc', 'GetCurrentProcessorNumber', 'UnregisterApplicationRestart', 'GetLogicalDrives', 'GetOEMCP', 'GetSystemDefaultUILanguage', 'VirtualAlloc', 'GetThreadLocale', 'GetUserDefaultUILanguage', 'FlushProcessWriteBuffers', 'GetLargePageMinimum', 'GetCurrentThreadId', 'UnregisterApplicationRecoveryCallback', 'GetCommandLineA', 'GetLastError', 'GetErrorMode', 'GetEnvironmentStringsW', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetFileType', 'GetStdHandle', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'LCMapStringW', 'DecodePointer', 'GetShellWindow', 'GetFocus', 'GetCursor', 'InSendMessage', 'GetCapture', 'GetMenuCheckMarkDimensions', 'EmptyClipboard', 'CountClipboardFormats', 'GetKBCodePage', 'IsProcessDPIAware', 'GetForegroundWindow', 'GetClipboardSequenceNumber', 'CreateMenu', 'GetProcessWindowStation', 'GetMessageExtraInfo', 'GetOpenClipboardWindow', 'InitNetworkAddressControl', 'CoUninitialize'], ['TerminateProcess', 'InterlockedCompareExchange', 'UnhandledExceptionFilter', 'InterlockedExchange', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualAllocExNuma', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'FreeConsole', 'LoadLibraryExW', 'FindResourceA', 'LoadResource', 'SizeofResource', 'GetCurrentProcess', 'Sleep', 'GetSystemTimeAsFileTime', 'GetClientRect', 'GetWindowRect', 'PtInRect', 'GetCursorPos', 'GetDC', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'DialogBoxParamA', 'SetWindowLongA', 'CallWindowProcA', 'InvalidateRect', 'GetDlgItemInt', 'SetDlgItemInt', 'wsprintfA', 'SendMessageA', 'CreateDialogParamA', 'ShowWindow', 'SetWindowTextA', 'EndDialog', 'GetDlgItem', 'SetWindowPos', 'GetBkMode', 'GetTextColor', 'GetBkColor', 'SetBkMode', 'CreateFontIndirectA', 'SetBkColor', 'EnumFontFamiliesExA', 'TextOutA', 'DeleteObject', 'SetTextColor', 'SelectObject', 'ChooseFontA', 'ChooseColorA', '_controlfp_s', '_invoke_watson', '_except_handler4_common', '_decode_pointer', '_onexit', '_lock', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '_crt_debugger_hook', 'printf', 'memcpy', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter', 'exit', '__initenv', '_initterm', '_initterm_e', '_configthreadlocale', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '_encode_pointer', '__set_app_type'], ['GetCurrentProcess', 'CreateProcessW', 'ExitThread', 'WaitForSingleObject', 'GetLastError', 'ExitProcess', 'IsDebuggerPresent', 'GetVersionExW', 'GetVolumeInformationW', 'SetEndOfFile', 'HeapSize', 'WriteConsoleW', 'ReadConsoleW', 'GetProcAddress', 'FindFirstFileExW', 'FindClose', 'GetCommandLineW', 'GetCommandLineA', 'GetProcessHeap', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'GetModuleHandleW', 'CreateProcessA', 'GetStartupInfoA', 'GetModuleFileNameW', 'SetFileAttributesA', 'CopyFileA', 'GetFileAttributesA', 'GetModuleFileNameA', 'CloseHandle', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetFileAttributesW', 'FindFirstFileW', 'FindNextFileW', 'SetFileAttributesW', 'GetLocalTime', 'CreateThread', 'WinExec', 'GetLogicalDrives', 'SetStdHandle', 'FlushFileBuffers', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'Sleep', 'GetFileAttributesExW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetCPInfo', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'RtlUnwind', 'QueryPerformanceFrequency', 'MoveFileExW', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetACP', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetFileType', 'GetExitCodeProcess', 'GetSystemMetrics', 'LoadCursorW', 'RegisterClassExW', 'CreateWindowExW', 'ShowWindow', 'ScreenToClient', 'GetCursorPos', 'DrawTextA', 'MessageBoxW', 'DefWindowProcW', 'PostQuitMessage', 'DestroyWindow', 'SetTimer', 'KillTimer', 'InvalidateRect', 'EndPaint', 'DrawTextW', 'FillRect', 'BeginPaint', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'GetWindowLongW', 'SetWindowLongW', 'LineTo', 'MoveToEx', 'CreatePen', 'SetBkMode', 'DeleteObject', 'TextOutA', 'TextOutW', 'SetTextColor', 'SetBkColor', 'SelectObject', 'CreateFontW', 'CreateSolidBrush', 'SystemFunction036', 'RegCloseKey', 'RegQueryValueExW', 'RegOpenKeyExW', 'GetUserNameW', 'InternetOpenUrlW', 'InternetReadFile', 'InternetOpenW', 'NetUserGetInfo'], ['DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'GetSystemWindowsDirectoryW', 'UnlockFile', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'GetVolumePathNameW', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetDevicePowerState', 'ReplaceFileA', 'SetCurrentDirectoryA', 'GetProfileIntW', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'IsValidCodePage', 'CopyFileA', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'CreateMutexW', 'FindFirstFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'CharUpperBuffW', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['timeEndPeriod', 'timeBeginPeriod', 'WSAGetOverlappedResult', 'WriteFile', 'WriteConsoleW', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'LoadLibraryA', 'LoadLibraryW', 'GetSystemInfo', 'GetStdHandle', 'GetQueuedCompletionStatus', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateThread', 'CreateIoCompletionPort', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'WaitForSingleObject', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'GetLastError', 'Sleep', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ShowWindow', 'MoveToEx'], ['WriteConsoleOutputCharacterW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'lstrlenW', 'CreateDirectoryA', 'GetConsoleAliasesW', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'FindFirstChangeNotificationW', 'MoveFileW', 'WriteProfileSectionA', 'SetStdHandle', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'VirtualProtect', 'SetCalendarInfoA', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW'], ['ReadConsoleA', 'GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetTapeParameters', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'LoadLibraryW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapDestroy', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLargestConsoleWindowSize', 'WriteConsoleOutputW', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'ReadFileEx', 'GetTempFileNameA', 'ResetEvent', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'RequestWakeupLatency', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'GetDefaultCommConfigW', 'TlsGetValue', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetThreadContext', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsW', 'GetCharABCWidthsI'], ['CreateProcessA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'ResumeThread', 'SetThreadContext', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'WriteProcessMemory', '_amsg_exit', '_initterm', '_iob', '_lock', '_snprintf', '_unlock', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'strlen', 'strncmp', 'vfprintf'], ['LoadLibraryW', 'GetProcAddress', 'EnterCriticalSection', 'InitializeCriticalSection', 'GetVolumeInformationW', 'GetDiskFreeSpaceW', 'GetFileTime', 'GetCurrentProcessId', 'Sleep', 'GetLocalTime', 'HeapReAlloc', 'GetStringTypeW', 'MultiByteToWideChar', 'LCMapStringW', 'WideCharToMultiByte', 'HeapSize', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'DecodePointer', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'ImageList_SetDragCursorImage', 'CreatePropertySheetPageW', 'PropertySheetW', 'ImageList_LoadImageW', 'FindTextW', 'GetSaveFileNameW', 'GetOpenFileNameW', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitialize', 'CoUninitialize', 'GetThemeBackgroundRegion', 'CloseThemeData', 'OleTranslateColor', 'OleCreateFontIndirect', 'OleCreatePictureIndirect', 'OleCreatePropertyFrameIndirect', 'OleCreatePropertyFrame', 'OleLoadPicture', 'OleUIUpdateLinksW', 'OleUIAddVerbMenuW', 'OleUIPromptUserW'], ['FreeLibrary', 'HeapAlloc', 'HeapFree', 'VirtualFree', 'GetProcessHeap', 'IsBadReadPtr', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'VirtualProtect', 'Sleep', 'CloseHandle', 'WriteConsoleW', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'LoadLibraryExW', 'LCMapStringW', 'GetStringTypeW', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'GetLastError', 'HeapReAlloc', 'EncodePointer', 'DecodePointer', 'GetCommandLineW', 'RaiseException', 'RtlUnwind', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThreadId', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'CreateFileW', 'DispatchMessageW', 'DefWindowProcW', 'UpdateWindow', 'CreateWindowExW', 'ShowWindow', 'LoadStringW', 'EndDialog', 'LoadIconW', 'RegisterClassExW', 'LoadAcceleratorsW', 'TranslateMessage', 'EndPaint', 'DestroyWindow', 'TranslateAcceleratorW', 'GetMessageW', 'PostQuitMessage', 'DialogBoxParamW', 'LoadCursorW', 'BeginPaint', 'CoCreateGuid', 'FwpmFilterAdd0', 'FwpmEngineClose0', 'FwpmFilterDeleteByKey0', 'FwpmEngineOpen0', 'InternetCloseHandle', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA'], ['AbortPath', 'memset', 'GetTickCount64', 'TryEnterCriticalSection', 'OleInitialize', 'GetSystemMenu', 'GetUpdatedClipboardFormats', 'PrintWindow', 'ToAscii'], ['ShellExecuteW', 'CoInitializeEx', 'CoUninitialize', '?_Xlength_error@std@@YAXPBD@Z', '?_Xout_of_range@std@@YAXPBD@Z', '_cexit', '_exit', '_XcptFilter', 'exit', '_wcmdln', '_initterm', '_lock', '_configthreadlocale', '__setusermatherr', '__CxxFrameHandler3', '_fmode', '__set_app_type', '_crt_debugger_hook', '__wgetmainargs', '?terminate@@YAXXZ', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_except_handler4_common', '_invoke_watson', '_controlfp_s', '__dllonexit', '_unlock', 'memmove', '??2@YAPAXI@Z', '??0exception@std@@QAE@ABQBD@Z', '??1exception@std@@UAE@XZ', '?what@exception@std@@UBEPBDXZ', '??0exception@std@@QAE@ABV01@@Z', '??3@YAXPAX@Z', '_amsg_exit', '_onexit', 'memcpy', '_CxxThrowException', '_initterm_e', '_commode', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoW', 'HeapSetInformation', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'DecodePointer', 'EncodePointer', 'GetCurrentThreadId'], ['GetCurrentProcess', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetSystemDirectoryA', 'GetBinaryTypeW', 'SetConsoleTitleA', 'InterlockedDecrement', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'SetComputerNameA', 'LoadLibraryA', 'LocalAlloc', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'SetFileAttributesW', 'FindResourceW', 'FreeLibrary', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['CreateDirectoryExA', 'ReadConsoleInputA', 'GetTempPathW', 'GetSystemDirectoryW', 'RemoveDirectoryA', 'OutputDebugStringW', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'FindResourceA', 'LoadModule', 'InterlockedDecrement', 'RemoveVectoredExceptionHandler', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'CopyFileExW', 'EndUpdateResourceA', 'GetModuleHandleW', 'FindFirstVolumeA', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'EnumResourceLanguagesW', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructW', 'AddConsoleAliasA', 'GetConsoleAliasA', 'FindNextFileA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx', 'AccessCheckByType'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', '_CorExeMain'], ['RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'CloseHandle', 'CreateFileA', 'EnumResourceLanguagesA', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCurrentDirectoryA', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeW', 'GetUserDefaultLangID', 'GetUserDefaultUILanguage', 'GetVersion', 'GetVersionExA', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapFree', 'LoadLibraryA', 'MultiByteToWideChar', 'RaiseException', 'RtlUnwind', 'SetConsoleCtrlHandler', 'SetFilePointer', 'SetHandleCount', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'WideCharToMultiByte', 'WriteFile', 'CreateFontIndirectA', 'SelectObject', 'BeginPaint', 'CreateWindowExA', 'DefWindowProcA', 'DestroyMenu', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawMenuBar', 'DrawTextA', 'EndDialog', 'EndPaint', 'EnumThreadWindows', 'GetClientRect', 'GetDlgItem', 'GetMenu', 'GetMessageA', 'GetParent', 'InvalidateRect', 'LoadAcceleratorsA', 'LoadCursorA', 'LoadIconA', 'LoadMenuA', 'LoadStringA', 'MessageBoxA', 'PostQuitMessage', 'RegisterClassExA', 'SendMessageA', 'SetMenu', 'ShowWindow', 'TranslateAcceleratorA', 'TranslateMessage', 'UpdateWindow', 'wsprintfA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'AddAce', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter'], ['GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'LoadLibraryA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetStringTypeW', 'GetCommandLineW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'HeapSize', 'ExitProcess', 'InterlockedDecrement', 'GetCurrentThreadId', 'SetLastError', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'WideCharToMultiByte', 'LocalAlloc', 'LocalFree', 'CreateProcessW', 'GetVersion', 'CloseHandle', 'CreateEventW', 'GetProcAddress', 'GetLastError', 'GetModuleFileNameW', 'FormatMessageW', 'Sleep', 'LoadLibraryW', 'GetModuleHandleW', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'VirtualAlloc', 'EnterCriticalSection', 'HeapFree', 'ExitThread', 'ResumeThread', 'CreateThread', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleA', 'DialogBoxIndirectParamW', 'InflateRect', 'SetWindowTextW', 'CreateDesktopW', 'DestroyWindow', 'SetCursor', 'TranslateAcceleratorW', 'GetWindowRect', 'SetActiveWindow', 'GetMessageW', 'PostQuitMessage', 'TrackPopupMenu', 'RegisterWindowMessageW', 'PostMessageW', 'GetKeyState', 'SetForegroundWindow', 'DialogBoxParamW', 'LoadCursorW', 'CallNextHookEx', 'OpenDesktopW', 'FindWindowW', 'GetClientRect', 'SetFocus', 'GetDC', 'TranslateMessage', 'LoadAcceleratorsW', 'ChildWindowFromPoint', 'LoadIconW', 'OffsetRect', 'InvalidateRect', 'BringWindowToTop', 'SystemParametersInfoW', 'ReleaseDC', 'GetDlgItem', 'EndDialog', 'GetSysColor', 'SetWindowPos', 'GetCursorPos', 'CheckDlgButton', 'ShowWindow', 'CreatePopupMenu', 'GetSysColorBrush', 'IsDlgButtonChecked', 'SwitchDesktop', 'SetThreadDesktop', 'CreateWindowExW', 'InsertMenuW', 'SetWindowsHookExW', 'MessageBoxW', 'RegisterClassW', 'GetSystemMetrics', 'SendMessageW', 'UnregisterHotKey', 'DestroyMenu', 'RegisterHotKey', 'DefWindowProcW', 'MoveWindow', 'DispatchMessageW', 'GetWindowPlacement', 'StartPage', 'GetDeviceCaps', 'SetMapMode', 'StartDocW', 'EndDoc', 'BitBlt', 'SetTextColor', 'DeleteDC', 'CreateFontIndirectW', 'StretchBlt', 'SetBkMode', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetObjectW', 'SetStretchBltMode', 'GetStockObject', 'EndPage', 'PrintDlgW', 'RegCreateKeyW', 'RegSetValueExW', 'RegCloseKey', 'GetSecurityDescriptorSacl', 'RegOpenKeyExW', 'SetSecurityInfo', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegDeleteValueW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'Shell_NotifyIconW'], ['GetModuleHandleA', 'wsprintfA', 'getaddrinfo', 'GetTokenInformation', 'GetUserNameExA', 'CoUninitialize'], ['SendDlgItemMessageW', 'GetMenuState', 'GetDCEx', 'CheckMenuRadioItem', 'GetMessagePos', 'DrawThemeBackground', 'DrawThemeIcon', 'IsThemePartDefined', 'GetThemeIntList', 'GetBufferedPaintBits', 'GetBufferedPaintDC', 'DrawThemeParentBackground', 'GetThemeSysColorBrush', 'SetWindowTheme', 'GetThemePropertyOrigin', 'CoGetCallerTID', 'CLIPFORMAT_UserSize', 'StgOpenStorageEx', 'DcomChannelSetHResult', 'StgGetIFillLockBytesOnFile', 'MkParseDisplayName', 'CreateStdProgressIndicator', 'OleConvertIStorageToOLESTREAM', 'GetProcAddress', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetProcessHeap', 'LCMapStringW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'GetTickCount', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['FindNextVolumeW', 'LeaveCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'ExitProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'FillConsoleOutputCharacterA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'GetProcAddress', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringW', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'TerminateThread', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'TerminateProcess', 'GetACP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetFileAttributesW', 'MoveFileW', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['GetVersionExA', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GlobalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'GetLastError', 'HeapReAlloc', 'InterlockedDecrement', 'InterlockedIncrement', 'GetProcAddress', 'GetLocaleInfoA', 'LoadLibraryA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'GetFileAttributesA', 'GetVersion', 'DisableThreadLibraryCalls', 'MultiByteToWideChar', 'IsBadWritePtr', 'CompareStringW', 'lstrcmpA', 'MulDiv', 'GetProcessHeap', 'lstrcpynA', 'lstrcpyA', 'LeaveCriticalSection', 'DeleteCriticalSection', 'FreeLibrary', 'HeapFree', 'WideCharToMultiByte', 'lstrlenW', 'HeapAlloc', 'GetTickCount', 'EnterCriticalSection', 'lstrlenA', 'lstrcmpiA', 'lstrcatA', 'InitializeCriticalSection', 'IsDBCSLeadByte', 'GetNextDlgTabItem', 'IsWindowEnabled', 'IsDialogMessageA', 'WinHelpA', 'CreateDialogIndirectParamA', 'RegisterClipboardFormatA', 'SetCursorPos', 'MapWindowPoints', 'GetClipboardFormatNameA', 'SetWindowRgn', 'RegisterWindowMessageA', 'GetWindowLongA', 'CreateWindowExA', 'IntersectRect', 'ShowWindow', 'ShowScrollBar', 'MoveWindow', 'GetKeyState', 'DefWindowProcA', 'ReleaseCapture', 'PeekMessageA', 'EndDialog', 'GetWindow', 'GetWindowTextA', 'CharNextA', 'SendDlgItemMessageA', 'GetDlgItem', 'MessageBeep', 'MessageBoxA', 'wsprintfA', 'GetActiveWindow', 'DialogBoxParamA', 'GetCursorPos', 'UnregisterClassA', 'EqualRect', 'GetParent', 'CheckDlgButton', 'IsWindow', 'IsChild', 'UnhookWindowsHookEx', 'IsDlgButtonChecked', 'InvalidateRect', 'SetCursor', 'BeginPaint', 'EndPaint', 'DestroyWindow', 'GetClientRect', 'CallWindowProcA', 'LoadBitmapA', 'SetFocus', 'SetWindowTextA', 'GetWindowRect', 'PtInRect', 'SetParent', 'DispatchMessageA', 'SetWindowPos', 'TranslateMessage', 'SetWindowLongA', 'GetWindowTextLengthA', 'SetRect', 'EnableWindow', 'GetClassInfoA', 'IsWindowVisible', 'PeekMessageW', 'PostMessageW', 'GetScrollInfo', 'GetAsyncKeyState', 'PostMessageA', 'SetCapture', 'SendMessageA', 'SetScrollInfo', 'ScrollDC', 'SetRectEmpty', 'UpdateWindow', 'IsRectEmpty', 'WindowFromDC', 'DrawFrameControl', 'DrawEdge', 'InflateRect', 'DrawFocusRect', 'OffsetRect', 'GetFocus', 'FillRect', 'GetSysColor', 'LoadCursorA', 'RegisterClassA', 'GetCapture', 'GetDC', 'ReleaseDC', 'GetSystemMetrics', 'LoadStringA', 'SetWindowsHookExA', 'GetWindowThreadProcessId', 'ScreenToClient', 'ClientToScreen', 'CallNextHookEx', 'CreateOleAdviseHolder', 'ReleaseStgMedium', 'DoDragDrop', 'RegisterDragDrop', 'RevokeDragDrop', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleSaveToStream', 'OleLoadFromStream', 'CoCreateInstance', 'RegEnumKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayGetLBound', 'SafeArrayPutElement', 'VariantCopyInd', 'VariantCopy', 'SafeArrayGetUBound', 'SetErrorInfo', 'OleCreatePropertyFrame', 'CreateErrorInfo', 'LoadTypeLibEx', 'UnRegisterTypeLib', 'VariantChangeType', 'RegisterTypeLib', 'GetErrorInfo', 'LoadTypeLib', 'SafeArrayCreate', 'SafeArrayAccessData', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'OleLoadPicture', 'SafeArrayDestroy', 'OleTranslateColor', 'SysStringLen', 'OleCreatePictureIndirect', 'SysAllocStringLen', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysAllocString', 'OleCreateFontIndirect', 'SafeArrayRedim', 'CreateBitmap', 'CopyMetaFileA', 'CreateDCA', 'SetViewportExtEx', 'SetMapMode', 'CopyEnhMetaFileA', 'GetStockObject', 'CreateCompatibleBitmap', 'StretchBlt', 'GetNearestColor', 'CreatePalette', 'GetBitmapBits', 'CreateDIBitmap', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetPaletteEntries', 'GetTextMetricsA', 'DeleteObject', 'SetBkColor', 'SetTextColor', 'SelectObject', 'CreateSolidBrush', 'PatBlt', 'SetBkMode', 'ExtTextOutA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'IntersectClipRect', 'DeleteDC', 'BitBlt', 'CreateCompatibleDC', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'GetObjectA', 'LPtoDP', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgnIndirect'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'HeapFree', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetFileAttributesW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle'], ['SetLocaleInfoA', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'WriteConsoleA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'InitCommonControlsEx', 'GetOpenFileNameW', 'SetBkMode', 'ShellExecuteW', 'GetDC', 'send'], ['AllocateAndInitializeSid', 'FreeSid', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFileType', 'GetFinalPathNameByHandleW', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'NtQuerySystemInformation', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'CreateDirectoryExW', 'GetSystemDirectoryW', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventA', 'LeaveCriticalSection', 'LocalHandle', 'GetBinaryTypeW', 'CompareStringW', 'lstrlenW', 'ReplaceFileA', 'FreeLibraryAndExitThread', 'SetLastError', 'MapViewOfFile', 'AttachConsole', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'VirtualProtect', 'GetCPInfoExA', 'CloseHandle', 'BindIoCompletionCallback', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapFree', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'LoadLibraryA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'GetLocaleInfoA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'FlushFileBuffers', 'CreateFileA', 'ClientToScreen'], ['GetModuleHandleA', 'CreateWindowExA', 'RegQueryValueW', 'CreateStatusWindowA', 'SHGetIconOverlayIndexA', '_CorExeMain'], ['GetComputerNameW', 'GetEnvironmentStrings', 'GlobalAlloc', 'LoadLibraryW', 'GetLocaleInfoW', 'GetVersionExW', 'SetConsoleTitleA', 'GetTempPathW', 'LCMapStringA', 'EnumSystemLocalesA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'EnterCriticalSection', 'InterlockedIncrement', 'WriteConsoleA', 'MoveFileA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'GetConsoleTitleW', 'GetFileTime', 'SetCalendarInfoA', 'SetFileValidData', 'DebugBreak', 'LocalFree', 'WriteProcessMemory', 'GetLocaleInfoA', 'LoadLibraryExW', 'LoadLibraryA', 'GetVolumeNameForVolumeMountPointA', 'CreateFileA', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'CloseHandle', 'LeaveCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'WindowFromPoint', 'GetFontUnicodeRanges', 'WinHttpCloseHandle'], ['LoadLibraryA', 'CloseHandle', 'GetProcAddress', 'CreateFileMappingA', 'GetFileSize', 'FreeLibrary', 'MapViewOfFile', 'GetCommandLineA', 'Beep', 'HeapFree', 'VirtualAlloc', 'lstrcatA', 'ExitThread', 'Sleep', 'GetLastError', 'DeleteFileA', 'HeapAlloc', 'ExitProcess', 'GetProcessHeap', 'GetSystemTime', 'Process32First', 'VirtualFree', 'WriteFile', 'CreateMutexA', 'GetTimeFormatA', 'CreateToolhelp32Snapshot', 'GetTempPathA', 'GetDateFormatA', 'GlobalAlloc', 'Process32Next', 'GetTickCount', 'lstrcmpA', 'lstrcpyA', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'SetLastError', 'CreateFileA', 'GetCurrentThreadId', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'OutputDebugStringA', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'LoadLibraryExW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetModuleHandleW', 'GetModuleHandleExW', 'SetConsoleCtrlHandler', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'SetStdHandle', 'GetFileType', 'UnmapViewOfFile', 'VirtualProtect', 'GetCurrentThread', 'GetModuleFileNameA', 'GetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileExW', 'FindFirstFileExA', 'FindClose', 'GetModuleFileNameW', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'WriteConsoleW', 'MessageBoxA', 'GetKeyboardLayout', 'EnableMenuItem', 'DestroyMenu', 'ActivateKeyboardLayout', 'FindTextA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'InternetCanonicalizeUrlA', 'HttpAddRequestHeadersA', 'InternetQueryOptionA', 'HttpQueryInfoA', 'InternetSetOptionA', 'InternetOpenA', 'InternetCloseHandle', 'HttpSendRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpOpenRequestA'], ['GetModuleHandleW', 'KillTimer', 'RegOpenKeyExW', 'GetCharWidthA', 'CommandLineToArgvW'], ['SetComputerNameW', 'SetEvent', 'SetTapeParameters', 'GetModuleHandleW', 'GetNumberFormatA', 'ReadConsoleW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapCreate', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'ReadFileEx', 'InterlockedCompareExchange', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'IsSystemResumeAutomatic', 'BeginUpdateResourceA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'GetConsoleCursorInfo', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetTempPathA', 'EnumCalendarInfoExA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'LCMapStringW', 'GetLogicalDriveStringsW', 'WriteConsoleOutputW', 'GetDefaultCommConfigW', 'TlsGetValue', 'SetThreadContext', 'GetConsoleAliasesLengthW', 'GetTempFileNameA', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'WideCharToMultiByte', 'DdeQueryStringW', 'GetClassInfoExW', 'CreateAcceleratorTableA', 'ChangeMenuW', 'GetCharABCWidthsI', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsA', 'BackupEventLogA'], ['lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'lstrcpyW', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'IsDebuggerPresent', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetThreadPriority', 'GetThreadLocale', 'GetLocalTime', 'GetFullPathNameW', 'GetExitCodeThread', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FormatMessageW', 'FindResourceW', 'EnumCalendarInfoW', 'CreateFileW', 'CreateEventW', 'GetFileInformationByHandle', 'SetConsoleMode', 'SetConsoleDisplayMode', 'InitializeCriticalSectionAndSpinCount', 'GetThreadTimes', 'RemoveDirectoryW', 'GetCommMask', 'CallNamedPipeW', '_hwrite', 'GetThreadPriorityBoost', 'GetStartupInfoW', 'GetComputerNameExW', 'CreateDirectoryExA', 'FreeConsole', 'FindVolumeMountPointClose', 'GetSystemWindowsDirectoryW', 'FileTimeToDosDateTime', 'DnsHostnameToComputerNameA', 'GetCurrencyFormatA', 'GetSystemTimeAsFileTime', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetShortPathNameW', 'GetModuleHandleA', 'lstrcatW', 'DeleteFileW', 'CreateSemaphoreW', 'SetCursorPos', 'ShowScrollBar', 'FindWindowW', 'SetFocus', 'SetForegroundWindow', 'LoadStringW', 'MessageBoxW', 'ExitWindowsEx', 'EndMenu', 'GetThreadDesktop', 'GetClipboardOwner', 'IsCharLowerW', 'CloseClipboard', 'GetDesktopWindow', 'InSendMessage', 'GetDialogBaseUnits', 'CopyIcon', 'LoadCursorFromFileA', 'CloseWindow', 'IsCharAlphaA', 'GetKeyState', 'OemKeyScan', 'VkKeyScanA', 'GetInputState', 'CharLowerW', 'LoadIconA', 'GetWindowContextHelpId', 'LoadCursorW', 'IsWindow', 'LoadCursorFromFileW', 'VkKeyScanW', 'OpenIcon', 'DestroyMenu', 'CharNextA', 'WindowFromDC', 'PaintDesktop', 'DestroyIcon', 'IsCharUpperW', 'IsCharAlphaNumericW', 'GetShellWindow', 'GetWindowTextLengthA', 'ReleaseCapture', 'CharUpperA', 'CharLowerA', 'GetClipboardSequenceNumber', 'GetSysColor', 'GetWindowTextLengthW', 'GetMessageTime', 'ShowCaret', 'IsCharLowerA', 'GetClipboardViewer', 'DestroyWindow', 'GetKeyboardType', 'GetActiveWindow', 'DestroyCursor', 'GetWindowDC', 'IsCharAlphaW', 'GetAsyncKeyState', 'IsGUIThread', 'GetFocus', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'GdiEntry7', 'GdiResetDCEMF', 'XFORMOBJ_iGetXform', 'ExtCreatePen', 'SetDeviceGammaRamp', 'StartDocA', 'GetGlyphIndicesA', 'GetEUDCTimeStamp', 'SetTextAlign', 'PtInRegion', 'SetDCPenColor', 'EngUnicodeToMultiByteN', 'GdiCreateLocalMetaFilePict', 'GdiReleaseDC', 'GetMiterLimit', 'StrokeAndFillPath', 'CloseMetaFile', 'bInitSystemAndFontsDirectoriesW', 'GetCharWidth32A', 'GdiGetCharDimensions', 'FillRgn', 'GetNearestPaletteIndex', 'CreateFontA', 'TextOutA', 'STROBJ_bGetAdvanceWidths', 'GetBkMode', 'GdiEntry9', 'OffsetRgn', 'PATHOBJ_bEnum', 'TranslateCharsetInfo', 'EngCreateSemaphore', 'GetEnhMetaFilePixelFormat', 'GetGraphicsMode', 'CancelDC', 'WidenPath', 'CreatePatternBrush', 'GetBkColor', 'StrokePath', 'FillPath', 'PathToRegion', 'GetPixelFormat', 'GdiFlush', 'SwapBuffers', 'GetFontLanguageInfo', 'FlattenPath', 'GetTextCharset', 'DeleteColorSpace', 'GdiGetBatchLimit', 'GetObjectType', 'BeginPath', 'AddFontResourceW', 'GetDCBrushColor', 'GetROP2', 'EndPath', 'AddFontResourceA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'ReportEventW', 'RegisterEventSourceW', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryInfoKeyW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'DeregisterEventSource', 'StartServiceCtrlDispatcherW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerW', 'OpenServiceW', 'OpenSCManagerW', 'DeleteService', 'CreateServiceW', 'CloseServiceHandle', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'RegCreateKeyW', 'RegOpenKeyW', 'OpenProcessToken', 'RegQueryValueExA', 'RegOpenKeyA', 'ShellExecuteW', 'SHGetFolderPathW', 'Shell_NotifyIcon', 'DuplicateIcon', 'SHPathPrepareForWriteW', 'SHGetFileInfoW', 'SHGetDataFromIDListA', 'SHEmptyRecycleBinW', 'ExtractAssociatedIconA', 'SHCreateDirectoryExW', 'SHFreeNameMappings', 'SHGetFolderLocation', 'SHGetInstanceExplorer', 'ExtractAssociatedIconExA', 'ShellExecuteExA', 'ExtractIconW', 'SHQueryRecycleBinW', 'SHLoadInProc', 'SHGetIconOverlayIndexW', 'SHQueryRecycleBinA', 'ExtractIconExW', 'SHAddToRecentDocs', 'SHGetSpecialFolderPathA', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateInstance', 'IsEqualGUID', 'StrCmpNIA', 'StrRStrIA', 'StrCmpNIW', 'StrRChrIW', 'StrStrIW', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetModuleHandleA', 'ReleaseDC', 'RegQueryValueExW', 'FillRgn', 'sndPlaySoundW', 'GradientFill'], ['PathFileExistsW', 'PathFileExistsA', 'Sleep', 'SizeofResource', 'GetConsoleWindow', 'GetVersionExW', 'GetModuleFileNameW', 'CreateFileW', 'MultiByteToWideChar', 'GetLastError', 'GetProcAddress', 'GetSystemDirectoryW', 'CreateEventW', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'CreateThread', 'CreateProcessA', 'GetExitCodeProcess', 'WriteConsoleW', 'WriteFile', 'GetModuleHandleW', 'SetEvent', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'LoadResource', 'FindResourceW', 'GetNativeSystemInfo', 'GetCommandLineW', 'GetFileAttributesExW', 'SetEnvironmentVariableA', 'LockResource', 'GetModuleHandleExW', 'SetStdHandle', 'ReadConsoleW', 'LoadLibraryW', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WideCharToMultiByte', 'GetStringTypeW', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'SetEndOfFile', 'AreFileApisANSI', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetStdHandle', 'GetFileType', 'GetProcessHeap', 'ReadFile', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetFilePointer', 'HeapReAlloc', 'OutputDebugStringW', 'ExitWindowsEx', 'ShowWindow', 'RegisterServiceCtrlHandlerW', 'RevertToSelf', 'SetServiceStatus', 'ImpersonateLoggedOnUser', 'ChangeServiceConfig2W', 'LookupPrivilegeValueW', 'CreateProcessAsUserW', 'LogonUserW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'OpenProcessToken', 'CreateServiceW', 'AdjustTokenPrivileges', 'ShellExecuteW', 'ShellExecuteA'], ['CloseHandle', 'ConnectNamedPipe', 'CreateFileA', 'CreateNamedPipeA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'QueryPerformanceCounter', 'ReadFile', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WriteFile', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_iob', '_lock', '_onexit', '_unlock', '_winmajor', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'sprintf', 'strlen', 'strncmp', 'vfprintf'], ['RtlUnwind', 'RaiseException', 'HeapReAlloc', 'Sleep', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'VirtualAlloc', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCommandLineA', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'HeapFree', 'HeapAlloc', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'lstrlenA', 'CloseHandle', 'WritePrivateProfileStringW', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'InterlockedExchange', 'InterlockedDecrement', 'WideCharToMultiByte', 'GlobalAlloc', 'FormatMessageW', 'LocalFree', 'GetCurrentProcessId', 'GetModuleFileNameW', 'MulDiv', 'GetModuleHandleA', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'FreeLibrary', 'CompareStringW', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'lstrlenW', 'SizeofResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FindResourceW', 'LoadResource', 'LockResource', 'FreeResource', 'ExitProcess', 'MultiByteToWideChar', 'GetProcAddress', 'GetModuleHandleW', 'LoadLibraryW', 'GetLastError', 'GetTickCount', 'SetLastError', 'LoadCursorW', 'GetSysColorBrush', 'DestroyMenu', 'SetCursor', 'GetMessageW', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'ShowWindow', 'SetWindowTextW', 'IsDialogMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetCapture', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetFocus', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageW', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageW', 'MapWindowPoints', 'GetKeyState', 'SetMenu', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'PostMessageW', 'GetMenuItemID', 'GetMenuItemCount', 'EnableWindow', 'LoadBitmapW', 'SendMessageW', 'ReleaseDC', 'MessageBoxW', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'RegisterWindowMessageW', 'InvalidateRect', 'LoadIconW', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSysColor', 'FillRect', 'EndDialog', 'GetNextDlgTabItem', 'GetParent', 'IsWindowEnabled', 'GetDlgItem', 'GetWindowLongW', 'IsWindow', 'DestroyWindow', 'CreateDialogIndirectParamW', 'SetActiveWindow', 'GetActiveWindow', 'GetDesktopWindow', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'GetWindowRect', 'GetSubMenu', 'GetDC', 'CopyRect', 'SendDlgItemMessageW', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'PtVisible', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'CreateSolidBrush', 'CreateCompatibleDC', 'DeleteObject', 'MoveToEx', 'LineTo', 'SetMapMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'BitBlt', 'CreateCompatibleBitmap', 'RectVisible', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCloseKey', 'RegSetValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryValueExW', 'InitCommonControlsEx', 'PathFindExtensionW', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['CreateFileA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'LockFile', 'ReadFile', 'UnlockFile', 'WriteFile', 'CloseHandle', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetModuleFileNameA', 'SwitchToFiber', 'CreateFiber', 'ConvertThreadToFiber', 'GetTempPathA', 'CallNamedPipeA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwindEx', 'InterlockedFlushSList', 'SetLastError', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetCurrentProcess', 'TerminateProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringW', 'FindFirstFileExA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'CreateFileW', 'RaiseException'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CreateFileW', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableW', 'CopyIcon', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'lstrcpyW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'UpdateResourceW', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'RaiseException', 'IsDebuggerPresent', 'OpenMutexW', 'MultiByteToWideChar', 'MulDiv', 'MoveFileW', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoW', 'EnterCriticalSection', 'EndUpdateResourceW', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateFileW', 'CreateEventW', 'CompareStringW', 'CloseHandle', 'BeginUpdateResourceW', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ShellExecuteW', 'ExtractIconW', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW'], ['GetClipboardData', 'GetDlgItem', 'SendDlgItemMessageA', 'AppendMenuA', 'CreatePopupMenu', 'DestroyMenu', 'ClientToScreen', 'TrackPopupMenu', 'GetCursorPos', 'SendMessageA', 'GetDlgItemTextA', 'wsprintfA', 'MessageBoxA', 'LoadCursorA', 'GetActiveWindow', 'CheckDlgButton', 'SetWindowTextA', 'IsDlgButtonChecked', 'SetWindowLongA', 'CallWindowProcA', 'GetClassInfoA', 'CloseClipboard', 'CheckMenuRadioItem', 'EnumClipboardFormats', 'SetDlgItemTextA', 'EndDialog', 'RegisterClassA', 'DefDlgProcA', 'SetActiveWindow', 'SetMenuItemInfoA', 'CheckMenuItem', 'GetMenu', 'InsertMenuItemA', 'SetWindowPlacement', 'SetTimer', 'GetSystemMenu', 'MoveWindow', 'GetClientRect', 'PostQuitMessage', 'DestroyWindow', 'DestroyIcon', 'KillTimer', 'GetSysColor', 'GetEnvironmentStringsW', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'MultiByteToWideChar', 'LCMapStringA', 'RtlUnwind', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'HeapFree', 'VirtualFree', 'GetModuleHandleA', 'GetProcAddress', 'FreeConsole', 'GetCommandLineA', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'HeapCreate', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement'], ['VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'AddConsoleAliasW', 'GetSystemDefaultLCID', 'EnumCalendarInfoExW', 'TlsSetValue', 'LoadLibraryW', 'DeleteVolumeMountPointW', 'InterlockedPopEntrySList', 'SetConsoleMode', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'InterlockedIncrement', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'DeleteFileW', 'DeleteAtom', 'GetConsoleProcessList', 'DebugBreak', 'FindResourceExW', 'GetConsoleAliasExesLengthA', 'SearchPathA', 'CloseHandle', 'CreateFileA', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'CreateDirectoryA', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateLayeredWindow', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'AppendMenuA', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'WNetGetConnectionA', 'lstrcpyA', 'lstrcmpA', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'OpenProcess', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LocalFileTimeToFileTime', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemDirectoryA', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreatePipe', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'ReleaseStgMedium', 'OleDraw', 'OleSetMenuDescriptor', 'RevokeDragDrop', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'CLSIDFromString', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'GetOpenFileNameA', 'CertGetNameStringA', 'WTHelperProvDataFromStateData', 'WTHelperGetProvCertFromChain', 'WTHelperGetProvSignerFromChain', 'WinVerifyTrust', 'CryptCATAdminReleaseCatalogContext', 'CryptCATCatalogInfoFromContext', 'CryptCATAdminEnumCatalogFromHash', 'CryptCATAdminCalcHashFromFileHandle', 'CryptCATAdminReleaseContext', 'CryptCATAdminAcquireContext', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'SHGetMalloc', 'SHGetDesktopFolder', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetServByName', 'WSAAsyncGetHostByName', 'WSAAsyncSelect', 'getservbyname', 'gethostbyname', 'socket', 'setsockopt', 'send', 'select', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_addr', 'htons', 'getsockopt', 'connect', 'closesocket', 'bind', 'accept', 'SHGetInstanceExplorer', 'FindFirstChangeNotificationA', 'DoDragDrop', 'RegisterDragDrop', 'GdipDrawImageRect', 'GdipReleaseDC', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipDisposeImage', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromStream', 'GdiplusShutdown', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'LoadLibraryA', 'GetProcAddress', 'GetLastError', 'FreeLibrary', 'InitializeCriticalSection', 'GetModuleFileNameW', 'GetModuleHandleW', 'TerminateProcess', 'GetCurrentProcess', 'DeleteCriticalSection', 'LoadLibraryW', 'CreateEventW', 'CompareStringW', 'SetLastError', 'GetModuleHandleA', 'VirtualProtect', 'GetTickCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'VirtualAlloc', 'WriteProcessMemory', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'GetCurrentThreadId', 'Thread32First', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'GetSystemInfo', 'LoadResource', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FindResourceExW', 'FindResourceExA', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'HeapAlloc', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'GetSystemTime', 'GetLocalTime', 'SystemTimeToFileTime', 'CompareFileTime', 'GetCommandLineA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'LCMapStringA', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'RaiseException', 'Sleep', 'ExitProcess', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'HeapSize', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'VirtualQuery', 'MessageBoxW', 'CharUpperBuffW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'lstrlenA', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'SetFilePointer', 'VirtualAlloc', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['GetConsoleAliasesLengthW', 'VirtualQuery', 'FindResourceExW', 'InterlockedIncrement', 'InterlockedDecrement', 'GetComputerNameW', 'SetEvent', 'GetModuleHandleW', 'SetFileTime', 'GetLocaleInfoW', 'Sleep', 'GetCalendarInfoW', 'GetVersionExW', 'GetStringTypeExW', 'DnsHostnameToComputerNameW', 'GetMailslotInfo', 'SetConsoleTitleA', 'RaiseException', 'LCMapStringA', 'GetProcAddress', 'VirtualAlloc', 'PeekConsoleInputW', 'SetStdHandle', 'SetFileAttributesA', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'FoldStringA', 'GetSystemInfo', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'GetModuleHandleA', 'UpdateResourceW', 'GetConsoleTitleW', 'DeleteFileW', 'GetConsoleProcessList', 'SwitchToThread', 'HeapSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCommandLineA', 'GetStartupInfoA', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'RtlUnwind', 'MultiByteToWideChar', 'GetLastError', 'ReadFile', 'ExitProcess', 'WriteFile', 'HeapFree', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'WinHttpSetDefaultProxyConfiguration', 'TransparentBlt'], ['SetDllDirectoryA', 'GetSystemTimeAsFileTime', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'Sleep', 'GetModuleHandleA'], ['GetModuleFileNameW', 'Sleep', 'VerSetConditionMask', 'VerifyVersionInfoW', 'GetTempPathW', 'WaitForSingleObject', 'GetCurrentThread', 'DeleteFileW', 'WideCharToMultiByte', 'GetTempFileNameW', 'VirtualQuery', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'InterlockedFlushSList', 'RaiseException', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'CloseHandle', 'CreateThread', 'ExitThread', 'ResumeThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'WriteConsoleW', 'DecodePointer', 'GetSystemInfo', 'VirtualProtect', 'LoadLibraryExA'], ['lstrcatA', 'GetEnvironmentVariableA', 'GetLastError', 'SetLastError', 'GetProcAddress', 'SetFileAttributesA', 'LoadLibraryA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'DeleteFileW', 'DeleteFileA', 'GetComputerNameA', 'GetFileSize', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'MultiByteToWideChar', 'GetTempPathA', 'GetCurrentProcess', 'SetFileTime', 'CreateEventA', 'GetModuleFileNameW', 'CreateDirectoryA', 'GetTempFileNameA', 'OpenEventA', 'GetFileTime', 'GetVersionExA', 'CreateFileA', 'InitializeCriticalSection', 'CreateProcessA', 'EnterCriticalSection', 'DeleteCriticalSection', 'GetTickCount', 'WaitForSingleObject', 'GetLocalTime', 'CreateEventW', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'lstrlenW', 'lstrcatW', 'FileTimeToDosDateTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetModuleHandleW', 'VirtualProtectEx', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'GetProcessHeap', 'SetEndOfFile', 'GetLocaleInfoA', 'lstrlenA', 'GetVersionExW', 'Sleep', 'LoadLibraryW', 'FreeLibrary', 'ExitProcess', 'LeaveCriticalSection', 'HeapFree', 'HeapAlloc', 'ExitThread', 'ResumeThread', 'CreateThread', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'GetStdHandle', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapSize', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetTimeZoneInformation', 'RtlUnwind', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'VirtualQuery', 'wsprintfW', 'SendMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'wsprintfA', 'RegSetValueExA', 'RegQueryValueExA', 'RegSetValueExW', 'RegCloseKey', 'RegCreateKeyExA', 'RegCreateKeyExW'], ['GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileAttributesExW', 'GetFileSizeEx', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOEMCP', 'GetPrivateProfileSectionW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExA', 'GetWindowsDirectoryW', 'GlobalFree', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'GetConsoleOutputCP', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LocalReAlloc', 'LockResource', 'MultiByteToWideChar', 'OpenEventW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'RtlUnwind', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetFilePointerEx', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadUILanguage', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcmpiW', 'lstrcpynA', 'lstrcpynW', 'lstrlenA', 'lstrlenW', 'GetConsoleCP', 'GetConsoleMode', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetAtomNameW', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageW', 'FlushInstructionCache', 'FlushFileBuffers', 'FindResourceW', 'FindResourceExW', 'FindAtomW', 'ExitProcess', 'EnumSystemLocalesA', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'DeleteAtom', 'CreateToolhelp32Snapshot', 'CreateThread', 'CreateProcessW', 'CreateMutexW', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'LoadLibraryExW', 'AddAtomW', 'UnregisterClassA', 'TranslateMessage', 'SetWindowLongW', 'SetTimer', 'SendMessageTimeoutW', 'RegisterClassW', 'RegisterClassExW', 'PostThreadMessageW', 'PostMessageW', 'PeekMessageW', 'MessageBoxW', 'LoadStringW', 'GetKeyboardLayout', 'KillTimer', 'IsWindow', 'GetWindowLongW', 'GetMessageW', 'GetClassInfoExW', 'GetActiveWindow', 'VkKeyScanA', 'GetKeyboardType', 'IsWindowUnicode', 'IsCharLowerW', 'CallWindowProcW', 'CharNextW', 'CreateWindowExW', 'DefWindowProcW', 'DestroyWindow', 'DispatchMessageW', 'ExitWindowsEx', 'GetCaretBlinkTime', 'GetLastActivePopup', 'LoadCursorFromFileW', 'GetMenuContextHelpId', 'GetWindowContextHelpId', 'GetParent', 'DestroyMenu', 'LoadIconA', 'GetSysColorBrush', 'IsIconic', 'GetMessageExtraInfo', 'GetOpenClipboardWindow', 'AnyPopup', 'LoadCursorW', 'FindWindowW', 'InSendMessage', 'GetTextAlign', 'GetGraphicsMode', 'GetTextCharset', 'UpdateColors', 'EndDoc', 'GetBkColor', 'GetDCBrushColor', 'CreateSolidBrush', 'UnrealizeObject', 'CreateMetaFileW', 'CloseFigure', 'PathToRegion', 'GetStockObject', 'RegCloseKey', 'RegCreateKeyExW', 'RegOpenKeyExA', 'RegSetValueExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegNotifyChangeKeyValue', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'RegDeleteKeyW', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'ShellExecuteW', 'CoTaskMemRealloc', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'StrCpyNW', 'StrCmpNIW', 'StrCmpIW', 'SHGetValueW', 'StrStrIA', 'PathIsDirectoryW', 'PathFindFileNameW', 'PathFileExistsW', 'PathCombineW', 'PathAppendW', 'StrStrIW', 'UrlGetPartA', 'wvnsprintfW', 'PathRemoveFileSpecW', 'InitCommonControlsEx', 'ImmDisableIME'], ['CreateJobObjectW', 'HeapFree', 'SetHandleInformation', 'GetProfileStringW', 'GetTimeFormatA', 'LockFile', 'ConnectNamedPipe', 'FreeEnvironmentStringsA', 'SetTapeParameters', 'GetTickCount', 'CreateRemoteThread', 'GetCompressedFileSizeW', 'GetVolumePathNameW', 'GlobalAlloc', 'SetSystemTimeAdjustment', 'GetConsoleAliasExesLengthW', 'LeaveCriticalSection', 'GetFileAttributesA', 'IsDBCSLeadByte', 'GetModuleFileNameW', 'GetTimeZoneInformation', 'CreateJobObjectA', 'LCMapStringA', 'CreateDirectoryA', 'InitializeSListHead', 'GetCurrentDirectoryW', 'GetLongPathNameW', 'GetProcAddress', 'CreateJobSet', 'CreateMemoryResourceNotification', 'SetFileAttributesA', 'DisableThreadLibraryCalls', 'GetAtomNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'AddVectoredExceptionHandler', 'SetConsoleOutputCP', 'AddAtomW', 'HeapLock', 'GetCommMask', 'GetOEMCP', 'GetModuleHandleA', 'EnumSystemGeoID', 'CompareStringW', 'CompareStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'LCMapStringW', 'WriteConsoleOutputCharacterA', 'SetConsoleTextAttribute', 'SetLocalTime', 'GetConsoleAliasesLengthW', 'SetFilePointer', 'SetPriorityClass', 'GetEnvironmentVariableW', 'InterlockedExchange', 'LocalUnlock', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'RtlUnwind', 'DeleteCriticalSection', 'FatalAppExitA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'CloseHandle', 'CreateFileA', 'RaiseException', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'HeapSize', 'GetLocaleInfoW', 'GetLocaleInfoA', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'SetEndOfFile', 'GetProcessHeap', 'MultiByteToWideChar', 'ReadFile', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'SetEnvironmentVariableA', 'GetMonitorInfoA', 'GetDesktopWindow', 'SetProcessDefaultLayout', 'GetUserObjectInformationW', 'GetClassLongW', 'GetBoundsRect', 'RegCreateKeyA', 'GetPrivateObjectSecurity', 'DuplicateToken', 'EqualPrefixSid', 'PrivilegedServiceAuditAlarmA', 'OpenEventLogA'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetProcessTimes', 'GetVolumePathNameW', 'GetCalendarInfoA', 'GetFileAttributesA', 'WriteConsoleW', 'SetSystemPowerState', 'GetModuleFileNameW', 'CompareStringW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'GetPrivateProfileIntW', 'DeleteFiber', 'GetLastError', 'GetProcAddress', 'InterlockedIncrement', 'HeapSize', 'SetComputerNameA', 'EnterCriticalSection', 'SearchPathA', 'OpenWaitableTimerA', 'LoadLibraryA', 'Process32FirstW', 'GetProcessId', 'LocalAlloc', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'CancelTimerQueueTimer', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetFileShortNameA', 'FindAtomW', 'AreFileApisANSI', 'GetConsoleAliasExesLengthA', 'AttachConsole', 'GetVolumeNameForVolumeMountPointA', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsA', 'SelectObject'], ['FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'HeapQueryInformation', 'HeapSize', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'FlsAlloc', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'GetACP', 'IsValidCodePage', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'HeapAlloc', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapFree', 'RtlUnwindEx', 'RtlLookupFunctionEntry', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetModuleHandleW', 'GetOEMCP', 'GetCPInfo', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'MulDiv', 'lstrlenA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'VirtualAlloc', 'WinExec', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'SetHandleCount', 'FindResourceA', 'TranslateMessage', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'WindowFromPoint', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'GetClassLongPtrA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetLastActivePopup', 'DispatchMessageA', 'GetWindowLongPtrA', 'SetWindowLongPtrA', 'UnhookWindowsHookEx', 'GetMessageTime', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'SetMenu', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowPos', 'SystemParametersInfoA', 'EnableWindow', 'RedrawWindow', 'GetSysColor', 'InvalidateRect', 'GetWindowPlacement', 'GetWindow', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'IsIconic', 'GetSysColorBrush', 'DestroyMenu', 'GetForegroundWindow', 'GetMessageA', 'FillRect', 'GetClientRect', 'DestroyCursor', 'KillTimer', 'SendMessageA', 'SetWindowLongA', 'MessageBeep', 'SetTimer', 'GetMessagePos', 'PtInRect', 'ScreenToClient', 'SetCursor', 'IsWindow', 'InflateRect', 'GetWindowRect', 'GetDC', 'ReleaseDC', 'GetParent', 'CopyIcon', 'LoadCursorA', 'DrawIcon', 'GetSystemMetrics', 'GetSystemMenu', 'AppendMenuA', 'LoadIconA', 'GetCursorPos', 'ReleaseCapture', 'SetCapture', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FrameRect', 'CopyRect', 'LoadBitmapA', 'RegisterWindowMessageA', 'GetTopWindow', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'OffsetViewportOrgEx', 'SelectObject', 'SetViewportOrgEx', 'DeleteObject', 'GetStockObject', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'BitBlt', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'CreateCompatibleBitmap', 'SetPixel', 'GetPixel', 'StretchBlt', 'CreateCompatibleDC', 'GetTextExtentPoint32A', 'CreateSolidBrush', 'GetObjectA', 'CreateFontIndirectA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCloseKey', 'ShellExecuteA', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetModuleHandleA', 'DefWindowProcA', 'GetUserNameA', 'PropertySheet'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'InterlockedDecrement', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'SysAllocString', 'SysFreeString', 'VariantClear', 'GdipAlloc', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'ExitProcess', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'FreeLibrary', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetProcessHeap', 'CharNextA', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegEnumValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'OpenProcessToken', 'LookupAccountNameA', 'IsValidSid', 'GetUserNameA', 'lstrlenA', 'lstrcmpiA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualProtectEx', 'VirtualProtect', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetFilePointer', 'SetFileAttributesA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GlobalFree', 'GetVersionExA', 'GetTickCount', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetModuleHandleA', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetCurrentProcess', 'FreeResource', 'FreeLibrary', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'DeleteFileA', 'CreateRemoteThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateDirectoryA', 'CopyFileA', 'CloseHandle', 'wvsprintfA', 'TranslateMessage', 'ToAscii', 'SetWindowsHookExA', 'PeekMessageA', 'GetWindowThreadProcessId', 'GetKeyboardState', 'FindWindowA', 'DispatchMessageA', 'CharLowerA', 'CharUpperA', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'PStoreCreateInstance', 'StringFromCLSID', 'RasGetEntryDialParamsA', 'RasEnumEntriesA', 'SHGetSpecialFolderPathA', 'LsaFreeMemory', 'LsaClose', 'LsaRetrievePrivateData', 'LsaOpenPolicy', 'ConvertSidToStringSidA', 'CryptUnprotectData', 'CredEnumerateA', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptGetHashParam', 'CryptReleaseContext', 'CryptAcquireContextA'], ['SetFileAttributesA', 'GetTempFileNameA', 'LoadLibraryA', 'WaitForMultipleObjects', 'CopyFileA', 'GetStringTypeW', 'LCMapStringW', 'IsProcessorFeaturePresent', 'GetShortPathNameA', 'GetEnvironmentVariableA', 'CreateProcessA', 'GetFileAttributesA', 'Sleep', 'SetEvent', 'VirtualProtect', 'GetCurrentProcess', 'GetLastError', 'DuplicateHandle', 'CloseHandle', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetFileType', 'CreateFileA', 'CreateFileW', 'SetStdHandle', 'EnterCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoW', 'DeleteCriticalSection', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'InterlockedDecrement', 'GetProcAddress', 'HeapFree', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'SetEndOfFile', 'HeapAlloc', 'GetProcessHeap', 'MultiByteToWideChar', 'ReadFile', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'LoadLibraryW', 'GetModuleFileNameW', 'WriteConsoleW', 'HeapSize', 'OleInitialize', 'OleUninitialize', 'CryptUIDlgViewContext', 'CryptUIDlgSelectCertificateFromStore', 'CryptUIWizDigitalSign', 'CryptUIWizImport', 'CryptUIWizFreeDigitalSignContext', 'CryptUIDlgViewCertificateA', 'CryptUIWizExport'], ['FindNextVolumeA', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxW', 'GetConsoleAliasW', '_lwrite', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameW', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'GetStringTypeExA', 'EnumSystemLocalesA', 'CallNamedPipeW', 'FindActCtxSectionStringW', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetConsoleAliasExesLengthW', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'GetBinaryTypeW', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['GetCurrentProcess', 'Sleep', 'LoadLibraryA', 'OpenMutexA', 'DeviceIoControl', 'VirtualProtect', 'GetCurrentDirectoryA', 'GetTempPathA', 'CloseHandle', 'CreateFileW', 'SetStdHandle', 'SetEnvironmentVariableA', 'CompareStringW', 'GetTimeFormatA', 'GetDateFormatA', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapValidate', 'IsBadReadPtr', 'EncodePointer', 'GetModuleFileNameW', 'IsProcessorFeaturePresent', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedIncrement', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'RtlUnwind', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'RaiseException', 'FlushFileBuffers', 'WTSOpenServerA', 'WTSCloseServer', 'WTSQueryUserToken', 'WTSLogoffSession'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['malloc', 'memset', 'strcmp', 'strcpy', 'getenv', 'sprintf', 'fopen', 'fwrite', 'fclose', '__argc', '__argv', '_environ', '_XcptFilter', '__set_app_type', '_controlfp', '__getmainargs', 'exit', 'ShellExecuteA', 'SetUnhandledExceptionFilter'], ['SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetConsoleAliasesW', 'GetStdHandle', 'AllocConsole', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'MoveFileA', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'GetLastError', 'SetFilePointer', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CreateFileA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'BeginPath', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['EnterCriticalSection', 'RegCloseKey', 'SHGetFolderPathW', 'WinHttpSetOption', 'CryptUnprotectData', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'CreatePrivateObjectSecurity', 'CreateFontW', 'CreateIcon', 'VariantChangeTypeEx', 'RaiseException'], ['GetLocalTime', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'OutputDebugStringA', 'UnmapViewOfFile', 'GetModuleHandleA', 'VirtualFree', 'VirtualAlloc', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'GlobalSize', 'GetStartupInfoA', 'Process32First', 'WaitForMultipleObjects', 'LocalSize', 'TerminateProcess', 'OpenProcess', 'GetCurrentThreadId', 'GetComputerNameA', 'GetCurrentProcess', 'OpenEventA', 'SetErrorMode', 'GetVersionExA', 'GetWindowsDirectoryA', 'CopyFileA', 'SetFileAttributesA', 'ExpandEnvironmentStringsA', 'CreateFileA', 'WriteFile', 'lstrcmpiA', 'GetTickCount', 'InterlockedExchange', 'TerminateThread', 'CreateThread', 'CreateProcessA', 'lstrcatA', 'MoveFileA', 'SetFilePointer', 'ReadFile', 'GetFileSize', 'LocalAlloc', 'FindFirstFileA', 'LocalReAlloc', 'FindNextFileA', 'LocalFree', 'FindClose', 'GetLogicalDriveStringsA', 'GetVolumeInformationA', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'FreeLibrary', 'lstrlenA', 'GetFileAttributesA', 'CreateDirectoryA', 'GetLastError', 'DeleteFileA', 'Sleep', 'CancelIo', 'SetEvent', 'lstrcpyA', 'ResetEvent', 'WaitForSingleObject', 'CloseHandle', 'CreateEventA', 'GetProcAddress', 'EnterCriticalSection', 'DeleteCriticalSection', 'Process32Next', 'CreateToolhelp32Snapshot', 'LoadLibraryA', 'PeekNamedPipe', 'SHGetSpecialFolderPathA', 'RegSaveKeyA', 'ClearEventLogA', 'RegRestoreKeyA', 'StartServiceA', 'CreateServiceA', 'LockServiceDatabase', 'ChangeServiceConfig2A', 'UnlockServiceDatabase', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'DuplicateTokenEx', 'SetTokenInformation', 'AdjustTokenPrivileges', 'CreateProcessAsUserA', 'RegQueryValueExA', 'InitializeSecurityDescriptor', 'AllocateAndInitializeSid', 'GetLengthSid', 'InitializeAcl', 'AddAccessAllowedAce', 'SetSecurityDescriptorDacl', 'FreeSid', 'OpenSCManagerA', 'OpenServiceA', 'DeleteService', 'CloseServiceHandle', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'OpenEventLogA', 'CloseEventLog', 'AlphaBlend', 'CreateDCA', 'LoadMenuA', 'wsprintfA', 'GetWindowTextA', 'CreateWindowExA', 'GetMessageA', 'DispatchMessageA', 'TranslateMessage', 'PostMessageA', 'OpenDesktopA', 'GetThreadDesktop', 'GetUserObjectInformationA', 'OpenInputDesktop', 'SetThreadDesktop', 'CloseDesktop', 'IsWindowVisible', 'GetWindowThreadProcessId', 'ExitWindowsEx', 'GetDC', 'ReleaseDC', 'GetCursorPos', 'SetRect', 'GetSystemMetrics', 'GetClipboardData', 'OpenClipboard', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'mouse_event', 'SetCursorPos', 'WindowFromPoint', 'FindWindowA', 'GetActiveWindow', 'CallNextHookEx', 'UnhookWindowsHookEx', 'LoadCursorA', 'SendMessageA', 'keybd_event', 'MapVirtualKeyA', 'SetCapture', 'CharNextA', 'ImmReleaseContext', 'ImmGetCompositionStringA', 'ImmGetContext', 'InternetReadFile', '_adjust_fdiv', '_initterm', 'calloc', 'srand', '_access', 'wcstombs', 'atoi', '_beginthreadex', 'strncpy', 'puts', 'strrchr', 'sprintf', '_except_handler3', 'malloc', 'free', '??2@YAPAXI@Z', '__CxxFrameHandler', '_strrev', 'putchar', '_ftol', 'ceil', 'memmove', '??3@YAXPAX@Z', 'rand', 'strstr', 'recv', 'ntohs', 'socket', 'getsockname', 'htons', 'connect', 'WSAIoctl', 'WSACleanup', 'WSAStartup', 'send', 'setsockopt', 'select', 'gethostbyname', 'closesocket', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?_Xran@std@@YAXXZ', '?_Split@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXXZ', '?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_Refcnt@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEAAEPBD@Z', '?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAE_NI_N@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', 'WTSQueryUserToken', 'CreateEnvironmentBlock'], ['GetModuleHandleA', 'ShowWindow', 'RegisterEventSourceA', '_configthreadlocale', '_register_onexit_function', 'SHChangeNotifyRegister', '_time64', '__stdio_common_vfprintf', 'free', '__setusermatherr', 'DSA_Create', '__current_exception_context', 'accept', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', 'srand', '_lock_file'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'GetACP', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'MoveFileA', 'GetVolumeInformationA', 'GetStringTypeExA', 'GetThreadLocale', 'GetShortPathNameA', 'GetFileSize', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'InterlockedExchange', 'RtlUnwind', 'SetEnvironmentVariableA', 'SetCurrentDirectoryA', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'CreateDirectoryA', 'GetDriveTypeA', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'RaiseException', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'TerminateProcess', 'CreateThread', 'ExitThread', 'HeapSize', 'FlushFileBuffers', 'LCMapStringA', 'LCMapStringW', 'CompareStringA', 'CompareStringW', 'VirtualFree', 'IsBadWritePtr', 'GetEnvironmentVariableA', 'HeapDestroy', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetStringTypeA', 'GetStringTypeW', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetProfileStringA', 'GetCurrentProcess', 'DuplicateHandle', 'GetCurrentDirectoryA', 'SizeofResource', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'GlobalFlags', 'MulDiv', 'GlobalSize', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'SetLastError', 'GetDiskFreeSpaceA', 'GetFileTime', 'SetFileTime', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileAttributesA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'GetModuleFileNameA', 'GlobalAlloc', 'lstrcmpA', 'GetCurrentThread', 'GlobalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'GetCurrentThreadId', 'lstrcmpiA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GetModuleHandleA', 'lstrcatA', 'lstrcpyA', 'lstrcpynA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GetVersion', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenW', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'lstrlenA', 'InterlockedDecrement', 'InterlockedIncrement', 'CreateMutexA', 'GetLastError', 'ReleaseMutex', 'CloseHandle', 'CreateProcessA', 'Sleep', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcAddress', 'GetTickCount', 'CopyFileA', 'FindFirstFileA', 'DeleteFileA', 'FindNextFileA', 'FindClose', 'RemoveDirectoryA', 'SetFileAttributesA', 'GetVersionExA', 'GetACP', 'SetUnhandledExceptionFilter', 'FreeLibrary', 'LoadLibraryA', 'FatalAppExitA', 'LoadIconA', 'LoadIconW', 'GetStockObject', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'SelectPalette', 'SetColorAdjustment', 'PolyBezierTo', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontIndirectA', 'SelectObject', 'RestoreDC', 'SaveDC', 'StartDocA', 'DeleteDC', 'DeleteObject', 'GetDeviceCaps', 'CreateDCA', 'CopyMetaFileA', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'PolylineTo', 'CreateDIBitmap', 'PatBlt', 'GetTextExtentPointA', 'BitBlt', 'CreateCompatibleDC', 'GetDCOrgEx', 'GetUserNameA', 'RegOpenKeyA', 'RegQueryValueExA', 'ExtractIconA', 'DragAcceptFiles', 'DragQueryFileA', 'DragFinish', 'SHGetSpecialFolderPathA', 'SHGetFileInfoA', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['ZombifyActCtx', 'GetEnvironmentStringsW', 'GetConsoleAliasesA', 'GetEnvironmentStrings', 'GetPrivateProfileIntA', 'WideCharToMultiByte', 'LoadLibraryW', 'SetVolumeMountPointA', 'LeaveCriticalSection', 'HeapValidate', 'WriteConsoleW', 'GetAtomNameW', 'ReplaceFileA', 'SetLastError', 'GetProcAddress', 'AttachConsole', 'SetFilePointer', 'BeginUpdateResourceW', 'SetStdHandle', 'LoadLibraryA', 'LocalAlloc', 'AddVectoredExceptionHandler', 'WriteProfileSectionW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetConsoleTitleW', 'SetCalendarInfoA', 'LocalFree', 'FindFirstChangeNotificationW', 'VirtualAlloc', 'EnumResourceNamesW', 'CreateFileA', 'GetConsoleOutputCP', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'CloseHandle', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'WriteConsoleA', 'ClientToScreen', 'BackupEventLogA', 'WinHttpSetTimeouts'], ['QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwindEx', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetCurrentProcess', 'ExitProcess', 'TerminateProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'CloseHandle', 'WriteConsoleW'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxW', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'OpenWaitableTimerA', 'GetVolumePathNameA', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeW', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'GetLastError', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'DebugBreak', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'lstrcatW', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'RtlUnwind', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'GetTickCount', 'GetFileTime', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringW', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GetModuleHandleA', 'InterlockedDecrement', 'lstrlenW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomW', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetEnvironmentStrings', 'ExitProcess', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'MessageBeep', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'CharNextW', 'CharUpperW', 'SetPropW', 'GetSysColorBrush', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageW', 'PostQuitMessage', 'InvalidateRect', 'LoadBitmapW', 'GetParent', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSystemMenu', 'AppendMenuW', 'SendMessageW', 'LoadIconW', 'EnableWindow', 'UnregisterClassA', 'ScaleWindowExtEx', 'GetWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'SetWindowExtEx', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'GetViewportExtEx', 'DeleteObject', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'BitBlt', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetObjectW', 'GetPixel', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SetPixelV', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'UnmapViewOfFile', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LocalFree', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeA', 'GetStdHandle', 'GetShortPathNameA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterClipboardFormatA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyCursor', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SetSecurityInfo', 'SetEntriesInAclA', 'GetSecurityInfo'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'SHGetFolderPathA'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'TerminateProcess', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'EnterCriticalSection', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'InterlockedExchange', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenA', 'LoadLibraryW', 'MoveFileA', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'CopyFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'FindActCtxSectionStringW', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetStringTypeA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'GetOEMCP', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ReadFile', 'ImpersonateSelf'], ['WriteProfileSectionA', 'GetNumaHighestNodeNumber', 'FindFirstVolumeA', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationA', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'FileTimeToDosDateTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'GetTimeZoneInformation', 'TerminateThread', 'WaitForMultipleObjectsEx', 'GetVersionExW', 'VerifyVersionInfoW', 'GetConsoleOutputCP', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasesLengthA', 'GetCompressedFileSizeW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameW', '_hread', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindVolumeClose', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetWaitableTimer', 'SetComputerNameExA', 'FindAtomA', 'ReleaseSemaphore', 'LocalUnlock', 'CallNamedPipeW', 'VirtualProtect', 'GlobalAlloc', 'VerifyVersionInfoA', 'TlsGetValue', 'GetProfileSectionW', 'GetCommandLineA', 'InterlockedDecrement', 'CopyFileA', 'AddRefActCtx', 'OutputDebugStringW', 'FormatMessageA', 'SetPriorityClass', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalFix', 'GetVersionExA', 'HeapValidate', 'GetWindowsDirectoryW', 'GetStartupInfoW', 'ConnectNamedPipe', 'GetLastError', 'GetCalendarInfoA', 'DebugBreak', 'GetComputerNameExW', 'SetLastError', 'CopyFileW', 'GetCPInfoExW', 'GetSystemWindowsDirectoryA', 'GetSystemWow64DirectoryW', 'ContinueDebugEvent', 'InterlockedIncrement', 'GetOEMCP', 'GetConsoleAliasA', 'lstrlenA', 'LoadLibraryW', 'ReadConsoleA', 'WriteConsoleA', 'GetPrivateProfileSectionNamesA', 'FileTimeToSystemTime', 'GlobalWire', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoExW', 'SetThreadIdealProcessor', 'EnumDateFormatsExW', 'VerSetConditionMask', 'CreateConsoleScreenBuffer', 'GetConsoleAliasW', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'LocalFileTimeToFileTime', 'CheckRemoteDebuggerPresent', 'GetSystemTimeAdjustment', '_lwrite', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileW', 'GetWriteWatch', 'GetModuleHandleW', 'GetPrivateProfileStringA', 'GetProfileStringW', 'CreateActCtxW', 'GetUserDefaultLangID', 'IsProcessInJob', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingW', 'GetProcessHandleCount', 'SetUnhandledExceptionFilter', 'SetProcessShutdownParameters', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'InitAtomTable', 'CreateFileA', 'InitializeCriticalSection', 'AddAtomW', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'SetConsoleTextAttribute', 'LoadLibraryA', 'UnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'GetModuleHandleA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'GetBitmapBits'], ['MultiByteToWideChar', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetUnhandledExceptionFilter', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LoadLibraryA', 'InitializeCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'RegisterTypeLib', 'UnRegisterTypeLib', 'LoadTypeLib', 'OleUninitialize', 'OleInitialize'], ['CreateMutexA', 'OpenMutexA', 'GetModuleHandleA', 'Process32NextW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetLocaleInfoA', 'OpenProcess', 'GetCurrentProcessId', 'lstrcatW', 'GetTempFileNameW', 'GetTempPathW', 'GetTickCount', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'CopyFileW', 'ResumeThread', 'SetThreadContext', 'WriteProcessMemory', 'VirtualAllocEx', 'ReadProcessMemory', 'GetThreadContext', 'VirtualAlloc', 'CreateProcessW', 'GlobalFree', 'LocalAlloc', 'DuplicateHandle', 'GetCurrentThread', 'GetLongPathNameW', 'lstrcpynA', 'GetModuleFileNameA', 'ExitProcess', 'AllocConsole', 'GetStartupInfoA', 'ExpandEnvironmentStringsA', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'GetLastError', 'LoadLibraryA', 'GetProcAddress', 'CreateFileMappingA', 'MapViewOfFileEx', 'RemoveDirectoryW', 'SetFileAttributesW', 'TerminateThread', 'FindClose', 'GetLogicalDriveStringsA', 'GetFileAttributesW', 'DeleteFileW', 'GetFileSize', 'SetFilePointer', 'GetDriveTypeA', 'lstrlenA', 'FindFirstFileW', 'FindNextFileW', 'CreatePipe', 'CreateProcessA', 'PeekNamedPipe', 'ReadFile', 'TerminateProcess', 'SetEvent', 'HeapCreate', 'HeapFree', 'ExitThread', 'GetLocalTime', 'CreateEventA', 'WaitForSingleObject', 'CreateThread', 'GetModuleFileNameW', 'Sleep', 'CreateDirectoryW', 'CreateFileW', 'WriteFile', 'CloseHandle', 'GetCurrentProcess', 'AppendMenuA', 'RegisterClassExA', 'CreateWindowExA', 'SystemParametersInfoW', 'SendInput', 'mouse_event', 'GetIconInfo', 'DrawIcon', 'EnumWindows', 'GetWindowTextW', 'IsWindowVisible', 'CloseWindow', 'GetWindowThreadProcessId', 'GetKeyboardLayoutNameA', 'MessageBoxW', 'ExitWindowsEx', 'EmptyClipboard', 'CreatePopupMenu', 'ShowWindow', 'SetWindowTextW', 'SetForegroundWindow', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'UnhookWindowsHookEx', 'GetForegroundWindow', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetKeyState', 'CallNextHookEx', 'SetWindowsHookExA', 'GetKeyboardLayout', 'GetMessageA', 'TranslateMessage', 'TrackPopupMenu', 'GetCursorPos', 'SetClipboardData', 'DefWindowProcA', 'DispatchMessageA', 'CreateDCA', 'CreateCompatibleDC', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'DeleteDC', 'DeleteObject', 'SelectObject', 'GetDIBits', 'GetObjectA', 'StretchBlt', 'RegDeleteKeyA', 'RegEnumKeyExA', 'GetUserNameW', 'ChangeServiceConfigW', 'QueryServiceStatus', 'ControlService', 'OpenSCManagerW', 'StartServiceW', 'OpenSCManagerA', 'EnumServicesStatusW', 'OpenServiceW', 'RegOpenKeyExA', 'RegCloseKey', 'RegQueryValueExA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegSetValueExA', 'RegCreateKeyA', 'RegSetValueExW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegEnumKeyExW', 'RegQueryInfoKeyW', 'RegCreateKeyExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CloseServiceHandle', 'QueryServiceConfigW', 'ExtractIconA', 'Shell_NotifyIconA', 'ShellExecuteExA', 'ShellExecuteW', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_iob', 'freopen', 'wcscat', '_itow', 'srand', 'rand', '_wsystem', 'wcscpy', 'wcslen', '_wgetenv', 'toupper', 'sprintf', 'tolower', 'wcscmp', '_wrename', 'exit', 'getenv', 'printf', 'strncmp', 'malloc', 'free', '_EH_prolog', '__CxxFrameHandler', '??3@YAXPAX@Z', '_CxxThrowException', '??0exception@@QAE@ABV0@@Z', 'time', 'localtime', 'strftime', 'atoi', '_ftol', '??2@YAPAXI@Z', 'swprintf', '_itoa', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@IDABV?$allocator@D@1@@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDI@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@PBG@Z', '??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@PBG@Z', '??8std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBG@Z', '?size@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIXZ', '??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '??8std@@YA_NPBGABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@@Z', '?replace@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@IIPBG@Z', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIPBGI@Z', '?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@ABV12@@Z', '??8std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@0@Z', '?find_last_of@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIPBGI@Z', '?find_last_of@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '?is_open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QBE_NXZ', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@D@Z', '?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@IGABV?$allocator@G@1@@Z', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIABV12@I@Z', '?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXID@Z', '?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@PBGIABV?$allocator@G@1@@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@0@Z', '?empty@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBE_NXZ', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIABV12@I@Z', '?length@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIXZ', '?substr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBE?AV12@II@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDII@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@G@Z', '?npos@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@2IB', '?rfind@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '?resize@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEXI@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBDABV10@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@D@Z', '?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??9std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBG@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@IIABV?$allocator@D@1@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@PBD@Z', '??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAADI@Z', '?empty@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE_NXZ', '??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '?length@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '?data@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@PBGABV?$allocator@G@1@@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBGABV10@@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV01@@Z', '?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV12@II@Z', '??0out_of_range@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z', '??1out_of_range@std@@UAE@XZ', '??0out_of_range@std@@QAE@ABV01@@Z', '??0logic_error@std@@QAE@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDABV?$allocator@D@1@@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@G@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@0@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@PBG@Z', '??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z', '?c_str@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDIABV?$allocator@D@1@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXI@Z', '?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV?$allocator@D@1@@Z', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV?$allocator@G@1@@Z', 'PathFileExistsW', 'PathFileExistsA', 'StrToIntA', 'PlaySoundW', 'mciSendStringA', 'waveInStop', 'waveInOpen', 'waveInClose', 'waveInUnprepareHeader', 'waveInPrepareHeader', 'mciSendStringW', 'waveInAddBuffer', 'waveInStart', 'htons', 'gethostbyname', 'closesocket', 'inet_ntoa', 'socket', 'connect', 'recv', 'send', 'WSAStartup', 'URLDownloadToFileW', 'URLOpenBlockingStreamW', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipAlloc', 'GdipSaveImageToStream', 'GdipSaveImageToFile', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipFree', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'CreateDirectoryA', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LocalFileTimeToFileTime', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadReadPtr', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesW', 'GetFileAttributesA', 'GetDriveTypeW', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileW', 'CreateFileA', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'SysAllocString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'GetOpenFileNameW'], ['memset', 'system', 'memcpy', '_wfopen', 'fseek', 'fclose', 'wcsncpy', 'wcslen', 'wcscpy', 'wcscat', 'wcscmp', 'memmove', 'memcmp', '_stricmp', 'sscanf', 'atoi', 'strlen', 'strcpy', 'strcat', 'sprintf', 'malloc', 'free', '_wstat', '_wcsdup', 'strcmp', 'floor', 'ceil', '_CIpow', '_isnan', '_finite', 'fread', 'longjmp', '_setjmp3', 'ftell', 'wcsncmp', '_snwprintf', '_wcsicmp', 'tolower', 'localtime', 'mktime', '_wcsnicmp', '_itow', 'gmtime', 'fabs', 'pow', '??3@YAXPAX@Z', 'wcsstr', 'calloc', '_errno', 'strrchr', 'strchr', 'strncpy', 'memchr', '_lseeki64', 'realloc', 'abort', '_close', '_wopen', '_setmode', 'exit', '_open_osfhandle', '_strdup', '_snprintf', 'setlocale', 'strncmp', 'wctomb', '_get_osfhandle', '_open', 'toupper', 'wcschr', 'mbstowcs', 'frexp', 'modf', 'fopen', 'strerror', 'atof', 'abs', 'fflush', 'fwrite', '__p__iob', 'fprintf', 'getenv', '_stati64', 'time', '_ftime', '_vsnwprintf', 'cos', 'fmod', 'sin', 'GetModuleHandleW', 'HeapCreate', 'HeapDestroy', 'ExitProcess', 'GetDiskFreeSpaceExW', 'GetCurrentProcess', 'GetLastError', 'GetUserDefaultLangID', 'GetSystemInfo', 'ExpandEnvironmentStringsW', 'FormatMessageW', 'LocalFree', 'OutputDebugStringW', 'LoadLibraryW', 'FindResourceW', 'FreeLibrary', 'LoadResource', 'SizeofResource', 'LockResource', 'CreateMutexW', 'CloseHandle', 'BeginUpdateResourceW', 'EndUpdateResourceW', 'GetBinaryTypeW', 'UpdateResourceW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'CreateThread', 'HeapAlloc', 'HeapFree', 'Sleep', 'CreateFileW', 'GetFileSize', 'ReadFile', 'GetProcAddress', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'DuplicateHandle', 'CreatePipe', 'GetStdHandle', 'CreateProcessW', 'GetModuleFileNameW', 'GetProfileStringW', 'SetFilePointer', 'WideCharToMultiByte', 'MultiByteToWideChar', 'SetEndOfFile', 'WriteFile', 'DeleteFileW', 'HeapReAlloc', 'GetVersionExW', 'SetLastError', 'CopyFileW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'SetFileAttributesW', 'RemoveDirectoryW', 'GetDriveTypeW', 'GetFileAttributesW', 'GetTempPathW', 'MulDiv', 'GetLocalTime', 'TlsAlloc', 'TlsSetValue', 'TlsGetValue', 'GlobalFree', 'GlobalAlloc', 'HeapSize', 'TlsFree', 'DeleteCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'VirtualAlloc', 'VirtualFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetFileType', 'PeekNamedPipe', 'GetFileInformationByHandle', 'GetFileAttributesA', 'CreateFileA', 'GetExitCodeProcess', 'GetFullPathNameW', 'UnregisterWait', 'GetCurrentThread', 'RegisterWaitForSingleObject', 'GdipDeleteFont', 'GdipDeleteGraphics', 'GdipDeletePath', 'GdipDeleteMatrix', 'GdipDeletePen', 'GdipDeleteStringFormat', 'GdipFree', 'GdipGetDpiX', 'GdipGetDpiY', 'IsWindowEnabled', 'IsWindowVisible', 'ExitWindowsEx', 'GetActiveWindow', 'SendMessageW', 'GetWindowTextLengthW', 'GetSysColor', 'SetRect', 'GetWindowLongW', 'RedrawWindow', 'GetDlgCtrlID', 'GetWindowTextW', 'ShowWindow', 'SetForegroundWindow', 'SetWindowLongW', 'UpdateLayeredWindow', 'DestroyIcon', 'EnumWindows', 'MessageBoxW', 'PostMessageW', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'EnableWindow', 'SetWindowPos', 'DestroyWindow', 'SystemParametersInfoW', 'SetFocus', 'GetFocus', 'GetParent', 'GetClassNameW', 'SetWindowTextW', 'CallWindowProcW', 'RemovePropW', 'GetWindowRect', 'GetPropW', 'CreateWindowExW', 'SetPropW', 'SetScrollPos', 'GetDC', 'InflateRect', 'ReleaseDC', 'GetWindowDC', 'MapWindowPoints', 'MoveWindow', 'InvalidateRect', 'GetIconInfo', 'UpdateWindow', 'ReleaseCapture', 'BeginPaint', 'DrawStateW', 'EndPaint', 'SetCapture', 'ScreenToClient', 'GetSystemMetrics', 'GetSysColorBrush', 'DrawTextW', 'GetWindow', 'ValidateRect', 'ClientToScreen', 'GetClientRect', 'FillRect', 'DefWindowProcW', 'LoadCursorW', 'RegisterClassExW', 'SetClassLongW', 'EnumPropsExW', 'SetActiveWindow', 'LoadIconW', 'IsZoomed', 'IsIconic', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'GetMessageW', 'TranslateAcceleratorW', 'TranslateMessage', 'DispatchMessageW', 'RegisterClassW', 'AdjustWindowRectEx', 'CreateAcceleratorTableW', 'UnregisterClassW', 'DestroyAcceleratorTable', 'GetMenu', 'SetTimer', 'KillTimer', 'DefFrameProcW', 'EnumChildWindows', 'GetKeyState', 'IsChild', 'RegisterWindowMessageW', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'CharLowerW', 'DrawIconEx', 'StartDocW', 'GetMapMode', 'SetMapMode', 'GetDeviceCaps', 'DPtoLP', 'StartPage', 'EndPage', 'EndDoc', 'SetBkColor', 'CreateDCW', 'DeleteObject', 'GetStockObject', 'CreateFontIndirectW', 'ExcludeClipRect', 'GetObjectType', 'GetObjectW', 'SetTextColor', 'SelectObject', 'GetTextExtentPoint32W', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'SetStretchBltMode', 'StretchBlt', 'CreateSolidBrush', 'GdiGetBatchLimit', 'GdiSetBatchLimit', 'BitBlt', 'CreateDIBSection', 'SetBrushOrgEx', 'CreateBitmap', 'SetPixel', 'GetDIBits', 'CreateFontW', 'SetBkMode', 'SetTextAlign', 'TextOutW', 'GetTextMetricsW', 'GetPixel', 'PrintDlgW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'RegCreateKeyExW', 'RegCloseKey', 'RegSetValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegQueryValueExW', 'RegDeleteValueW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'GetUserNameW', 'CryptAcquireContextW', 'CryptGenRandom', 'CryptReleaseContext', 'InitCommonControlsEx', 'ImageList_Replace', 'ImageList_Add', 'ImageList_ReplaceIcon', 'ImageList_Remove', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoCreateGuid', 'StringFromGUID2', 'RevokeDragDrop', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHCreateDirectory', 'SHBrowseForFolderW', 'ExtractIconW', 'SHGetFileInfoW', 'ShellExecuteExW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW'], ['GetConsoleAliasesA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'LoadLibraryW', 'InterlockedPopEntrySList', 'LeaveCriticalSection', 'lstrcpynW', 'GetModuleFileNameW', 'ReleaseActCtx', 'SetLastError', 'GetLongPathNameA', 'MoveFileW', 'WriteProfileSectionA', 'SetFileAttributesA', 'GetModuleHandleW', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'IsWow64Process', 'GetModuleFileNameA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'VirtualProtect', 'GetShortPathNameW', 'GetFileInformationByHandle', 'SetMailslotInfo', 'LoadLibraryA', 'FreeLibrary', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetLastError', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'GetProcAddress', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'RaiseException', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'MultiByteToWideChar', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'SetStdHandle', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileW', 'CloseHandle', 'GetTextExtentExPointA', 'ClearEventLogA'], ['GlobalUnlock', 'GlobalFree', 'SetUnhandledExceptionFilter', 'Sleep', 'GlobalAlloc', 'GetModuleHandleW', 'GetEnvironmentVariableW', 'IsBadReadPtr', 'GetModuleFileNameW', 'SetEndOfFile', 'DecodePointer', 'HeapReAlloc', 'HeapSize', 'WriteConsoleW', 'CreateFileW', 'SetFilePointerEx', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetStdHandle', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetFileType', 'CloseHandle', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'ReadConsoleW', 'FlushFileBuffers', 'GetProcAddress', 'OleSetContainedObject', 'OleUninitialize', 'OleInitialize', 'CLSIDFromString', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SystemFunction036'], ['HeapFree', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'Sleep', 'GetACP', 'LCMapStringW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetCurrentProcess', 'GetThreadLocale', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'InterlockedDecrement', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'LCMapStringA', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'UnregisterClassA', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'SystemParametersInfoA', 'DestroyMenu', 'UnhookWindowsHookEx', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextA', 'GetWindow', 'SetFocus', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'EnableWindow', 'GetSystemMetrics', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'LoadCursorA', 'GetSysColorBrush', 'AppendMenuA', 'SendMessageA', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'CopyRect', 'FrameRect', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'PostMessageA', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetStockObject', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateBitmap', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['VirtualAlloc', 'HeapReAlloc', 'Sleep', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'RaiseException', 'GetCommandLineA', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'WritePrivateProfileStringA', 'GetModuleHandleW', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'InterlockedDecrement', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'GetModuleFileNameA', 'GetCurrentThreadId', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'CompareStringA', 'lstrcmpW', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GetCurrentProcessId', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrlenA', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'GetTickCount', 'ExitProcess', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'TrackPopupMenu', 'SetForegroundWindow', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'DeferWindowPos', 'DefWindowProcA', 'CallWindowProcA', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetClassNameA', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'WinHelpA', 'GetWindowThreadProcessId', 'GetActiveWindow', 'EqualRect', 'GetKeyState', 'LoadIconA', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'LoadAcceleratorsA', 'SetActiveWindow', 'IsWindowVisible', 'IsIconic', 'InsertMenuItemA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreatePopupMenu', 'GetClassInfoA', 'IntersectRect', 'SetRectEmpty', 'GetMenu', 'GetLastActivePopup', 'BringWindowToTop', 'PostMessageA', 'SetMenu', 'UpdateWindow', 'EnableWindow', 'SendMessageA', 'GetMessagePos', 'GetDesktopWindow', 'TranslateAcceleratorA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetFocus', 'SetWindowPos', 'SetFocus', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'GetSysColorBrush', 'CreateWindowExA', 'GetMenuItemInfoA', 'PtInRect', 'GetWindowRect', 'LoadImageA', 'GetSysColor', 'GetSystemMetrics', 'CopyRect', 'InflateRect', 'DrawEdge', 'DrawFrameControl', 'DrawFocusRect', 'SetRect', 'GetParent', 'GetClientRect', 'OffsetRect', 'SetTimer', 'SetCursor', 'GetCursorPos', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'IsWindow', 'SetWindowTextA', 'GetWindowLongA', 'GetDlgItem', 'GetWindow', 'LoadCursorA', 'KillTimer', 'MessageBoxA', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'CreatePatternBrush', 'OffsetViewportOrgEx', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'Escape', 'SetViewportOrgEx', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'BitBlt', 'CreateFontA', 'DeleteObject', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateCompatibleBitmap', 'SelectObject', 'RoundRect', 'GetTextColor', 'GetBkMode', 'CreateFontIndirectA', 'CreateSolidBrush', 'GetStockObject', 'StretchBlt', 'Polygon', 'CreateCompatibleDC', 'GetObjectA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'DragFinish', 'DragQueryFileA', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GdipDrawImageI', 'GdipDrawLineI', 'GdipDeletePen', 'GdipCreatePen1', 'GdipDrawString', 'GdipDeleteFont', 'GdipCreateFont', 'GdipDeleteFontFamily', 'GdipCreateFontFamilyFromName', 'GdipFillRectangleI', 'GdipDeleteBrush', 'GdipCreateSolidFill', 'GdipCreateLineBrushFromRectI', 'GdipGetImageGraphicsContext', 'GdipCloneImage', 'GdipDisposeImage', 'GdipCreateBitmapFromScan0', 'GdipFree', 'GdipAlloc', 'GdipGetVisibleClipBoundsI', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdiplusStartup', 'SetFilePointer', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'HeapSize', 'GetTickCount', 'QueryPerformanceCounter', 'CreateThread', 'GetCommandLineW', 'GetVersionExA', 'CreateToolhelp32Snapshot', 'GetLastError', 'GetCurrentProcessId', 'Process32First', 'Process32Next', 'CloseHandle', 'ExitProcess', 'CreateMutexA', 'WaitForSingleObject', 'ReleaseMutex', 'SetThreadExecutionState', 'DeviceIoControl', 'FormatMessageW', 'Sleep', 'CreateFileW', 'GetFileInformationByHandle', 'FlushFileBuffers', 'GetSystemTime', 'SystemTimeToFileTime', 'FindFirstFileW', 'SetStdHandle', 'FindClose', 'GetSystemTimeAsFileTime', 'GetFileAttributesExW', 'GetCurrentProcess', 'GetVolumePathNameW', 'GetVolumeNameForVolumeMountPointW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetVolumeInformationW', 'FindFirstVolumeMountPointW', 'FindNextVolumeMountPointW', 'FindVolumeMountPointClose', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetShortPathNameW', 'GetLongPathNameW', 'DosDateTimeToFileTime', 'LocalFileTimeToFileTime', 'ReadFile', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetConsoleMode', 'GetConsoleCP', 'MultiByteToWideChar', 'RtlUnwind', 'HeapCreate', 'HeapDestroy', 'VirtualAlloc', 'VirtualFree', 'InitializeCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetEnvironmentVariableA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'CreateFileA', 'CompareStringA', 'CompareStringW', 'FindNextFileW', 'GetProcAddress', 'GetModuleHandleA', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetTimeZoneInformation', 'DeleteFileW', 'GetCurrentThreadId', 'GetCommandLineA', 'GetProcessHeap', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'WideCharToMultiByte', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'DefWindowProcA', 'EndPaint', 'BeginPaint', 'InvalidateRect', 'PostQuitMessage', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'SetTimer', 'UpdateWindow', 'ShowWindow', 'CreateWindowExW', 'MessageBoxW', 'RegisterClassExA', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'GetStockObject', 'RegCloseKey', 'RegQueryValueExW', 'RegCreateKeyExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CommandLineToArgvW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileType', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['I_RpcFreeBuffer', 'LoadRegTypeLib', 'GetWindowTextA', 'GetCaretBlinkTime', 'CM_Get_First_Log_Conf_Ex', 'PlayEnhMetaFile', 'CombineRgn', 'GetDIBColorTable', 'SHGetFolderPathA', 'CreateStatusWindowW', 'GetKernelObjectSecurity', 'RegOpenKeyA', 'lstrlenW', 'ConvertFiberToThread', 'SetConsoleDisplayMode', 'GetBinaryTypeW', 'GetModuleFileNameW', 'GetModuleHandleW', 'PeekNamedPipe', 'CoSetProxyBlanket', 'CertDeleteCTLFromStore', 'CertAddCRLContextToStore', 'CertVerifyTimeValidity'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'TlsGetValue', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', '_strdup', '_stricoll', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_fpreset', '_fullpath', '_iob', '_isctype', '_msize', '_onexit', '_pctype', '_setmode', 'abort', 'atexit', 'calloc', 'fwrite', 'malloc', 'mbstowcs', 'memcpy', 'memmove', 'puts', 'setlocale', 'signal', 'strcoll', 'strlen', 'tolower', 'vfprintf', 'wcstombs', 'free', 'realloc'], ['SetDefaultCommConfigA', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetConsoleAliasExesA', 'GetStringTypeA', 'GetDriveTypeW', 'DebugActiveProcessStop', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'SetDllDirectoryW', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentActCtx', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleTitleA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadProcessMemory', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'VerifyVersionInfoA', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetCompressedFileSizeA', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetFileSize', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetNamedPipeHandleStateW', 'GetConsoleAliasesW', 'GlobalUnfix', 'ReleaseActCtx', 'GetStartupInfoA', 'FillConsoleOutputCharacterW', 'GetLastError', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'DisableThreadLibraryCalls', 'BuildCommDCBW', 'ResetEvent', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'ProcessIdToSessionId', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'CreateFileA', 'GetOverlappedResult', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetCommandLineA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'DeleteFileA', 'ImpersonateSelf', 'IsTokenUntrusted'], ['LocalFree', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'lstrlenA', 'MessageBoxA', 'RevertToSelf'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ChooseColorA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'MulDiv'], ['GetLastError', 'GetFileAttributesW', 'VirtualAlloc', 'lstrcpyW', 'lstrcatW', 'VirtualFree', 'CreateFileW', 'WriteFile', 'CloseHandle', 'ExpandEnvironmentStringsW', 'CreateMutexW', 'CreateThread', 'WaitForSingleObject', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapSize', 'LCMapStringW', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'WideCharToMultiByte', 'HeapAlloc', 'EncodePointer', 'DecodePointer', 'RaiseException', 'HeapFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapReAlloc', 'WriteConsoleW', 'WinHttpReadData', 'WinHttpQueryHeaders', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpSetOption', 'ShellExecuteW'], ['FreeLibrary', 'InterlockedIncrement', 'GetCurrentProcess', 'CreateJobObjectW', 'GetModuleHandleW', 'GetCurrencyFormatEx', 'LoadLibraryW', 'GetCalendarInfoW', 'GetProcessHandleCount', 'lstrcpynA', 'SetLastError', 'GetProcAddress', 'LoadLibraryA', 'CloseHandle', 'WriteFileEx', 'lstrcpyW', 'WriteConsoleW', 'HeapSize', 'GetProcessHeap', 'GetStringTypeA', 'FreeResource', 'FreeLibraryAndExitThread', 'EnumCalendarInfoA', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'HeapCreate', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'RtlUnwind', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringW', 'GetStringTypeW', 'Sleep', 'ReadFile', 'CreateFileA', 'IsProcessorFeaturePresent', 'HeapAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'SetEndOfFile', 'CreateFileW', 'GetMenuDefaultItem', 'LoadBitmapA', 'GetNumberOfEventLogRecords', 'GetEventLogInformation', 'ClearEventLogW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyA', 'RegEnumKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'IsValidSid', 'GetUserNameA', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'OpenProcess', 'LocalFree', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FormatMessageA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA', 'CharUpperBuffA', 'CharToOemA', 'Sleep', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'socket', 'send', 'recv', 'inet_ntoa', 'htons', 'connect', 'closesocket', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CryptUnprotectData'], ['LoadLibraryA', 'WriteProfileSectionA', 'GetNumaProcessorNode', 'FindFirstVolumeA', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationA', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesW', 'EnumResourceNamesA', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'TlsGetValue', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'ReleaseActCtx', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedIncrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'InterlockedPushEntrySList', 'TryEnterCriticalSection', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExA', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'LockFile', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'FindAtomW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedDecrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'CreateFileA', 'OemToCharW', 'WinHttpReadData'], ['sprintf', 'sscanf', 'free', 'malloc', '??2@YAPAXI@Z', '??3@YAXPAX@Z', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetVersionExW', 'DisableThreadLibraryCalls', 'lstrlenW', 'MultiByteToWideChar', 'lstrlenA', 'GetModuleFileNameA', 'lstrcpynW', 'InterlockedIncrement', 'InterlockedDecrement', 'GetSystemTimeAsFileTime', 'lstrcmpW', 'FreeLibrary', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'GetLastError', 'GetModuleHandleA', 'InitializeCriticalSection', 'MulDiv', 'IsBadReadPtr', 'IsBadWritePtr', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateCompatibleDC', 'DeleteDC', 'CreateFontIndirectA', 'SetBkMode', 'DeleteObject', 'CreateDIBSection', 'SelectObject', 'ExtTextOutA', 'SetBkColor', 'GetTextMetricsA', 'GetSystemPaletteEntries', 'GetDeviceCaps', 'GetTextColor', 'SetTextColor', 'KillTimer', 'IsRectEmpty', 'ReleaseDC', 'GetDC', 'UnregisterClassA', 'SendMessageTimeoutA', 'DefWindowProcA', 'ShowWindow', 'CreateWindowExA', 'RegisterClassA', 'CheckDlgButton', 'SetWindowTextA', 'SendMessageA', 'GetDlgItem', 'IsDlgButtonChecked', 'MessageBeep', 'GetWindowTextA', 'wsprintfW', 'GetWindowLongW', 'SetWindowLongW', 'CreateDialogParamW', 'MoveWindow', 'InvalidateRect', 'DestroyWindow', 'DefWindowProcW', 'LoadStringW', 'GetWindowRect', 'GetDesktopWindow', 'SetTimer', 'SetRect', 'RegDeleteKeyW', 'RegCloseKey', 'RegOpenKeyExW', 'RegCreateKeyW', 'RegSetValueW', 'RegSetValueExW', 'RegEnumKeyExW', 'CoCreateInstance', 'CoUninitialize', 'StringFromGUID2', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoFreeUnusedLibraries', 'CoInitialize'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetAce', 'ImageList_Remove', 'GetSaveFileNameW', 'LineTo', 'WNetGetConnectionW', 'CoInitialize', 'VariantInit', 'EnumProcesses', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'recv'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetModuleHandleA', 'IsChild', 'RegOpenKeyExA', 'DllGetVersion', '_CorExeMain', 'ShellAboutW'], ['CreateProcessA', 'CreateRemoteThread', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'WriteProcessMemory', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_snprintf', '_unlock', 'abort', 'calloc', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['CreateFileW', 'ReleaseSemaphore', 'OpenMutexW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'InterlockedIncrement', 'EnterCriticalSection', 'InterlockedDecrement', 'ResumeThread', 'CreateEventW', 'WaitForSingleObject', 'WaitForMultipleObjects', 'SetEvent', 'OutputDebugStringW', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetCurrentThreadId', 'LeaveCriticalSection', 'CloseHandle', 'ReleaseMutex', 'LoadLibraryW', 'GetLastError', 'CopyFileW', 'Sleep', 'GetSystemDirectoryW', 'DeleteFileW', 'CreateSemaphoreW', 'DeviceIoControl', 'HeapFree', 'HeapAlloc', 'GetFileAttributesW', 'ExitThread', 'CreateThread', 'GetCommandLineA', 'GetVersionExA', 'GetProcessHeap', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'MultiByteToWideChar', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'ReadFile', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'QueryServiceStatus', 'StartServiceW', 'OpenServiceW', 'OpenSCManagerW', 'DeleteService', 'CloseServiceHandle', 'QueryServiceConfigW', 'CreateServiceW', 'ControlService', 'ChangeServiceConfigW', 'GetAdaptersInfo'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharLowerA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetKBCodePage', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteExA'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SuspendThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatusEx', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateWaitableTimerExW', 'CreateThread', 'CreateIoCompletionPort', 'CreateFileA', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA', 'NtFlushInstructionCache', 'FileProtocolHandlerA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'wglDeleteContext', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['MessageBoxW', 'GetSystemMetrics', 'GetSysColorBrush', 'FindWindowA', 'FreeLibrary', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'VirtualAlloc', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetLastError', 'GetCurrentProcessId', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'WriteConsoleW', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'SetMailslotInfo', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'InitializeCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetBinaryTypeW', 'SetFilePointer', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'VirtualProtect', 'InterlockedPushEntrySList', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['LoadLibraryA', 'EnterCriticalSection', 'LeaveCriticalSection', 'LocalAlloc', 'lstrlenA', 'GetProcAddress'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'GetThreadLocale', 'GetStartupInfoA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'WriteFile', 'WinExec', 'SetFilePointer', 'SetFileAttributesA', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ReleaseMutex', 'ReadFile', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetShortPathNameA', 'GetModuleFileNameA', 'GetLogicalDriveStringsA', 'GetLocalTime', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetDriveTypeA', 'GetCommandLineA', 'FreeLibrary', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'CreateMutexA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'StretchDIBits', 'SetDIBits', 'SelectObject', 'GetObjectA', 'GetDIBits', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'ReleaseDC', 'GetSysColor', 'GetIconInfo', 'GetDC', 'FillRect', 'DestroyIcon', 'CopyImage', 'CharLowerBuffA', 'ShellExecuteA', 'ExtractIconA'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'GetSystemWow64DirectoryW', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA', 'CharUpperA'], ['SysFreeString', 'RegQueryValueExW', 'MessageBoxA', 'GetVersion', 'GetProcAddress', 'SetClassLongW', 'UnrealizeObject', 'VerQueryValueW', 'GetVersionExW', 'GetVersion', 'RegSetValueExW', 'Sleep', 'SafeArrayPtrOfIndex', 'GetErrorInfo', 'CreateStreamOnHGlobal', 'InitializeFlatSB', 'EnumDisplayMonitors', 'memset', 'ShellExecuteW', 'InternetGetConnectedState', 'CoInternetCreateZoneManager', 'SHGetSpecialFolderLocation', 'QueryServiceStatus', 'send', '_gcvt', 'Netbios', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetTempPathA', 'WinExec', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'GetProcessHeap', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'HeapReAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapFree', 'CloseHandle', 'HeapAlloc', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'ReadFile', 'ReadConsoleW', 'SetEndOfFile', 'DefWindowProcW', 'DestroyWindow', 'CreateWindowExW', 'EndDialog', 'RegisterClassExW', 'LoadStringW', 'ShowWindow', 'LoadIconW', 'LoadCursorW', 'PostQuitMessage', 'DialogBoxParamW', 'UpdateWindow', 'BeginPaint', 'EndPaint'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'memcpy', 'realloc', 'sprintf', 'strchr', 'strlen', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationA', 'ShellExecuteA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetLastInputInfo', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['LsaClose', 'atof', 'getenv', '_lock_file', 'free', '_configthreadlocale', 'nan', 'exit', '_open', 'strlen', '_time64', 'rand', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', '_Thrd_id', 'ShowWindow', 'strstr', 'htons'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'BackupWrite', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'InterlockedIncrement', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['CreateFileW', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'RaiseException', 'GetModuleFileNameA', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'WriteFile', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetTimeZoneInformation', 'GetStringTypeW', 'GetCommandLineW', 'GetCommandLineA', 'GetFileType', 'GetStdHandle', 'GetProcessHeap', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCPInfo', 'SetFilePointerEx', 'WideCharToMultiByte', 'GetTempPathA', 'LoadLibraryA', 'GetEnvironmentVariableA', 'OpenMutexA', 'lstrcmpiA', 'Sleep', 'ExitProcess', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'GetACP', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'IsValidCodePage', 'GetOEMCP', 'VirtualProtect', 'DeleteDC', 'DeleteObject', 'IntersectClipRect', 'LineTo', 'SetBkMode', 'SetMapMode', 'GetObjectA', 'MoveToEx', 'DPtoLP', 'CreateDCA', 'CreatePen', 'CoTaskMemAlloc', 'CoRevokeClassObject', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'InternetOpenA', 'InternetCanonicalizeUrlA', 'InternetCrackUrlA', 'InternetConnectA', 'InternetCloseHandle', 'HttpQueryInfoA', 'HttpSendRequestA', 'HttpOpenRequestA', 'InternetGetLastResponseInfoA', 'InternetSetOptionExA', 'InternetQueryDataAvailable', 'InternetWriteFile', 'InternetReadFile', 'InternetOpenUrlA', 'PathIsRootA', 'PathIsURLA', 'PathStripToRootA', 'PathCanonicalizeA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'AddPrinterConnectionA', 'DeletePrinterConnectionA', 'ChooseFontA', 'ReplaceTextA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'CommDlgExtendedError', 'ImageList_DragEnter', 'ImageList_ReplaceIcon', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'SystemFunction036'], ['AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__doserrno', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_initterm', '_lseeki64', '_onexit', '_read', '_setjmp', '_strdup', '_strnicmp', '_ultoa', '_write', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strtoul', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm'], ['freeaddrinfo', 'GlobalUnlock', 'OpenClipboard', 'RegCloseKey', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['ImmGetDescriptionW', 'ImmIsUIMessageA', 'ImmIsUIMessageW', 'ImmRegisterWordW', 'ImmGetRegisterWordStyleA', 'ImmInstallIMEW', 'ICInstall', 'ICRemove', 'ICCompressorChoose', 'DrawDibChangePalette', 'DrawDibDraw', 'DrawDibProfileDisplay', 'MCIWndCreateW'], ['SetServiceStatus', 'RegisterServiceCtrlHandlerW', 'StartServiceCtrlDispatcherW', 'RegCloseKey', 'RegSetValueExA', 'RegOpenKeyExA', 'StartServiceW', 'OpenServiceW', 'CloseServiceHandle', 'OpenSCManagerA', 'RegCreateKeyExA', 'FreeSid', 'LookupAccountSidW', 'AllocateAndInitializeSid', 'GetUserNameW', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'OpenProcessToken', 'DuplicateTokenEx', 'OpenThreadToken', 'AccessCheck', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'InitializeSecurityDescriptor', 'AddAccessAllowedAce', 'InitializeAcl', 'RegEnumKeyExA', 'RegQueryValueExA', '??2@YAPAXI@Z', '_strlwr', 'wcsncpy', 'strchr', 'memset', '_controlfp', 'free', 'calloc', 'malloc', '_strnicmp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', 'strcmp', '_snwprintf', '_wcsicmp', 'wcslen', 'wcscpy', 'memcmp', '_local_unwind2', 'strncat', 'tolower', '??3@YAXPAX@Z', 'time', 'gmtime', 'strrchr', 'strncmp', '_snprintf', 'memcpy', 'memmove', 'difftime', 'strstr', 'strncpy', 'DestroyWindow', 'CharNextA', 'CreateAcceleratorTableW', 'CreateWindowExW', '_stricmp', '_splitpath', 'strlen', 'strcpy', 'TlsGetValue', 'TlsAlloc', 'WaitForSingleObjectEx', 'GetExitCodeThread', 'GetVersionExW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlUnwind', 'OpenProcess', 'TerminateProcess', 'LoadLibraryW', 'VirtualLock', 'VirtualUnlock', 'VirtualFree', 'ReleaseMutex', 'GetTempPathW', 'GetTempFileNameW', 'CreateFileW', 'DeleteFileW', 'LoadLibraryExA', 'OpenMutexW', 'CreateMutexW', 'UnmapViewOfFile', 'SetLastError', 'GetModuleHandleA', 'GetCurrentThread', 'GetCurrentProcess', 'GetCurrentProcessId', 'SetFileAttributesA', 'SetFileTime', 'GetFileAttributesA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FindResourceA', 'SizeofResource', 'LoadResource', 'LockResource', 'MoveFileExA', 'GetWindowsDirectoryA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'CloseHandle', 'WriteFile', 'LocalAlloc', 'GetSystemDirectoryA', 'GetVersionExA', 'CreateDirectoryA', 'GetModuleFileNameA', 'GetTempPathA', 'IsBadReadPtr', 'MultiByteToWideChar', 'LocalFree', 'GetSystemTime', 'GetStartupInfoA', 'CreateProcessA', 'LoadLibraryA', 'GetLastError', 'FreeLibrary', 'WaitForSingleObject', 'DeleteFileA', 'Sleep', 'ExitProcess', 'GetVersion', 'GetProcAddress', 'VirtualAlloc', 'ReadProcessMemory'], ['GetCurrentDirectoryA', 'WaitForSingleObject', 'GetCurrentDirectoryW', 'SetEndOfFile', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'GetCPInfo', 'CreateProcessA', 'IsBadCodePtr', 'IsBadReadPtr', 'SetUnhandledExceptionFilter', 'FlushFileBuffers', 'SetStdHandle', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'GetProcAddress', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'HeapFree', 'HeapSize', 'GetLastError', 'SetFileTime', 'LocalFileTimeToFileTime', 'GetFullPathNameW', 'GetFullPathNameA', 'GetTempPathW', 'GetTempPathA', 'GetModuleFileNameW', 'DeleteFileW', 'DeleteFileA', 'SetFilePointer', 'GetFileAttributesW', 'CreateDirectoryW', 'SetCurrentDirectoryW', 'SetCurrentDirectoryA', 'SetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryA', 'SetFileAttributesA', 'GetFileAttributesA', 'CreateFileA', 'Sleep', 'GetTickCount', 'GetACP', 'GetOEMCP', 'GetComputerNameW', 'FormatMessageA', 'GetModuleFileNameA', 'CloseHandle', 'ReadFile', 'WriteFile', 'GetFileSize', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'GetLocalTime', 'GetVersionExA', 'CreateFileW', 'GetCurrentThreadId', 'RtlUnwind', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'GetTimeZoneInformation', 'HeapReAlloc', 'HeapAlloc', 'GetExitCodeProcess', 'PostMessageA', 'SetTimer', 'GetDlgItemTextA', 'LoadStringA', 'DefWindowProcA', 'DestroyWindow', 'BeginPaint', 'EndPaint', 'GetDlgItemTextW', 'SetWindowTextW', 'MoveWindow', 'SetDlgItemTextW', 'EnableWindow', 'EndDialog', 'PostQuitMessage', 'MessageBoxW', 'GetDlgItem', 'SendMessageA', 'GetDesktopWindow', 'GetWindowRect', 'CopyRect', 'OffsetRect', 'SetWindowPos', 'CreateWindowExW', 'DialogBoxParamW', 'LoadCursorA', 'RegisterClassExW', 'LoadStringW', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'MessageBoxA', 'SetDlgItemTextA', 'ShellExecuteExW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'CryptAcquireContextA', 'CryptReleaseContext', 'CryptGenRandom', 'GetUserNameA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ChooseFontA'], ['GetModuleHandleA', 'WSACleanup', 'GetFileVersionInfoW', 'timeGetTime', 'ImageList_ReplaceIcon', 'WNetUseConnectionW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'DestroyEnvironmentBlock', 'IsThemeActive', 'AdjustWindowRectEx', 'StrokePath', 'GetOpenFileNameW', 'GetAce', 'DragQueryPoint', 'CoTaskMemAlloc', 'LoadTypeLibEx'], ['GetSystemWow64DirectoryA', 'GetLastError', 'WinExec', 'CloseHandle', 'GetSystemInfo', 'Sleep', 'CreateProcessA', 'WriteFile', 'CreateFileA', 'DeleteFileA', 'SizeofResource', 'LoadResource', 'FindResourceA', 'CreateDirectoryA', 'GetVersionExA', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'HeapAlloc', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'OpenSCManagerA', 'StartServiceA', 'CreateServiceA', 'DeleteService', 'CloseServiceHandle', 'OpenServiceA', 'ControlService'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CopyFileExA', 'GetShortPathNameA', 'OpenEventA', 'MoveFileA', 'FindFirstFileA', 'ReplaceFileA', 'HeapFree', 'GetCommandLineW', 'GetConsoleOutputCP', 'GetCPInfo', 'GetSystemDefaultUILanguage', 'OutputDebugStringA', 'LCMapStringA', 'LocalHandle', 'FindFirstVolumeA', 'FindResourceA', 'lstrlenA', 'CreateFileW', 'FreeLibraryAndExitThread', 'lstrcmpA', 'FreeEnvironmentStringsW', 'HeapWalk', 'OpenSemaphoreA', 'lstrcatA', 'GetModuleHandleA', 'GetLocaleInfoA', 'HeapSize', 'GetCommandLineA', 'IsValidCodePage', 'EnumSystemLocalesA', 'Sleep', 'GetConsoleMode', 'CopyFileA', 'GetLastError', 'GetStringTypeExA', 'LoadLibraryA', 'SetVolumeLabelA', 'GetVersionExA', 'PulseEvent', 'DeleteFileA', 'lstrcpyA', 'HeapReAlloc', 'CloseHandle', 'AddAtomA', 'HeapAlloc', 'SetFileAttributesA', 'SetStdHandle', 'WriteConsoleW', 'FindAtomA', 'GetCalendarInfoA', 'GetProcAddress', 'SetFilePointerEx', 'ExitProcess', 'FindNextVolumeA', 'GetProcessHeap', 'EnumTimeFormatsA', 'WideCharToMultiByte', 'GetFileType', 'GetSystemTime', 'GetTempFileNameA', 'CreateEventA', 'GetStringTypeW', 'GetTickCount', 'GetEnvironmentStringsW', 'AllocConsole', 'IsDebuggerPresent', 'FlushFileBuffers'], ['VirtualAllocEx', 'GetModuleHandleW', 'GetModuleHandleA', 'GetStartupInfoA', 'GlobalSize', 'GetConsoleWindow', 'EnumSystemCodePagesW', 'FlushInstructionCache', 'FindAtomA', 'FindFirstChangeNotificationW', 'SetComputerNameW', 'DeleteVolumeMountPointA', 'CreateTimerQueue', 'WriteProcessMemory', 'LoadLibraryExW', 'SetCurrentDirectoryA', 'CreateJobObjectW', 'IsDBCSLeadByteEx', 'LoadResource', 'LockResource', 'LoadLibraryW', 'lstrcatW', 'GetPrivateProfileStringW', 'FindResourceW', 'WritePrivateProfileStringW', 'GetACP', 'FreeLibrary', 'GetCurrentThreadId', 'WaitForMultipleObjects', 'GetLastError', 'GetComputerNameW', 'WaitForSingleObject', 'OutputDebugStringW', 'WideCharToMultiByte', 'GetStringTypeW', 'lstrlenW', 'lstrcmpiW', 'lstrcpyW', 'GetProcAddress', 'lstrcmpW', 'HeapFree', 'GetProcessHeap', 'GetDateFormatW', 'GetTimeFormatW', 'CreateThread', 'GetTickCount', 'SetFileAttributesW', 'CopyFileW', 'GetFileTime', 'FileTimeToSystemTime', 'GetSystemTime', 'CreateDirectoryW', 'GetFileAttributesExW', 'MultiByteToWideChar', 'GetCurrentThread', 'GetCurrentProcess', 'LocalAlloc', 'LocalFree', 'SetLastError', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'TerminateProcess', 'Process32NextW', 'OpenProcess', 'QueryDosDeviceW', 'GetVersionExW', 'GetCurrentProcessId', 'GetDiskFreeSpaceW', 'HeapAlloc', 'GetDriveTypeA', 'GetLogicalDriveStringsW', 'GetVolumeInformationW', 'GetSystemDirectoryW', 'GetDriveTypeW', 'DeviceIoControl', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'Sleep', 'DeleteFileW', 'ExpandEnvironmentStringsW', 'SetEndOfFile', 'CompareStringW', 'CompareStringA', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'GetConsoleOutputCP', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'EnumSystemLocalesA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'SetHandleCount', 'HeapCreate', 'GetOEMCP', 'GetTimeZoneInformation', 'ExitThread', 'GlobalUnlock', 'GlobalLock', 'FileTimeToLocalFileTime', 'GetDiskFreeSpaceExW', 'GetFullPathNameW', 'MoveFileW', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'HeapReAlloc', 'LCMapStringW', 'LCMapStringA', 'GetFullPathNameA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'GetDateFormatA', 'GetTimeFormatA', 'GetTempPathW', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetSystemDefaultUILanguage', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateFileW', 'CloseHandle', 'CreateDirectoryA', 'CreateEventA', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'FreeConsole', 'ReadConsoleOutputCharacterA', 'GetConsoleScreenBufferInfo', 'GetStdHandle', 'WriteConsoleA', 'WriteConsoleW', 'FillConsoleOutputCharacterW', 'SetConsoleCursorPosition', 'MulDiv', 'GetCommandLineW', 'GlobalAlloc', 'HeapSize', 'GlobalFree', 'GetFileAttributesW', 'GetFileSize', 'GetTempFileNameW', 'GetFileType', 'SetCurrentDirectoryW', 'GetWindowsDirectoryW', 'SetErrorMode', 'FormatMessageW', 'ReadFile', 'WriteFile', 'SetEvent', 'CreatePipe', 'PeekNamedPipe', 'SetNamedPipeHandleState', 'GetExitCodeProcess', 'CreateEventW', 'ResumeThread', 'CreateProcessW', 'DuplicateHandle', 'CreateMutexW', 'GetEnvironmentVariableW', 'GetCPInfo', 'IsValidCodePage', 'SizeofResource', 'GetModuleFileNameW', 'ReleaseMutex', 'ReleaseSemaphore', 'TlsSetValue', 'ExitProcess', 'SetThreadPriority', 'TerminateThread', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'GetExitCodeThread', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'GetSystemTimeAsFileTime', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'RaiseException', 'IsBadReadPtr', 'IsBadStringPtrA', 'VirtualFree', 'VirtualAlloc', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetCommandLineA', 'UnhandledExceptionFilter', 'RtlUnwind', 'lstrlenA', 'lstrcpyA', 'lstrcmpiA', 'lstrcmpA', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualProtect', 'UnmapViewOfFile', 'ReadProcessMemory', 'OpenMutexW', 'OpenMutexA', 'OpenFileMappingW', 'OpenFileMappingA', 'OpenEventW', 'OpenEventA', 'MapViewOfFile', 'LoadLibraryExA', 'LoadLibraryA', 'IsBadWritePtr', 'GetVersionExA', 'GetThreadContext', 'GetSystemDirectoryA', 'GetModuleFileNameA', 'GetFileAttributesA', 'GetCurrentDirectoryW', 'GetCurrentDirectoryA', 'FormatMessageA', 'CreateSemaphoreA', 'CreateProcessA', 'CreateMutexA', 'CreateFileMappingW', 'CreateFileMappingA', 'CreateFileA', 'GetDesktopWindow', 'GetClipboardOwner', 'GetThreadDesktop', 'GetCaretBlinkTime', 'DestroyWindow', 'GetKeyState', 'IsIconic', 'GetTopWindow', 'GetSysColor', 'GetListBoxInfo', 'IsWindowVisible', 'RegisterShellHookWindow', 'IsHungAppWindow', 'SetWindowsHookExW', 'GetClipboardData', 'SendDlgItemMessageA', 'TranslateAcceleratorW', 'DdeQueryStringW', 'CountClipboardFormats', 'GetClientRect', 'CallMsgFilterA', 'MapVirtualKeyA', 'InvalidateRect', 'SetShellWindow', 'TranslateMessage', 'DrawStateA', 'CallMsgFilterW', 'SubtractRect', 'DdeConnect', 'UserHandleGrantAccess', 'SetUserObjectSecurity', 'MessageBoxIndirectA', 'GetClipboardSequenceNumber', 'FlashWindow', 'RegisterDeviceNotificationA', 'SetMessageQueue', 'GetClassInfoExA', 'GetClassNameA', 'GetWindowModuleFileNameA', 'MapDialogRect', 'DrawCaption', 'FrameRect', 'BeginPaint', 'MessageBeep', 'wsprintfW', 'GetMessageTime', 'IsWindowEnabled', 'OemToCharA', 'IsCharAlphaW', 'CharUpperA', 'SetTimer', 'KillTimer', 'EndPaint', 'CharUpperBuffW', 'SendMessageW', 'GetSystemMetrics', 'ShowWindow', 'LoadIconW', 'PostMessageW', 'CallNextHookEx', 'UnhookWindowsHookEx', 'WinHelpW', 'RegisterWindowMessageW', 'CharToOemBuffA', 'OemToCharBuffA', 'CharNextExA', 'CharToOemW', 'LoadStringW', 'GetTextAlign', 'GetDCPenColor', 'CloseMetaFile', 'CreateMetaFileA', 'FillPath', 'GetFontLanguageInfo', 'GetSystemPaletteUse', 'GetLayout', 'AngleArc', 'TranslateCharsetInfo', 'GetDeviceCaps', 'SelectObject', 'SetMapMode', 'DeleteObject', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'StretchBlt', 'GetObjectA', 'GetStockObject', 'BitBlt', 'SetWindowExtEx', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'RegOpenKeyA', 'RegQueryValueExA', 'SHGetIconOverlayIndexA', 'ExtractAssociatedIconExW', 'SHGetSpecialFolderPathA', 'StrStrW', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['LoadLibraryA', 'GetModuleHandleA', 'InterlockedCompareExchange', 'OpenWaitableTimerA', 'CreateEventA', 'ReadConsoleInputW', 'WaitNamedPipeA', 'SetVolumeMountPointA', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesA', 'GetModuleFileNameW', 'IsBadCodePtr', 'LoadLibraryW', 'DeleteFileW', 'SearchPathA', 'VirtualAlloc', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasA', 'GetShortPathNameA', 'GetPrivateProfileStringW', 'PeekConsoleInputW', 'GlobalGetAtomNameA', 'GetProcAddress', 'GetUserDefaultLangID', 'GetConsoleAliasW', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameA', 'lstrcpynA', 'AddAtomW', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameA', 'FoldStringW', 'ResetEvent', 'GlobalWire', 'GetComputerNameA', 'GetVersionExW', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'SetCalendarInfoW', 'SetComputerNameA', 'GetFileAttributesA', 'GetVolumePathNameW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap'], ['GetComputerNameW', 'WaitNamedPipeW', 'InitializeCriticalSection', 'GlobalAlloc', 'DnsHostnameToComputerNameW', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'InterlockedIncrement', 'LoadLibraryA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'LoadLibraryExA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetStringTypeA', 'UpdateResourceA', 'GetLocaleInfoA', 'GetConsoleAliasesLengthW', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'CloseEventLog'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetModuleHandleA', 'DefWindowProcA', 'RegCloseKey', 'SHChangeNotifyRegister', '_CorExeMain', 'InitCommonControlsEx'], ['malloc', 'memset', '_get_pgmptr', 'getenv', 'sprintf', '__argc', '__argv', '_environ', '_XcptFilter', '__set_app_type', '_controlfp', '__getmainargs', 'exit', 'Sleep', 'CreateProcessA', 'SetUnhandledExceptionFilter'], ['GetMailslotInfo', 'GetModuleFileNameW', 'GetTimeZoneInformation', 'lstrcatA', 'MultiByteToWideChar', 'lstrlenW', 'DisconnectNamedPipe', 'CreateJobObjectA', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'WriteProfileSectionW', 'ConvertDefaultLocale', 'FreeEnvironmentStringsW', 'RequestWakeupLatency', 'OutputDebugStringA', '_lopen', 'TransactNamedPipe', 'GetNumaProcessorNode', 'lstrcpyA', 'CloseHandle', 'CreateFileW', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'OutputDebugStringW', 'LoadLibraryExW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'GetOEMCP', 'IsValidCodePage', 'GetComputerNameExA', 'GetVersionExW', 'EnumResourceTypesA', 'CreateActCtxW', 'GetCompressedFileSizeW', 'EnumCalendarInfoExW', 'GetNumaAvailableMemoryNode', 'TerminateJobObject', 'LoadResource', 'GetACP', 'GetEnvironmentStringsW', 'TlsFree', 'lstrlenA', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WideCharToMultiByte', 'GetStringTypeW', 'GetLastError', 'HeapFree', 'GetCommandLineW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'GetCPInfo', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'GetStartupInfoW', 'GetModuleHandleW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetProcessHeap', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'WriteFile', 'QueryPerformanceCounter', 'IsCharAlphaNumericA', 'GetKeyboardLayoutList', 'GetUserObjectInformationW', 'CreateDesktopW', 'LoadMenuIndirectA', 'CharUpperBuffW', 'ImpersonateDdeClientWindow', 'SetSystemCursor', 'LoadCursorW', 'GetClipboardFormatNameA', 'GetGUIThreadInfo', 'SetPropA', 'CharUpperBuffA', 'PeekMessageA', 'AnimatePalette', 'GetEnhMetaFileA', 'CreateDIBSection', 'EnumFontFamiliesExW', 'TextOutW', 'CloseEnhMetaFile', 'GdiComment', 'GetMiterLimit', 'DeviceCapabilitiesW', 'ReportEventA', 'CoInitialize'], ['FindNextFileA', 'ExpandEnvironmentStringsA', 'GetLongPathNameW', 'CopyFileW', 'GetLocaleInfoA', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'VirtualProtect', 'SetLastError', 'VirtualFree', 'VirtualAlloc', 'GetNativeSystemInfo', 'HeapAlloc', 'GetProcessHeap', 'FreeLibrary', 'IsBadReadPtr', 'GetTempPathW', 'OpenProcess', 'OpenMutexA', 'lstrcatW', 'GetCurrentProcessId', 'GetTempFileNameW', 'GetSystemDirectoryA', 'GlobalAlloc', 'GlobalLock', 'GetTickCount', 'GlobalUnlock', 'WriteProcessMemory', 'ResumeThread', 'GetThreadContext', 'ReadProcessMemory', 'CreateProcessW', 'SetThreadContext', 'LocalAlloc', 'GlobalFree', 'MulDiv', 'SizeofResource', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'GetStdHandle', 'SetFilePointer', 'FindResourceA', 'LockResource', 'LoadResource', 'LocalFree', 'SetConsoleOutputCP', 'FormatMessageA', 'AllocConsole', 'FindFirstFileA', 'lstrcpynA', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'HeapSize', 'WriteConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindFirstFileExA', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'GetTimeZoneInformation', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'HeapReAlloc', 'GetACP', 'GetModuleHandleExW', 'MoveFileExW', 'RtlUnwind', 'RaiseException', 'LoadLibraryExW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'GetFileSize', 'TerminateThread', 'GetLastError', 'GetModuleHandleA', 'RemoveDirectoryW', 'MoveFileW', 'SetFilePointerEx', 'GetLogicalDriveStringsA', 'DeleteFileW', 'CreateDirectoryW', 'DeleteFileA', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'lstrlenA', 'GetDriveTypeA', 'FindNextFileW', 'GetFileSizeEx', 'FindFirstFileW', 'GetModuleHandleW', 'ExitProcess', 'CreateMutexA', 'GetCurrentProcess', 'GetProcAddress', 'LoadLibraryA', 'CreateProcessA', 'PeekNamedPipe', 'CreatePipe', 'TerminateProcess', 'ReadFile', 'HeapFree', 'HeapCreate', 'CreateEventA', 'GetLocalTime', 'CreateThread', 'SetEvent', 'CreateEventW', 'WaitForSingleObject', 'Sleep', 'GetModuleFileNameW', 'CloseHandle', 'ExitThread', 'CreateFileW', 'WriteFile', 'GetModuleFileNameA', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'DecodePointer', 'EncodePointer', 'WideCharToMultiByte', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEndOfFile', 'GetWindowTextW', 'wsprintfW', 'GetClipboardData', 'UnhookWindowsHookEx', 'GetForegroundWindow', 'ToUnicodeEx', 'GetKeyboardLayout', 'SetWindowsHookExA', 'CloseClipboard', 'OpenClipboard', 'GetKeyboardState', 'CallNextHookEx', 'GetKeyboardLayoutNameA', 'GetKeyState', 'GetWindowTextLengthW', 'GetWindowThreadProcessId', 'GetMessageA', 'SetClipboardData', 'EnumWindows', 'ExitWindowsEx', 'EmptyClipboard', 'ShowWindow', 'SetWindowTextW', 'MessageBoxW', 'IsWindowVisible', 'CloseWindow', 'SendInput', 'EnumDisplaySettingsW', 'mouse_event', 'CreatePopupMenu', 'DispatchMessageA', 'TranslateMessage', 'TrackPopupMenu', 'DefWindowProcA', 'CreateWindowExA', 'GetIconInfo', 'GetSystemMetrics', 'AppendMenuA', 'RegisterClassExA', 'GetCursorPos', 'SetForegroundWindow', 'DrawIcon', 'SystemParametersInfoW', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'DeleteObject', 'CreateDCA', 'GetObjectA', 'BitBlt', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameW', 'RegEnumKeyExA', 'QueryServiceStatus', 'CloseServiceHandle', 'OpenSCManagerW', 'OpenSCManagerA', 'ControlService', 'StartServiceW', 'QueryServiceConfigW', 'ChangeServiceConfigW', 'OpenServiceW', 'EnumServicesStatusW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCreateKeyA', 'RegCloseKey', 'RegQueryInfoKeyW', 'RegQueryValueExA', 'RegCreateKeyExW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegSetValueExA', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegQueryValueExW', 'RegDeleteKeyA', 'ShellExecuteExA', 'Shell_NotifyIconA', 'ExtractIconA', 'ShellExecuteW', 'CoInitializeEx', 'CoUninitialize', 'CoGetObject', 'PathFileExistsW', 'PathFileExistsA', 'StrToIntA', 'waveInUnprepareHeader', 'waveInOpen', 'waveInStart', 'waveInAddBuffer', 'PlaySoundW', 'mciSendStringA', 'mciSendStringW', 'waveInClose', 'waveInStop', 'waveInPrepareHeader', 'gethostbyname', 'send', 'WSAStartup', 'closesocket', 'inet_ntoa', 'htons', 'htonl', 'getservbyname', 'ntohs', 'getservbyport', 'gethostbyaddr', 'inet_addr', 'WSASetLastError', 'WSAGetLastError', 'recv', 'connect', 'socket', 'URLOpenBlockingStreamW', 'URLDownloadToFileW', 'GdipSaveImageToStream', 'GdipGetImageEncodersSize', 'GdipFree', 'GdipDisposeImage', 'GdipAlloc', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipLoadImageFromStream', 'InternetOpenUrlW', 'InternetOpenW', 'InternetCloseHandle', 'InternetReadFile'], ['CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'OpenEventA', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetProcessHeap', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'IsValidCodePage', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'HeapReAlloc', 'HeapSize', 'HeapAlloc', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'SetHandleCount', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetSystemInfo', 'OutputDebugStringW', 'GetFileType', 'WriteConsoleW', 'OutputDebugStringA', 'GetStdHandle', 'DebugBreak', 'ExitProcess', 'GetModuleFileNameA', 'RaiseException', 'RtlUnwind', 'IsBadReadPtr', 'HeapValidate', 'GetStartupInfoA', 'GetCommandLineA', 'SetEndOfFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetCurrentProcess', 'InterlockedIncrement', 'InterlockedExchange', 'GetCurrentThread', 'GlobalFlags', 'lstrlenA', 'lstrcmpA', 'FormatMessageW', 'GetModuleHandleA', 'SetEvent', 'CloseHandle', 'CompareStringW', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpW', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExA', 'WideCharToMultiByte', 'GetCurrentProcessId', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'GlobalUnlock', 'TlsAlloc', 'LocalAlloc', 'LocalFree', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'FreeLibrary', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'MultiByteToWideChar', 'lstrlenW', 'GetModuleHandleW', 'GetProcAddress', 'GetAtomNameW', 'GlobalGetAtomNameW', 'GetLastError', 'SetLastError', 'CreateDirectoryW', 'GlobalLock', 'VirtualFree', 'GlobalAlloc', 'GetSystemDirectoryW', 'GetLocaleInfoW', 'Sleep', 'CopyFileW', 'GetModuleFileNameW', 'VirtualAlloc', 'GlobalFree', 'ResetEvent', 'CreatePipe', 'VirtualProtect', 'SetUnhandledExceptionFilter', 'IntersectClipRect', 'SetBkMode', 'LineTo', 'DeleteObject', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'RestoreDC', 'SaveDC', 'DeleteDC', 'Escape', 'GetTextExtentPoint32W', 'TextOutW', 'GetPixel', 'BitBlt', 'RectVisible', 'PtVisible', 'SelectObject', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBitmap', 'CreateFontIndirectW', 'CreatePatternBrush', 'CreateSolidBrush', 'ExtTextOutW', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'GetObjectW', 'GetStockObject', 'GetObjectType', 'ScreenToClient', 'AdjustWindowRectEx', 'SetFocus', 'SetActiveWindow', 'GetFocus', 'DispatchMessageW', 'GetSysColor', 'GetClientRect', 'LoadIconW', 'RegisterClassW', 'RemoveMenu', 'GetClassInfoExW', 'CreateWindowExW', 'RegisterWindowMessageW', 'GetSysColorBrush', 'LoadBitmapW', 'FillRect', 'DrawTextExW', 'GrayStringW', 'CreatePopupMenu', 'IsMenu', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'GetSubMenu', 'InsertMenuItemW', 'ModifyMenuW', 'SetMenuItemBitmaps', 'LoadMenuW', 'ClientToScreen', 'GetDC', 'ReleaseDC', 'GetWindowDC', 'GetActiveWindow', 'GetDesktopWindow', 'GetMenuCheckMarkDimensions', 'BringWindowToTop', 'UpdateWindow', 'IsWindowVisible', 'ShowOwnedPopups', 'EqualRect', 'SetForegroundWindow', 'GetForegroundWindow', 'LoadCursorW', 'SetWindowTextW', 'ShowWindow', 'SetRectEmpty', 'SetCursor', 'ReleaseCapture', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'ReuseDDElParam', 'UnpackDDElParam', 'GetClipboardFormatNameA', 'GetClipboardFormatNameW', 'SystemParametersInfoW', 'PtInRect', 'InflateRect', 'GetWindow', 'GetCapture', 'WinHelpW', 'MapWindowPoints', 'DestroyMenu', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'TrackPopupMenu', 'GetSystemMenu', 'PostMessageW', 'DrawTextW', 'KillTimer', 'GetMenuItemInfoW', 'BeginPaint', 'LockWindowUpdate', 'CreateDialogIndirectParamW', 'InvalidateRect', 'GetMessageTime', 'ValidateRect', 'GetTopWindow', 'GetDlgItem', 'GetWindowTextW', 'GetKeyState', 'DestroyWindow', 'GetDlgCtrlID', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'CallWindowProcW', 'RemovePropW', 'DefWindowProcW', 'SetMenu', 'GetMenu', 'GetMessagePos', 'SetWindowLongW', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'MessageBoxW', 'GetWindowLongW', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'GetWindowThreadProcessId', 'TabbedTextOutW', 'SendMessageW', 'IsWindow', 'UnhookWindowsHookEx', 'PeekMessageW', 'PostQuitMessage', 'GetSystemMetrics', 'OpenClipboard', 'GetClassInfoW', 'StringFromCLSID', 'OleInitialize', 'OleCreate', 'CoTaskMemFree', 'VariantInit', 'VariantChangeType', 'VariantClear', 'CreateStdAccessibleObject', 'LresultFromObject', 'DragFinish', 'DragQueryFileW', 'OpenThreadToken', 'RevertToSelf', 'SetThreadToken', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'CopyFileA', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexA', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA', 'CharUpperA'], ['VariantClear', 'SysAllocString', 'SendMessageA', 'SetTimer', 'DialogBoxParamW', 'DialogBoxParamA', 'SetWindowLongA', 'GetWindowLongA', 'SetWindowTextW', 'LoadIconA', 'LoadStringW', 'LoadStringA', 'CharUpperW', 'CharUpperA', 'DestroyWindow', 'EndDialog', 'PostMessageA', 'ShowWindow', 'MessageBoxW', 'GetDlgItem', 'KillTimer', 'SetWindowTextA', 'ShellExecuteExA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'IsBadCodePtr', 'IsBadReadPtr', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'HeapSize', 'GetCurrentProcess', 'TerminateProcess', 'IsBadWritePtr', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'ExitProcess', 'GetVersion', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleA', 'WaitForSingleObject', 'CloseHandle', 'CreateProcessA', 'SetCurrentDirectoryA', 'GetCommandLineW', 'GetVersionExA', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetLastError', 'LoadLibraryA', 'AreFileApisANSI', 'GetModuleFileNameA', 'GetModuleFileNameW', 'LocalFree', 'FormatMessageA', 'FormatMessageW', 'GetWindowsDirectoryA', 'SetFileTime', 'CreateFileW', 'SetLastError', 'SetFileAttributesA', 'RemoveDirectoryA', 'SetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryA', 'CreateDirectoryW', 'DeleteFileA', 'DeleteFileW', 'lstrlenA', 'GetFullPathNameA', 'GetFullPathNameW', 'GetCurrentDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'FindClose', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'CreateFileA', 'GetFileSize', 'SetFilePointer', 'ReadFile', 'WriteFile', 'SetEndOfFile', 'GetStdHandle', 'WaitForMultipleObjects', 'Sleep', 'VirtualAlloc', 'VirtualFree', 'CreateEventA', 'SetEvent', 'ResetEvent', 'InitializeCriticalSection', 'RtlUnwind', 'RaiseException', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'CreateThread', 'GetCurrentThreadId', 'TlsSetValue', 'TlsGetValue', 'ExitThread'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'WNetGetConnectionA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetConsoleAliasExesW', 'EnumTimeFormatsW', 'GetUserDefaultLangID', 'GetCommandLineA', 'GetDriveTypeA', 'InitializeCriticalSection', 'GlobalAlloc', 'IsValidLocale', 'TerminateThread', 'GetThreadSelectorEntry', 'GetCalendarInfoW', 'FormatMessageW', 'GetSystemTimeAdjustment', 'GetVersionExW', 'SetConsoleCP', 'WritePrivateProfileStructW', 'CreateSemaphoreA', 'GetFileAttributesW', 'SetMessageWaitingIndicator', 'IsBadWritePtr', 'GetAtomNameW', 'GetCompressedFileSizeA', 'GetTimeZoneInformation', 'lstrlenW', 'GetFileSizeEx', 'SetThreadLocale', 'FindFirstFileA', 'InterlockedFlushSList', 'GetCurrentDirectoryW', 'BindIoCompletionCallback', 'ReadConsoleOutputCharacterA', 'GetLongPathNameA', 'HeapSize', 'DefineDosDeviceW', 'IsValidCodePage', 'GetFirmwareEnvironmentVariableW', 'EnumSystemCodePagesW', 'SetComputerNameA', 'SetFileTime', 'SetFileAttributesA', 'PrepareTape', 'GetProcessVersion', 'LoadLibraryA', 'OpenMutexA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'OpenEventA', 'HeapLock', 'GetCommMask', 'AddAtomA', 'GetThreadPriority', 'CreateIoCompletionPort', 'WaitCommEvent', 'GetModuleHandleA', 'UpdateResourceW', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'OutputDebugStringA', 'DuplicateHandle', 'SetProcessShutdownParameters', 'CloseHandle', 'MoveFileWithProgressW', 'GetFileInformationByHandle', 'FindNextVolumeA', 'WriteProcessMemory', 'lstrcpyW', 'CreateFileW', 'ReadConsoleW', 'ReadFile', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'OutputDebugStringW', 'FormatMessageA', 'GetPrivateProfileStringW', 'IsBadReadPtr', 'GetCommProperties', 'SleepEx', 'OpenSemaphoreA', 'QueryDosDeviceA', 'OpenJobObjectA', 'InterlockedIncrement', 'WriteConsoleOutputCharacterA', 'GetCPInfo', 'TlsGetValue', 'WritePrivateProfileStructA', 'lstrlenA', 'GetCommModemStatus', 'CreateTimerQueue', 'GetFullPathNameA', 'GetVolumeNameForVolumeMountPointA', 'SetTimerQueueTimer', 'GetFullPathNameW', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLastError', 'HeapFree', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'LCMapStringW', 'GetLocaleInfoW', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetProcessHeap', 'ExitProcess', 'GetModuleHandleExW', 'GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameA', 'WriteFile', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetACP', 'GetOEMCP', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'LoadLibraryExW', 'GetMenuItemInfoW', 'GetMonitorInfoA', 'SetScrollPos', 'DefDlgProcA', 'GetMonitorInfoW', 'mouse_event', 'GetIconInfo', 'QueryServiceConfigW', 'ConvertToAutoInheritPrivateObjectSecurity', 'SetSecurityDescriptorSacl', 'RegisterServiceCtrlHandlerW', 'GetSidLengthRequired', 'RegOpenKeyExW', 'RegConnectRegistryW', 'CreatePrivateObjectSecurity', 'NotifyChangeEventLog', 'StartServiceA', 'RegSaveKeyW', 'ObjectDeleteAuditAlarmW', 'RegDeleteKeyA', 'CreateServiceA', 'RegQueryValueExA', 'AccessCheckByTypeResultListAndAuditAlarmA', 'EnumServicesStatusA', 'RegisterEventSourceA', 'InitiateSystemShutdownW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', 'strcpy', 'wsprintfA'], ['GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleW', 'GetNumberOfConsoleInputEvents', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcessHeap', 'GetProcessTimes', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetThreadLocale', 'GetTickCount', 'GetTimeFormatA', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalFree', 'GlobalGetAtomNameW', 'GlobalHandle', 'GlobalLock', 'GlobalMemoryStatusEx', 'GlobalReAlloc', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsBadReadPtr', 'IsBadWritePtr', 'IsDebuggerPresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'GetLocaleInfoW', 'LocalFree', 'LocalReAlloc', 'LockFile', 'LockResource', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'PeekNamedPipe', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'ResumeThread', 'RtlUnwind', 'SetCommBreak', 'SetConsoleCtrlHandler', 'SetConsoleDisplayMode', 'SetDefaultCommConfigA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetFilePointerEx', 'SetFileTime', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'SizeofResource', 'Sleep', 'SuspendThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnlockFile', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleOutputCharacterW', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', 'WriteProcessMemory', 'lstrcmpA', 'lstrcmpW', 'lstrcmpiW', 'lstrlenA', 'lstrlenW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileType', 'GetFileTime', 'GetFileSizeEx', 'GetFileSize', 'GetFileAttributesW', 'GetFileAttributesExW', 'GetExitCodeProcess', 'GetEnvironmentStringsW', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetComputerNameW', 'GetCommandLineW', 'GetCPInfo', 'GetBinaryTypeW', 'GetAtomNameW', 'GetACP', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FlushInstructionCache', 'FlushFileBuffers', 'FindResourceW', 'FindResourceExW', 'FindFirstFileW', 'FindClose', 'FindAtomW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FatalAppExitA', 'ExpandEnvironmentStringsW', 'ExitThread', 'ExitProcess', 'EnumSystemLocalesA', 'EnumSystemLanguageGroupsA', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DuplicateHandle', 'DisableThreadLibraryCalls', 'DeviceIoControl', 'DeleteFileW', 'DeleteCriticalSection', 'DeleteAtom', 'CreateToolhelp32Snapshot', 'CreateThread', 'CreateProcessW', 'CreatePipe', 'CreateMutexW', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateDirectoryA', 'CopyFileW', 'ConvertDefaultLocale', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'CallNamedPipeA', 'AddAtomW', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'LocalFileTimeToFileTime', 'VirtualAlloc', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadIconW', 'LoadMenuIndirectW', 'LoadMenuW', 'LoadStringW', 'LockWindowUpdate', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBoxW', 'ModifyMenuW', 'MoveWindow', 'OffsetRect', 'PaintDesktop', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RealChildWindowFromPoint', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ReplyMessage', 'ReuseDDElParam', 'ScreenToClient', 'ScrollWindow', 'ScrollWindowEx', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageA', 'SendMessageTimeoutA', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetCursor', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetParent', 'SetPropW', 'SetRect', 'SetRectEmpty', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookA', 'SetWindowsHookExW', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TrackPopupMenuEx', 'TranslateAcceleratorW', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnpackDDElParam', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WaitMessage', 'WinHelpW', 'WindowFromPoint', 'wsprintfW', 'KillTimer', 'IsWindowVisible', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDlgButtonChecked', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuW', 'InsertMenuItemW', 'InsertMenuItemA', 'InflateRect', 'IMPQueryIMEW', 'GrayStringW', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowTextLengthW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetWindow', 'GetUserObjectInformationA', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetNextDlgTabItem', 'GetMessageW', 'GetMessageTime', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenuBarInfo', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetGuiResources', 'GetFocus', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetDialogBaseUnits', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClipboardFormatNameA', 'GetClientRect', 'GetClassNameW', 'GetClassNameA', 'GetClassLongW', 'GetClassInfoW', 'GetClassInfoExW', 'GetCapture', 'FlashWindowEx', 'FlashWindow', 'FillRect', 'EqualRect', 'EnumDisplaySettingsExW', 'EndPaint', 'EndDialog', 'EndDeferWindowPos', 'EnableWindow', 'EnableMenuItem', 'DrawTextW', 'DrawTextExW', 'DlgDirListComboBoxA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyAcceleratorTable', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcW', 'DdeReconnect', 'DdeQueryStringW', 'CreateWindowExW', 'CreatePopupMenu', 'CreateMDIWindowA', 'CreateDialogIndirectParamW', 'CopyRect', 'CloseDesktop', 'ClientToScreen', 'CheckRadioButton', 'CheckMenuItem', 'CheckDlgButton', 'CharUpperW', 'ChangeDisplaySettingsExW', 'CascadeChildWindows', 'CallWindowProcW', 'CallNextHookEx', 'BringWindowToTop', 'BlockInput', 'BeginPaint', 'BeginDeferWindowPos', 'AppendMenuW', 'LoadCursorW', 'GetParent', 'IsCharAlphaNumericA', 'InSendMessage', 'CloseWindowStation', 'IsWindowEnabled', 'CreateMenu', 'DestroyCursor', 'GetDlgCtrlID', 'GetListBoxInfo', 'GetAsyncKeyState', 'IsGUIThread', 'GetOpenClipboardWindow', 'IsClipboardFormatAvailable', 'GetMessagePos', 'EnumClipboardFormats', 'GetActiveWindow', 'GetForegroundWindow', 'AdjustWindowRectEx', 'GetDCEx', 'bInitSystemAndFontsDirectoriesW', 'StretchBlt', 'SetWinMetaFileBits', 'SelectObject', 'STROBJ_bEnum', 'ModifyWorldTransform', 'HT_Get8BPPFormatPalette', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetRandomRgn', 'GetPixel', 'GetNearestColor', 'GetGlyphIndicesA', 'GetEnhMetaFileDescriptionA', 'GetDIBColorTable', 'GetCurrentObject', 'GetCharWidthI', 'GetCharWidth32W', 'GetBrushOrgEx', 'GdiPrinterThunk', 'GdiPlayJournal', 'GdiGetDC', 'GdiEntry10', 'GdiConsoleTextOut', 'FONTOBJ_vGetInfo', 'EnumFontFamiliesW', 'EnumFontFamiliesA', 'EngUnlockSurface', 'EngQueryEMFInfo', 'EngGradientFill', 'CreateMetaFileW', 'CreateColorSpaceW', 'CreateColorSpaceA', 'CreateBitmap', 'CloseFigure', 'CLIPOBJ_cEnumStart', 'CloseEnhMetaFile', 'GetEnhMetaFileA', 'GetSystemPaletteUse', 'UnrealizeObject', 'CreatePatternBrush', 'AbortDoc', 'GetTextCharacterExtra', 'GetBkColor', 'SaveDC', 'GdiFlush', 'EndPage', 'AddFontResourceW', 'GetFileTitleW', 'GetTokenInformation', 'GetLengthSid', 'LookupAccountSidW', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyExW', 'RegCreateKeyW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyExW', 'RegEnumKeyW', 'RegOpenKeyExW', 'RegOpenKeyW', 'RegQueryValueExA', 'RegQueryValueExW', 'RegQueryValueW', 'RegSetValueExW', 'RegSetValueW', 'SetTokenInformation', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'ConvertStringSidToSidW', 'RegOpenKeyA', 'Shell_NotifyIconA', 'ShellHookProc', 'ShellExecuteW', 'ShellExecuteExW', 'ShellExecuteEx', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHIsFileAvailableOffline', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderPathA', 'SHGetPathFromIDList', 'SHGetMalloc', 'SHGetInstanceExplorer', 'SHGetIconOverlayIndexW', 'SHGetFolderPathW', 'SHGetFolderLocation', 'SHGetFileInfoW', 'SHGetDiskFreeSpaceExA', 'SHGetDiskFreeSpaceA', 'SHGetDesktopFolder', 'SHGetDataFromIDListA', 'SHEmptyRecycleBinW', 'SHCreateDirectoryExW', 'SHCreateDirectoryExA', 'SHBrowseForFolderW', 'SHBrowseForFolderA', 'ExtractIconW', 'ExtractAssociatedIconExA', 'ExtractAssociatedIconA', 'DragQueryPoint', 'DragQueryFileW', 'DragQueryFileAorW', 'DragQueryFile', 'DragFinish', 'DragAcceptFiles', 'WriteFmtUserTypeStg', 'StringFromGUID2', 'StringFromCLSID', 'SetConvertStg', 'ReleaseStgMedium', 'ReadFmtUserTypeStg', 'ReadClassStg', 'OleRegGetUserType', 'OleDuplicateData', 'CreateBindCtx', 'CoUninitialize', 'CoTreatAsClass', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitializeSecurity', 'CoInitializeEx', 'CoInitialize', 'CoDisconnectObject', 'CoCreateInstance', 'CLSIDFromString', 'WriteClassStg', 'PathAddBackslashW', 'PathAppendW', 'PathFileExistsW', 'PathFindExtensionW', 'PathFindFileNameW', 'PathIsUNCW', 'PathRemoveExtensionW', 'PathRemoveFileSpecW', 'PathStripToRootW', 'SHGetValueW', 'StrChrIA', 'StrChrIW', 'StrCmpIW', 'StrCmpNA', 'StrCmpNIA', 'StrCmpNIW', 'StrRChrA', 'StrRChrIA', 'StrStrIW'], ['SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'GetFileAttributesExA', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'WriteFile', 'LoadLibraryW', 'GetProcessHandleCount', 'SetConsoleMode', 'GetModuleFileNameW', 'GetBinaryTypeW', 'SetConsoleTitleA', 'CreateJobObjectA', 'InterlockedExchange', 'GetCurrentProcess', 'GetLastError', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'GetPrivateProfileStringA', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'GetShortPathNameW', 'SetFileAttributesW', 'lstrcpynA', 'FreeLibrary', 'GetCPInfoExW', 'GetConsoleAliasesLengthW', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['GetACP', 'GetExitCodeProcess', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'HeapDestroy', 'ReadFile', 'CreateProcessW', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LoadLibraryA', 'ResetEvent', 'GetVersion', 'RaiseException', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'GetSystemDirectoryW', 'DeleteFileW', 'GetLocalTime', 'GetEnvironmentVariableW', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'GetUserDefaultLangID', 'RemoveDirectoryW', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'InitCommonControls', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CreateWindowExW', 'TranslateMessage', 'CharLowerBuffW', 'CallWindowProcW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'SetWindowLongW', 'MessageBoxW', 'DestroyWindow', 'CharUpperBuffW', 'CharNextW', 'MsgWaitForMultipleObjects', 'LoadStringW', 'ExitWindowsEx', 'DispatchMessageW', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegCloseKey', 'OpenProcessToken', 'RegOpenKeyExW'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'GetVersionExA', 'FreeResource', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetModuleHandleA', 'GetPrivateProfileIntA', 'WriteProfileStringW', 'GetLastError', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA'], ['QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'DisableThreadLibraryCalls', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameW', '__stdio_common_vfprintf', 'InitCommonControlsEx', 'free', 'srand', '_register_onexit_function', '_lock_file', '__current_exception_context', '__setusermatherr', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '_time64', '_configthreadlocale', 'accept', 'PathMakeUniqueName'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['InitializeCriticalSectionEx', 'lstrlenA', 'lstrcatA', 'GetModuleHandleA', 'SetCurrentDirectoryA', 'Sleep', 'GetModuleHandleExA', 'GetFileAttributesA', 'GetBinaryTypeA', 'QueryFullProcessImageNameA', 'GetSystemDirectoryA', 'GlobalAlloc', 'lstrcpyA', 'SetFileAttributesA', 'VerSetConditionMask', 'WideCharToMultiByte', 'VerifyVersionInfoW', 'GetSystemTimeAsFileTime', 'HeapFree', 'HeapAlloc', 'GetProcAddress', 'lstrcpynA', 'GetProcessHeap', 'AreFileApisANSI', 'TryEnterCriticalSection', 'HeapCreate', 'EnterCriticalSection', 'GetFullPathNameW', 'GetDiskFreeSpaceW', 'OutputDebugStringA', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetFullPathNameA', 'SetEndOfFile', 'FindClose', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'GetFileAttributesW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'MultiByteToWideChar', 'GetTempPathA', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesExW', 'OutputDebugStringW', 'FlushViewOfFile', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'GetSystemInfo', 'LoadLibraryW', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'LocalFree', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'SystemTimeToFileTime', 'FreeLibrary', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'WriteConsoleW', 'CloseHandle', 'CreateFileA', 'GetLastError', 'CreateFileW', 'SetFilePointer', 'WriteFile', 'UnlockFileEx', 'ReadFile', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'InitializeSListHead', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStartupInfoW', 'CreateDirectoryW', 'FindFirstFileExW', 'FindNextFileW', 'SetFilePointerEx', 'GetFileInformationByHandleEx', 'QueryPerformanceFrequency', 'LCMapStringEx', 'EncodePointer', 'DecodePointer', 'GetCPInfo', 'GetStringTypeW', 'SetLastError', 'GetCurrentThread', 'GetThreadTimes', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetFileType', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'GetStdHandle', 'GetConsoleMode', 'ReadConsoleW', 'GetConsoleOutputCP', 'SetStdHandle', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileSizeEx', 'GetTimeZoneInformation', 'IsValidCodePage', 'GetACP', 'RtlUnwind', 'CharNextA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'OpenProcessToken', 'RegOpenKeyExA', 'GetTokenInformation', 'CryptReleaseContext', 'ShellExecuteA', 'CoCreateInstance', 'CoInitializeEx', 'CoUninitialize', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'CreateEventA', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Thread32First', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'WriteProcessMemory', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'GetCurrentThread', 'SetThreadAffinityMask', 'Sleep', 'LoadLibraryA', 'FreeLibrary', 'GetTickCount', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GlobalFree', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleW', 'LoadResource', 'MultiByteToWideChar', 'FindResourceExW', 'FindResourceExA', 'WideCharToMultiByte', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'CreateFileW', 'LoadLibraryW', 'GetLastError', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'HeapReAlloc', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'HeapFree', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'EncodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'DecodePointer', 'HeapAlloc', 'RtlUnwindEx', 'LCMapStringW', 'GetStringTypeW', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'HeapSize', 'WriteFile', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'CharUpperBuffW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['QueryPerformanceCounter', 'GetStringTypeW', 'GetCPInfo', 'GetACP', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetTimeZoneInformation', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'WriteConsoleW', 'SetEnvironmentVariableA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetFileType', 'SetStdHandle', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'GetSystemTimeAsFileTime', 'ExitProcess', 'HeapQueryInformation', 'HeapSize', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'EncodePointer', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'FindResourceExW', 'SearchPathW', 'GetProfileIntW', 'GetTickCount', 'GetNumberFormatW', 'GetWindowsDirectoryW', 'GetTempFileNameW', 'GetCurrentDirectoryW', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'lstrcpyW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'InterlockedExchange', 'HeapCreate', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileW', 'lstrcmpiW', 'GlobalFlags', 'FreeResource', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryW', 'lstrcmpW', 'FileTimeToSystemTime', 'lstrlenA', 'lstrcmpA', 'GlobalGetAtomNameW', 'CompareStringW', 'InterlockedIncrement', 'GetProcAddress', 'WaitForSingleObject', 'GetCurrentThreadId', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'MultiByteToWideChar', 'CopyFileW', 'GlobalSize', 'FormatMessageW', 'MulDiv', 'lstrlenW', 'WideCharToMultiByte', 'GetCurrentProcessId', 'FreeLibrary', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedDecrement', 'ActivateActCtx', 'ReleaseActCtx', 'DeactivateActCtx', 'TlsFree', 'GlobalFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalAlloc', 'GlobalHandle', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalLock', 'TlsGetValue', 'LeaveCriticalSection', 'LocalFree', 'LocalAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFullPathNameW', 'FreeEnvironmentStringsW', 'GetLastError', 'SetLastError', 'GetOEMCP', 'VirtualProtect', 'EnterCriticalSection', 'GetTempPathW', 'GetModuleFileNameW', 'Sleep', 'GetSystemDirectoryW', 'InitializeCriticalSection', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'LoadLibraryA', 'SetPixelV', 'GetTextFaceW', 'SetPaletteEntries', 'ExtFloodFill', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'PtInRegion', 'GetViewportOrgEx', 'GetWindowOrgEx', 'LPtoDP', 'EnumFontFamiliesExW', 'Rectangle', 'SetPixel', 'StretchBlt', 'SetDIBColorTable', 'GetRgnBox', 'OffsetRgn', 'GetSystemPaletteEntries', 'RealizePalette', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'CreatePalette', 'Polygon', 'Ellipse', 'Polyline', 'CreateEllipticRgn', 'GetTextColor', 'GetBkColor', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'CreateDIBSection', 'DPtoLP', 'PatBlt', 'CombineRgn', 'SetRectRgn', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'GetTextMetricsW', 'CreateRectRgnIndirect', 'CreateCompatibleBitmap', 'CreateDIBitmap', 'CreateHatchBrush', 'CreateSolidBrush', 'CreatePen', 'Escape', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'RectVisible', 'PtVisible', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32W', 'ExtTextOutW', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'CreateBitmap', 'CreateDCW', 'CopyMetaFileW', 'GetDeviceCaps', 'TextOutW', 'RemovePropW', 'GetPropW', 'SetPropW', 'GetClassNameW', 'GetClassLongW', 'GetCapture', 'IsChild', 'WinHelpW', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'LoadIconW', 'RegisterWindowMessageW', 'CheckDlgButton', 'IsDialogMessageW', 'SetWindowTextW', 'MoveWindow', 'ShowWindow', 'ClientToScreen', 'RealChildWindowFromPoint', 'GetDesktopWindow', 'DestroyIcon', 'CharUpperW', 'InflateRect', 'GetMenuItemInfoW', 'DestroyMenu', 'SystemParametersInfoW', 'FillRect', 'TabbedTextOutW', 'DrawTextExW', 'GrayStringW', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'PostQuitMessage', 'CopyImage', 'SetRectEmpty', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'IsIconic', 'InvalidateRect', 'IntersectRect', 'SetCursor', 'ShowOwnedPopups', 'DeleteMenu', 'SetTimer', 'KillTimer', 'IsRectEmpty', 'OffsetRect', 'IsZoomed', 'SetWindowRgn', 'SetParent', 'DestroyAcceleratorTable', 'CreatePopupMenu', 'WindowFromPoint', 'NotifyWinEvent', 'GetAsyncKeyState', 'SetClassLongW', 'LoadMenuW', 'GetSystemMenu', 'SetCapture', 'ReleaseCapture', 'MessageBeep', 'DrawStateW', 'DrawIconEx', 'DrawEdge', 'DrawFrameControl', 'DrawFocusRect', 'CopyAcceleratorTableW', 'ToUnicodeEx', 'MapVirtualKeyW', 'GetKeyboardLayout', 'GetKeyboardState', 'LoadAcceleratorsW', 'CreateAcceleratorTableW', 'SetRect', 'GetScrollPos', 'BringWindowToTop', 'LockWindowUpdate', 'GetMenuDefaultItem', 'IsWindow', 'HideCaret', 'EnableScrollBar', 'GetNextDlgTabItem', 'GetIconInfo', 'LoadImageW', 'GetNextDlgGroupItem', 'EndDialog', 'CreateDialogIndirectParamW', 'TranslateAcceleratorW', 'InsertMenuItemW', 'ReuseDDElParam', 'UnpackDDElParam', 'DefFrameProcW', 'DefMDIChildProcW', 'DrawMenuBar', 'TranslateMDISysAccel', 'MonitorFromPoint', 'UnionRect', 'UpdateLayeredWindow', 'IsMenu', 'CreateMenu', 'PostThreadMessageW', 'WaitMessage', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'FrameRect', 'GetUpdateRect', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'RegisterClipboardFormatW', 'CopyIcon', 'CharUpperBuffW', 'GetDoubleClickTime', 'IsCharLowerW', 'GetKeyNameTextW', 'MapVirtualKeyExW', 'SubtractRect', 'MapDialogRect', 'DrawIcon', 'DestroyCursor', 'GetWindowRgn', 'SetWindowPlacement', 'DefWindowProcW', 'ReleaseDC', 'GetWindowLongW', 'GetClassInfoExW', 'SetForegroundWindow', 'ShowScrollBar', 'RedrawWindow', 'UpdateWindow', 'ValidateRect', 'GetMenuState', 'GetMenuStringW', 'AppendMenuW', 'GetMenuItemID', 'InsertMenuW', 'GetMenuItemCount', 'GetSubMenu', 'SetFocus', 'GetForegroundWindow', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoW', 'MapWindowPoints', 'ScrollWindow', 'GetClientRect', 'PostMessageW', 'CreateWindowExW', 'EnumWindows', 'CallNextHookEx', 'DrawTextW', 'GetClassInfoW', 'RegisterClassW', 'UnhookWindowsHookEx', 'MessageBoxW', 'EnableWindow', 'IsWindowEnabled', 'GetLastActivePopup', 'GetParent', 'SendMessageW', 'GetWindowThreadProcessId', 'RemoveMenu', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'InvertRect', 'SetScrollPos', 'AdjustWindowRectEx', 'GetWindowRect', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'GetCursorPos', 'GetWindowPlacement', 'GetDlgCtrlID', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'SetWindowPos', 'CopyRect', 'PtInRect', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'EnableMenuItem', 'CheckMenuItem', 'GetWindowTextLengthW', 'GetWindowTextW', 'LoadCursorW', 'GetSystemMetrics', 'GetDC', 'GetSysColor', 'GetSysColorBrush', 'SetWindowsHookExW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'SetCursorPos', 'PeekMessageW', 'PropertySheetW', 'CreateStatusWindowW', 'CreatePropertySheetPageW', 'ImageList_GetIconSize', 'GetFileTitleW', 'GetSaveFileNameW', 'ReplaceTextW', 'GetOpenFileNameW', 'VariantClear', 'VariantChangeType', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysStringLen', 'SysAllocStringLen', 'VarBstrFromDate', 'VariantInit', 'SysAllocString', 'SysFreeString', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'LresultFromObject', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'SHAppBarMessage', 'SHGetFileInfoW', 'SHGetDesktopFolder', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderW', 'DragQueryFileW', 'DragFinish', 'ShellExecuteW', 'DoDragDrop', 'CreateStreamOnHGlobal', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'OleGetClipboard', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'CoInitializeEx', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'PathRemoveFileSpecW', 'PathFindExtensionW', 'PathIsUNCW', 'PathStripToRootW', 'PathFindFileNameW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegDeleteValueW', 'RegCloseKey', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegQueryValueExW', 'TransparentBlt', 'AlphaBlend', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext'], ['SetVolumeLabelA', 'SetupComm', 'SetPriorityClass', 'IsBadStringPtrW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetNumaProcessorNode', 'GetDefaultCommConfigW', 'GetProcessIoCounters', 'SetConsoleScreenBufferSize', 'FlushViewOfFile', 'FindFirstFileExW', 'ConnectNamedPipe', 'GetTickCount', 'GetWindowsDirectoryA', 'WideCharToMultiByte', 'GetThreadSelectorEntry', '_hread', 'SizeofResource', 'GetMailslotInfo', 'GetEnvironmentVariableA', 'CompareStringW', 'HeapReAlloc', 'GetProcAddress', 'GetLongPathNameA', 'EnumDateFormatsExA', 'EnumSystemCodePagesW', 'SetFileApisToOEM', 'GetAtomNameA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'GetExitCodeThread', 'GetModuleFileNameA', 'CreateIoCompletionPort', '_lread', 'VirtualProtect', 'SetCalendarInfoA', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'ResetWriteWatch', 'FindNextVolumeA', 'GetLastError', 'GetFullPathNameW', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'CloseHandle', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'HeapSize', 'GetCaretPos', 'RegisterEventSourceW'], ['RtlUnwindEx', 'RtlPcToFileHeader', 'RtlCaptureContext', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlUnwind', 'LoadLibraryExW', 'CreateFileW', 'HeapSize', 'GetTimeZoneInformation', 'LoadLibraryA', 'GetProcAddress', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'FormatMessageA', 'EncodePointer', 'DecodePointer', 'LocalFree', 'GetLocaleInfoEx', 'InitializeCriticalSectionEx', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'HeapReAlloc', 'ReadConsoleW', 'SetFilePointerEx', 'GetFileSizeEx', 'RaiseException', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'WriteConsoleW', 'GetCurrentProcess', 'TerminateProcess', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetTempPathW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetProcessHeap', 'GetFileType', 'SetConsoleCtrlHandler', 'OutputDebugStringW', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'GetModuleHandleA', 'RegOpenKeyExA', 'RegEnumKeyA', 'FreeSid', 'WriteFile', 'Sleep', 'LocalFree', 'LoadLibraryExW', 'LoadLibraryA', 'GlobalUnlock', 'GlobalLock', 'GetTickCount', 'GetSystemInfo', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetFileAttributesW', 'GetCurrentProcessId', 'GetCurrentProcess', 'FreeLibrary', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'DeleteFileW', 'CreateDirectoryW', 'CopyFileW', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'ReleaseDC', 'GetSystemMetrics', 'GetDC', 'CharToOemBuffA', 'OleInitialize', 'CoCreateInstance'], ['htons', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'bind', 'WSAIoctl', 'closesocket', 'WSASend', 'shutdown', 'listen', 'WSASocketW', 'getpeername', 'getsockname', 'socket', 'WSARecv', 'getsockopt', 'ioctlsocket', 'setsockopt', 'FreeAddrInfoW', 'GetAddrInfoW', 'gethostname', 'htonl', 'WSAGetLastError', 'ntohs', 'GetProcessMemoryInfo', 'GetAdaptersAddresses', 'GetConsoleCP', 'SetStdHandle', 'GetFileAttributesExW', 'ExitProcess', 'GetCommandLineW', 'GetCommandLineA', 'SetFileAttributesW', 'ExitThread', 'GetModuleHandleExW', 'GetDriveTypeW', 'RaiseException', 'RtlPcToFileHeader', 'SetConsoleTitleA', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'CreateMutexW', 'GetLastError', 'CloseHandle', 'MultiByteToWideChar', 'SetPriorityClass', 'GetCurrentProcess', 'SetThreadPriority', 'GetCurrentThread', 'GetProcAddress', 'GetModuleHandleW', 'FreeConsole', 'GetConsoleWindow', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetLargePageMinimum', 'LocalAlloc', 'LocalFree', 'FlushInstructionCache', 'GetFileType', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'PostQueuedCompletionStatus', 'QueueUserWorkItem', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'WideCharToMultiByte', 'SetConsoleCursorPosition', 'CreateDirectoryW', 'ReadFile', 'GetFileInformationByHandleEx', 'FindFirstFileW', 'GetFileSizeEx', 'SetLastError', 'FindNextFileW', 'WriteFile', 'GetDiskFreeSpaceW', 'DeviceIoControl', 'RemoveDirectoryW', 'GetFinalPathNameByHandleW', 'SetFileTime', 'ReOpenFile', 'CreateHardLinkW', 'FindClose', 'GetFileAttributesW', 'UnmapViewOfFile', 'GetFileInformationByHandle', 'FlushViewOfFile', 'GetSystemInfo', 'SetFilePointerEx', 'CreateFileMappingA', 'MoveFileExW', 'CopyFileW', 'CreateSymbolicLinkW', 'GetSystemTimeAsFileTime', 'MapViewOfFile', 'SystemTimeToTzSpecificLocalTime', 'GetLongPathNameW', 'GetShortPathNameW', 'GetCurrentDirectoryW', 'ReadDirectoryChangesW', 'CreateIoCompletionPort', 'VerifyVersionInfoA', 'EnterCriticalSection', 'GetModuleFileNameW', 'SetEnvironmentVariableW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetVersionExW', 'FreeEnvironmentStringsW', 'FileTimeToSystemTime', 'QueryPerformanceFrequency', 'VerSetConditionMask', 'GetCurrentProcessId', 'GlobalMemoryStatusEx', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'SetConsoleCtrlHandler', 'Sleep', 'CancelIo', 'SetHandleInformation', 'CreateEventA', 'RtlUnwind', 'SetErrorMode', 'GetQueuedCompletionStatus', 'GetQueuedCompletionStatusEx', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'WaitForSingleObject', 'CancelSynchronousIo', 'GetNamedPipeHandleStateA', 'CancelIoEx', 'SwitchToThread', 'DeleteCriticalSection', 'ConnectNamedPipe', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'SleepConditionVariableCS', 'TryEnterCriticalSection', 'TlsSetValue', 'ReleaseSemaphore', 'WakeConditionVariable', 'InitializeConditionVariable', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'GetNativeSystemInfo', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'GetModuleHandleA', 'LoadLibraryA', 'FormatMessageA', 'DebugBreak', 'GetStartupInfoW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'RtlUnwindEx', 'LoadLibraryW', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'LoadLibraryExW', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetTimeZoneInformation', 'HeapSize', 'GetFullPathNameW', 'SetEndOfFile', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetProcessHeap', 'FlushFileBuffers', 'SetFileCompletionNotificationModes', 'GetCurrentThreadId', 'WaitForSingleObjectEx', 'GetExitCodeThread', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetTickCount', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'ResetEvent', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateTimerQueue', 'SignalObjectAndWait', 'CreateThread', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'GetMessageA', 'TranslateMessage', 'ShowWindow', 'GetSystemMetrics', 'DispatchMessageA', 'MapVirtualKeyW', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['DecodePointer', 'DeleteCriticalSection', 'GetTickCount', 'AcquireSRWLockExclusive', 'AssignProcessToJobObject', 'CompareStringW', 'ConnectNamedPipe', 'CreateDirectoryW', 'CreateEventW', 'CreateFileMappingW', 'CreateFileW', 'CreateIoCompletionPort', 'CreateJobObjectW', 'CreateMutexW', 'CreateNamedPipeW', 'CreateProcessW', 'CreateRemoteThread', 'CreateSemaphoreW', 'DebugBreak', 'DeleteFileW', 'DisconnectNamedPipe', 'DuplicateHandle', 'EncodePointer', 'EnterCriticalSection', 'EnumSystemLocalesEx', 'EnumSystemLocalesW', 'ExitProcess', 'ExpandEnvironmentStringsW', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetComputerNameExW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDateFormatW', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetExitCodeProcess', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileInformationByHandleEx', 'GetFileSizeEx', 'GetFileType', 'GetFullPathNameW', 'GetLocalTime', 'GetLocaleInfoW', 'GetLongPathNameW', 'CreateThread', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetNativeSystemInfo', 'GetOEMCP', 'GetProcAddress', 'GetProcessHandleCount', 'GetProcessHeaps', 'GetProcessId', 'GetProcessTimes', 'GetQueuedCompletionStatus', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemDefaultLCID', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetThreadContext', 'GetThreadId', 'GetThreadLocale', 'GetThreadPriority', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultLangID', 'GetUserDefaultLocaleName', 'GetModuleFileNameA', 'SizeofResource', 'VirtualProtect', 'SetLastError', 'VirtualAlloc', 'LoadLibraryExA', 'LeaveCriticalSection', 'FindResourceA', 'Sleep', 'IsDBCSLeadByte', 'LoadResource', 'WideCharToMultiByte', 'lstrcmpiA', 'GetConsoleOutputCP', 'SetFilePointerEx', 'SetStdHandle', 'IsValidCodePage', 'HeapReAlloc', 'HeapSize', 'LCMapStringW', 'WriteFile', 'VirtualQuery', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'CloseHandle', 'GetLastError', 'MultiByteToWideChar', 'GetCurrentThreadId', 'InitializeCriticalSectionEx', 'GetModuleFileNameW', 'RtlUnwind', 'QueryPerformanceCounter', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeSListHead', 'GetProcessHeap', 'HeapFree', 'IsDebuggerPresent', 'OutputDebugStringW', 'HeapAlloc', 'WriteConsoleW', 'CharNextA', 'MessageBoxA', 'RegQueryInfoKeyW', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegCloseKey', 'CoCreateInstance', 'CoTaskMemFree', 'CoTaskMemRealloc', 'CoTaskMemAlloc', 'VarUI4FromStr'], ['GetCommState', 'WaitNamedPipeA', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'GetStringTypeExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'SetStdHandle', 'SearchPathA', 'MoveFileExW', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'CommConfigDialogW', 'DeleteFileA', 'VerSetConditionMask', 'InterlockedIncrement', 'FindResourceExW', 'DeleteVolumeMountPointA', 'LoadLibraryA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'GetTextExtentExPointW', 'GetCharacterPlacementA', 'MapGenericMask', 'GetEventLogInformation', 'OleQueryLinkFromData'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'GetUserNameA', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'FreeSid', 'EqualSid', 'AllocateAndInitializeSid', 'CryptGenRandom', 'CryptReleaseContext', 'CryptAcquireContextW', 'MessageBoxA', 'CharNextW', 'LoadStringW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsDBCSLeadByteEx', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetConsoleCP', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetFileType', 'GetFileSize', 'CreateFileW', 'GetStdHandle', 'CloseHandle', 'LoadLibraryA', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQueryEx', 'VirtualProtect', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SuspendThread', 'SizeofResource', 'SetThreadPriority', 'SetLastError', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OpenMutexW', 'MoveFileExW', 'LockResource', 'LoadResource', 'LoadLibraryW', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetUserDefaultLangID', 'GetUserDefaultLCID', 'GetThreadTimes', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemTimes', 'GetSystemDefaultLangID', 'GetSystemDefaultLCID', 'GetProcessTimes', 'GetLocalTime', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfoExW', 'GetCPInfo', 'FreeResource', 'InterlockedCompareExchange', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'ExpandEnvironmentStringsW', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'DeleteFileW', 'CreateProcessW', 'CreateMutexW', 'CreateEventW', 'CoUninitialize', 'CoInitialize', 'SHGetSpecialFolderPathW', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'inet_ntoa', 'NetShareEnum', 'NetApiBufferFree'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'BackupWrite', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'InterlockedIncrement', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['CreateFileA', 'DeleteFileA', 'LockFile', 'UnlockFile', 'WriteFile', 'CloseHandle', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'GetModuleFileNameA', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'ConvertThreadToFiber', 'CreateFileMappingA', 'GetCurrentActCtx'], ['lstrlenA', 'UnmapViewOfFile', 'WriteConsoleOutputCharacterA', 'BuildCommDCBAndTimeoutsA', 'LoadResource', 'HeapAlloc', '_lwrite', 'GetQueuedCompletionStatus', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'FindFirstFileExW', 'ConnectNamedPipe', 'GetTickCount', 'GetPriorityClass', 'GlobalAlloc', 'LoadLibraryW', '_hread', 'GetSystemWindowsDirectoryA', 'SetupComm', 'GetModuleFileNameW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'DisconnectNamedPipe', 'GetLastError', 'GetLongPathNameW', 'GetProcAddress', 'GetNumaHighestNodeNumber', 'GetAtomNameA', 'ProcessIdToSessionId', 'FindFirstVolumeMountPointW', 'SetProcessWorkingSetSize', 'GetCurrentProcessId', 'ResetWriteWatch', 'OpenFileMappingA', 'FindNextVolumeA', 'CloseHandle', 'WriteConsoleW', 'GetEnvironmentVariableW', 'GetMailslotInfo', 'GetFullPathNameA', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'SetFilePointer', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'CreateFileW', 'GetCaretPos', 'RegQueryValueExA', 'RegEnumKeyA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', '_dup'], ['CryptDecrypt', 'CryptImportKey', 'CryptAcquireContextA', 'memcpy', '_wcslwr', 'wcsrchr', 'memset', 'RtlUnwind', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetSystemTimeAsFileTime', 'ExpandEnvironmentStringsW', 'CreateThread', 'GetLastError', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualProtect', 'GetProcAddress', 'ReadFile', 'GetFileSize', 'CreateFileW', 'LoadLibraryW', 'Sleep', 'free', 'malloc', '_XcptFilter', '_initterm', '_amsg_exit', '_adjust_fdiv'], ['SetEvent', 'MultiByteToWideChar', 'FreeConsole', 'GetModuleHandleA', 'GetProcAddress', 'GetFileInformationByHandle', 'GetVersion', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetNextDlgTabItem', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['GetCommandLineW', 'GetCPInfo', 'CreateProcessW', 'HeapAlloc', 'GetCurrentProcess', 'SetEvent', 'GetProcessHeap', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetSystemPowerState', 'LocalAlloc', 'RemoveDirectoryW', 'VirtualProtect', 'LocalFree', 'SetFileAttributesW', 'CreateThread', 'CreateFileW', 'HeapSize', 'SetEndOfFile', 'LCMapStringW', 'IsProcessorFeaturePresent', 'WriteConsoleW', 'GetModuleFileNameW', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'EncodePointer', 'RtlUnwind', 'MultiByteToWideChar', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'GetProcAddress', 'SetFilePointer', 'HeapFree', 'CloseHandle', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'ReadFile', 'GetStringTypeW', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'UnhookWinEvent', 'SetWinEventHook', 'CoUninitialize', 'CoSuspendClassObjects', 'CoInitialize', 'OleCreate', 'StgCreateDocfile', 'GetOleaccVersionInfo', 'WindowFromAccessibleObject', 'AccessibleObjectFromEvent'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'SetDllDirectoryW', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'CopyFileA', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperW'], ['ReportEventA', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'CoInitialize', 'ShellExecuteW', 'MessageBoxA'], ['GetLocalTime', 'GetTickCount', 'GetTimeZoneInformation', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'GetVolumeInformationA', 'GetVersion', 'GetFullPathNameA', 'SetCurrentDirectoryA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'lstrlenA', 'IsBadWritePtr', 'lstrcpyA', 'GetDriveTypeA', 'GetLastError', 'SetLastError', 'GetEnvironmentVariableA', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetDiskFreeSpaceA', 'SetErrorMode', 'MoveFileA', 'SetFileAttributesA', 'CloseHandle', 'SetFileTime', 'CreateFileA', 'GetFileAttributesA', 'SystemTimeToFileTime', 'ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetCurrentProcessId', 'InterlockedExchange', 'Sleep', 'GetCurrentThreadId', 'InterlockedCompareExchange', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DisableThreadLibraryCalls', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'CoInitialize', 'CoUninitialize', 'SHGetDesktopFolder', 'SHFileOperationA', 'SHGetMalloc', 'GetDesktopWindow', 'CharLowerBuffA', 'CharUpperBuffA'], ['GetPrivateProfileSectionNamesW', 'CreateTimerQueue', 'CreateMutexW', 'SearchPathW', 'lstrcmpA', 'EnumCalendarInfoA', 'GetModuleHandleExA', 'GetStringTypeA', 'SetLocalTime', 'BuildCommDCBAndTimeoutsA', 'CallNamedPipeA', 'LocalCompact', 'EnumCalendarInfoW', 'VerSetConditionMask', 'SetDefaultCommConfigW', 'InterlockedCompareExchange', 'WriteConsoleInputA', 'BackupSeek', '_lclose', 'GetWindowsDirectoryA', 'FindActCtxSectionStringA', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GlobalAlloc', 'GetFirmwareEnvironmentVariableA', 'LoadLibraryW', 'GetFileAttributesA', 'GetComputerNameExA', 'TransactNamedPipe', 'PulseEvent', 'GetSystemDirectoryA', 'CompareStringW', 'GetDevicePowerState', 'DeactivateActCtx', 'GetConsoleOutputCP', 'SetLastError', 'GetProcAddress', 'RemoveDirectoryA', 'ResetEvent', 'OpenWaitableTimerA', 'OpenMutexA', 'CreateFileMappingA', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'WriteProfileSectionW', 'AddAtomA', 'WaitForMultipleObjects', 'EnumResourceTypesW', 'FindNextFileA', 'GetModuleHandleA', 'SetLocaleInfoW', 'WaitForDebugEvent', 'GetCurrentThreadId', 'DeleteFileW', 'CopyFileExA', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetConsoleAliasW', 'LocalUnlock', 'GetLastError', 'DeleteFileA', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'InterlockedDecrement', 'GetCurrentThread', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapFree', 'FatalAppExitA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'GetLocaleInfoW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetFilePointer', 'IsProcessorFeaturePresent', 'HeapSize', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle', 'CreateFileW', 'GetUserDefaultLCID', 'IsValidLocale', 'LoadMenuA', 'ReportEventW'], ['ScriptGetFontAlternateGlyphs', 'ScriptItemizeOpenType', 'ScriptPlaceOpenType', 'ScriptCacheGetHeight', 'ScriptShape', 'ScriptFreeCache', 'RasGetProjectionInfoW', 'RasDeleteSubEntryW', 'RasGetEapUserIdentityA', 'RasSetEapUserDataA', 'RasGetCredentialsA', 'RasDeleteEntryA', 'RasGetCountryInfoW', 'RasSetEntryDialParamsA', 'RasEditPhonebookEntryW', 'RasDialA', 'ExitProcess', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetProcessHeap', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SuspendThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatus', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateThread', 'CreateIoCompletionPort', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', '_iob'], ['CreateThread', 'GetModuleFileNameA', 'LoadLibraryA', 'lstrcmpiA', 'PathFindFileNameA', 'CallNextHookEx'], ['InterlockedCompareExchange', 'SetComputerNameW', 'SetEvent', 'SetTapeParameters', 'GetModuleHandleW', 'GetConsoleAliasesA', 'GetNumberFormatA', 'ReadConsoleW', 'FatalAppExitW', 'GetCalendarInfoW', 'GetSystemWindowsDirectoryA', 'HeapCreate', 'FindNextVolumeW', 'GetConsoleAliasW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'CancelWaitableTimer', 'ReadFileEx', 'GetTempFileNameA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'IsSystemResumeAutomatic', 'BeginUpdateResourceA', 'QueryDosDeviceW', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'GetConsoleTitleW', 'GetConsoleCursorInfo', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'EnumCalendarInfoExA', 'FindNextVolumeA', 'EnumSystemLocalesW', 'LCMapStringW', 'WideCharToMultiByte', 'GetLogicalDriveStringsW', 'SetThreadContext', 'WriteConsoleOutputW', 'GetDefaultCommConfigW', 'TlsGetValue', 'GetConsoleAliasesLengthW', 'CreateJobSet', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'MultiByteToWideChar', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'GetParent', 'DdeQueryStringW', 'GetClassInfoExW', 'CreateAcceleratorTableA', 'ChangeMenuW', 'GetCharABCWidthsI', 'GetCharABCWidthsFloatW', 'EnumFontsA', 'GetCharWidthW', 'BackupEventLogA'], ['GetModuleHandleA', 'ShowWindow', 'RegQueryValueA', 'exit', 'memset', 'CreateStatusWindowA', 'free', 'ShellAboutA', '__setusermatherr', '??1_Lockit@std@@QAE@XZ', 'fputc', '_configthreadlocale', '_time64', '_lock_file', 'rand', 'accept'], ['LocalAlloc', 'EncodePointer', 'DecodePointer', 'GetLastError', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetProcessHeap', 'GetFileType', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'HeapSize', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringW', 'RtlUnwind', 'GetStringTypeW', 'RaiseException', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['_mbsstr', 'memset', '_mbsnbcpy'], ['SetLocaleInfoA', 'EnumCalendarInfoA', 'VirtualQuery', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'ReplaceFileW', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReleaseSemaphore', 'SetCurrentDirectoryA', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetupComm', 'CreateMutexW', 'GetConsoleAliasesW', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'SetCaretPos', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'LoadLibraryW', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'GetVersionExW', 'DnsHostnameToComputerNameW', 'GetAtomNameW', 'GetStringTypeExA', 'LCMapStringA', 'InterlockedExchange', 'UpdateResourceA', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetFileTime', 'SetFileAttributesW', 'DeleteFileA', 'SwitchToThread', 'VirtualQuery', 'GetLocaleInfoA', 'CreateFileA', 'GetStartupInfoW', 'HeapAlloc', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetModuleHandleA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RaiseException', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetCharWidthFloatW', 'WinHttpCheckPlatform', 'AlphaBlend'], ['RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'MessageBoxA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'VirtualQuery', 'GetStartupInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary'], ['CompareStringW', 'GetModuleFileNameA', 'LoadLibraryW', 'GetCurrentThread', 'QueryDosDeviceA', 'CreateFileW', 'FileTimeToSystemTime', 'ReadProcessMemory', 'GetModuleHandleA', 'OpenMutexW', 'VirtualAlloc', 'GetEnvironmentVariableA', 'SetSystemTime', 'GetTempPathW', 'SetSetupSave', 'ComPlusMigrate', 'DowngradeAPL', 'SetSetupOpen', 'CoRegCleanup', 'CreateServiceW', 'RegCloseKey', 'RegLoadKeyA', 'CryptSignHashA', 'CreateServiceW', 'RegOpenKeyA', 'LogonUserW', 'IsTextUnicode', 'RegCreateKeyExA', 'OpenEventLogW', 'StartServiceW', 'RegRestoreKeyW', 'RegUnLoadKeyA', 'IsValidSid'], ['CloseHandle', 'WaitForSingleObject', 'Sleep', 'CreateDirectoryA', 'GetTempPathA', 'GetModuleFileNameA', 'GetTickCount', 'LCMapStringA', 'SetEndOfFile', 'LoadLibraryA', 'GetOEMCP', 'GetLastError', 'DeleteFileA', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'HeapFree', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'WriteFile', 'ReadFile', 'GetProcAddress', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'MultiByteToWideChar', 'GetStringTypeA', 'GetStringTypeW', 'CreateFileA', 'GetCPInfo', 'GetACP', 'LCMapStringW', 'ShellExecuteExA', 'timeGetTime'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StrokePath', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'ReadConsoleW', 'InitializeCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'GetBinaryTypeW', 'ReplaceFileA', 'GetStdHandle', 'SetFilePointer', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetLastError', 'UnregisterWait', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['CreateFileW', 'GetFileAttributesW', 'GetVersionExW', 'ResumeThread', 'GetModuleHandleA', 'CreateEventW', 'MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'CopyFileA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'SetEvent', 'TerminateThread', 'DeleteFileW', 'CloseHandle', 'LoadLibraryW', 'CreateThread', 'GetOverlappedResult', 'VirtualProtectEx', 'GetWindowsDirectoryW', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetFileSize', 'DeleteCriticalSection', 'ExitProcess', 'GetCurrentProcessId', 'CreateProcessW', 'GetModuleHandleW', 'CreateRemoteThread', 'CreateProcessA', 'CreateEventA', 'ConnectNamedPipe', 'GetComputerNameA', 'LocalAlloc', 'FreeLibrary', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetTempPathW', 'GetTickCount', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindClose', 'WaitForSingleObject', 'InitializeCriticalSection', 'CreatePipe', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'CreateNamedPipeW', 'GetModuleFileNameW', 'TerminateProcess', 'InterlockedDecrement', 'ReadFile', 'WriteFile', 'GetCurrentProcess', 'GetCommandLineW', 'EnterCriticalSection', 'SetHandleInformation', 'WriteProcessMemory', 'CancelIo', 'DecodePointer', 'SetEndOfFile', 'HeapSize', 'WriteConsoleW', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'ReadConsoleW', 'SetFilePointerEx', 'LCMapStringW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileW', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'WideCharToMultiByte', 'EncodePointer', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleHandleExW', 'GetACP', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FindFirstFileExW', 'wsprintfW', 'LookupPrivilegeNameW', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CryptAcquireContextW', 'CryptGenRandom', 'CopySid', 'IsValidSid', 'LogonUserA', 'OpenProcessToken', 'ConvertSidToStringSidW', 'GetLengthSid', 'LookupAccountSidW', 'GetTokenInformation', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'CoCreateGuid', 'CoTaskMemFree', 'CoSetProxyBlanket', 'CoInitializeSecurity', 'CoInitializeEx', 'CoCreateInstance', 'CoUninitialize', 'SysFreeString', 'SysAllocString', 'SysStringLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'VariantClear', 'SafeArrayCreate', 'GetIpNetTable', 'ntohl', 'WSAStartup', 'FreeAddrInfoW', 'htonl', 'getnameinfo', 'WSACleanup', 'GetAddrInfoW', 'CredUIParseUserNameW', 'NetApiBufferFree', 'NetGetDCName'], ['GlobalAlloc', 'SetFilePointer', 'ReadFile', 'GlobalFree', 'WriteFile', 'GetFileSize', 'FindClose', 'FindNextFileA', 'DeleteFileA', 'SetFileAttributesA', 'CloseHandle', 'SetFileTime', 'GetFileTime', 'CreateFileA', 'FindFirstFileA', 'GetDriveTypeA', 'FreeLibrary', 'ReleaseMutex', 'ResumeThread', 'SetThreadPriority', 'GetLastError', 'WaitForSingleObject', 'CreateMutexA', 'CreateThread', 'GetCommandLineA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'GetStringTypeW', 'FlushFileBuffers', 'RtlUnwind', 'GetVersion', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'SetStdHandle', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'MessageBoxA'], ['memcpy', 'ProcessGroupPolicyCompleted', 'GetVersion', 'GetNativeSystemInfo', 'GetUserDefaultLCID', 'RegisterShellHookWindow', 'MprConfigInterfaceCreate', 'RegRestoreKeyA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'sndPlaySoundA'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxW', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['SetupDiSetSelectedDriverW', 'CM_Get_Device_Interface_List_ExW', 'CM_Get_Resource_Conflict_DetailsW', 'ShowWindowAsync', 'RegisterClassExA', 'CloseClipboard', 'wsprintfW', 'WindowFromPoint', 'DefFrameProcW', 'GetKeyboardState', 'GetClipCursor', 'ChildWindowFromPoint', 'WaitMessage', 'ExcludeUpdateRgn', 'GetMenuItemID', 'GetScrollBarInfo', 'DestroyWindow', 'EqualRect', 'StrFormatByteSizeW', 'PathGetCharTypeW', 'PathGetCharTypeA', 'GetExpandedNameW', 'InstallColorProfileW', 'LookupAccountNameA', 'BackupEventLogA', 'CryptContextAddRef', 'ChangeServiceConfigW', 'EqualDomainSid', 'ImpersonateAnonymousToken', 'CryptDestroyKey', 'FreeEncryptionCertificateHashList', 'CryptMsgDuplicate', 'CryptGetOIDFunctionValue', 'CertAddSerializedElementToStore', 'GetTextExtentPoint32W', 'SetStretchBltMode', 'CreatePalette', 'CreateEllipticRgn', 'GetWorldTransform', 'PlaySoundW', 'midiOutClose', 'waveOutGetID', 'RpcAsyncAbortCall', 'IUnknown_QueryInterface_Proxy', 'CryptCATGetCatAttrInfo', 'VariantTimeToSystemTime', 'SafeArrayCreateVectorEx', 'DsListSitesW', 'GetIpAddrTable', 'InternetCloseHandle', 'GetProfileIntA', 'WaitForSingleObjectEx', 'HeapAlloc', 'GetCommModemStatus', 'GetCurrentThreadId', 'VerifyVersionInfoA', 'FatalAppExitA', 'CloseHandle', 'GetModuleHandleW', 'OutputDebugStringA', 'SetHandleInformation', 'GetCurrentProcessorNumber', 'LocalUnlock', 'SetErrorMode', 'SetEndOfFile', 'GetConsoleWindow', 'FlushConsoleInputBuffer', 'FreeEnvironmentStringsA', 'bsearch', 'memset', 'RasGetCredentialsW', 'OleDoAutoConvert', 'CoFreeLibrary', 'ReadPwrScheme'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExW', 'fputc', 'free', 'memset', '_lock_file', 'SHChangeNotifyRegister', 'accept', 'PropertySheet', '__setusermatherr', 'rand', '??1_Lockit@std@@QAE@XZ', '_configthreadlocale', 'exit', '_time64'], ['GetNamedPipeHandleStateW', 'CreateNamedPipeA', 'CallNamedPipeW', 'TerminateThread', 'GetExitCodeProcess', 'GetVersionExW', 'VerifyVersionInfoW', 'SetConsoleCP', 'GetConsoleAliasesLengthA', 'VerLanguageNameW', 'FindFirstFileExA', 'VerifyVersionInfoA', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'SetVolumeMountPointW', 'GetLongPathNameA', 'CopyFileA', 'TlsGetValue', 'SetConsoleCursorInfo', 'TzSpecificLocalTimeToSystemTime', 'SetProcessShutdownParameters', 'ReleaseMutex', 'BuildCommDCBAndTimeoutsA', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'SleepEx', 'TlsSetValue', 'MoveFileA', 'GetCommandLineW', 'InterlockedDecrement', 'DeleteFileA', 'CreateActCtxA', 'SetFileAttributesA', 'GetPrivateProfileIntW', 'GetProcessHeap', 'CreateNamedPipeW', 'ReadConsoleOutputCharacterA', 'GetStartupInfoA', 'GetDiskFreeSpaceExW', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'GetProfileStringA', 'GetCalendarInfoW', 'GetTickCount', 'GetStringTypeW', 'DebugBreak', 'FindFirstFileA', 'lstrcmpA', 'WriteFile', 'GetConsoleMode', 'WriteProfileStringW', 'lstrcatW', 'SetFirmwareEnvironmentVariableA', 'InterlockedExchange', 'SetCriticalSectionSpinCount', 'DefineDosDeviceW', 'WriteConsoleW', 'InterlockedIncrement', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileStructA', 'TryEnterCriticalSection', 'GetPrivateProfileStructW', 'GetFileAttributesExW', 'HeapWalk', 'CreateIoCompletionPort', 'PeekConsoleInputA', 'GetNumberFormatW', 'FindResourceExW', 'SetLocalTime', 'GetQueuedCompletionStatus', 'CreateSemaphoreA', 'GetThreadLocale', 'SetFileShortNameA', 'lstrcpyW', 'ReplaceFileA', 'MoveFileExA', 'GetConsoleCP', 'GetVolumePathNameA', 'FlushConsoleInputBuffer', 'SearchPathA', 'FreeConsole', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputA', 'LocalShrink', 'GetCommState', 'EnumSystemLocalesW', 'ProcessIdToSessionId', 'SetMessageWaitingIndicator', 'DeleteTimerQueueTimer', 'GetWriteWatch', 'OpenSemaphoreW', 'GetConsoleScreenBufferInfo', 'ClearCommBreak', 'TlsAlloc', 'GetSystemTimeAdjustment', 'GetComputerNameW', 'HeapValidate', 'GetLastError', 'WaitForMultipleObjectsEx', 'SignalObjectAndWait', 'GetSystemPowerStatus', 'VirtualLock', 'SetWaitableTimer', 'ChangeTimerQueueTimer', 'GetProcessHandleCount', 'FatalAppExitA', 'lstrcpynW', 'SetNamedPipeHandleState', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeW', 'FindNextVolumeMountPointA', 'GetFullPathNameA', 'WriteProfileStringA', 'GlobalAddAtomW', 'LeaveCriticalSection', 'SetCurrentDirectoryW', 'LockFile', 'OpenMutexW', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'IsBadReadPtr', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'HeapSetInformation', 'GetStartupInfoW', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'HeapAlloc', 'GetModuleFileNameA', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'HeapCreate', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'LoadLibraryW', 'GetLocaleInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetLocaleInfoA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'OutputDebugStringA', 'OutputDebugStringW', 'SetFilePointer', 'SetStdHandle', 'CreateFileW', 'CloseHandle', 'FlushFileBuffers'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetCommState', 'GetLastError', 'InterlockedFlushSList', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'BackupWrite', 'RemoveDirectoryA', 'SetStdHandle', 'MoveFileA', 'AddAtomW', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'InterlockedIncrement', 'FindResourceW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'RaiseException', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'SetEndOfFile', 'GetCurrentProcess', 'GetModuleHandleA', 'InterlockedExchange', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'ExitProcess', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'GetTickCount', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetProcessHeap', 'GlobalFlags', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'LoadLibraryW', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'lstrlenA', 'lstrcmpA', 'InterlockedIncrement', 'GetCurrentThreadId', 'CloseHandle', 'MultiByteToWideChar', 'FormatMessageW', 'lstrlenW', 'WideCharToMultiByte', 'GetCurrentProcessId', 'FreeLibrary', 'LoadResource', 'SizeofResource', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetProcAddress', 'TlsFree', 'GlobalFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalAlloc', 'GlobalHandle', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalLock', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalFree', 'GetLastError', 'SetLastError', 'FindResourceW', 'CreateProcessW', 'QueryPerformanceCounter', 'GetModuleHandleW', 'GetDateFormatW', 'OpenProcess', 'Sleep', 'GetVersionExW', 'CreateFileW', 'LocalAlloc', 'LockResource', 'VirtualProtect', 'GetWindowsDirectoryW', 'GetSystemTime', 'SetFileAttributesW', 'GetVolumeInformationW', 'GetStockObject', 'DeleteDC', 'SetAbortProc', 'SetRectRgn', 'CombineRgn', 'EndDoc', 'AbortDoc', 'GetTextMetricsW', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'DeleteObject', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetDeviceCaps', 'SystemParametersInfoA', 'SetWindowPos', 'SetWindowLongW', 'GetMenu', 'CallWindowProcW', 'DefWindowProcW', 'GetDlgCtrlID', 'PtInRect', 'CopyRect', 'AdjustWindowRectEx', 'RegisterClassW', 'GetClassInfoW', 'GetClassInfoExW', 'CreateWindowExW', 'PostMessageW', 'GetClientRect', 'SetMenu', 'MapWindowPoints', 'GetMessagePos', 'GetMessageTime', 'GetTopWindow', 'GetDlgItem', 'GetForegroundWindow', 'IsWindow', 'RemovePropW', 'GetPropW', 'SetPropW', 'GetClassNameW', 'GetClassLongW', 'GetCapture', 'WinHelpW', 'LoadIconW', 'RegisterWindowMessageW', 'GetWindowTextW', 'IsIconic', 'SetWindowTextW', 'ClientToScreen', 'DestroyMenu', 'TabbedTextOutW', 'DrawTextW', 'DrawTextExW', 'GrayStringW', 'PostQuitMessage', 'LoadCursorW', 'GetSystemMetrics', 'GetWindowPlacement', 'ReleaseDC', 'GetWindowRect', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'EnableMenuItem', 'CheckMenuItem', 'GetSysColor', 'GetSysColorBrush', 'SetWindowsHookExW', 'CallNextHookEx', 'DispatchMessageW', 'GetKeyState', 'PeekMessageW', 'ValidateRect', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetWindowThreadProcessId', 'GetParent', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxW', 'UnhookWindowsHookEx', 'DestroyWindow', 'SetForegroundWindow', 'IsClipboardFormatAvailable', 'SendDlgItemMessageW', 'CheckRadioButton', 'SendMessageW', 'SetClipboardData', 'GetDC', 'GetSaveFileNameW', 'ChooseColorW', 'GetOpenFileNameW', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoInitialize', 'CoUninitialize', 'VariantChangeType', 'VariantClear', 'VariantInit', 'RegSetValueExW', 'RegCloseKey', 'RegisterServiceCtrlHandlerW', 'RegOpenKeyExW', 'FreeSid', 'SetEntriesInAclW', 'AllocateAndInitializeSid', 'QueryServiceStatus', 'LookupPrivilegeValueW', 'RegDeleteKeyW', 'InitializeSecurityDescriptor', 'RegOpenKeyW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegEnumKeyW', 'GetTokenInformation', 'OpenServiceW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'OpenThreadToken', 'DeleteService', 'OpenProcessToken', 'CreateStdAccessibleObject', 'LresultFromObject'], ['CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'Sleep', 'lstrlenW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'CreateMutexW', 'WaitForSingleObject', 'LoadLibraryA', 'GetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow', 'MoveToEx', 'GetMetaRgn', 'GdiGetBatchLimit'], ['GetTickCount', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringW', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'GetModuleHandleA', 'lstrlenW', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GlobalAddAtomW', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'WriteConsoleA', 'GetLastError', 'SizeofResource', 'LoadResource', 'FindResourceW', 'FreeEnvironmentStringsA', 'ExitProcess', 'MessageBeep', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'SetCapture', 'GetSysColorBrush', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'GetNextDlgGroupItem', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'DestroyMenu', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindow', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'CharNextW', 'CharUpperW', 'SetForegroundWindow', 'ReleaseCapture', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'SetCursor', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'GetParent', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageW', 'PostQuitMessage', 'SetTimer', 'LoadCursorW', 'LoadBitmapW', 'UpdateWindow', 'GetSystemMenu', 'IsIconic', 'DrawIcon', 'GetClientRect', 'LoadIconW', 'AppendMenuW', 'ShowWindow', 'GetSystemMetrics', 'SendMessageW', 'EnableWindow', 'DefWindowProcW', 'UnregisterClassA', 'ExtSelectClipRgn', 'ExtTextOutW', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'TextOutW', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'CreateFontW', 'GetViewportExtEx', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'BitBlt', 'CreateCompatibleDC', 'GetObjectW', 'Escape', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'SysFreeString'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'WriteFile', 'VirtualQuery', 'TerminateThread', 'TerminateProcess', 'PrepareTape', 'OpenFile', 'LocalSize', 'LoadLibraryA', 'IsBadHugeWritePtr', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentProcess', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FindResourceA', 'EnumCalendarInfoA', 'AreFileApisANSI', 'TranslateAcceleratorA', 'SetDoubleClickTime', 'SendDlgItemMessageW', 'OemToCharBuffW', 'MessageBoxIndirectW', 'MessageBoxA', 'LoadStringA', 'LoadCursorFromFileW', 'GetSystemMetrics', 'GetKeyNameTextW', 'CheckMenuRadioItem', 'CharNextA', 'CharToOemA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'SendMessageA', '_except_handler4_common', '__p___argv', '_libm_sse2_sqrt_precise', '_callnewh', '__p__commode', '_configthreadlocale', 'VariantChangeTypeEx', 'RaiseException'], ['GetCommState', 'WaitNamedPipeA', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'LoadLibraryA', 'MoveFileExW', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'CommConfigDialogW', 'DeleteFileA', 'VerSetConditionMask', 'InterlockedIncrement', 'FindResourceExW', 'DeleteVolumeMountPointA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'GetTextExtentExPointW', 'GetCharacterPlacementA', 'MapGenericMask', 'GetEventLogInformation', 'OleQueryLinkFromData'], ['GetModuleHandleA', 'Sleep', 'GetTempPathA', 'GetWindowsDirectoryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapAlloc', 'HeapValidate', 'VirtualProtect', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'WriteFile', 'OutputDebugStringA', 'OutputDebugStringW', 'WriteConsoleW', 'CloseHandle', 'WaitForSingleObjectEx', 'CreateThread', 'GetStringTypeW', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'EncodePointer', 'DecodePointer', 'CreateFileW', 'GetSystemInfo', 'GetModuleFileNameA', 'SystemFunction036'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'SetDllDirectoryW', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'CopyFileA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'GetSystemWow64DirectoryW', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperW'], ['GetModuleHandleW', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InitializeSListHead', 'GetCurrentThreadId', 'ReadConsoleW', 'GetTimeZoneInformation', 'FreeLibraryAndExitThread', 'IsDebuggerPresent', 'ExitThread', 'QueryPerformanceFrequency', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'lstrlenA', 'GetCurrentProcess', 'ReadFile', 'VirtualQuery', 'GetProcessHeap', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'SetLastError', 'GlobalAlloc', 'GlobalFree', 'CloseHandle', 'Sleep', 'lstrlenW', 'GetVersionExW', 'LoadLibraryW', 'GetProcAddress', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'FindFirstFileA', 'FindNextFileA', 'CopyFileA', 'GetFileAttributesA', 'CreateFileA', 'SystemTimeToFileTime', 'GetSystemTime', 'GetFileTime', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'GetFileSize', 'lstrcatA', 'VirtualAlloc', 'lstrcpyA', 'EncodePointer', 'RaiseException', 'InterlockedFlushSList', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStringTypeW', 'GetACP', 'CompareStringW', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'GetStdHandle', 'GetFileType', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'OutputDebugStringA', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW', 'GetVersionExA', 'AreFileApisANSI', 'TryEnterCriticalSection', 'HeapCreate', 'GetFullPathNameW', 'InterlockedCompareExchange', 'GetDiskFreeSpaceW', 'LockFile', 'GetFullPathNameA', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'GetFileAttributesW', 'UnmapViewOfFile', 'HeapValidate', 'GetTempPathA', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetFileAttributesExW', 'FlushViewOfFile', 'DeleteFileA', 'DeleteFileW', 'GetSystemInfo', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'CreateFileMappingA', 'LockFileEx', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'GetTickCount', 'VirtualFree', 'HeapFree', 'GetLastError', 'WTSGetActiveConsoleSessionId', 'ExpandEnvironmentStringsA', 'DeleteCriticalSection', 'CreateThread', 'WaitForSingleObject', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'LocalFree', 'CryptGenRandom', 'AdjustTokenPrivileges', 'RegDisablePredefinedCacheEx', 'LookupPrivilegeValueA', 'GetUserNameA', 'ImpersonateLoggedOnUser', 'OpenProcessToken', 'ConvertSidToStringSidW', 'GetTokenInformation', 'CryptReleaseContext', 'RegQueryValueExW', 'RegEnumValueW', 'CryptGetHashParam', 'RegOpenKeyExW', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CredFree', 'CredEnumerateW', 'CryptAcquireContextW', 'CryptAcquireContextA', 'RegOpenKeyExA', 'DuplicateToken', 'RevertToSelf', 'RegEnumKeyA', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'ExpandEnvironmentStringsForUserA', 'GetProfilesDirectoryA', 'StrCatW', 'wnsprintfW', 'StrChrW', 'StrCpyNW', 'StrChrA', 'wnsprintfA', 'StrStrA', 'StrCmpW', 'CryptUnprotectData', 'strncat', 'strncpy', '_alldiv', '_aulldiv', 'strrchr', 'memcmp', 'memcpy', 'strstr', 'memchr', 'memmove', 'strchr', '_wcsicmp', 'memset', 'strncmp', '_wcslwr', 'WTSQueryUserToken', 'FindCloseUrlCache', 'FindNextUrlCacheEntryW', 'FindFirstUrlCacheEntryW', 'wsprintfA', 'SHGetSpecialFolderPathA', 'send', 'closesocket', 'WSAGetLastError', 'recv'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetEnvironmentVariableA', 'WaitForSingleObject', 'GetModuleHandleA', 'GetLocaleInfoA', 'Sleep', 'RemoveDirectoryTransactedA', 'GetUserDefaultLCID', 'CreateThread', 'GetLastError', 'DeleteFileA', 'HeapAlloc', 'lstrcpynA', 'lstrcmpiW', 'GetModuleFileNameA', 'GetCurrentProcess', 'GetSystemPowerStatus', 'CreateMutexA', 'OpenProcess', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'GetSystemWow64DirectoryW', 'GetTimeZoneInformation', 'OpenMutexA', 'Process32NextW', 'GlobalAlloc', 'lstrlenA', 'Process32FirstW', 'GlobalFree', 'GetSystemInfo', 'GetLogicalDriveStringsA', 'GlobalMemoryStatusEx', 'WideCharToMultiByte', 'CreateProcessA', 'GetTempFileNameA', 'GetComputerNameA', 'UnmapViewOfFile', 'GetFileInformationByHandle', 'FileTimeToSystemTime', 'GetLocalTime', 'CreateFileMappingA', 'CreateFileA', 'GetTickCount', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'HeapReAlloc', 'OutputDebugStringW', 'GetFileSize', 'CloseHandle', 'CopyFileTransactedA', 'lstrcpyW', 'lstrcatW', 'GetVersionExW', 'CreateDirectoryA', 'SystemTimeToFileTime', 'lstrcpyA', 'GetFileAttributesA', 'LocalFileTimeToFileTime', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'lstrcmpA', 'SetFilePointer', 'SetFileTime', 'WriteFile', 'ReadFile', 'LocalFree', 'FindClose', 'GetDriveTypeA', 'lstrlenW', 'CreateDirectoryTransactedA', 'FreeLibrary', 'GetProcessHeap', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'SetEnvironmentVariableW', 'ReadConsoleW', 'EnumSystemLocalesW', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'GetFileSizeEx', 'HeapSize', 'GetCommandLineW', 'GetCommandLineA', 'WriteConsoleW', 'GetModuleFileNameW', 'GetFileType', 'GetStdHandle', 'GetModuleHandleExW', 'ExitProcess', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'DeleteFileTransactedA', 'MapViewOfFile', 'HeapFree', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleHandleW', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'GetStringTypeW', 'FormatMessageA', 'SetCurrentDirectoryW', 'CreateDirectoryW', 'CreateFileW', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'DeviceIoControl', 'CopyFileW', 'CreateHardLinkW', 'GetFileInformationByHandleEx', 'CreateSymbolicLinkW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'EnumDisplayDevicesA', 'GetSystemMetrics', 'GetWindowRect', 'GetWindowDC', 'wsprintfW', 'GetDesktopWindow', 'wsprintfA', 'RestoreDC', 'BitBlt', 'SaveDC', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'GetDeviceCaps', 'DeleteDC', 'DeleteObject', 'GetTokenInformation', 'CryptGetHashParam', 'CryptDestroyHash', 'RegQueryValueExA', 'GetUserNameA', 'CreateProcessWithTokenW', 'OpenProcessToken', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'DuplicateTokenEx', 'RegQueryValueExW', 'CryptReleaseContext', 'RegCloseKey', 'RegEnumKeyExW', 'RegOpenKeyExW', 'CryptAcquireContextA', 'CredEnumerateW', 'CredFree', 'CryptCreateHash', 'CryptHashData', 'ShellExecuteA', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoUninitialize', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'CreateTransaction', 'CommitTransaction', 'RollbackTransaction', 'WinHttpSetTimeouts', 'WinHttpQueryDataAvailable', 'WinHttpSendRequest', 'WinHttpCloseHandle', 'WinHttpReadData', 'WinHttpSetOption', 'WinHttpReceiveResponse', 'WinHttpOpen', 'WinHttpConnect', 'WinHttpOpenRequest', 'PathCombineW', 'StrCmpNW', 'StrToIntA', 'StrStrIW', 'CryptStringToBinaryA', 'CryptUnprotectData', 'GetUserProfileDirectoryA', 'BCryptDestroyKey', 'BCryptDecrypt', 'BCryptOpenAlgorithmProvider', 'BCryptCloseAlgorithmProvider', 'BCryptGenerateSymmetricKey', 'BCryptSetProperty', 'GdiplusStartup', 'GdiplusShutdown', 'GdipGetImageEncoders', 'GdipCloneImage', 'GdipAlloc', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipFree', 'GdipSaveImageToFile', 'GdipGetImageEncodersSize'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleTitleA', 'CreateRemoteThread', 'LoadLibraryW', 'GetLocaleInfoW', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'GetVersionExW', 'GetAtomNameW', 'GetStringTypeExA', 'LCMapStringA', 'InterlockedExchange', 'UpdateResourceA', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetFileTime', 'SetFileAttributesW', 'DeleteFileA', 'SwitchToThread', 'VirtualQuery', 'GetConsoleAliasesLengthW', 'CreateFileA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'ExitProcess', 'GetStartupInfoW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'CloseHandle', 'WriteFile', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'RaiseException', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration', 'AlphaBlend'], ['SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'SetProcessPriorityBoost', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'InitAtomTable', 'GetFileAttributesW', 'CreateFileW', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'SetFileApisToANSI', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'WriteConsoleW', 'CloseHandle', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'DeleteFileA', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'DefDlgProcW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'CopyFileA', 'SetFileAttributesA', 'CreateDirectoryA', 'Process32First', 'CreateMutexA', 'WaitForSingleObject', 'CreateToolhelp32Snapshot', 'Process32Next', 'GetModuleFileNameA', 'MultiByteToWideChar', 'CreateFileW', 'DecodePointer', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCommandLineW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceFrequency', 'CloseHandle', 'WaitForSingleObjectEx', 'Sleep', 'GetExitCodeThread', 'InitializeCriticalSectionEx', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'WriteConsoleW', 'EmptyClipboard', 'CloseClipboard', 'GetClipboardData', 'SetClipboardData', 'IsClipboardFormatAvailable', 'LoadStringA', 'GetKeyState', 'OpenClipboard', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'IsValidURL', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'EnumResourceTypesA', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'SetConsoleCursorPosition', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedDecrement', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'WriteProfileSectionA', 'RemoveDirectoryA', 'SetStdHandle', 'LocalAlloc', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'FoldStringA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'QueryPerformanceFrequency', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'DeleteFileW', 'GetConsoleProcessList', 'DebugBreak', 'GetCommState', 'InterlockedFlushSList', 'VerSetConditionMask', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'RaiseException', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['Rectangle', 'GetDCBrushColor', 'GetViewportExtEx', 'CoGetApartmentType', 'CoGetObjectContext', 'CreateFileW', 'HeapSize', 'ReadConsoleW', 'GetModuleHandleA', 'FreeConsole', 'GetModuleHandleW', 'RaiseException', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'MultiByteToWideChar', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableSRW', 'InitOnceComplete', 'InitOnceBeginInitialize', 'GetStringTypeW', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'TryAcquireSRWLockExclusive', 'WideCharToMultiByte', 'CloseHandle', 'WaitForSingleObjectEx', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetSystemTimeAsFileTime', 'GetProcAddress', 'GetCPInfo', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'InitializeSListHead', 'SetStdHandle', 'RtlUnwind', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'WriteConsoleW'], ['SetCurrentDirectoryA', 'FindFirstFileA', 'FindNextFileA', 'GetFileAttributesA', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetModuleFileNameA', 'GetModuleHandleExA', 'GetProcAddress', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'LoadLibraryA', 'GetComputerNameA'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'ShellExecuteA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['CreateThread', 'ExitProcess', 'GetComputerNameA', 'GetModuleFileNameA', 'GetModuleHandleW', 'GetProcAddress', 'SetErrorMode', 'Sleep', 'VirtualAllocExNuma', 'PathFindFileNameA', 'malloc', 'free', 'memset', 'strcmp', '_strcmpi', 'strcpy'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetPrivateProfileIntA', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'ReadConsoleOutputW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'GlobalWire', 'WriteConsoleInputW', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'SetVolumeMountPointA', 'EnumCalendarInfoA', 'SetProcessPriorityBoost', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesA', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'GetPrivateProfileIntW', 'DeleteAtom', 'WriteConsoleOutputCharacterW', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'GetACP', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW', 'GetCharWidth32A'], ['InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateMutexW', 'WaitForSingleObject', 'InterlockedCompareExchange', 'ReleaseMutex', 'CloseHandle', 'GetLastError', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'DeleteFileA', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'RtlUnwind', 'MultiByteToWideChar', 'ReadFile', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'SetFilePointer', 'RaiseException', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'LoadLibraryA', 'GetModuleHandleA', 'GetTimeZoneInformation', 'SetEndOfFile', 'GetProcessHeap', 'HeapSize', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA'], ['CryptGenKey', 'CryptBinaryToStringA', 'GetIpNetTable', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'NetShareEnum', 'RmGetList', 'ShellExecuteW', 'ShowWindow', 'closesocket'], ['GetSysColorBrush', 'MessageBeep', 'MessageBoxW', 'MessageBoxA', 'GetSystemMetrics', 'SendNotifyMessageA', 'TlsGetValue', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetLastError', 'GetCurrentProcessId', 'GetCurrentThreadId', 'VirtualAlloc', 'GetModuleHandleA', 'GetProcAddress', 'MultiByteToWideChar', 'FreeConsole', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetEnvironmentStringsW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'WriteConsoleW', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP'], ['PostQuitMessage', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'DestroyMenu', 'RegisterWindowMessageA', 'LoadIconA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetForegroundWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'GetClientRect', 'GetMenu', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetFocus', 'ClientToScreen', 'GetWindow', 'GetDlgCtrlID', 'GetWindowRect', 'GetClassNameA', 'PtInRect', 'GetWindowTextA', 'SetWindowTextA', 'UnregisterClassA', 'SetWindowsHookExA', 'CallNextHookEx', 'DispatchMessageA', 'GetKeyState', 'PeekMessageA', 'ValidateRect', 'LoadCursorA', 'GetSystemMetrics', 'GetDC', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'UnhookWindowsHookEx', 'GetWindowThreadProcessId', 'SendMessageA', 'GetParent', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'VariantInit', 'VariantClear', 'VariantChangeType', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'GetVersion', 'CloseHandle', 'GetCurrentThreadId', 'CompareStringA', 'GetCurrentDirectoryA', 'VirtualProtect', 'GetModuleFileNameA', 'GetDiskFreeSpaceA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'CreateProcessA', 'GetStdHandle', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'ExitProcess', 'HeapSize', 'Sleep', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetProcessHeap', 'GetCommandLineA', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'HeapFree', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'GetOEMCP', 'GetCPInfo', 'GetLocaleInfoA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'GetThreadLocale', 'GlobalGetAtomNameA', 'GlobalFlags', 'lstrcmpA', 'InterlockedIncrement', 'FreeLibrary', 'InterlockedDecrement', 'GetModuleHandleA', 'GetProcAddress', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetCurrentProcessId', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'QueryPerformanceCounter', 'SetLastError', 'WideCharToMultiByte', 'lstrlenA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetStockObject', 'GetDeviceCaps', 'DeleteObject', 'CreateBitmap', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'ExtTextOutA', 'SaveDC', 'RestoreDC', 'SetMapMode', 'PtVisible', 'RectVisible', 'TextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'LresultFromObject', 'CreateStdAccessibleObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePatternBrush', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'wglGetCurrentDC', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyAcceleratorTable', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableA', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateILockBytesOnHGlobal', 'GetHGlobalFromILockBytes', 'OleGetIconOfClass', 'OleDraw', 'OleSetMenuDescriptor', 'OleSetContainedObject', 'OleSave', 'OleLoad', 'OleUninitialize', 'OleInitialize', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetAce', 'ImageList_Remove', 'GetOpenFileNameW', 'LineTo', 'IcmpSendEcho', 'WNetUseConnectionW', 'CoGetObject', 'VariantInit', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'connect'], ['GetModuleHandleA', 'ReleaseDC', 'GetUserNameW', '_CorExeMain', 'ImageList_SetBkColor', 'SHGetIconOverlayIndexA'], ['GetDefaultCommConfigW', 'UpdateResourceA', 'InterlockedIncrement', 'GetComputerNameW', 'WaitNamedPipeW', 'GlobalAlloc', 'LeaveCriticalSection', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'RaiseException', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'EnterCriticalSection', 'GetStringTypeA', 'LoadLibraryA', 'DnsHostnameToComputerNameA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'LoadLibraryExA', 'CreateMailslotA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetConsoleAliasesLengthW', 'GetLocaleInfoA', 'SetThreadContext', 'GetComputerNameA', 'GetVolumeNameForVolumeMountPointA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'RegQueryValueExA', 'CloseEventLog'], ['MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'GetMailslotInfo', 'lstrlenW', 'GetConsoleAliasesW', 'GetStdHandle', 'GetCPInfoExW', 'SetConsoleTextAttribute', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'InterlockedPushEntrySList', 'AllocConsole', 'GetLastError', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ClientToScreen', 'ClearEventLogW'], ['SHGetDiskFreeSpaceA', '_CorExeMain', 'RegQueryValueA', 'UpdateWindow', 'GetModuleHandleA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'ShellExecuteA', 'sndPlaySoundA', 'LresultFromObject'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetModuleHandleA', 'WSASend', 'RegOpenKeyExW', 'QueryContextAttributesW', 'CertDuplicateStore', 'NtCreateFile', 'CommandLineToArgvW', 'PdhGetFormattedCounterValue', 'CoInitializeSecurity', 'SysFreeString', 'GetIfTable2', 'CallNtPowerInformation', 'NetApiBufferFree', 'BCryptGenRandom', 'GetModuleFileNameExW'], ['GetDefaultCommConfigW', 'InterlockedIncrement', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'SetFileTime', 'GetLocaleInfoW', 'SwitchToFiber', 'FreeConsole', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'WriteConsoleW', 'CreateActCtxA', 'GetTempPathW', 'LCMapStringA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetCPInfoExW', 'GetLongPathNameW', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'AllocConsole', 'WriteProfileSectionA', 'GetFirmwareEnvironmentVariableW', 'EnterCriticalSection', 'SetFileAttributesA', 'FindClose', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'MoveFileA', 'BeginUpdateResourceA', 'GlobalGetAtomNameW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'SetConsoleTitleW', 'LoadLibraryExA', 'GetStringTypeW', 'GetConsoleTitleW', 'GetFileTime', 'PeekConsoleInputA', 'SetCalendarInfoA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'GetVolumeNameForVolumeMountPointA', 'GetLocaleInfoA', 'GetSystemDefaultLangID', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration'], ['WSACleanup', 'recv', 'socket', 'getservbyname', 'WSASetLastError', 'WSAAsyncSelect', 'closesocket', 'gethostbyaddr', 'gethostbyname', 'send', 'getservbyport', 'gethostname', 'inet_ntoa', 'connect', 'inet_addr', 'WSAStartup', 'ioctlsocket', 'htonl', 'WSAGetLastError', 'htons', 'ntohs', 'shutdown', 'waveOutGetVolume', 'mixerGetLineInfoW', 'mixerSetControlDetails', 'mixerGetControlDetailsW', 'mixerGetLineControlsW', 'mixerGetDevCapsW', 'waveOutSetVolume', 'mixerClose', 'mixerOpen', 'mciSendStringW', 'joyGetDevCapsW', 'joyGetPosEx', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'ImageList_GetIconSize', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'ImageList_ReplaceIcon', 'CreateStatusWindowW', 'InitCommonControlsEx', 'GetModuleBaseNameW', 'GetModuleFileNameExW', 'InternetReadFile', 'InternetOpenUrlW', 'InternetCloseHandle', 'InternetReadFileExA', 'InternetOpenW', 'GlobalUnlock', 'GetEnvironmentVariableW', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemDirectoryA', 'GetProcAddress', 'LoadLibraryA', 'GetCurrentThreadId', 'lstrcmpiW', 'GetStringTypeExW', 'CreateThread', 'SetThreadPriority', 'GetExitCodeThread', 'CloseHandle', 'CreateMutexW', 'GetLastError', 'LoadLibraryW', 'GetModuleHandleW', 'GetVersionExW', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetFileAttributesW', 'GetFullPathNameW', 'GetSystemTimeAsFileTime', 'GetShortPathNameW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'FileTimeToLocalFileTime', 'SetEnvironmentVariableW', 'Beep', 'MoveFileW', 'OutputDebugStringW', 'CreateProcessW', 'MultiByteToWideChar', 'GetExitCodeProcess', 'WriteProcessMemory', 'ReadProcessMemory', 'GetCurrentProcessId', 'OpenProcess', 'TerminateProcess', 'SetPriorityClass', 'SetLastError', 'GetLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'GlobalFree', 'SetVolumeLabelW', 'CreateFileW', 'DeviceIoControl', 'GetDriveTypeW', 'GetVolumeInformationW', 'GetDiskFreeSpaceW', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'ReadFile', 'WriteFile', 'DeleteFileW', 'CopyFileW', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'SetFileTime', 'GetFileSizeEx', 'GetSystemTime', 'GetSystemDefaultUILanguage', 'GetComputerNameW', 'GetSystemWindowsDirectoryW', 'GetTempPathW', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualProtect', 'QueryDosDeviceW', 'CompareStringW', 'RemoveDirectoryW', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'FormatMessageW', 'GetPrivateProfileStringW', 'GetPrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'WritePrivateProfileStringW', 'WritePrivateProfileSectionW', 'SetEndOfFile', 'GetACP', 'GetFileType', 'GetStdHandle', 'SetFilePointerEx', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetFileSize', 'VirtualAllocEx', 'VirtualFreeEx', 'EnumResourceNamesW', 'LoadLibraryExW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'SetErrorMode', 'InitializeCriticalSection', 'GetCPInfo', 'SetCurrentDirectoryW', 'Sleep', 'GetTickCount', 'MulDiv', 'ExitProcess', 'HeapSize', 'HeapQueryInformation', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStringTypeW', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'SetHandleCount', 'IsProcessorFeaturePresent', 'LCMapStringW', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'SetFilePointer', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'GetDiskFreeSpaceExW', 'VirtualQuery', 'SetLayeredWindowAttributes', 'InvalidateRect', 'EnableWindow', 'GetWindowTextLengthW', 'EnumWindows', 'IsZoomed', 'IsIconic', 'EnumDisplayMonitors', 'GetMonitorInfoW', 'RegisterWindowMessageW', 'GetSysColor', 'GetSysColorBrush', 'DrawIconEx', 'FillRect', 'DefWindowProcW', 'SetForegroundWindow', 'DialogBoxParamW', 'SendDlgItemMessageW', 'GetDlgItem', 'SetDlgItemTextW', 'MessageBeep', 'ClientToScreen', 'GetCursorInfo', 'GetLastInputInfo', 'GetSystemMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetMenuStringW', 'ExitWindowsEx', 'SetMenu', 'FlashWindow', 'GetPropW', 'SetPropW', 'RemovePropW', 'MapWindowPoints', 'RedrawWindow', 'SetParent', 'GetClassInfoExW', 'DefDlgProcW', 'GetAncestor', 'UpdateWindow', 'GetMessagePos', 'GetClassLongW', 'CallWindowProcW', 'CheckRadioButton', 'IntersectRect', 'GetUpdateRect', 'PtInRect', 'CreateDialogIndirectParamW', 'CreateAcceleratorTableW', 'DestroyAcceleratorTable', 'InsertMenuItemW', 'SetMenuDefaultItem', 'RemoveMenu', 'SetMenuItemInfoW', 'IsMenu', 'GetMenuItemInfoW', 'CreateMenu', 'CreatePopupMenu', 'SetMenuInfo', 'AppendMenuW', 'DestroyMenu', 'TrackPopupMenuEx', 'GetDesktopWindow', 'CopyImage', 'SetWindowPos', 'CreateIconFromResourceEx', 'EnumClipboardFormats', 'GetWindow', 'BringWindowToTop', 'GetTopWindow', 'GetQueueStatus', 'CheckMenuItem', 'LoadImageW', 'IsWindowVisible', 'ChangeClipboardChain', 'SetClipboardViewer', 'LoadAcceleratorsW', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'DestroyIcon', 'DestroyWindow', 'IsCharAlphaW', 'MapVirtualKeyW', 'VkKeyScanExW', 'MapVirtualKeyExW', 'GetKeyboardLayoutNameW', 'ActivateKeyboardLayout', 'GetGUIThreadInfo', 'GetWindowTextW', 'mouse_event', 'WindowFromPoint', 'GetSystemMetrics', 'keybd_event', 'SetKeyboardState', 'GetKeyboardState', 'GetCursorPos', 'GetAsyncKeyState', 'AttachThreadInput', 'SendInput', 'UnregisterHotKey', 'PostQuitMessage', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PostThreadMessageW', 'IsCharAlphaNumericW', 'IsCharUpperW', 'IsCharLowerW', 'ToUnicodeEx', 'GetKeyboardLayout', 'CallNextHookEx', 'CharLowerW', 'ReleaseDC', 'GetDC', 'MessageBoxW', 'OpenClipboard', 'GetClipboardData', 'GetClipboardFormatNameW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostMessageW', 'FindWindowW', 'EndDialog', 'IsWindow', 'DispatchMessageW', 'TranslateMessage', 'ShowWindow', 'CountClipboardFormats', 'SetWindowRgn', 'SetFocus', 'SetActiveWindow', 'EnumChildWindows', 'MoveWindow', 'GetWindowRect', 'GetClientRect', 'SystemParametersInfoW', 'AdjustWindowRectEx', 'DrawTextW', 'SetRect', 'GetIconInfo', 'CreateIconIndirect', 'SetWindowTextW', 'SetWindowLongW', 'ScreenToClient', 'IsDialogMessageW', 'SendMessageW', 'IsWindowEnabled', 'GetWindowLongW', 'GetKeyState', 'TranslateAcceleratorW', 'KillTimer', 'PeekMessageW', 'GetFocus', 'GetClassNameW', 'GetWindowThreadProcessId', 'GetForegroundWindow', 'GetMessageW', 'SetTimer', 'GetParent', 'GetDlgCtrlID', 'CharUpperW', 'IsClipboardFormatAvailable', 'BlockInput', 'GetMenu', 'RegisterHotKey', 'GdiFlush', 'CreateDIBSection', 'EnumFontFamiliesExW', 'SetBrushOrgEx', 'SetBkColor', 'GetPixel', 'BitBlt', 'CreatePatternBrush', 'SetBkMode', 'GetCharABCWidthsW', 'GetClipBox', 'FillRgn', 'GetClipRgn', 'ExcludeClipRect', 'GetDeviceCaps', 'DeleteObject', 'CreateFontW', 'CreateSolidBrush', 'CreateCompatibleBitmap', 'GetSystemPaletteEntries', 'GetDIBits', 'CreateCompatibleDC', 'CreatePolygonRgn', 'CreateRectRgn', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'DeleteDC', 'GetObjectW', 'GetTextMetricsW', 'GetTextFaceW', 'SelectObject', 'GetStockObject', 'CreateDCW', 'SetTextColor', 'CommDlgExtendedError', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetUserNameW', 'LockServiceDatabase', 'OpenSCManagerW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'CloseServiceHandle', 'RegConnectRegistryW', 'UnlockServiceDatabase', 'DragQueryPoint', 'SHEmptyRecycleBinW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderPathW', 'ShellExecuteExW', 'Shell_NotifyIconW', 'DragFinish', 'DragQueryFileW', 'ExtractIconW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CLSIDFromString', 'CLSIDFromProgID', 'CoGetObject', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'OleLoadPicture', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayAccessData', 'SafeArrayUnlock', 'SafeArrayPtrOfIndex', 'SafeArrayLock', 'SafeArrayDestroy', 'GetActiveObject', 'SysStringLen', 'SysFreeString', 'SafeArrayCreate', 'VariantClear', 'VariantChangeType', 'SysAllocString', 'SafeArrayCopy', 'VariantCopyInd', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim'], ['GetModuleHandleA', 'CreateFileA', 'FindActCtxSectionStringA', 'WriteConsoleInputW', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'FindFirstVolumeMountPointW', 'CreateDirectoryExW', 'LocalFlags', 'WaitForSingleObject', 'WriteConsoleInputA', 'VerifyVersionInfoW', 'GetVersionExA', 'GetCurrentProcessId', 'OpenEventW', 'CreateFileMappingW', 'GetLocaleInfoA', 'GetProcAddress', 'LoadLibraryA', 'LocalAlloc', 'ChangeTimerQueueTimer', 'GetConsoleTitleW', 'CopyFileA', 'FindResourceW', 'SetPriorityClass', 'SetLastError', 'GetProfileSectionA', 'WriteProfileStringA', 'GetConsoleAliasA', 'WritePrivateProfileSectionA', 'GetConsoleAliasesLengthA', 'FindResourceA', 'SetVolumeMountPointA', 'GetModuleHandleW', 'HeapAlloc', 'GetThreadLocale', 'CreateNamedPipeW', 'EnumResourceLanguagesA', 'TransactNamedPipe', '_hwrite', 'EnumDateFormatsA', 'DeleteVolumeMountPointW', 'AddRefActCtx', 'WritePrivateProfileStringA', 'GetSystemDirectoryA', 'GetStringTypeW', 'GetLongPathNameA', 'FindNextFileW', 'EnumCalendarInfoW', 'ZombifyActCtx', 'SetCriticalSectionSpinCount', 'CloseHandle', 'WriteConsoleW', 'HeapReAlloc', 'RaiseException', 'RtlUnwind', 'GetLastError', 'HeapFree', 'DeleteFileA', 'MoveFileA', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'IsProcessorFeaturePresent', 'DecodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapCreate', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapSize', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LoadLibraryW', 'CreateFileW', 'GetMessageTime', 'GetMenuBarInfo'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '_CorExeMain', 'VariantChangeTypeEx', 'RaiseException'], ['RtlInitializeCriticalSection', 'wcstombs', 'wcsncmp', 'NtOpenProcess', 'strrchr', 'RtlGetNtVersionNumbers', 'CsrGetProcessId', 'NtDelayExecution', 'wcsstr', 'wcsrchr', 'NtSetInformationThread', '_wcslwr', 'NtQueryInformationProcess', 'RtlGetCurrentPeb', 'swprintf', 'wcsncpy', 'NtYieldExecution', 'NtTerminateProcess', 'RtlCreateHeap', 'mbstowcs', 'sprintf', '_stricmp', 'memset', '_chkstk', 'memcpy', '_allrem', 'RtlUnwind', 'ExpandEnvironmentStringsW', 'CreateThread', 'DeleteFileA', 'SetFileAttributesW', 'ResumeThread', 'DeleteFileW', 'GetWindowsDirectoryW', 'CloseHandle', 'OutputDebugStringA', 'GetCurrentThreadId', 'GetShortPathNameW', 'FindNextFileW', 'GetModuleHandleA', 'GetModuleFileNameA', 'WaitForMultipleObjects', 'DeviceIoControl', 'CreateFileMappingA', 'LoadLibraryA', 'GetFullPathNameW', 'ExitProcess', 'GetCommandLineW', 'GetComputerNameA', 'CreateFileA', 'GetFileSize', 'FindFirstFileW', 'SetFilePointer', 'GetLocaleInfoA', 'MapViewOfFile', 'UnmapViewOfFile', 'GetDriveTypeW', 'FreeLibrary', 'HeapAlloc', 'InterlockedIncrement', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentProcess', 'GetLogicalDriveStringsW', 'HeapFree', 'WaitForSingleObject', 'GetSystemDefaultLCID', 'OutputDebugStringW', 'GetTickCount', 'GetProcessHeap', 'GetLocalTime', 'GlobalAlloc', 'GetSystemDirectoryW', 'TerminateThread', 'Sleep', 'CopyFileW', 'LeaveCriticalSection', 'GetFileAttributesW', 'CreateProcessA', 'ReadFile', 'CreateFileW', 'ExitThread', 'SetThreadPriority', 'FlushFileBuffers', 'GetTempPathW', 'GetFileSizeEx', 'GetLastError', 'GetProcAddress', 'SetVolumeLabelW', 'MoveFileW', 'EnterCriticalSection', 'GlobalFree', 'FindClose', 'WriteFile'], ['GetModuleFileNameA', 'GetLongPathNameA', 'CreateMutexA', 'OpenMutexA', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetLocaleInfoA', 'Process32NextW', 'Process32FirstW', 'lstrlenA', 'GetDriveTypeA', 'CreateProcessA', 'GetTickCount', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'WinExec', 'GetCurrentProcessId', 'CreateDirectoryW', 'CopyFileA', 'GetFileAttributesW', 'GetLogicalDriveStringsA', 'GetCurrentProcess', 'ResumeThread', 'SetThreadContext', 'WriteProcessMemory', 'VirtualAllocEx', 'ReadProcessMemory', 'GetThreadContext', 'VirtualAlloc', 'GlobalFree', 'LocalAlloc', 'TerminateProcess', 'ReadFile', 'PeekNamedPipe', 'GetStdHandle', 'CreatePipe', 'OpenProcess', 'DuplicateHandle', 'GetCurrentThread', 'lstrcpynA', 'ExitProcess', 'AllocConsole', 'GetStartupInfoA', 'ExpandEnvironmentStringsA', 'FindFirstFileA', 'FindNextFileA', 'GetLastError', 'LoadLibraryA', 'GetProcAddress', 'CreateFileMappingA', 'MapViewOfFileEx', 'DeleteFileA', 'RemoveDirectoryA', 'CloseHandle', 'GetFileAttributesA', 'SetFileAttributesA', 'SetEvent', 'TerminateThread', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'GetLocalTime', 'CreateEventA', 'WaitForSingleObject', 'CreateDirectoryA', 'ExitThread', 'Sleep', 'GetModuleHandleA', 'DeleteFileW', 'CreateThread', 'GetWindowTextLengthA', 'GetForegroundWindow', 'UnhookWindowsHookEx', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'ExitWindowsEx', 'MessageBoxA', 'GetKeyboardLayoutNameA', 'GetWindowThreadProcessId', 'ShowWindow', 'CloseWindow', 'GetWindowTextA', 'GetWindowTextW', 'EnumWindows', 'SendInput', 'CreateWindowExA', 'RegisterClassExA', 'AppendMenuA', 'CreatePopupMenu', 'TrackPopupMenu', 'SetForegroundWindow', 'GetCursorPos', 'DefWindowProcA', 'GetKeyState', 'CallNextHookEx', 'SetWindowsHookExA', 'GetMessageA', 'TranslateMessage', 'GetKeyboardLayout', 'FindWindowA', 'DispatchMessageA', 'IsWindowVisible', 'CreateDCA', 'CreateCompatibleDC', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'GetObjectA', 'GetDIBits', 'DeleteObject', 'DeleteDC', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'RegQueryInfoKeyA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegDeleteValueA', 'RegCreateKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegCloseKey', 'RegQueryValueExA', 'GetUserNameW', 'ShellExecuteA', 'ExtractIconA', 'Shell_NotifyIconA', 'ShellExecuteExA', 'ShellExecuteW', '?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEPADXZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@@Z', '?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@IIPBD@Z', '??8std@@YA_NPBDABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV?$allocator@G@1@@Z', '?find_last_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIDI@Z', '??9std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBG@Z', '??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@G@Z', '?substr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBE?AV12@II@Z', '?rfind@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIGI@Z', '?npos@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@2IB', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDII@Z', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIABV12@I@Z', '?find_last_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDI@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBGABV10@@Z', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@D@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@DABV10@@Z', '?rfind@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIDI@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIDI@Z', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '?length@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIXZ', '??Bios_base@std@@QBEPAXXZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDI@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@IDABV?$allocator@D@1@@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@0@Z', '??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '?is_open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QBE_NXZ', '?data@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '??0logic_error@std@@QAE@ABV01@@Z', '??0out_of_range@std@@QAE@ABV01@@Z', '??1out_of_range@std@@UAE@XZ', '??0out_of_range@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDABV?$allocator@D@1@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV?$allocator@D@1@@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ', '?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXI@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBDABV10@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDIABV?$allocator@D@1@@Z', '??_D?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?write@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@PBDH@Z', '?seekp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@JW4seekdir@ios_base@2@@Z', '??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@PBD@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@D@Z', '?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV12@II@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?length@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '?empty@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE_NXZ', '??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAADI@Z', '?find@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIABV12@I@Z', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV01@@Z', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@0@Z', '??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@PBGABV?$allocator@G@1@@Z', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '?c_str@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEPBGXZ', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@PBG@Z', '?end@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '?begin@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEPAGXZ', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@G@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADH@Z', '?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@JW4seekdir@ios_base@2@@Z', '?tellg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@XZ', '?is_open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QBE_NXZ', '??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@PBDH@Z', '??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?close@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '_wrename', '_controlfp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '??1type_info@@UAE@XZ', '_iob', 'freopen', 'srand', 'rand', 'mbstowcs', 'realloc', '_itoa', 'sprintf', 'getenv', 'toupper', 'tolower', 'wcscmp', 'printf', 'strncmp', 'malloc', 'free', '_EH_prolog', '__CxxFrameHandler', 'time', 'localtime', 'strftime', 'puts', 'atoi', '_ftol', '??2@YAPAXI@Z', '_except_handler3', 'exit', '??0exception@@QAE@ABV0@@Z', '_CxxThrowException', 'waveInOpen', 'waveInStop', 'waveInClose', 'waveInAddBuffer', 'waveInPrepareHeader', 'waveInUnprepareHeader', 'waveInStart', 'PathFileExistsA', 'htons', 'gethostbyname', 'closesocket', 'socket', 'send', 'WSAGetLastError', 'connect', 'recv', 'WSAStartup', 'URLDownloadToFileA', 'GdipLoadImageFromStreamICM', 'GdipDisposeImage', 'GdipCloneImage', 'GdipAlloc', 'GdipSaveImageToStream', 'GdipSaveImageToFile', 'GdipLoadImageFromStream', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipFree', 'GdipGetImageEncodersSize', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['GetModuleHandleA', 'EmptyClipboard', 'RegOpenKeyExW', 'ImageList_SetBkColor', 'InternetCloseHandle', 'SHGetSpecialFolderPathA', 'IsValidURL'], ['GetVolumeNameForVolumeMountPointA', 'GetFullPathNameA', 'GetEnvironmentVariableW', 'HeapReAlloc', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'EnumDateFormatsExW', 'ClearCommError', 'GetQueuedCompletionStatus', 'SetConsoleTextAttribute', 'FindFirstFileExW', 'GetTickCount', 'GetProcessTimes', 'GlobalAlloc', 'SizeofResource', 'GetWriteWatch', 'SetConsoleCursorPosition', 'GetAtomNameW', 'GetModuleFileNameW', 'MultiByteToWideChar', 'IsBadStringPtrA', 'GetLastError', 'SetVolumeLabelW', 'EnumSystemCodePagesW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'SetFileApisToANSI', 'GetDefaultCommConfigA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'VirtualProtect', 'CompareStringA', 'SetCalendarInfoA', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'FindNextVolumeA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'WideCharToMultiByte', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCaretPos'], ['GetMetaRgn', 'MoveToEx', 'GdiGetBatchLimit', 'GetBitmapDimensionEx', 'VirtualProtect', 'FreeConsole', 'RaiseException', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableCS', 'SleepConditionVariableSRW', 'InitOnceBeginInitialize', 'InitOnceComplete', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'CloseHandle', 'WaitForSingleObjectEx', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetCurrentProcess', 'TerminateProcess', 'GetCurrentProcessId', 'InitializeSListHead', 'WriteConsoleW', 'RtlUnwind', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'DecodePointer'], ['ImmGetIMEFileNameA', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmSetOpenStatus', 'ImmGetCandidateWindow', 'ImmGetDefaultIMEWnd', 'RasDeleteSubEntryA', 'RasGetEapUserDataW', 'RasGetSubEntryPropertiesA', 'RasGetCredentialsW', 'RasGetCredentialsA', 'RasEnumDevicesW', 'RasEditPhonebookEntryW', 'RasGetProjectionInfoA', 'RasGetConnectStatusW', 'RasEnumConnectionsA', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile'], ['VarUI2FromStr', 'DrawFrameControl', 'GetWindowTextA', 'SHDeleteValueA', 'RpcBindingFromStringBindingA', 'NdrSimpleTypeUnmarshall', 'NotifyRouteChange', 'GetNumberOfEventLogRecords', 'RegOpenKeyA', 'GetServiceKeyNameA', 'SaferIdentifyLevel', 'GetBinaryTypeW', 'ReadConsoleOutputW', 'SetLocaleInfoW', 'GetModuleHandleW', 'GetModuleFileNameW', 'SetConsoleDisplayMode', 'ConvertFiberToThread', 'lstrlenW', 'WriteConsoleOutputAttribute'], ['OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'GetVersionExA', 'FreeResource', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigA', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'ReadConsoleInputA', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'LoadLibraryA', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleA', 'GetNamedPipeHandleStateW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'SetCalendarInfoA', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'FlushConsoleInputBuffer', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'CopyFileW', 'GetOEMCP', 'GlobalFindAtomW', 'lstrcatA', 'GetPrivateProfileStringA', 'SetMailslotInfo', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'FreeEnvironmentStringsA', 'GetFileInformationByHandle', 'EnumCalendarInfoExW', 'EnumDateFormatsW', 'VerSetConditionMask', 'GetConsoleCP', 'GetQueuedCompletionStatus', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetPrivateProfileIntA', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetModuleHandleW', 'ExitProcess', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetModuleFileNameA', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA'], ['PathFindFileNameA', 'LockResource', 'lstrlenA', 'CloseHandle', 'CreateFileA', 'ExitProcess', 'FindResourceA', 'FreeResource', 'GetCommandLineA', 'GetEnvironmentVariableA', 'GetFileSize', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetSystemDirectoryA', 'GetTempPathA', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'HeapAlloc', 'HeapFree', 'LoadLibraryA', 'LoadResource', 'lstrcpynA', 'RtlMoveMemory', 'SetFileAttributesA', 'SizeofResource', 'WriteFile', 'lstrcatA', 'lstrcpyA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'GetMessageA', 'LoadCursorA', 'LoadIconA', 'MessageBoxA', 'PostQuitMessage', 'RegisterClassExA', 'SendMessageA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow'], ['ClearCommError', 'DeleteVolumeMountPointA', 'SetConsoleTextAttribute', 'ReadConsoleA', 'FlushConsoleInputBuffer', 'FlushViewOfFile', 'FindFirstFileExW', 'SetCommBreak', 'ConnectNamedPipe', 'GetTickCount', 'GetCommConfig', 'GetWindowsDirectoryA', 'GetProcessTimes', 'GetVolumePathNameW', 'WideCharToMultiByte', 'SizeofResource', 'GetProcessHandleCount', 'GetConsoleAliasW', 'GetWriteWatch', 'GetAtomNameW', 'GetEnvironmentVariableA', 'DisconnectNamedPipe', 'GetLargestConsoleWindowSize', 'GetLastError', 'UnmapViewOfFile', 'GetProcAddress', 'SetVolumeLabelW', 'EnumSystemCodePagesW', 'GetNumaHighestNodeNumber', 'GetPrivateProfileStringA', 'SetFileApisToOEM', 'LoadLibraryA', 'ProcessIdToSessionId', 'LocalAlloc', 'SetCalendarInfoW', 'IsWow64Process', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'CreatePipe', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'WTSGetActiveConsoleSessionId', 'CreateIoCompletionPort', '_lread', 'CompareStringA', 'FindNextVolumeA', 'CreateFileA', 'lstrlenA', 'IsBadStringPtrW', 'HeapReAlloc', 'GetLongPathNameW', 'GetVolumeNameForVolumeMountPointA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'GetModuleHandleA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ReadFile', 'HeapSize', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'SetStdHandle', 'GetCursorInfo', 'EnumServicesStatusW', 'DeregisterEventSource', 'SetAclInformation', 'CloseEventLog'], ['lstrcatW', 'GlobalAlloc', 'DeleteFileW', 'lstrcpyA', 'GlobalFree', 'CloseHandle', 'CreateThread', 'MoveFileExW', 'lstrcpyW', 'CreateFileMappingW', 'MapViewOfFile', 'lstrcmpW', 'BeginUpdateResourceA', 'EraseTape', 'FindFirstVolumeW', 'GetProfileSectionW', 'GetCurrentProcess', 'lstrlenW', 'CancelDeviceWakeupRequest', 'TerminateProcess', 'GlobalUnWire', 'GetConsoleTitleW', 'EnumResourceNamesW', 'CreateMutexW', 'OpenFile', 'EnumSystemCodePagesW', 'CancelThreadpoolIo', 'GlobalDeleteAtom', 'QueryMemoryResourceNotification', 'GetACP', 'OpenProcess', 'FindFirstVolumeMountPointA', 'FindActCtxSectionStringA', 'CreateToolhelp32Snapshot', 'Sleep', 'SetFileAttributesW', 'GetConsoleAliasesLengthW', 'CreateFileW', 'CreateFileA', 'DefineDosDeviceA', 'GetSystemFileCacheSize', 'GetCurrentThread', 'GetSystemDirectoryA', 'Process32FirstW', 'GlobalFindAtomW', 'QueueUserAPC', 'LocalSize', 'FindAtomA', 'ExitProcess', 'FreeLibrary', 'GetSystemTime', 'GlobalUnlock', 'GetDriveTypeW', 'FindFirstFileTransactedA', 'CreateTimerQueue', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GetModuleHandleW', 'DecodePointer', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetLastError', 'UnmapViewOfFile', 'WaitForSingleObject', 'ReadFile', 'FindClose', 'lstrlenA', 'SetFilePointer', 'SetErrorMode', 'VirtualAlloc', 'GetProcessHeap', 'GetStringTypeW', 'GetFileType', 'WriteFile', 'FindNextFileW', 'VirtualFree', 'FindFirstFileW', 'Process32NextW', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'RaiseException', 'EqualRect', 'DestroyIcon', 'EnumWindows', 'CharUpperBuffW', 'GetDesktopWindow', 'GetWindowTextW', 'wsprintfW', 'GetLastActivePopup', 'CreateDIBPatternBrush', 'CryptGenKey', 'CryptExportKey', 'CryptEncrypt', 'CryptAcquireContextW', 'CryptDestroyKey', 'CryptReleaseContext', 'SHGetSpecialFolderPathW', 'StrStrW', 'CryptImportPublicKeyInfoEx', 'CryptStringToBinaryA', 'CryptDecodeObjectEx', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum'], ['HeapFree', 'HeapAlloc', 'GetCommandLineA', 'Sleep', 'ExitThread', 'CreateThread', 'RaiseException', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'FatalAppExitA', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'RtlUnwind', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetACP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetModuleHandleW', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetThreadLocale', 'GetStringTypeExA', 'DeleteFileA', 'MoveFileA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'MulDiv', 'InterlockedDecrement', 'GetModuleFileNameW', 'lstrlenA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'MultiByteToWideChar', 'lstrcmpW', 'GetVersionExA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'LoadLibraryA', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'FreeEnvironmentStringsW', 'ExitProcess', 'UnregisterClassA', 'SetRectEmpty', 'InvalidateRect', 'TranslateAcceleratorA', 'BringWindowToTop', 'CreatePopupMenu', 'InsertMenuItemA', 'LoadAcceleratorsA', 'GetMenuBarInfo', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'SetRect', 'SetTimer', 'KillTimer', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetMenuStringA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'GetDialogBaseUnits', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'EnableWindow', 'LoadIconA', 'AppendMenuA', 'GetSystemMenu', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'CharUpperA', 'DestroyIcon', 'GetSysColorBrush', 'WaitMessage', 'ReleaseCapture', 'LoadCursorA', 'WindowFromPoint', 'SetCapture', 'DeleteMenu', 'InsertMenuA', 'EndDeferWindowPos', 'RemoveMenu', 'SendMessageA', 'GetSystemMetrics', 'DrawIcon', 'IsIconic', 'GetClientRect', 'DdeInitializeA', 'DdeCreateStringHandleA', 'DdeFreeStringHandle', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeNameService', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeClientTransaction', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'UnhookWindowsHookEx', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'CreatePen', 'ExtCreatePen', 'ArcTo', 'CreateHatchBrush', 'CopyMetaFileA', 'CreateDCA', 'GetTextMetricsA', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetBkColor', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'PtVisible', 'TextOutA', 'CreateSolidBrush', 'CreateBitmap', 'StartDocA', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'ExtTextOutA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'RectVisible', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegSetValueA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegCreateKeyA', 'ExtractIconA', 'DragFinish', 'DragQueryFileA', 'SHGetFileInfoA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveExtensionA', 'PathRemoveFileSpecW', 'StringFromGUID2', 'CoDisconnectObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'CoCreateInstance', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CLSIDFromString', 'CoUninitialize', 'CoInitializeEx', 'StringFromCLSID', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'GetStdHandle', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapAlloc', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'HeapFree', 'lstrlenA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringW', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedDecrement', 'GetModuleHandleA', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'FormatMessageW', 'LocalFree', 'lstrlenW', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomW', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'QueryPerformanceCounter', 'ExitProcess', 'GetSysColorBrush', 'WindowFromPoint', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'ScreenToClient', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindow', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'DestroyMenu', 'LoadCursorW', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'SetCapture', 'GetClientRect', 'PtInRect', 'GetCapture', 'SystemParametersInfoW', 'ReleaseCapture', 'GetMessagePos', 'GetWindowRect', 'GetParent', 'DrawEdge', 'DrawFocusRect', 'InflateRect', 'OffsetRect', 'SetRect', 'RedrawWindow', 'GetSysColor', 'IsWindow', 'GetSystemMetrics', 'SendMessageW', 'DrawFrameControl', 'CopyRect', 'InvalidateRect', 'EnableWindow', 'UnregisterClassA', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'SelectPalette', 'SelectObject', 'CreateSolidBrush', 'DeleteObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'Rectangle', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetTextExtentPoint32W', 'CreateFontIndirectW', 'GetDeviceCaps', 'CreatePalette', 'RealizePalette', 'CreatePen', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'PathFindExtensionW', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'LoadLibraryW', 'SetCommConfig', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'GetVersionExW', 'DnsHostnameToComputerNameW', 'GetAtomNameW', 'GetStringTypeExA', 'LCMapStringA', 'InterlockedExchange', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'GetFileTime', 'SetFileAttributesW', 'DeleteFileA', 'SwitchToThread', 'UpdateResourceA', 'GetLocaleInfoA', 'CreateFileA', 'GetStartupInfoW', 'HeapAlloc', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetModuleHandleA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RaiseException', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetCharWidthFloatW', 'WinHttpCheckPlatform', 'AlphaBlend'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'ReadConsoleW', 'InitializeCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'GetBinaryTypeW', 'ReplaceFileA', 'GetStdHandle', 'SetFilePointer', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetLastError', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['GetForegroundWindow', 'CM_Get_Device_Interface_List_ExW', 'CM_Get_Res_Des_Data_Ex', 'BuildExplicitAccessWithNameW', 'GdiComment', 'AssignProcessToJobObject', 'GetModuleHandleA', 'GetProcAddress', 'GetFileInformationByHandle'], ['GetModuleHandleA', 'EndPaint', 'RegQueryValueA', 'PathMakeUniqueName', '_CorExeMain', 'InitMUILanguage'], ['FindNextVolumeW', 'LeaveCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'ExitProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'FillConsoleOutputCharacterA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'GetProcAddress', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringW', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerA', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'TerminateThread', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'TerminateProcess', 'GetACP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'GetOverlappedResult', 'CreateNamedPipeA', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'SetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetFileAttributesW', 'MoveFileW', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'GetLastError', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'DebugBreak', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'lstrcatW', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'BuildCommDCBAndTimeoutsW', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['RtlUnwindEx', 'RtlPcToFileHeader', 'RtlCaptureContext', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlUnwind', 'LoadLibraryExW', 'CreateFileW', 'HeapSize', 'LoadLibraryA', 'GetProcAddress', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSectionEx', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'HeapReAlloc', 'ReadConsoleW', 'SetFilePointerEx', 'GetFileSizeEx', 'RaiseException', 'GetLastError', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'WriteConsoleW', 'GetCurrentProcess', 'TerminateProcess', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetProcessHeap', 'GetFileType', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile'], ['ShowWindow', 'GetFileType', 'IsProcessorFeaturePresent', 'WriteFile', 'MultiByteToWideChar', 'GetLastError', 'SetLastError', 'GetProcAddress', 'LocalAlloc', 'LocalFree', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'InterlockedDecrement', 'HeapFree', 'Sleep', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'HeapSize', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'HeapReAlloc', 'LoadLibraryW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleFileNameW', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW'], ['GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'TlsSetValue', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'SetLocaleInfoA', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetDateFormatW', 'CreateMutexW', 'ReplaceFileA', 'WriteConsoleA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['GetModuleHandleA', 'SetForegroundWindow', 'CreateCompatibleBitmap', 'CryptAcquireContextA', 'ShellExecuteW', 'PathFileExistsW', 'PlaySoundW', 'send', 'URLDownloadToFileW', 'GdiplusStartup'], ['SetFileAttributesA', 'SetErrorMode', 'HeapFree', 'RtlUnwind', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'LocalFileTimeToFileTime', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'WriteFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'InterlockedIncrement', 'GetAtomNameA', 'FindResourceExA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'InterlockedDecrement', 'GetModuleFileNameW', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'MulDiv', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'VirtualProtect', 'SizeofResource', 'ExitProcess', 'GetFileSize', 'GlobalAlloc', 'GlobalFree', 'ReadFile', 'GlobalUnlock', 'GlobalReAlloc', 'SetFilePointer', 'CreateFileA', 'CloseHandle', 'GlobalLock', 'GetLastError', 'FindResourceA', 'LoadResource', 'LockResource', 'LocalAlloc', 'LocalFree', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'FreeEnvironmentStringsA', 'InterlockedExchange', 'SetParent', 'SetRect', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'PostQuitMessage', 'ShowOwnedPopups', 'GetDialogBaseUnits', 'GetSysColorBrush', 'LoadCursorA', 'GetMenuItemInfoA', 'UnregisterClassA', 'GetKeyNameTextA', 'MapVirtualKeyA', 'UnionRect', 'GetDCEx', 'SetCapture', 'DestroyIcon', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'SetMenu', 'RedrawWindow', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'BringWindowToTop', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'ScrollWindowEx', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'RegisterWindowMessageA', 'GetSystemMenu', 'SendDlgItemMessageA', 'WinHelpA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'GetWindow', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'InflateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetWindowThreadProcessId', 'LoadIconA', 'SetCursor', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'LockWindowUpdate', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'ShowWindow', 'UpdateWindow', 'IsWindowEnabled', 'GetDlgItem', 'GetParent', 'PostMessageA', 'GetWindowLongA', 'GetWindowRect', 'SetFocus', 'GetFocus', 'GetAsyncKeyState', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetCapture', 'GetActiveWindow', 'SetActiveWindow', 'MapDialogRect', 'SetWindowPos', 'IsChild', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'GetStockObject', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'SetViewportOrgEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetBkColor', 'EnumFontFamiliesExA', 'Escape', 'ExtTextOutA', 'SetColorAdjustment', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'PlayMetaFile', 'CreateDIBitmap', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'BitBlt', 'DeleteObject', 'CreatePalette', 'SelectPalette', 'RealizePalette', 'SelectClipRgn', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['CryptEncrypt', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetCloseEnum', 'CoInitialize', 'VariantClear', 'ShellExecuteW', 'StrStrA', 'InternetOpenW', 'htons'], ['EnumCalendarInfoA', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'GetNumberFormatA', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReplaceFileA', 'GetConsoleAliasesW', 'SetLocaleInfoA', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CreateMutexW', 'SetCurrentDirectoryA', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'CharUpperBuffA', 'LoadMenuW', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['__WSAFDIsSet', 'recv', 'send', 'setsockopt', 'ntohs', 'recvfrom', 'select', 'WSAStartup', 'htons', 'accept', 'listen', 'bind', 'closesocket', 'connect', 'WSACleanup', 'ioctlsocket', 'sendto', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'socket', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_ReplaceIcon', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetQueryOptionW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetConnectW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'WaitForSingleObject', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'CloseHandle', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'CreateThread', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'GetLastError', 'GetModuleFileNameW', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedIncrement', 'DuplicateHandle', 'GetCurrentProcess', 'EnterCriticalSection', 'GetCurrentThread', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'SetFilePointer', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'FindNextFileW', 'SetEnvironmentVariableA', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'DrawMenuBar', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'MonitorFromRect', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'AdjustWindowRectEx', 'DeleteMenu', 'CheckMenuRadioItem', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'UnregisterHotKey', 'SystemParametersInfoW', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'SetRect', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'GetCursorPos', 'PeekMessageW', 'MessageBoxW', 'DefWindowProcW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'FindWindowW', 'CharLowerBuffW', 'GetWindowTextW', 'SetPixel', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'GetDeviceCaps', 'CloseFigure', 'LineTo', 'AngleArc', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'MoveToEx', 'Ellipse', 'PolyDraw', 'BeginPath', 'SelectObject', 'StretchBlt', 'GetDIBits', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'EndPath', 'GetSaveFileNameW', 'GetOpenFileNameW', 'GetAclInformation', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'InitiateSystemShutdownExW', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'SetSecurityDescriptorDacl', 'AddAce', 'GetAce', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHBrowseForFolderW', 'SHGetFolderPathW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHGetMalloc', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'RegisterTypeLib', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'UnRegisterTypeLib', 'SafeArrayCreateVector', 'SysAllocString', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'VariantCopy', 'VariantClear', 'CreateDispTypeInfo', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SafeArrayAllocDescriptorEx', 'VariantInit'], ['VirtualQuery', 'SetStdHandle', 'GetFileType', 'GetStdHandle', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateSemaphoreW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'GetTimeZoneInformation', 'ReadConsoleW', 'OutputDebugStringW', 'GetDateFormatW', 'LCMapStringW', 'IsValidLocale', 'EnumSystemLocalesW', 'WriteConsoleW', 'SetEnvironmentVariableA', 'OpenProcess', 'GetSystemInfo', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'InitializeSListHead', 'ReleaseSemaphore', 'FreeLibraryAndExitThread', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'WaitForSingleObjectEx', 'CreateTimerQueue', 'FormatMessageA', 'GetThreadTimes', 'HeapQueryInformation', 'IsProcessorFeaturePresent', 'CloseHandle', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetModuleHandleW', 'Sleep', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GlobalFree', 'GetCurrentProcess', 'GlobalAlloc', 'GetLastError', 'GetTickCount', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'CreateFileW', 'GetFileSize', 'MoveFileW', 'VirtualAlloc', 'SetFilePointer', 'ReadFile', 'WriteFile', 'VirtualFree', 'FindFirstFileW', 'FindNextFileW', 'GetLogicalDrives', 'SetErrorMode', 'GetDriveTypeA', 'GetTimeFormatW', 'TerminateProcess', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'DeleteFileA', 'CreateFileA', 'FlushFileBuffers', 'SetLastError', 'CreateProcessA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'FormatMessageW', 'LocalAlloc', 'lstrlenW', 'LocalSize', 'lstrcpynW', 'LocalFree', 'GetTempPathW', 'DeleteFileW', 'CopyFileW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'CreateThread', 'GetComputerNameW', 'SetEvent', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'RaiseException', 'HeapSize', 'EnterCriticalSection', 'DecodePointer', 'DeleteCriticalSection', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'WaitForMultipleObjects', 'TerminateThread', 'QueueUserAPC', 'CreateEventW', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'VerSetConditionMask', 'VerifyVersionInfoW', 'CreateWaitableTimerW', 'GetSystemTimeAsFileTime', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'OutputDebugStringA', 'EncodePointer', 'GetCurrentThreadId', 'GetSystemDirectoryW', 'FreeLibrary', 'FreeResource', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryExW', 'GlobalDeleteAtom', 'lstrcmpW', 'LoadLibraryA', 'LoadLibraryW', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GetCurrentProcessId', 'GetCurrentThread', 'GetVersionExW', 'lstrcmpA', 'lstrcpyW', 'SetThreadPriority', 'ResumeThread', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GlobalGetAtomNameW', 'FileTimeToSystemTime', 'GetThreadLocale', 'InitializeCriticalSection', 'GlobalReAlloc', 'GlobalHandle', 'LocalReAlloc', 'CompareStringW', 'GetLocaleInfoW', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GlobalFlags', 'GetCurrentDirectoryW', 'GetFileAttributesW', 'FindClose', 'GetFullPathNameW', 'GetVolumeInformationW', 'LockFile', 'SetEndOfFile', 'UnlockFile', 'DuplicateHandle', 'lstrcmpiW', 'GetStringTypeExW', 'GetTempFileNameW', 'GetWindowsDirectoryW', 'SearchPathW', 'GetProfileIntW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'GetFileSizeEx', 'GetFileTime', 'VirtualProtect', 'FindResourceExW', 'GetUserDefaultLCID', 'GetCPInfo', 'ExitThread', 'RtlUnwind', 'ExitProcess', 'GetModuleHandleExW', 'AreFileApisANSI', 'GetCommandLineW', 'SetRectEmpty', 'SetLayeredWindowAttributes', 'LoadCursorW', 'SetCursor', 'ShowOwnedPopups', 'TranslateMessage', 'GetMessageW', 'MapVirtualKeyW', 'GetKeyNameTextW', 'DrawIconEx', 'IsRectEmpty', 'OffsetRect', 'InflateRect', 'DrawFocusRect', 'GetSysColorBrush', 'SetWindowRgn', 'GetSystemMetrics', 'DrawFrameControl', 'DrawEdge', 'MapDialogRect', 'SetWindowContextHelpId', 'PostQuitMessage', 'SendDlgItemMessageA', 'GetCursorPos', 'ClientToScreen', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'TabbedTextOutW', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'GetWindowThreadProcessId', 'GetDesktopWindow', 'GetActiveWindow', 'GetNextDlgTabItem', 'EndDialog', 'CreateDialogIndirectParamW', 'LoadMenuW', 'SetMenuItemInfoW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'IsDialogMessageW', 'SetWindowTextW', 'IsWindowEnabled', 'CheckDlgButton', 'MoveWindow', 'GetMonitorInfoW', 'MonitorFromWindow', 'SystemParametersInfoW', 'GetScrollInfo', 'SetScrollInfo', 'LoadIconW', 'GetWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetParent', 'GetClassLongW', 'SetWindowLongW', 'GetWindowLongW', 'PtInRect', 'EqualRect', 'CopyRect', 'GetSysColor', 'MapWindowPoints', 'InvalidateRgn', 'AdjustWindowRectEx', 'GetWindowTextLengthW', 'GetWindowTextW', 'MonitorFromPoint', 'GetPropW', 'SetPropW', 'ShowScrollBar', 'GetScrollRange', 'SetRect', 'GetNextDlgGroupItem', 'SetParent', 'SendMessageW', 'PeekMessageW', 'LoadStringW', 'DispatchMessageW', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'RedrawWindow', 'ValidateRect', 'GetForegroundWindow', 'SetActiveWindow', 'TrackPopupMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'GetKeyState', 'GetFocus', 'SetFocus', 'GetDlgCtrlID', 'GetDlgItem', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'SetWindowPos', 'DestroyWindow', 'IsChild', 'CreateWindowExW', 'GetClassInfoExW', 'EnumDisplayMonitors', 'DestroyMenu', 'GetMenuItemInfoW', 'CopyImage', 'RealChildWindowFromPoint', 'IntersectRect', 'TrackMouseEvent', 'IsIconic', 'IsZoomed', 'CharUpperW', 'GetAsyncKeyState', 'SetCapture', 'ReleaseCapture', 'KillTimer', 'GetSystemMenu', 'GetClassInfoW', 'RegisterClassW', 'DeleteMenu', 'MessageBeep', 'WindowFromPoint', 'NotifyWinEvent', 'CreatePopupMenu', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'IsMenu', 'UpdateLayeredWindow', 'EnableScrollBar', 'WinHelpW', 'UnionRect', 'LoadAcceleratorsW', 'MessageBoxW', 'EnableWindow', 'SetWindowsHookExW', 'UnhookWindowsHookEx', 'PostThreadMessageW', 'IsWindowVisible', 'ShowWindow', 'SetForegroundWindow', 'CallNextHookEx', 'GetWindowRect', 'GetClientRect', 'UpdateWindow', 'SetTimer', 'IsWindow', 'UnregisterClassW', 'GetMenuStringW', 'GetMenuState', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'InsertMenuW', 'AppendMenuW', 'RemoveMenu', 'DrawStateW', 'InvalidateRect', 'FillRect', 'GetClassNameW', 'LoadBitmapW', 'RegisterWindowMessageW', 'GetMessagePos', 'GetMessageTime', 'PostMessageW', 'DefWindowProcW', 'CallWindowProcW', 'OpenClipboard', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'WaitMessage', 'CharNextW', 'RemovePropW', 'CopyAcceleratorTableW', 'DestroyIcon', 'LoadImageW', 'SetCursorPos', 'BringWindowToTop', 'LockWindowUpdate', 'GetDoubleClickTime', 'GetIconInfo', 'CopyIcon', 'ModifyMenuW', 'DestroyAcceleratorTable', 'SetClassLongW', 'GetUpdateRect', 'ToUnicodeEx', 'GetKeyboardLayout', 'GetKeyboardState', 'DrawIcon', 'GetWindowRgn', 'DestroyCursor', 'CreateMenu', 'GetComboBoxInfo', 'TranslateMDISysAccel', 'DefMDIChildProcW', 'DefFrameProcW', 'DrawMenuBar', 'MapVirtualKeyExW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'SubtractRect', 'InvertRect', 'HideCaret', 'FrameRect', 'ReuseDDElParam', 'UnpackDDElParam', 'InsertMenuItemW', 'TranslateAcceleratorW', 'CharUpperBuffW', 'RegisterClipboardFormatW', 'CreateAcceleratorTableW', 'ScreenToClient', 'GetTextFaceW', 'SetPixelV', 'GetWindowOrgEx', 'LPtoDP', 'GetViewportOrgEx', 'PtInRegion', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'EnumFontFamiliesExW', 'SetPaletteEntries', 'ExtFloodFill', 'GetSystemPaletteEntries', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'CreatePalette', 'RoundRect', 'OffsetRgn', 'Rectangle', 'SetDIBColorTable', 'StretchBlt', 'SetPixel', 'RealizePalette', 'GetRgnBox', 'CreateDIBSection', 'CreateRoundRectRgn', 'DPtoLP', 'SetRectRgn', 'GetMapMode', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateCompatibleBitmap', 'GetTextMetricsW', 'Polyline', 'Polygon', 'CreatePolygonRgn', 'PatBlt', 'GetTextExtentPoint32W', 'GetTextColor', 'GetBkColor', 'Ellipse', 'CreateRectRgnIndirect', 'CreateEllipticRgn', 'CombineRgn', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'OffsetWindowOrgEx', 'OffsetViewportOrgEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetViewportOrgEx', 'SetViewportExtEx', 'ExtTextOutW', 'TextOutW', 'MoveToEx', 'SetTextAlign', 'SetROP2', 'SetPolyFillMode', 'GetLayout', 'SetLayout', 'SetMapMode', 'SetBkMode', 'SelectPalette', 'SelectObject', 'ExtSelectClipRgn', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'PtVisible', 'LineTo', 'IntersectClipRect', 'GetWindowExtEx', 'GetViewportExtEx', 'GetPixel', 'GetObjectType', 'GetClipBox', 'ExcludeClipRect', 'Escape', 'CreateRectRgn', 'CreatePatternBrush', 'CreatePen', 'CreateHatchBrush', 'CreateCompatibleDC', 'BitBlt', 'CreateBitmap', 'SetTextColor', 'SetBkColor', 'GetObjectW', 'GetStockObject', 'DeleteObject', 'CreateSolidBrush', 'GetDeviceCaps', 'CreateDCW', 'CopyMetaFileW', 'DeleteDC', 'TransparentBlt', 'AlphaBlend', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'RegQueryValueExA', 'RegCloseKey', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryValueW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegQueryValueExW', 'DeleteService', 'QueryServiceStatusEx', 'CloseServiceHandle', 'QueryServiceStatus', 'ControlService', 'OpenServiceW', 'OpenSCManagerW', 'RegSetValueExW', 'RegDeleteValueW', 'RegOpenKeyExW', 'DragQueryFileW', 'SHGetFolderPathW', 'ShellExecuteExW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHAppBarMessage', 'DragFinish', 'CommandLineToArgvW', 'SHGetFileInfoW', 'InitCommonControlsEx', 'PathFindFileNameW', 'PathAppendW', 'PathFileExistsW', 'PathFindExtensionW', 'PathFileExistsA', 'StrTrimW', 'PathRemoveFileSpecW', 'PathIsUNCW', 'PathStripToRootW', 'StrFormatKBSizeW', 'IsAppThemed', 'OpenThemeData', 'CloseThemeData', 'DrawThemeBackground', 'GetThemeColor', 'GetCurrentThemeName', 'DrawThemeParentBackground', 'DrawThemeText', 'GetThemePartSize', 'IsThemeBackgroundPartiallyTransparent', 'GetThemeSysColor', 'GetWindowTheme', 'OleGetClipboard', 'OleUninitialize', 'OleInitialize', 'CoFreeUnusedLibraries', 'DoDragDrop', 'OleIsCurrentClipboard', 'CoLockObjectExternal', 'RegisterDragDrop', 'RevokeDragDrop', 'OleLockRunning', 'CoInitializeEx', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'CreateStreamOnHGlobal', 'CreateILockBytesOnHGlobal', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CoGetClassObject', 'CoDisconnectObject', 'CoInitialize', 'CoCreateInstance', 'CLSIDFromProgID', 'CLSIDFromString', 'CoCreateGuid', 'CoUninitialize', 'ReleaseStgMedium', 'OleDuplicateData', 'CoTaskMemFree', 'CoTaskMemAlloc', 'OleFlushClipboard', 'SafeArrayDestroy', 'SysAllocString', 'VariantTimeToSystemTime', 'VariantCopy', 'VarBstrFromDate', 'LoadTypeLib', 'OleCreateFontIndirect', 'VariantChangeType', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SystemTimeToVariantTime', 'SysStringLen', 'SysFreeString', 'OleUIBusyW', 'GdipBitmapLockBits', 'GdipDrawImageRectI', 'GdiplusShutdown', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdipCloneImage', 'GdipDisposeImage', 'GdipGetImageGraphicsContext', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipSetInterpolationMode', 'GdipBitmapUnlockBits', 'GdipDeleteGraphics', 'GdipDrawImageI', 'GdipCreateBitmapFromHBITMAP', 'GdipCreateFromHDC', 'PlaySoundW', 'timeGetTime', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'EnumProcesses', 'GetModuleBaseNameW', 'EnumProcessModules', 'WSASetLastError', 'getsockname', 'getsockopt', 'connect', 'bind', 'accept', 'htonl', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'listen', 'select', 'ioctlsocket', 'closesocket', '__WSAFDIsSet', 'WSACleanup', 'WSAStartup', 'WSAIoctl', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext'], ['memcpy', 'LocaleNameToLCID', 'IsSystemResumeAutomatic', 'CreateTimerQueue', 'GetFileSize', 'GetProcessShutdownParameters', 'FreeLibrary', 'GetProcAddress', 'LocalFree', 'GetPrivateProfileStructW', 'RaiseException', 'LocalAlloc', 'LoadLibraryA', 'InterlockedExchange', 'GetLastError', 'PathUnExpandEnvStringsA', 'SetupGetBackupInformationW', 'CertGetCRLContextProperty', 'WSAIsBlocking', 'ClusterRegCloseKey', 'LoadCursorA', 'MprAdminPortDisconnect'], ['ReleaseMutex', 'GetWindowsDirectoryW', 'CreateEventW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'TerminateThread', 'ExitProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'TerminateProcess', 'Process32NextW', 'CopyFileW', 'MoveFileW', 'lstrcatW', 'GetEnvironmentVariableW', 'GetTempFileNameW', 'GetDiskFreeSpaceExW', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'VirtualQuery', 'InterlockedCompareExchange', 'GetCurrentThread', 'VirtualProtect', 'SuspendThread', 'MapViewOfFile', 'CreateFileMappingW', 'LoadLibraryA', 'GetFileAttributesExW', 'GetFileAttributesW', 'FlushViewOfFile', 'SetFileTime', 'SetFileAttributesW', 'LocalAlloc', 'GetLogicalDriveStringsA', 'GetVersion', 'GetSystemDirectoryA', 'GetDriveTypeA', 'GetVolumeInformationA', 'GetDiskFreeSpaceExA', 'GetPrivateProfileStringW', 'GetModuleHandleA', 'GetSystemDefaultLangID', 'GetFileType', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'DosDateTimeToFileTime', 'FindResourceW', 'LoadResource', 'Sleep', 'lstrcmpW', 'MulDiv', 'SetEvent', 'OpenEventW', 'InterlockedIncrement', 'InterlockedDecrement', 'LoadLibraryExW', 'lstrcmpiW', 'FlushInstructionCache', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'FreeResource', 'FindResourceExW', 'GetCurrentThreadId', 'GlobalMemoryStatusEx', 'CreateThread', 'CreateMutexW', 'GetExitCodeProcess', 'WaitForSingleObject', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetLocaleInfoW', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'QueryPerformanceCounter', 'GetStartupInfoA', 'SetHandleCount', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetConsoleMode', 'GetConsoleCP', 'GetTimeZoneInformation', 'GetModuleFileNameA', 'GetStdHandle', 'HeapCreate', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetStringTypeW', 'GetCPInfo', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'GetStartupInfoW', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TlsFree', 'DeleteAtom', 'FindAtomW', 'TlsAlloc', 'AddAtomW', 'GetAtomNameW', 'TlsSetValue', 'TlsGetValue', 'SetEndOfFile', 'GetSystemTimeAsFileTime', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'HeapSize', 'OpenProcess', 'GetCurrentProcess', 'RemoveDirectoryW', 'lstrcpyW', 'GetFullPathNameW', 'SetLastError', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'MoveFileExW', 'GetTickCount', 'LockResource', 'SizeofResource', 'InterlockedExchange', 'lstrcmpiA', 'lstrcmpA', 'WideCharToMultiByte', 'lstrlenW', 'RaiseException', 'GetVersionExW', 'MultiByteToWideChar', 'lstrlenA', 'GetLastError', 'VirtualAlloc', 'ReadFile', 'VirtualFree', 'SetFilePointer', 'GetFileSize', 'LeaveCriticalSection', 'CreateFileW', 'EnterCriticalSection', 'FreeLibrary', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetProcAddress', 'CreateProcessW', 'LoadLibraryW', 'GetModuleFileNameW', 'GetModuleHandleW', 'GetCurrentProcessId', 'CloseHandle', 'HeapReAlloc', 'HeapDestroy', 'DeleteFileW', 'CreateDirectoryW', 'GetSystemDirectoryW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'WriteFile', 'CreateFileA', 'OpenMutexW', 'DeviceIoControl', 'ShowWindow', 'GetWindowThreadProcessId', 'CallWindowProcW', 'GetDesktopWindow', 'GetSystemMetrics', 'WindowFromPoint', 'GetMessageW', 'TranslateMessage', 'SystemParametersInfoW', 'SetCursor', 'GetCursorPos', 'UpdateLayeredWindow', 'UpdateWindow', 'PostQuitMessage', 'GetShellWindow', 'PostMessageW', 'SetTimer', 'IsWindow', 'FindWindowW', 'SendMessageW', 'GetWindow', 'GetWindowRect', 'GetParent', 'GetCapture', 'TrackMouseEvent', 'AdjustWindowRectEx', 'DrawTextW', 'InflateRect', 'DrawIconEx', 'GetIconInfo', 'WindowFromDC', 'UnregisterClassA', 'DispatchMessageW', 'GetTopWindow', 'IsWindowVisible', 'RegisterClassExW', 'GetClassInfoExW', 'LoadCursorW', 'DefWindowProcW', 'DestroyWindow', 'GetDlgItem', 'CreateWindowExW', 'EndDialog', 'CharNextW', 'DestroyAcceleratorTable', 'ReleaseDC', 'GetWindowLongW', 'SetWindowLongW', 'MapWindowPoints', 'GetClientRect', 'GetMonitorInfoW', 'SetWindowPos', 'PtInRect', 'ExitWindowsEx', 'GetForegroundWindow', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'wsprintfW', 'LoadStringW', 'DialogBoxParamW', 'IsIconic', 'GetKeyState', 'MessageBoxW', 'KillTimer', 'RegisterWindowMessageW', 'GetWindowTextLengthW', 'GetWindowTextW', 'SetWindowTextW', 'BeginPaint', 'EndPaint', 'IsChild', 'GetFocus', 'SetFocus', 'GetClassNameW', 'GetSysColor', 'RedrawWindow', 'CreateAcceleratorTableW', 'ClientToScreen', 'ScreenToClient', 'MoveWindow', 'SetCapture', 'ReleaseCapture', 'FillRect', 'InvalidateRgn', 'InvalidateRect', 'GetDC', 'MonitorFromWindow', 'CreateSolidBrush', 'CreateCompatibleBitmap', 'BitBlt', 'GetStockObject', 'GetDeviceCaps', 'GetObjectW', 'SelectObject', 'DeleteObject', 'CreateDIBSection', 'CreateCompatibleDC', 'DeleteDC', 'SetViewportOrgEx', 'GetObjectType', 'GetRandomRgn', 'GdiAlphaBlend', 'GetLayout', 'SetLayout', 'GetCurrentObject', 'SetBkMode', 'SetGraphicsMode', 'SetWorldTransform', 'ModifyWorldTransform', 'GetTextExtentPoint32W', 'CreateFontIndirectW', 'SelectClipRgn', 'CreateRectRgn', 'CombineRgn', 'OffsetRgn', 'GetRgnBox', 'CreateRectRgnIndirect', 'RectVisible', 'SaveDC', 'IntersectClipRect', 'RestoreDC', 'LPtoDP', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCreateKeyA', 'SetSecurityDescriptorDacl', 'AddAccessAllowedAce', 'InitializeAcl', 'GetLengthSid', 'RegSetKeySecurity', 'SetSecurityDescriptorOwner', 'InitializeSecurityDescriptor', 'RegSetValueExW', 'RegCreateKeyExW', 'DuplicateTokenEx', 'GetTokenInformation', 'SetNamedSecurityInfoW', 'OpenProcessToken', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegQueryValueExW', 'RegEnumKeyExW', 'SHGetFolderPathW', 'SHGetSpecialFolderPathA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'SHChangeNotify', 'SHFileOperationW', 'PropVariantClear', 'OleInitialize', 'CLSIDFromString', 'CLSIDFromProgID', 'CoGetClassObject', 'OleLockRunning', 'StringFromGUID2', 'OleUninitialize', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'CoTaskMemFree', 'RegisterDragDrop', 'RevokeDragDrop', 'DoDragDrop', 'CoInitialize', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'CoUninitialize', 'CreateStdDispatch', 'CreateDispTypeInfo', 'VariantChangeType', 'VarCmp', 'SysAllocStringLen', 'LoadTypeLib', 'VariantCopy', 'LoadRegTypeLib', 'OleCreateFontIndirect', 'VarUI4FromStr', 'VarBstrCmp', 'SysStringLen', 'VariantClear', 'SysAllocString', 'SysFreeString', 'VariantInit', 'StrStrIW', 'StrCmpIW', 'SHDeleteKeyW', 'StrToIntW', 'SHDeleteEmptyKeyW', 'PathRemoveBackslashW', 'SHStrDupW', 'PathFindExtensionW', 'SHDeleteValueW', 'SHSetValueA', 'PathIsRootW', 'SHGetValueA', 'SHSetValueW', 'PathAppendW', 'PathRemoveFileSpecW', 'PathFindFileNameW', 'SHGetValueW', 'PathFileExistsW', 'InitCommonControlsEx', 'WinVerifyTrust', 'EnumProcessModules', 'GetModuleFileNameExW', 'GetModuleInformation', 'HttpAddRequestHeadersA', 'InternetOpenUrlW', 'InternetErrorDlg', 'InternetCrackUrlW', 'HttpQueryInfoA', 'InternetOpenW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpAddRequestHeadersW', 'InternetQueryOptionW', 'InternetSetOptionW', 'HttpSendRequestW', 'HttpQueryInfoW', 'InternetReadFile', 'InternetCloseHandle', 'CryptQueryObject', 'CryptMsgGetParam', 'CertFindCertificateInStore', 'CertFreeCertificateContext', 'CertCloseStore', 'CryptMsgClose', 'CertGetNameStringW', 'Netbios', 'GdiplusStartup', 'GdiplusShutdown', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'SetupIterateCabinetW'], ['InitCommonControlsEx', 'GetStockObject', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'free', 'CoInitialize', 'ShellExecuteExW', 'PathRemoveArgsW', 'SetFocus', 'timeBeginPeriod'], ['WriteConsoleW', 'Process32Next', 'CreateToolhelp32Snapshot', 'Process32First', 'GetModuleFileNameA', 'CloseHandle', 'GlobalFree', 'GlobalAlloc', 'GetLastError', 'Sleep', 'OpenProcess', 'GetCurrentProcess', 'WinExec', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'DuplicateTokenEx', 'AdjustTokenPrivileges', 'CloseServiceHandle', 'LookupPrivilegeValueA', 'OpenSCManagerA', 'CreateProcessWithTokenW', 'ImpersonateLoggedOnUser', 'OpenProcessToken', 'SetThreadToken', 'GetTokenInformation', 'OpenServiceA', 'QueryServiceStatusEx', 'ConvertSidToStringSidW', 'StartServiceW'], ['CreateDCW', 'DPtoLP', 'SetMapMode', 'GetObjectW', 'DeleteDC', 'EnumFontFamiliesExW', 'CopyMetaFileW', 'StretchDIBits', 'PlayEnhMetaFile', 'GdiComment', 'WidenPath', 'StrokePath', 'StrokeAndFillPath', 'SetMiterLimit', 'GetPath', 'GetMiterLimit', 'FlattenPath', 'CreateMetaFileW', 'CloseMetaFile', 'CreateEnhMetaFileW', 'CloseEnhMetaFile', 'ExtTextOutW', 'GetDCOrgEx', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'CreateBitmap', 'SaveDC', 'RestoreDC', 'SelectObject', 'GetStockObject', 'SelectPalette', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetGraphicsMode', 'SetWorldTransform', 'ModifyWorldTransform', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'DeleteObject', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'UnrealizeObject', 'CreatePenIndirect', 'CreateBrushIndirect', 'CreateFontIndirectW', 'CreateFontW', 'CreateBitmapIndirect', 'SetBitmapBits', 'GetBitmapBits', 'SetBitmapDimensionEx', 'GetBitmapDimensionEx', 'CreateCompatibleBitmap', 'CreateDiscardableBitmap', 'CreatePalette', 'CreateHalftonePalette', 'GetPaletteEntries', 'SetPaletteEntries', 'AnimatePalette', 'GetNearestPaletteIndex', 'ResizePalette', 'CreateRectRgnIndirect', 'CreateEllipticRgn', 'CreateEllipticRgnIndirect', 'CreatePolygonRgn', 'CreatePolyPolygonRgn', 'CreateRoundRectRgn', 'PathToRegion', 'ExtCreateRegion', 'GetRegionData', 'SetRectRgn', 'CombineRgn', 'EqualRgn', 'OffsetRgn', 'GetRgnBox', 'PtInRegion', 'RectInRegion', 'CreateICW', 'CreateCompatibleDC', 'GetBrushOrgEx', 'SetBrushOrgEx', 'EnumObjects', 'GetNearestColor', 'RealizePalette', 'UpdateColors', 'GetBkColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetMapMode', 'GetGraphicsMode', 'GetWorldTransform', 'GetViewportOrgEx', 'GetViewportExtEx', 'GetWindowOrgEx', 'GetWindowExtEx', 'LPtoDP', 'FillRgn', 'FrameRgn', 'InvertRgn', 'PaintRgn', 'PtVisible', 'RectVisible', 'Arc', 'Polyline', 'Chord', 'Ellipse', 'Pie', 'Polygon', 'PolyPolygon', 'Rectangle', 'RoundRect', 'PatBlt', 'BitBlt', 'StretchBlt', 'GetPixel', 'SetPixel', 'FloodFill', 'ExtFloodFill', 'TextOutW', 'GetTextExtentPoint32W', 'GetTextAlign', 'GetTextFaceW', 'GetTextMetricsW', 'GetTextCharacterExtra', 'GetCharWidthW', 'GetFontLanguageInfo', 'GetCharacterPlacementW', 'GetAspectRatioFilterEx', 'Escape', 'SetBoundsRect', 'GetBoundsRect', 'ResetDCW', 'GetOutlineTextMetricsW', 'GetCharABCWidthsW', 'GetFontData', 'GetKerningPairsW', 'GetGlyphOutlineW', 'StartDocW', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'MaskBlt', 'PlgBlt', 'SetPixelV', 'AngleArc', 'GetArcDirection', 'PolyPolyline', 'GetColorAdjustment', 'GetCurrentObject', 'PolyBezier', 'DrawEscape', 'ExtEscape', 'GetCharABCWidthsFloatW', 'GetCharWidthFloatW', 'AbortPath', 'BeginPath', 'CloseFigure', 'EndPath', 'FillPath', 'CreatePen', 'UnregisterClassA', 'MsgWaitForMultipleObjects', 'PeekMessageA', 'IsWindowUnicode', 'DrawTextExW', 'DrawTextW', 'GetMessageA', 'DispatchMessageA', 'SubtractRect', 'UnionRect', 'InflateRect', 'SetRect', 'PtInRect', 'SetClipboardData', 'SendMessageW', 'CheckRadioButton', 'GetActiveWindow', 'SendDlgItemMessageW', 'AppendMenuW', 'IsDialogMessageW', 'SetForegroundWindow', 'PostMessageW', 'FillRect', 'TrackPopupMenu', 'DestroyWindow', 'IsRectEmpty', 'DestroyIcon', 'PostQuitMessage', 'PeekMessageW', 'MapDialogRect', 'IsWindow', 'TabbedTextOutW', 'GetWindowThreadProcessId', 'EnableWindow', 'IsWindowEnabled', 'GetLastActivePopup', 'CharUpperW', 'MapVirtualKeyW', 'GetKeyNameTextW', 'SystemParametersInfoW', 'GetClipboardFormatNameW', 'GetClipboardFormatNameA', 'GetDialogBaseUnits', 'TranslateMessage', 'UnregisterClassW', 'UnpackDDElParam', 'ReuseDDElParam', 'DestroyMenu', 'TranslateAcceleratorW', 'LoadAcceleratorsW', 'GetMessageW', 'ReleaseCapture', 'SetCursor', 'SetRectEmpty', 'GetCursorPos', 'CheckMenuRadioItem', 'GetMenuContextHelpId', 'SetMenuContextHelpId', 'LoadMenuIndirectW', 'LoadMenuW', 'RemoveMenu', 'ModifyMenuW', 'InsertMenuItemW', 'InsertMenuW', 'GetSubMenu', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'EnableMenuItem', 'CheckMenuItem', 'DeleteMenu', 'IsMenu', 'CreatePopupMenu', 'CreateMenu', 'ScrollDC', 'GrayStringW', 'DrawFrameControl', 'GetTabbedTextExtentW', 'DrawFocusRect', 'DrawEdge', 'DrawStateW', 'DrawIcon', 'InvertRect', 'FrameRect', 'ExcludeUpdateRgn', 'WindowFromDC', 'GetSysColorBrush', 'GetAsyncKeyState', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'ScrollWindowEx', 'IsDlgButtonChecked', 'SetDlgItemTextW', 'SetDlgItemInt', 'GetDlgItemTextW', 'GetDlgItemInt', 'CheckDlgButton', 'OpenIcon', 'CloseWindow', 'LoadCursorW', 'PostThreadMessageW', 'GetWindowContextHelpId', 'SetWindowContextHelpId', 'SendNotifyMessageW', 'GetForegroundWindow', 'ShowCaret', 'HideCaret', 'SetCaretPos', 'GetCaretPos', 'CreateCaret', 'GetClipboardViewer', 'GetOpenClipboardWindow', 'OpenClipboard', 'SetClipboardViewer', 'ChangeClipboardChain', 'FlashWindow', 'WindowFromPoint', 'SetParent', 'FindWindowExW', 'FindWindowW', 'ChildWindowFromPointEx', 'ChildWindowFromPoint', 'ShowScrollBar', 'GetNextDlgTabItem', 'GetNextDlgGroupItem', 'DlgDirSelectComboBoxExW', 'DlgDirSelectExW', 'DlgDirListComboBoxW', 'DlgDirListW', 'SetCapture', 'KillTimer', 'SetTimer', 'DrawCaption', 'DrawAnimatedRects', 'EnableScrollBar', 'RedrawWindow', 'LockWindowUpdate', 'GetDCEx', 'ShowOwnedPopups', 'IsWindowVisible', 'ValidateRgn', 'ValidateRect', 'InvalidateRgn', 'InvalidateRect', 'GetUpdateRgn', 'GetUpdateRect', 'UpdateWindow', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'BringWindowToTop', 'GetWindowRgn', 'SetWindowRgn', 'ArrangeIconicWindows', 'IsZoomed', 'HiliteMenuItem', 'GetSystemMenu', 'DrawMenuBar', 'SetMenu', 'GetMenu', 'DragDetect', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'SetMenuItemBitmaps', 'RegisterWindowMessageW', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'LoadIconW', 'SendDlgItemMessageA', 'GetClientRect', 'MapWindowPoints', 'GetSysColor', 'DispatchMessageW', 'GetFocus', 'SetFocus', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'GetWindow', 'GetCapture', 'WinHelpW', 'TrackPopupMenuEx', 'SetWindowPlacement', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetKeyState', 'GetDlgCtrlID', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'CallWindowProcW', 'RemovePropW', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'SetWindowLongW', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'EndDialog', 'GetDesktopWindow', 'SetActiveWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamW', 'GetDlgItem', 'UnhookWindowsHookEx', 'MessageBoxW', 'GetWindowLongW', 'GetParent', 'GetClipboardOwner', 'CoRevokeClassObject', 'CoUnmarshalInterface', 'CreateStreamOnHGlobal', 'CoMarshalInterface', 'CoReleaseMarshalData', 'OleRun', 'CLSIDFromProgID', 'CLSIDFromString', 'StringFromGUID2', 'CoCreateInstance', 'OleUninitialize', 'OleInitialize', 'OleSetContainedObject', 'CoDisconnectObject', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CreateBindCtx', 'OleDuplicateData', 'CoRegisterClassObject', 'SysFreeString', 'SystemTimeToVariantTime', 'VarDateFromUdate', 'VarUdateFromDate', 'VariantTimeToSystemTime', 'DosDateTimeToVariantTime', 'LoadTypeLib', 'SysAllocString', 'VarBstrFromDate', 'VarDateFromStr', 'VarDecFromStr', 'VarBstrFromDec', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCopy', 'VarBstrFromCy', 'VarCyFromStr', 'SysReAllocStringLen', 'VariantCopy', 'SafeArrayCreate', 'SafeArrayRedim', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SysStringByteLen', 'SysAllocStringByteLen', 'SysStringLen', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'VirtualProtect', 'CreatePipe', 'GlobalFree', 'Sleep', 'GetSystemDirectoryW', 'GlobalAlloc', 'GetTickCount', 'GlobalLock', 'SetUnhandledExceptionFilter', 'FreeLibrary', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetConsoleMode', 'GetConsoleCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'HeapReAlloc', 'FatalAppExitA', 'SetHandleCount', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'OutputDebugStringW', 'GetFileType', 'WriteConsoleW', 'OutputDebugStringA', 'GetStdHandle', 'DebugBreak', 'ExitProcess', 'ExitThread', 'CreateThread', 'GetModuleFileNameA', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'IsBadReadPtr', 'HeapValidate', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'GetDiskFreeSpaceW', 'GetTempFileNameW', 'GetFileTime', 'SetFileTime', 'GetFileAttributesW', 'GetShortPathNameW', 'lstrcmpiW', 'GetStringTypeExW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'MoveFileW', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileW', 'GetCurrentProcess', 'DuplicateHandle', 'GetHandleInformation', 'GetCurrentDirectoryW', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'GetThreadLocale', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'FindResourceExW', 'InterlockedIncrement', 'CompareStringA', 'InterlockedExchange', 'GetCurrentThread', 'GetLocaleInfoW', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GlobalFlags', 'CreateEventW', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'CopyFileW', 'GlobalSize', 'FormatMessageW', 'GetProfileIntW', 'MulDiv', 'GetModuleHandleA', 'GetVersion', 'GetVersionExW', 'SuspendThread', 'ResumeThread', 'GetThreadPriority', 'SetThreadPriority', 'CompareStringW', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpW', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExA', 'FreeResource', 'lstrlenA', 'lstrcmpA', 'MultiByteToWideChar', 'SetErrorMode', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'GlobalUnlock', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'OpenFileMappingA', 'LocalFree', 'GetAtomNameW', 'GlobalGetAtomNameW', 'lstrlenW', 'WideCharToMultiByte', 'InterlockedDecrement', 'GetModuleHandleW', 'GetProcAddress', 'GetCurrentProcessId', 'GetModuleFileNameW', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetLastError', 'SetLastError', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'SetStdHandle', 'GetTimeZoneInformation', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetEnvironmentVariableA', 'OpenEventA', 'FileTimeToLocalFileTime', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateFileMappingA', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GetFileTitleW', 'DragAcceptFiles', 'ExtractIconW', 'SHGetFileInfoW', 'DragQueryFileW', 'DragFinish', 'PathFindExtensionW', 'PathStripToRootW', 'PathFindFileNameW', 'PathRemoveExtensionW', 'PathIsUNCW', 'RegQueryValueW', 'OpenThreadToken', 'RevertToSelf', 'SetThreadToken', 'GetFileSecurityW', 'SetFileSecurityW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegSetValueW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SystemTimeToTzSpecificLocalTime', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'FileTimeToSystemTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsMenu', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'SHGetFileInfoA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'MulDiv', 'VirtualProtect', 'NtFlushInstructionCache', 'GetModuleHandleA', 'LoadLibraryA', 'LoadLibraryW', 'FileProtocolHandlerA'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemTime', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WideCharToMultiByte', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'calloc', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'memcpy', 'memset', 'printf', 'realloc', 'sprintf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strlen', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SHFileOperationA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'inet_ntoa', 'ioctlsocket', 'ntohs', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSectionAndSpinCount', 'HeapDestroy', 'RaiseException', 'GetLastError', 'HeapSize', 'DecodePointer', 'DeleteCriticalSection', 'GetModuleHandleW', 'VirtualProtect', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'ExpandEnvironmentStringsW', 'CreateFileW', 'WriteFile', 'CloseHandle', 'VirtualAlloc', 'ExitProcess', 'FindResourceExW', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetStringTypeW', 'EncodePointer', 'GetCommandLineA', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'SetLastError', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleFileNameW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'RtlUnwind', 'LCMapStringW', 'WriteConsoleW', 'ShellExecuteW', 'PathFileExistsW', 'PathRemoveFileSpecW', 'PathAppendW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'MessageBoxA', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsDBCSLeadByteEx', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetConsoleCP', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetFileType', 'GetFileSize', 'CreateFileW', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'PeekMessageW', 'OemToCharBuffW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetVolumeLabelW', 'SetThreadPriority', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'RaiseException', 'QueryDosDeviceW', 'IsDebuggerPresent', 'MoveFileW', 'MapViewOfFile', 'LocalFree', 'LocalFileTimeToFileTime', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathW', 'GetTempFileNameW', 'GetSystemTimes', 'GetStdHandle', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileTime', 'GetFileSize', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileW', 'DeleteCriticalSection', 'CreateProcessW', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ShellExecuteW', 'SHGetSpecialFolderPathW', 'sprintf', '_ftol', 'strncmp', '_stricmp'], ['SetFilePointerEx', 'HeapReAlloc', 'ReadFile', 'LoadLibraryExW', 'OutputDebugStringW', 'SetStdHandle', 'WriteConsoleW', 'ReadConsoleW', 'CreateFileW', 'VirtualProtect', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'CloseHandle', 'GetModuleFileNameW', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'Sleep', 'GetWindowsDirectoryA', 'GetProcessHeap', 'HeapAlloc', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'GetCurrentThreadId', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetStdHandle', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetWindowRect', 'TrackPopupMenu', 'FillRect', 'GetClientRect', 'IsDialogMessageA', 'GetForegroundWindow', 'CreateDialogIndirectParamA', 'DefWindowProcA', 'SetWindowsHookExA', 'CreatePopupMenu', 'GetSysColorBrush', 'GetActiveWindow', 'AppendMenuA', 'PostMessageA', 'DialogBoxIndirectParamA', 'DrawFrameControl', 'GetWindowThreadProcessId', 'CreateRectRgn', 'PtVisible', 'CreateFontA', 'GetStockObject', 'GetPixel', 'SelectClipRgn', 'StartServiceCtrlDispatcherA', 'OpenProcessToken', 'DeleteService', 'OpenThreadToken', 'SetEntriesInAclA', 'GetTokenInformation', 'RegCloseKey', 'RegEnumKeyA', 'FreeSid', 'OpenSCManagerA', 'SetServiceStatus', 'AllocateAndInitializeSid', 'QueryServiceStatus', 'RegOpenKeyExA', 'LookupPrivilegeValueW', 'SetSecurityDescriptorDacl', 'RegCreateKeyA', 'InitializeSecurityDescriptor', 'CreateServiceA', 'RegQueryValueExA', 'RegisterServiceCtrlHandlerA', 'RegSetValueExA', 'OpenServiceA', 'ChooseFontA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'CommDlgExtendedError', 'ReplaceTextA', 'ImageList_Create', 'ImageList_GetImageCount', 'ImageList_GetBkColor', 'ImageList_EndDrag', 'ImageList_DragEnter'], ['VerSetConditionMask', 'SetLocaleInfoW', 'FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'FillConsoleOutputCharacterW', 'VirtualFree', 'TerminateProcess', 'GetLastError', 'GetVersionExA', 'FreeResource', 'EnumResourceNamesW', 'FindNextFileA', 'CopyFileExW', 'BuildCommDCBW', 'SetDefaultCommConfigA', 'WritePrivateProfileStructA', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputA', 'WriteConsoleInputA', 'LoadResource', 'AddAtomA', 'SearchPathA', 'GetThreadTimes', 'CallNamedPipeW', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryA', 'GlobalAlloc', 'SetProcessPriorityBoost', 'GetProfileSectionW', 'DeleteFileW', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceW', 'SetLastError', 'FatalAppExitW', 'SetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'WriteFileGather', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualAllocEx', 'InterlockedExchangeAdd', 'GetSystemTimeAdjustment', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'GetACP', 'GlobalFindAtomW', 'lstrcatA', 'SetMailslotInfo', 'CreateActCtxW', '_lwrite', 'OutputDebugStringA', 'CreateNamedPipeA', 'GetAtomNameW', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'DebugActiveProcessStop', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringA', 'GetFileAttributesExA', 'LocalFileTimeToFileTime', 'MoveFileA', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameW', 'VerLanguageNameW', 'LockFile', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'ContinueDebugEvent', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'OpenMutexW', 'GetModuleFileNameW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthW', 'GlobalUnWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeA', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'ReadConsoleW', 'MapUserPhysicalPagesScatter', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'GetDateFormatW', 'GetConsoleAliasExesW', 'EnumDateFormatsA', 'GlobalUnfix', 'OpenMutexA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InterlockedIncrement', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'InitiateSystemShutdownA'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['InitCommonControlsEx', 'SHBrowseForFolderW', 'SHGetSpecialFolderLocation', 'SHGetFileInfoW', 'CommandLineToArgvW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'CreateFileA', 'FreeLibrary', 'GetProcessHeap', 'HeapAlloc', 'GetLastError', 'GetProcAddress', 'HeapFree', 'LoadLibraryW', 'GetModuleFileNameW', 'LocalFree', 'WaitForSingleObject', 'CreateProcessW', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'CloseHandle', 'SetFileApisToOEM', 'GetCurrentThread', 'SetPriorityClass', 'GetEnvironmentVariableW', 'SetThreadPriority', 'GetCurrentProcess', 'GetModuleHandleW', 'GetVersionExW', 'CreateFileW', 'ExpandEnvironmentStringsW', 'GetCommandLineW', 'DeleteFileW', 'GetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryW', 'FindFirstFileW', 'FindClose', 'FindNextFileW', 'FormatMessageW', 'InterlockedExchangeAdd', 'SetEndOfFile', 'SetFileTime', 'WriteFile', 'SetFilePointer', 'GetFileSize', 'ReadFile', 'WideCharToMultiByte', 'GetACP', 'MultiByteToWideChar', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetTempPathW', 'GetFullPathNameW', 'GetWindowsDirectoryW', 'GetTempFileNameW', 'SetFileAttributesW', 'GetLongPathNameW', 'MoveFileW', 'lstrlenW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'FindResourceW', 'FileTimeToSystemTime', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetStringTypeW', 'GetStringTypeA', 'GetLocaleInfoA', 'LoadLibraryA', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'LCMapStringW', 'LCMapStringA', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'WaitForMultipleObjects', 'ResumeThread', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetSystemTimeAsFileTime', 'GetVersionExA', 'GetStartupInfoW', 'ExitThread', 'GetCurrentThreadId', 'CreateThread', 'RaiseException', 'RtlUnwind', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'Sleep', 'HeapSize', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'CreateDialogParamW', 'SetTimer', 'LoadIconW', 'ScreenToClient', 'TranslateMessage', 'IsWindowVisible', 'GetMessageW', 'IsDialogMessageW', 'DestroyIcon', 'IsWindow', 'MessageBoxW', 'ShowWindow', 'PostMessageW', 'DialogBoxParamW', 'SetWindowPos', 'GetWindowRect', 'GetSystemMetrics', 'GetDlgItem', 'SendMessageW', 'EndDialog', 'SetFocus', 'GetWindowTextW', 'SetWindowTextW', 'PostQuitMessage', 'DispatchMessageW', 'GetActiveWindow', 'GetDesktopWindow', 'LoadStringW', 'KillTimer', 'EnableWindow', 'CreateSolidBrush', 'DeleteObject', 'CoUninitialize', 'CoTaskMemFree', 'CoInitializeEx', 'CoCreateInstance', 'CoInitialize'], ['__WSAFDIsSet', 'setsockopt', 'ntohs', 'recvfrom', 'sendto', 'htons', 'select', 'listen', 'WSAStartup', 'bind', 'closesocket', 'connect', 'socket', 'send', 'WSACleanup', 'ioctlsocket', 'accept', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'recv', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_ReplaceIcon', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_Destroy', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'WNetUseConnectionW', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'EnumProcesses', 'GetModuleBaseNameW', 'GetProcessMemoryInfo', 'EnumProcessModules', 'CreateEnvironmentBlock', 'DestroyEnvironmentBlock', 'UnloadUserProfile', 'LoadUserProfileW', 'HeapAlloc', 'Sleep', 'GetCurrentThreadId', 'RaiseException', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'lstrcpyW', 'MultiByteToWideChar', 'lstrlenW', 'lstrcmpiW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'FindNextFileW', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'GetProcessHeap', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'GetTempPathW', 'GetTempFileNameW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'SetErrorMode', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'DeviceIoControl', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetCurrentThread', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'LoadLibraryExW', 'HeapFree', 'WaitForSingleObject', 'CreateThread', 'DuplicateHandle', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetProcAddress', 'LoadLibraryA', 'FreeLibrary', 'GetModuleFileNameW', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'ExitProcess', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetTimeFormatW', 'GetDateFormatW', 'GetCommandLineW', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'HeapCreate', 'SetHandleCount', 'GetFileType', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'RtlUnwind', 'SetFilePointer', 'GetTimeZoneInformation', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'SetSystemPowerState', 'SetEnvironmentVariableA', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'ReleaseCapture', 'SetCapture', 'WindowFromPoint', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'CheckMenuRadioItem', 'SetWindowPos', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'SystemParametersInfoW', 'TranslateMessage', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'AttachThreadInput', 'GetFocus', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'GetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'MessageBoxW', 'DefWindowProcW', 'CopyImage', 'AdjustWindowRectEx', 'SetRect', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'GetMenuItemID', 'DispatchMessageW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'PeekMessageW', 'UnregisterHotKey', 'CharLowerBuffW', 'keybd_event', 'MonitorFromRect', 'GetWindowThreadProcessId', 'DeleteObject', 'AngleArc', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'GetDeviceCaps', 'MoveToEx', 'DeleteDC', 'GetPixel', 'CreateDCW', 'Ellipse', 'PolyDraw', 'BeginPath', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'GetStockObject', 'LineTo', 'GetSaveFileNameW', 'GetOpenFileNameW', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegConnectRegistryW', 'CloseServiceHandle', 'UnlockServiceDatabase', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetLengthSid', 'CopySid', 'LogonUserW', 'LockServiceDatabase', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'GetAce', 'AddAce', 'SetSecurityDescriptorDacl', 'RegOpenKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'InitiateSystemShutdownExW', 'OpenSCManagerW', 'RegCloseKey', 'DragQueryPoint', 'ShellExecuteExW', 'SHGetFolderPathW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHBrowseForFolderW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHGetMalloc', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CLSIDFromString', 'StringFromGUID2', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CoTaskMemAlloc', 'CoTaskMemFree', 'ProgIDFromCLSID', 'OleInitialize', 'CreateBindCtx', 'CLSIDFromProgID', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'OleUninitialize', 'IIDFromString', 'VariantChangeType', 'VariantCopyInd', 'DispCallFunc', 'CreateStdDispatch', 'CreateDispTypeInfo', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SysStringLen', 'SafeArrayAllocData', 'GetActiveObject', 'QueryPathOfRegTypeLib', 'SafeArrayAllocDescriptorEx', 'SafeArrayCreateVector', 'SysAllocString', 'VariantCopy', 'VariantClear', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'OleLoadPicture', 'SafeArrayAccessData', 'VariantInit'], ['CreateMutexW', 'GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'GetSystemWindowsDirectoryW', 'UnlockFile', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'GetVolumePathNameW', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetDevicePowerState', 'ReplaceFileA', 'GetComputerNameA', 'FindFirstFileA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'IsValidCodePage', 'CopyFileA', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'SetCurrentDirectoryA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'CharUpperBuffW', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'WinHttpQueryHeaders'], ['RaiseException', 'GetLastError', 'MultiByteToWideChar', 'lstrlenA', 'InterlockedDecrement', 'GetProcAddress', 'LoadLibraryA', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'GetModuleHandleA', 'Module32Next', 'CloseHandle', 'Module32First', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'SetEndOfFile', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetLocaleInfoA', 'CreateFileA', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'GetCommandLineA', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'FlushFileBuffers', 'SetFilePointer', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'RtlUnwind', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'OleInitialize', 'VariantInit', 'SafeArrayCreate', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'VariantClear', 'SysFreeString', 'SysAllocString', 'CorBindToRuntimeEx'], ['GetModuleFileNameA', 'GetNumberFormatW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetProfileIntA', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetThreadTimes', 'GetTickCount', 'GetVersionExA', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedIncrement', 'IsDBCSLeadByte', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenFileMappingW', 'OpenProcess', 'OutputDebugStringA', 'PostQueuedCompletionStatus', 'QueryPerformanceCounter', 'ReadFile', 'RtlUnwind', 'SetDefaultCommConfigW', 'GetLocaleInfoA', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetLocalTime', 'SetStdHandle', 'SetThreadAffinityMask', 'SetThreadIdealProcessor', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepEx', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VirtualFree', 'VirtualProtectEx', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcmpiA', 'lstrcpynA', 'lstrlenW', 'GetModuleHandleW', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetFileSize', 'GetFileAttributesW', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetConsoleAliasA', 'GetCommandLineA', 'GetCPInfo', 'GetBinaryTypeA', 'GetACP', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FlushFileBuffers', 'FatalAppExitA', 'ExpandEnvironmentStringsA', 'ExitProcess', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DnsHostnameToComputerNameW', 'DnsHostnameToComputerNameA', 'DisconnectNamedPipe', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateThread', 'CreateNamedPipeA', 'CreateFileW', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'ConvertDefaultLocale', 'ConnectNamedPipe', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'CancelIo', 'GetModuleHandleA', 'SetErrorMode', 'SetEnvironmentVariableA', 'VirtualAlloc', 'IsDlgButtonChecked', 'IsCharAlphaNumericW', 'InternalGetWindowText', 'GetWindowModuleFileNameA', 'GetMonitorInfoW', 'GetKeyState', 'ExitWindowsEx', 'EnumPropsExA', 'EndPaint', 'DrawTextW', 'DlgDirSelectExW', 'DdeUninitialize', 'CreateWindowExW', 'MapWindowPoints', 'CloseWindowStation', 'BeginPaint', 'LoadIconA', 'CharUpperW', 'GetClipboardSequenceNumber', 'CopyIcon', 'CreatePopupMenu', 'GetMessageTime', 'GetActiveWindow', 'GetParent', 'GetMenuCheckMarkDimensions', 'GetSystemMetrics', 'CharNextA', 'RegisterClassExA', 'SetLayeredWindowAttributes', 'TrackPopupMenu', 'wsprintfA', 'CreateCursor', 'LoadCursorFromFileW', 'GetMenuItemCount', 'GetTopWindow', 'GetDialogBaseUnits', 'InSendMessage', 'GetKBCodePage', 'GetMessagePos', 'GetKeyboardLayout', 'ShowCaret', 'CharLowerA', 'GetClipboardViewer', 'TranslateCharsetInfo', 'SetDIBitsToDevice', 'Rectangle', 'RectInRegion', 'PlayEnhMetaFileRecord', 'PATHOBJ_vGetBounds', 'ModifyWorldTransform', 'HT_Get8BPPMaskPalette', 'GetColorSpace', 'CreateHalftonePalette', 'RealizePalette', 'DeleteColorSpace', 'WidenPath', 'EndPath', 'FillPath', 'FlattenPath', 'GetTextAlign', 'EngTextOut', 'GdiDllInitialize', 'GdiSetPixelFormat', 'GetTextExtentExPointA', 'GetCharacterPlacementW', 'RegQueryValueExA', 'StartServiceCtrlDispatcherA', 'SetTokenInformation', 'SetServiceStatus', 'SetSecurityDescriptorDacl', 'SetNamedSecurityInfoA', 'RegisterServiceCtrlHandlerA', 'RegisterEventSourceA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenServiceA', 'OpenSCManagerA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'InitializeSecurityDescriptor', 'DuplicateTokenEx', 'DeregisterEventSource', 'DeleteService', 'CreateServiceA', 'CreateProcessAsUserA', 'CloseServiceHandle', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'SHGetDesktopFolder', 'SHGetPathFromIDListW', 'SHPathPrepareForWriteA', 'SHPathPrepareForWriteW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['GetTempPathA', 'GetLastError', 'WinExec', 'lstrlenW', 'FormatMessageW', 'LocalFree', 'AreFileApisANSI', 'ReadFile', 'TryEnterCriticalSection', 'HeapCreate', 'HeapFree', 'EnterCriticalSection', 'GetFullPathNameW', 'WriteFile', 'GetDiskFreeSpaceW', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'SetFilePointer', 'GetFullPathNameA', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'CreateFileW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'MultiByteToWideChar', 'GetDiskFreeSpaceA', 'GetFileAttributesA', 'GetFileAttributesExW', 'OutputDebugStringW', 'CreateFileA', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'GetSystemInfo', 'LoadLibraryW', 'HeapAlloc', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'GetProcAddress', 'CreateFileMappingA', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'GetProcessHeap', 'SystemTimeToFileTime', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'GetFileAttributesW', 'FindResourceW', 'LoadResource', 'LockResource', 'FreeResource', 'Sleep', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'GetCPInfo', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'InitializeSListHead', 'SetEvent', 'ResetEvent', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceFrequency', 'GetCurrentThread', 'GetThreadTimes', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetDateFormatW', 'GetTimeFormatW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'ReadConsoleW', 'GetTimeZoneInformation', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'WriteConsoleW', 'OutputDebugStringA', 'SizeofResource', 'RtlUnwind', 'RegCloseKey', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCreateKeyW', 'SHGetFolderPathW', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpOpenRequest', 'WinHttpSetOption', 'WinHttpCloseHandle', 'WinHttpAddRequestHeaders', 'WinHttpQueryAuthSchemes', 'WinHttpGetProxyForUrl', 'WinHttpSendRequest', 'WinHttpSetCredentials', 'WinHttpConnect', 'WinHttpQueryDataAvailable', 'WinHttpReceiveResponse', 'WinHttpOpen', 'WinHttpGetIEProxyConfigForCurrentUser'], ['CreateFileA', 'CreateTimerQueue', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleInputW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'CopyFileExW', 'GetStringTypeA', 'SetLocalTime', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadConsoleInputA', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'FillConsoleOutputCharacterA', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'WritePrivateProfileStringW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'BuildCommDCBW', 'OpenWaitableTimerA', 'LoadLibraryA', 'WriteConsoleA', 'InterlockedExchangeAdd', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'GlobalGetAtomNameW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'WaitForDebugEvent', 'SetThreadAffinityMask', 'GetVersionExA', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'FindNextVolumeA', 'EnumSystemLocalesW', 'CopyFileExA', 'GetTimeZoneInformation', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetStdHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'ImpersonateSelf'], ['GetModuleHandleW', 'GetDC', 'RegOpenKeyExA', 'ShellAboutA', '_CorExeMain', 'DrawStatusTextW'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'AllocConsole', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'HeapFree', 'GetProfileSectionA', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'GetVolumePathNameW', 'ActivateActCtx', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetFileAttributesW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'IsProcessorFeaturePresent', 'HeapCreate', 'HeapSize', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle'], ['GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'RtlUnwind', 'ExitProcess', 'GetModuleHandleExW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapQueryInformation', 'GetStdHandle', 'IsValidCodePage', 'GetFileType', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetTimeZoneInformation', 'OutputDebugStringW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'GetStringTypeW', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleW', 'ReadConsoleW', 'CreateFileW', 'SetEnvironmentVariableA', 'GetFileAttributesExA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'GetOEMCP', 'GlobalFlags', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'CompareStringW', 'WaitForSingleObject', 'GetCurrentProcessId', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSection', 'SetErrorMode', 'lstrcmpA', 'GetVersionExA', 'GetCurrentThread', 'GetVolumeInformationA', 'GetCurrentProcess', 'WriteFile', 'ReadFile', 'GetFullPathNameA', 'FlushFileBuffers', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'CompareStringA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'GlobalAddAtomA', 'LoadLibraryA', 'lstrcmpW', 'GlobalDeleteAtom', 'LoadLibraryExW', 'FreeLibrary', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'LeaveCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'LoadLibraryW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'SetLastError', 'OutputDebugStringA', 'GetACP', 'MultiByteToWideChar', 'GetCommandLineA', 'GetModuleHandleA', 'Sleep', 'CloseHandle', 'OpenProcess', 'Process32Next', 'ProcessIdToSessionId', 'Process32First', 'CreateToolhelp32Snapshot', 'WTSGetActiveConsoleSessionId', 'ReleaseMutex', 'CreateMutexA', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'DeleteCriticalSection', 'DecodePointer', 'HeapSize', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'LocalFree', 'FormatMessageA', 'UnhandledExceptionFilter', 'GetLastError', 'ShowWindow', 'LoadBitmapW', 'SetMenuItemInfoA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'GetMonitorInfoA', 'MonitorFromWindow', 'WinHelpA', 'LoadIconW', 'LoadIconA', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetClassNameA', 'GetClassLongA', 'SetWindowLongA', 'GetWindowLongA', 'PtInRect', 'CopyRect', 'GetSysColor', 'MapWindowPoints', 'ScreenToClient', 'AdjustWindowRectEx', 'GetWindowRect', 'GetClientRect', 'GetWindowTextA', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetSystemMetrics', 'RedrawWindow', 'ValidateRect', 'SetForegroundWindow', 'GetForegroundWindow', 'MessageBoxA', 'EnableWindow', 'PostQuitMessage', 'UpdateWindow', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'GetKeyState', 'GetFocus', 'GetDlgCtrlID', 'GetDlgItem', 'IsWindowVisible', 'SetWindowPos', 'DestroyWindow', 'IsWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'CallWindowProcA', 'DefWindowProcA', 'PostMessageA', 'SendMessageA', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'DispatchMessageA', 'RegisterWindowMessageA', 'GetParent', 'IsWindowEnabled', 'SetWindowTextA', 'CharUpperA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'TabbedTextOutA', 'GetDC', 'ReleaseDC', 'ClientToScreen', 'DestroyMenu', 'GetWindowThreadProcessId', 'InvalidateRect', 'KillTimer', 'SetTimer', 'SetCursor', 'RealChildWindowFromPoint', 'LoadCursorA', 'GetSysColorBrush', 'GetCursorPos', 'GetActiveWindow', 'TranslateMessage', 'GetMessageA', 'SetMapMode', 'ExtTextOutA', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'OffsetViewportOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'PtVisible', 'GetStockObject', 'GetClipBox', 'Escape', 'DeleteObject', 'DeleteDC', 'CreateBitmap', 'TextOutA', 'SetBkColor', 'SetTextColor', 'GetDeviceCaps', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegEnumValueA', 'RegSetValueExA', 'RegDeleteValueA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'StartServiceCtrlDispatcherA', 'DeleteService', 'ControlService', 'OpenServiceA', 'CloseServiceHandle', 'ChangeServiceConfig2A', 'CreateServiceA', 'OpenSCManagerA', 'RegisterServiceCtrlHandlerExA', 'SetServiceStatus', 'CreateProcessAsUserA', 'AdjustTokenPrivileges', 'SetTokenInformation', 'DuplicateTokenEx', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CryptDecrypt', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptDeriveKey', 'CryptHashData', 'CryptCreateHash', 'CryptReleaseContext', 'CryptAcquireContextA', 'ShellExecuteA', 'PathFindExtensionA', 'PathFindFileNameA', 'PathIsUNCA', 'PathStripToRootA', 'CoTaskMemFree', 'CoUninitialize', 'CoCreateGuid', 'CoCreateInstance', 'CoInitialize', 'VariantChangeType', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'URLDownloadToFileA', 'InternetGetConnectedState', 'DeleteUrlCacheEntry', 'WTSQueryUserToken', 'CreateEnvironmentBlock', 'CreateStdAccessibleObject', 'LresultFromObject'], ['GetSysColorBrush', 'MessageBeep', 'MessageBoxA', 'GetSystemMetrics', 'SendNotifyMessageA', 'TlsSetValue', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'SetEnvironmentVariableW', 'GetLastError', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetModuleHandleA', 'GetProcAddress', 'MultiByteToWideChar', 'FreeConsole', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'FreeEnvironmentStringsW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'WriteConsoleW', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW'], ['lstrlenW', 'WriteFile', 'GetModuleFileNameW', 'SetEndOfFile', 'FindClose', 'CreateFileW', 'lstrcmpA', 'MultiByteToWideChar', 'GetLastError', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'HeapAlloc', 'GetFileSize', 'GetProcessHeap', 'lstrcpyW', 'lstrcmpW', 'GetLogicalDrives', 'GetFileSizeEx', 'SetFilePointerEx', 'lstrcmpiW', 'MoveFileW', 'HeapFree', 'FindNextFileW', 'InitializeCriticalSectionEx', 'CreateEventW', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEvent', 'InitializeSListHead', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'FindFirstFileW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'SetLastError', 'QueryPerformanceFrequency', 'RtlUnwind', 'InterlockedPushEntrySList', 'RaiseException', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'HeapSize', 'DecodePointer', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'WriteConsoleW', 'QueryPerformanceCounter', 'ReadFile', 'WNetCloseEnum', 'WNetEnumResourceW', 'WNetOpenEnumW', 'StrStrW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'DeleteDC', 'GdipFree', '??0_Winit@std@@QAE@XZ', '_iob', 'ExtractIconA', 'PathFileExistsA', 'URLDownloadToFileA', 'SendInput', 'InternetOpenA', 'waveInOpen', 'WSAStartup'], ['GetVersionExW', 'GetProductInfo', 'GetNativeSystemInfo', 'IsWow64Process', 'LocalFree', 'GetCurrentProcessId', 'ProcessIdToSessionId', 'LoadLibraryExW', 'FreeLibrary', 'Sleep', 'IsDebuggerPresent', 'RaiseException', 'GetThreadId', 'TryAcquireSRWLockExclusive', 'ReleaseSRWLockExclusive', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetFileType', 'SetHandleInformation', 'UnregisterWaitEx', 'AssignProcessToJobObject', 'WriteProcessMemory', 'CreateFileMappingW', 'MapViewOfFile', 'GetCurrentProcessorNumber', 'SetThreadAffinityMask', 'GetProcessHandleCount', 'GetProcessHeaps', 'SignalObjectAndWait', 'ExpandEnvironmentStringsW', 'GetFileAttributesW', 'QueryDosDeviceW', 'GetLongPathNameW', 'VirtualProtectEx', 'VirtualFreeEx', 'ReadProcessMemory', 'LoadLibraryW', 'GetModuleHandleExW', 'GetSystemTimeAsFileTime', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'RtlCaptureStackBackTrace', 'TlsGetValue', 'AcquireSRWLockExclusive', 'UnmapViewOfFile', 'CreateNamedPipeW', 'CreateProcessW', 'CreateRemoteThread', 'CreateJobObjectW', 'QueryInformationJobObject', 'DeleteProcThreadAttributeList', 'InitializeProcThreadAttributeList', 'UpdateProcThreadAttribute', 'FindResourceW', 'SizeofResource', 'LoadResource', 'LockResource', 'HeapDestroy', 'CreateDirectoryW', 'SetCurrentDirectoryW', 'TlsAlloc', 'TlsFree', 'TlsSetValue', 'SetFilePointerEx', 'GetFileSizeEx', 'SetEndOfFile', 'FlushFileBuffers', 'SearchPathW', 'lstrlenW', 'DebugBreak', 'FindClose', 'FindNextFileW', 'FindFirstFileExW', 'GetWindowsDirectoryW', 'WideCharToMultiByte', 'VirtualQuery', 'SetEnvironmentVariableW', 'GetEnvironmentVariableW', 'InitializeConditionVariable', 'SleepConditionVariableSRW', 'WakeAllConditionVariable', 'WakeConditionVariable', 'ExitThread', 'GetExitCodeThread', 'AreFileApisANSI', 'DeviceIoControl', 'TryEnterCriticalSection', 'CreateEventA', 'CancelIoEx', 'DisconnectNamedPipe', 'ConnectNamedPipe', 'CancelSynchronousIo', 'EnumSystemLocalesEx', 'GetUserDefaultLocaleName', 'HeapSize', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'FreeLibraryAndExitThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'OutputDebugStringW', 'GetTimeZoneInformation', 'HeapReAlloc', 'ReadConsoleW', 'EnumSystemLocalesW', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetUserDefaultLCID', 'GetUserDefaultLangID', 'TerminateProcess', 'GetCurrentThreadId', 'SetInformationJobObject', 'DuplicateHandle', 'PostQueuedCompletionStatus', 'TerminateJobObject', 'RegisterWaitForSingleObject', 'SetEvent', 'UnregisterWait', 'GetQueuedCompletionStatus', 'ResetEvent', 'SetLastError', 'CreateEventW', 'CreateIoCompletionPort', 'FormatMessageA', 'WriteFile', 'OutputDebugStringA', 'GetTickCount', 'GetLocalTime', 'GetCurrentDirectoryW', 'GetModuleFileNameW', 'VirtualAllocEx', 'VirtualQueryEx', 'GetCurrentThread', 'SetProcessDEPPolicy', 'GetModuleHandleA', 'GetSystemInfo', 'VerifyVersionInfoW', 'SetDllDirectoryW', 'GetProcAddress', 'GetModuleHandleW', 'VirtualFree', 'VirtualAlloc', 'CreateThread', 'ExitProcess', 'GetCurrentProcess', 'CreateMutexW', 'WaitForSingleObject', 'ReleaseMutex', 'HeapSetInformation', 'GetProcessHeap', 'GetLastError', 'CloseHandle', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetCommandLineW', 'VerSetConditionMask', 'GetTimeFormatW', 'GetDateFormatW', 'HeapFree', 'HeapAlloc', 'WriteConsoleW', 'GetStdHandle', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'RtlUnwind', 'InitializeSListHead', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'WaitForSingleObjectEx', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'CompareStringEx', 'GetLocaleInfoEx', 'VirtualProtect', 'LoadLibraryExA', 'InitializeSRWLock', 'ReleaseSRWLockShared', 'AcquireSRWLockShared', 'FormatMessageW', 'LocalAlloc', 'TerminateThread', 'FindFirstFileW', 'SwitchToThread', 'CreateFileMappingA', 'MapViewOfFileEx', 'OpenFileMappingA', 'InitOnceExecuteOnce', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSectionEx', 'LCMapStringEx', 'SleepConditionVariableCS', 'GetUserObjectInformationW', 'GetThreadDesktop', 'GetSystemMetrics', 'CloseWindowStation', 'GetProcessWindowStation', 'CloseDesktop', 'CreateDesktopW', 'SetProcessWindowStation', 'CreateWindowStationW', 'GetSidSubAuthorityCount', 'SetEntriesInAclW', 'GetSecurityInfo', 'GetSidSubAuthority', 'InitializeSid', 'CreateWellKnownSid', 'CopySid', 'LookupPrivilegeValueW', 'DuplicateToken', 'CreateRestrictedToken', 'RegQueryValueExW', 'RegCreateKeyExW', 'SetThreadToken', 'GetTokenInformation', 'CreateProcessAsUserW', 'AccessCheck', 'EqualSid', 'IsValidSid', 'GetNamedSecurityInfoW', 'MapGenericMask', 'ImpersonateLoggedOnUser', 'FreeSid', 'SystemFunction036', 'ConvertSidToStringSidW', 'DuplicateTokenEx', 'GetKernelObjectSecurity', 'SetKernelObjectSecurity', 'GetAce', 'OpenProcessToken', 'SetTokenInformation', 'GetLengthSid', 'ConvertStringSidToSidW', 'SetSecurityInfo', 'GetSecurityDescriptorSacl', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegOpenKeyExW', 'RegDisablePredefinedCache', 'RevertToSelf', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetUserNameW', 'RegOpenKeyA', 'SHGetFolderPathW', 'CommandLineToArgvW', 'SHGetKnownFolderPath', 'CoTaskMemFree', 'GetProcessMemoryInfo'], ['CreateFileW', 'WritePrivateProfileStringW', 'FindClose', 'LockResource', 'DeviceIoControl', 'GetFileAttributesW', 'GetFileTime', 'CloseHandle', 'GetVolumeInformationW', 'ExpandEnvironmentStringsW', '__chkstk', 'GetVersionExW', 'SizeofResource', 'WriteFile', 'SetFileTime', 'GetPrivateProfileStringW', 'GetProcessHeap', 'LoadResource', 'HeapAlloc', 'FindResourceW', 'FindFirstFileW', 'GetEnvironmentVariableW', 'LocalFree', 'lstrcatW', 'GetLastError', 'VerifyVersionInfoW', 'HeapFree', 'VerSetConditionMask', 'FindNextFileW', 'wsprintfW', 'OpenServiceW', 'RegCloseKey', 'RegOpenKeyExW', 'ChangeServiceConfigW', 'StartServiceW', 'ChangeServiceConfig2W', 'RegOpenKeyExA', 'InitializeSecurityDescriptor', 'RegQueryValueExW', 'RegCreateKeyExW', 'OpenSCManagerW', 'DeleteService', 'CloseServiceHandle', 'CreateServiceW', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'MakeAbsoluteSD', 'SetFileSecurityW', 'RegSetValueExW', '_wcsicmp', 'memmove', 'free', 'malloc', 'wprintf', 'printf', 'rand', 'srand', 'wcsncmp', '_time64', '__C_specific_handler', '_XcptFilter', 'sprintf', '_exit', '_cexit', 'exit', '__winitenv', '__wgetmainargs', '_initterm', '__setusermatherr', '_commode', '_fmode', '__set_app_type', '_c_exit', 'memset', 'memcpy'], ['GetTickCount', 'Sleep', 'CreateProcessA', 'GetSystemDirectoryA', 'GetEnvironmentVariableA', 'GetStartupInfoA', 'GetLastError', 'OpenMutexA', 'VirtualProtect', 'CloseHandle', 'DeleteFileA', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RaiseException', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'RtlUnwind', 'LoadLibraryA', 'InitializeCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW'], ['CryptBinaryToStringA', 'CryptStringToBinaryA', 'GdipSaveImageToStream', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncoders', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusShutdown', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GetAdaptersAddresses', 'InternetSetOptionA', 'InternetQueryOptionA', 'InternetReadFile', 'HttpOpenRequestA', 'InternetCloseHandle', 'InternetOpenA', 'HttpSendRequestA', 'HttpQueryInfoA', 'InternetConnectA', 'gethostname', 'WSAStartup', 'WSACleanup', 'gethostbyname', 'VirtualAlloc', 'GetPrivateProfileStringW', 'VirtualFree', 'DisableThreadLibraryCalls', 'lstrcmpiA', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'VerifyVersionInfoW', 'lstrlenW', 'GetVersionExA', 'GetSystemInfo', 'GetCurrentProcess', 'GetVolumeInformationW', 'VerSetConditionMask', 'GetTickCount', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'LoadLibraryW', 'CloseHandle', 'Sleep', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'OpenFileMappingA', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateThread', 'CreateRemoteThread', 'GetExitCodeThread', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetProcessHeap', 'IsWow64Process', 'GetLastError', 'CreateMutexA', 'lstrlenA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'GetFileSize', 'ReadFile', 'WriteFile', 'SetLastError', 'FreeLibrary', 'wsprintfW', 'TranslateMessage', 'DispatchMessageA', 'wsprintfA', 'GetSystemMetrics', 'GetMessageA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'SHGetSpecialFolderPathW'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegQueryValueExW', 'InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyExW', 'SetSecurityDescriptorDacl', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'OpenFileMappingW', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'OpenMutexW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'CreateMutexW', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'OpenEventW', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'ReleaseMutex', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'LCMapStringW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['__wgetmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '_wcmdln', '__set_app_type', '_except_handler3', '_controlfp', 'exit', '_XcptFilter', '__p__fmode', '_exit', 'VirtualProtect', 'GetStartupInfoW', 'GetModuleHandleW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassExA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetBitmapBits', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateFontA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'sndPlaySoundA', 'PlaySoundA', 'ShellExecuteA', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'LresultFromObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegEnumValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'OpenProcessToken', 'LookupAccountNameA', 'IsValidSid', 'GetUserNameA', 'lstrlenA', 'lstrcmpiA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetFilePointer', 'SetFileAttributesA', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GlobalFree', 'GetVersionExA', 'GetTickCount', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetModuleHandleA', 'GetLastError', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetCurrentProcess', 'FreeResource', 'FreeLibrary', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'DeleteFileA', 'CreateRemoteThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateDirectoryA', 'CopyFileA', 'CloseHandle', 'wvsprintfA', 'TranslateMessage', 'ToAscii', 'SetWindowsHookExA', 'PeekMessageA', 'GetWindowThreadProcessId', 'GetKeyboardState', 'FindWindowA', 'DispatchMessageA', 'CharLowerA', 'CharUpperA', 'OleInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'PStoreCreateInstance', 'StringFromCLSID', 'RasGetEntryDialParamsA', 'RasEnumEntriesA', 'SHGetSpecialFolderPathA', 'LsaFreeMemory', 'LsaClose', 'LsaRetrievePrivateData', 'LsaOpenPolicy', 'ConvertSidToStringSidA', 'CryptUnprotectData', 'CredEnumerateA', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptGetHashParam', 'CryptReleaseContext', 'CryptAcquireContextA'], ['LoadResource', 'FindResourceW', 'lstrlenW', 'GetProcAddress', 'GetModuleHandleW', 'DeleteCriticalSection', 'GetTempPathW', 'GetLastError', 'GetTempFileNameW', 'MoveFileW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CloseHandle', 'DeleteFileW', 'GetModuleFileNameW', 'GetCurrentProcess', 'LoadLibraryW', 'FreeLibrary', 'InitializeCriticalSectionEx', 'GetFileAttributesW', 'CreateFileW', 'SetFilePointer', 'ReadFile', 'VerSetConditionMask', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'CreateDirectoryW', 'WriteFile', 'SetFileTime', 'FreeResource', 'SizeofResource', 'LockResource', 'CreateProcessW', 'GetSystemDirectoryW', 'SetDefaultDllDirectories', 'GetCurrentThreadId', 'DecodePointer', 'RaiseException', 'LeaveCriticalSection', 'EnterCriticalSection', 'lstrcmpiW', 'LoadLibraryExW', 'GetConsoleMode', 'GetConsoleCP', 'SystemTimeToFileTime', 'VerifyVersionInfoW', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsDebuggerPresent', 'OutputDebugStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'HeapFree', 'HeapAlloc', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'HeapSize', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'WriteConsoleW', 'PathIsUNCW', 'InitCommonControlsEx'], ['CreateFileA', 'LoadLibraryA', 'LockResource', 'DeleteFileW', 'CloseHandle', 'GetModuleHandleA', 'FindResourceW', 'VirtualLock', 'GetProcAddress', 'GetModuleHandleW', 'WriteConsoleW', 'GetSystemDirectoryW', 'VirtualAlloc', 'DeviceIoControl', 'VirtualFree', 'LoadResource', 'SizeofResource', 'HeapSize', 'GetProcessHeap', 'GetLastError', 'CreateFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetEndOfFile', 'SetFilePointerEx', 'MultiByteToWideChar', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'FreeLibrary', 'LoadLibraryExW', 'SetEnvironmentVariableW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetFileSizeEx', 'GetFileType', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'ReadFile', 'ReadConsoleW', 'HeapReAlloc', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'RtlUnwind', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'SHDeleteKeyW'], ['FindFirstChangeNotificationW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetBinaryTypeW', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'UnregisterWait', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'GetLastError', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW'], ['WriteFile', 'DisconnectNamedPipe', 'InterlockedIncrement', 'InterlockedDecrement', 'CreateProcessA', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateNamedPipeA', 'ConnectNamedPipe', 'CreateEventA', 'GetCurrentProcessId', 'OpenProcess', 'LocalAlloc', 'LocalFree', 'CloseHandle', 'SetEvent', 'ReadFile', 'GetLastError', 'ExitThread', 'ResumeThread', 'CreateThread', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'HeapSize', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetSecurityDescriptorDacl', 'StartServiceCtrlDispatcherA', 'RegisterServiceCtrlHandlerA', 'OpenProcessToken', 'GetTokenInformation', 'AllocateAndInitializeSid', 'EqualSid', 'FreeSid', 'OpenSCManagerA', 'OpenServiceA', 'CloseServiceHandle', 'DeleteService', 'SetServiceStatus', 'InitializeSecurityDescriptor'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExA', '_configthreadlocale', 'accept', 'fputc', '_lock_file', 'free', '__setusermatherr', 'memset', 'rand', 'SHGetIconOverlayIndexA', '_time64', 'DPA_Create', '??1_Lockit@std@@QAE@XZ', 'exit'], ['StrRChrA', 'StrChrA', 'StrStrIA', 'HeapDestroy', 'HeapCreate', 'GetModuleHandleA', 'ExitProcess', 'GetLastError', 'lstrcpyW', 'CreateFileMappingW', 'MapViewOfFile', 'GetCommandLineW', 'UnmapViewOfFile', 'HeapAlloc', 'lstrlenW', 'HeapFree', 'GetCurrentThreadId', 'GetCurrentProcessId', 'lstrcmpiA', 'SetLastError', 'WaitForSingleObject', 'CreateFileA', 'GetCurrentThread', 'SetFilePointer', 'lstrcmpA', 'IsWow64Process', 'lstrlenA', 'VerLanguageNameA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'ReadFile', 'GetSystemDefaultUILanguage', 'GetLocaleInfoA', 'VirtualFree', 'lstrcpynA', 'VirtualAlloc', 'CreateEventA', 'GetVersion', 'GetLongPathNameW', 'GetProcAddress', 'CloseHandle', 'OpenProcess', 'GetCursorPos', 'wsprintfW', 'NtMapViewOfSection', 'NtUnmapViewOfSection', 'ZwClose', 'RtlNtStatusToDosError', 'NtCreateSection', 'memset', 'memcpy', 'RtlUnwind', 'NtQueryVirtualMemory'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetWindowThreadProcessId', 'VariantChangeTypeEx', 'RaiseException'], ['RegOverridePredefKey', 'SHQueryValueExW', 'SetupDiCreateDeviceInfoList', 'tolower', 'AVIStreamStart', 'CloseHandle', 'GetModuleHandleA', 'GetSystemTimeAdjustment', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedPopEntrySList', 'HGLOBAL_UserMarshal', 'HPALETTE_UserUnmarshal', 'midiOutGetDevCapsW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegQueryValueA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseSemaphore', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateSemaphoreA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostThreadMessageA', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'CLSIDFromString', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SafeArrayCopy', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetElemsize', 'SysFreeString', 'SysReAllocString', 'SysAllocString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'InternetAttemptConnect', 'InternetReadFile', 'InternetQueryDataAvailable', 'InternetOpenA', 'InternetErrorDlg', 'InternetCrackUrlA', 'InternetConnectA', 'InternetCloseHandle', 'HttpSendRequestA', 'HttpQueryInfoA', 'HttpOpenRequestA'], ['MoveFileExA', 'GetTimeFormatA', 'InitializeCriticalSection', 'Sleep', 'CreateSemaphoreA', 'GetEnvironmentVariableA', 'EnterCriticalSection', 'GetDiskFreeSpaceA', 'GetModuleFileNameA', 'GetModuleHandleA', 'VirtualProtect', 'GetFileTime', 'GetCurrentProcessId', 'GetTempPathA', 'SetFileAttributesA', 'GetLastError', 'GetFileAttributesA', 'GetSystemTimeAsFileTime', 'CloseHandle', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'EncodePointer', 'GetModuleFileNameW', 'GetFileType', 'CreateFileA', 'CreateFileW', 'HeapValidate', 'IsBadReadPtr', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoW', 'DeleteCriticalSection', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCPInfo', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'SetEndOfFile', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'MultiByteToWideChar', 'ReadFile', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'CompareStringW', 'SetEnvironmentVariableA', 'RaiseException', 'FlushFileBuffers'], ['SetLocaleInfoA', 'EnumCalendarInfoA', 'VirtualQuery', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'ReplaceFileW', 'GetVolumePathNameA', 'GetDevicePowerState', 'GetConsoleAliasesW', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetupComm', 'CreateMutexW', 'SetCurrentDirectoryA', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapFree', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA', 'sndPlaySoundA', 'mciSendCommandA', 'VirtualProtect', 'NtFlushInstructionCache', 'LoadLibraryA', 'LoadLibraryW', 'FileProtocolHandlerA'], ['ReadFile', 'FindFirstFileW', 'FindNextFileW', 'WriteFile', 'SetFilePointer', 'FindClose', 'CreateFileW', 'CloseHandle', 'MoveFileW', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer'], ['WriteFile', 'WideCharToMultiByte', 'LocalFree', 'GetStdHandle', 'FormatMessageW', 'GetModuleHandleA', 'GetVersionExA', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'GetProcAddress', 'GetModuleFileNameA', 'UnhandledExceptionFilter', 'GetModuleFileNameW', 'FreeEnvironmentStringsA', 'MultiByteToWideChar', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetLastError', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'LoadLibraryA', 'InitializeCriticalSection', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'RtlUnwind', 'VirtualProtect', 'GetSystemInfo', 'VirtualQuery', 'HeapUnlock', 'InterlockedExchange', 'GetPrivateProfileStructA', 'Thread32Next', 'GetTempFileNameW', 'VirtualAllocEx', 'GetModuleHandleW', 'CascadeWindows', 'DrawTextW', 'GetSystemMenu', 'UnhookWinEvent', 'BroadcastSystemMessageW', 'GetWindowThreadProcessId', 'CreateMenu', 'DdeReconnect', 'EnableWindow', 'IsCharAlphaNumericW', 'GetKeyState', 'LoadKeyboardLayoutW', 'EnumPropsExW', 'EnumDisplaySettingsW', 'SendMessageA', 'CharNextA', 'DragDetect', 'ReleaseCapture', 'DdeInitializeW', 'SetMenuItemBitmaps', 'DefDlgProcW', 'CharPrevExA', 'DdeCreateDataHandle', 'SetShellWindow', 'CharUpperW', 'wsprintfW', 'EnumDisplaySettingsExW', 'GetWindowTextLengthA', 'SetMessageQueue', 'ToAsciiEx', 'WindowFromPoint', 'LoadCursorW', 'LoadIconA', 'GetBrushOrgEx', 'GetMetaFileA', 'EngCreateBitmap', 'EngTransparentBlt', 'GetTextExtentPointW', 'CreateBitmapIndirect', 'GetColorAdjustment', 'Pie', 'GdiQueryFonts', 'SetStretchBltMode', 'FONTOBJ_pifi', 'AddFontResourceExA', 'FONTOBJ_cGetGlyphs', 'SetLayoutWidth', 'EngMultiByteToWideChar', 'LineTo', 'GetWindowOrgEx', 'Polyline', 'GetCharWidthA', 'GetStockObject', 'RegOpenKeyA', 'RegQueryValueExA'], ['CreateProcessA', 'CreateRemoteThread', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleHandleA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryW', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualQuery', 'WriteProcessMemory', '__dllonexit', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_onexit', '_snprintf', '_unlock', 'abort', 'calloc', 'exit', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'HeapAlloc', 'RaiseException', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['GetLastError', 'CreateFileA', 'HeapReAlloc', 'CloseHandle', 'RaiseException', 'HeapAlloc', 'DecodePointer', 'LocalFree', 'DeleteCriticalSection', 'GetProcessHeap', 'GetTempPathW', 'CreateFileW', 'lstrcmpA', 'GetModuleHandleA', 'Sleep', 'lstrcatW', 'CreateThread', 'GetLocalTime', 'GetModuleHandleW', 'GetTickCount', 'ReadFile', 'GetModuleFileNameW', 'CreateMutexA', 'WaitForSingleObject', 'GetTempPathA', 'DeleteFileA', 'MultiByteToWideChar', 'GetProcAddress', 'GetFileSize', 'GetComputerNameW', 'CreateProcessW', 'GetConsoleWindow', 'GetSystemTimeAsFileTime', 'GetExitCodeProcess', 'CreateDirectoryW', 'SetFileAttributesW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'TlsFree', 'SetEndOfFile', 'WriteConsoleW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindFirstFileExW', 'ReadConsoleW', 'CreatePipe', 'HeapSize', 'FindClose', 'GetEnvironmentVariableA', 'InitializeCriticalSectionEx', 'SetFilePointer', 'WriteFile', 'lstrlenW', 'FindNextFileW', 'HeapFree', 'LoadLibraryW', 'GetFileAttributesExW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileSizeEx', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SetLastError', 'EncodePointer', 'GetTimeZoneInformation', 'GetFileType', 'GetStdHandle', 'DeleteFileW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'DuplicateHandle', 'GetModuleHandleExW', 'ExitProcess', 'GetLogicalDrives', 'LoadLibraryExW', 'FreeLibrary', 'InterlockedFlushSList', 'RtlUnwind', 'OutputDebugStringW', 'GetCPInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'WideCharToMultiByte', 'GetStringTypeW', 'MapVirtualKeyExW', 'ShowWindow', 'CreateWindowExW', 'GetWindowRect', 'ToUnicodeEx', 'wsprintfA', 'GetWindowDC', 'LoadIconW', 'LoadCursorW', 'GetDesktopWindow', 'UpdateWindow', 'DefWindowProcW', 'wsprintfW', 'BitBlt', 'SaveDC', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'GetDeviceCaps', 'DeleteDC', 'DeleteObject', 'RestoreDC', 'GetUserNameW', 'CoCreateInstance', 'CoInitializeEx', 'CoInitializeSecurity', 'SysAllocString', 'SysFreeString', 'VariantClear', 'VariantInit', 'PathFileExistsW', 'HttpOpenRequestA', 'InternetOpenA', 'InternetReadFile', 'HttpSendRequestA', 'InternetConnectA', 'InternetCloseHandle', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipSaveImageToFile', 'GdipGetImageEncodersSize', 'GdipFree', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipAlloc', 'GdipCloneImage', 'GdiplusShutdown'], ['GetConsoleAliasA', 'GetModuleHandleW', 'CreateDirectoryExA', 'ReadConsoleInputA', 'GetTempPathA', 'GetSystemDirectoryW', 'RemoveDirectoryW', 'OutputDebugStringA', 'GetProcAddress', 'LocalAlloc', 'ExitThread', 'GetCurrentProcess', 'RtlCaptureContext', 'InterlockedDecrement', 'SetFileTime', 'lstrcatA', 'GetBinaryTypeW', 'SearchPathW', 'VerifyVersionInfoW', 'SetProcessPriorityBoost', 'AddConsoleAliasA', 'FindNextFileA', 'FindFirstVolumeA', 'LocalShrink', 'LocalFlags', '_llseek', 'UpdateResourceW', 'CreateActCtxW', 'CopyFileA', 'FindFirstFileW', 'FreeEnvironmentStringsW', 'SetErrorMode', 'InterlockedIncrement', 'MoveFileWithProgressW', 'GetModuleHandleA', 'GetTickCount', 'SetLastError', 'GetPrivateProfileStructA', 'EndUpdateResourceA', 'LoadLibraryA', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'DeleteFileA', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperBuffW', 'SetBrushOrgEx'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegOpenKeyA', 'SysFreeString', 'CharNextA'], ['GetModuleHandleA', 'ShowWindow', 'RegCloseKey', '??1_Lockit@std@@QAE@XZ', 'memset', 'exit', 'accept', 'rand', '_lock_file', '_time64', '_configthreadlocale', 'free', '__setusermatherr', 'fputc', 'ShellAboutW', 'InitCommonControlsEx'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'DnsQuery_A', '_iob', 'wsprintfA', 'InternetGetConnectedState', 'recv'], ['MoveFileExA', 'AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'LocalHandle', 'GetMailslotInfo', 'GetBinaryTypeW', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'GetModuleHandleA', 'QueueUserWorkItem', 'VirtualProtect', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['DeleteCriticalSection', 'EnterCriticalSection', 'FreeLibrary', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__p__acmdln', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_errno', '_fileno', '_initterm', '_iob', '_lock', '_onexit', '_setjmp3', '_setmode', '_unlock', '_wfopen', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fprintf', 'fputc', 'free', 'fwrite', 'getenv', 'localeconv', 'malloc', 'memchr', 'memcmp', 'memcpy', 'setlocale', 'setvbuf', 'signal', 'strchr', 'strerror', 'strlen', 'strncmp', 'strstr', 'vfprintf', 'wcslen', 'longjmp', 'MessageBoxA'], ['AreFileApisANSI', 'GetOEMCP', 'GetUserDefaultUILanguage', 'GetLargePageMinimum', 'UnregisterApplicationRecoveryCallback', 'GetCommandLineA', 'GetThreadUILanguage', 'SwitchToThread', 'UnregisterApplicationRestart', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetSystemDefaultUILanguage', 'VirtualAlloc', 'GetUserDefaultLangID', 'GetCurrentThreadId', 'IsSystemResumeAutomatic', 'GetACP', 'GetTickCount64', 'GetCurrentThread', 'TlsAlloc', 'GetCurrentProcessorNumber', 'GetProcessHeap', 'SetFileApisToOEM', 'GetTickCount', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetFileType', 'GetStdHandle', 'GetErrorMode', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwindEx', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCurrentProcess', 'ExitProcess', 'TerminateProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'LCMapStringW', 'IsWow64Message', 'GetMessageTime', 'GetFocus', 'GetOpenClipboardWindow', 'AnyPopup', 'GetCapture', 'GetMenuCheckMarkDimensions', 'EmptyClipboard', 'GetKBCodePage', 'DestroyCaret', 'SetProcessDPIAware', 'CreateMenu', 'GetCursor', 'GetActiveWindow', 'IsProcessDPIAware', 'GetForegroundWindow', 'GetDialogBaseUnits', 'GdiFlush', 'OleUninitialize', 'CoUninitialize'], ['FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetFileAttributesA', 'GetFileAttributesExW', 'GetFileType', 'GetLastError', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetProcessShutdownParameters', 'GetProfileSectionW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetThreadPriority', 'GetTickCount', 'GetUserDefaultLCID', 'GetVersionExA', 'GlobalAddAtomW', 'GlobalHandle', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'InterlockedDecrement', 'InterlockedExchange', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'FreeEnvironmentStringsA', 'LoadResource', 'LocalFree', 'LocalSize', 'LocalUnlock', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OutputDebugStringA', 'OutputDebugStringW', 'PeekNamedPipe', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleOutputCharacterW', 'RtlUnwind', 'RtlZeroMemory', 'ScrollConsoleScreenBufferW', 'SetConsoleCP', 'SetFileApisToANSI', 'SetFilePointer', 'SetFilePointerEx', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetTapeParameters', 'SetThreadLocale', 'SetThreadUILanguage', 'SetTimerQueueTimer', 'SetUnhandledExceptionFilter', 'SizeofResource', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'VirtualAlloc', 'VirtualAllocEx', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileSectionA', 'WritePrivateProfileStructA', 'lstrcatA', 'lstrcpyA', 'lstrcpyW', 'lstrcpynW', 'lstrlenW', 'InterlockedIncrement', 'Sleep', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceW', 'FindResourceExW', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileExW', 'FindClose', 'FindAtomW', 'ExitProcess', 'EnumDateFormatsW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'DecodePointer', 'CreateSemaphoreW', 'CreateSemaphoreA', 'CreateHardLinkA', 'CreateFileW', 'CreateDirectoryA', 'CopyFileW', 'CloseHandle', 'CallNamedPipeA', 'LoadModule', 'AreFileApisANSI', 'LoadMenuW', 'LoadStringW', 'LockWindowUpdate', 'MapWindowPoints', 'MessageBoxW', 'ModifyMenuA', 'MonitorFromRect', 'MoveWindow', 'OpenWindowStationW', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RealGetWindowClassA', 'RegisterClassW', 'ReleaseCapture', 'ReleaseDC', 'ScreenToClient', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetMenu', 'SetProcessWindowStation', 'SetRect', 'SetTimer', 'SetUserObjectInformationA', 'ShowWindow', 'SystemParametersInfoW', 'TranslateAcceleratorW', 'TranslateMessage', 'LoadIconW', 'UnregisterClassW', 'UpdateLayeredWindow', 'UpdateWindow', 'WinHelpW', 'wsprintfW', 'LoadIconA', 'KillTimer', 'IsDialogMessage', 'IsCharLowerA', 'InvalidateRect', 'IntersectRect', 'IMPSetIMEW', 'IMPSetIMEA', 'GetSystemMetrics', 'GetMessageW', 'GetMessageTime', 'GetMenuItemRect', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetDesktopWindow', 'GetDC', 'GetClassNameA', 'GetAltTabInfoW', 'EnumPropsW', 'EndPaint', 'EndDialog', 'DrawTextA', 'DrawMenuBar', 'DrawFocusRect', 'DlgDirListComboBoxW', 'LoadCursorW', 'UnhookWindowsHookEx', 'DispatchMessageW', 'DialogBoxParamW', 'DialogBoxIndirectParamA', 'DestroyIcon', 'DefWindowProcW', 'CreateWindowExW', 'CreateAcceleratorTableA', 'CopyAcceleratorTableW', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'ChangeDisplaySettingsA', 'BeginPaint', 'LoadAcceleratorsW', 'GetStockObject', 'LineTo', 'MoveToEx', 'SelectObject', 'GetLayout', 'SetLayout', 'SetPixel', 'SetROP2', 'PathToRegion', 'GetDeviceCaps', 'DeleteObject', 'DeleteDC', 'CreatePen', 'CreateCompatibleDC', 'SetDIBitsToDevice', 'BitBlt', 'CreateCompatibleBitmap', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExW', 'RegCloseKey', 'RegSetValueExW', 'ShellAboutW'], ['gethostname', 'connect', 'WSACleanup', '__WSAFDIsSet', 'accept', 'send', 'ntohs', 'recv', 'WSAPoll', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'htonl', 'bind', 'WSAIoctl', 'WSASend', 'shutdown', 'listen', 'WSASocketW', 'getsockname', 'socket', 'WSARecv', 'ioctlsocket', 'FreeAddrInfoW', 'GetAddrInfoW', 'closesocket', 'getsockopt', 'setsockopt', 'WSAGetLastError', 'htons', 'GetAdaptersAddresses', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleExW', 'CompareStringW', 'SetFileAttributesW', 'GetFileAttributesExW', 'GetConsoleCP', 'SetStdHandle', 'GetCommandLineW', 'GetCommandLineA', 'RtlPcToFileHeader', 'ExitThread', 'RtlUnwindEx', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'CloseHandle', 'FreeConsole', 'GetConsoleWindow', 'SetThreadAffinityMask', 'SetPriorityClass', 'GetCurrentProcess', 'SetThreadPriority', 'GetCurrentThread', 'GetProcAddress', 'GetModuleHandleW', 'VirtualFree', 'VirtualAlloc', 'LocalAlloc', 'GetLastError', 'LocalFree', 'SetConsoleCtrlHandler', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'PostQueuedCompletionStatus', 'Sleep', 'SetErrorMode', 'GetQueuedCompletionStatus', 'CreateIoCompletionPort', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'QueueUserWorkItem', 'MultiByteToWideChar', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'WideCharToMultiByte', 'SetConsoleCursorPosition', 'CreateDirectoryW', 'ReadFile', 'SetLastError', 'WriteFile', 'DeviceIoControl', 'RemoveDirectoryW', 'SetFileTime', 'CreateHardLinkW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'MoveFileExW', 'CopyFileW', 'FlushFileBuffers', 'GetLongPathNameW', 'GetShortPathNameW', 'GetCurrentDirectoryW', 'ReadDirectoryChangesW', 'GetFileType', 'TlsSetValue', 'ReleaseSemaphore', 'WaitForMultipleObjects', 'WaitForSingleObject', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'ResetEvent', 'DeleteCriticalSection', 'CreateSemaphoreW', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'CreateEventA', 'CancelIo', 'SetHandleInformation', 'VerifyVersionInfoA', 'GetModuleFileNameW', 'SetEnvironmentVariableW', 'QueryPerformanceFrequency', 'GetSystemInfo', 'VerSetConditionMask', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'FormatMessageA', 'DebugBreak', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'GetNamedPipeHandleStateA', 'SwitchToThread', 'ConnectNamedPipe', 'GetModuleHandleA', 'LoadLibraryA', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'GetStartupInfoW', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentThreadId', 'GetTickCount64', 'RaiseException', 'GetTimeZoneInformation', 'HeapSize', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStringTypeW', 'SetFilePointerEx', 'CreateEventW', 'GetSystemTimeAsFileTime', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateThread', 'EncodePointer', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'LoadLibraryExW', 'TranslateMessage', 'ShowWindow', 'DispatchMessageA', 'MapVirtualKeyW', 'GetMessageA', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation'], ['GetModuleHandleA', 'MessageBoxA', 'RegOpenKeyExW', 'PathMakeUniqueName', 'ImageList_Draw', '_CorExeMain'], ['QueryPerformanceFrequency', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetProcAddress', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RegDeleteKeyA'], ['VirtualProtect', 'Sleep', 'RaiseException', 'GetLastError', 'SetLastError', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'TerminateProcess', 'GetCurrentProcess', 'ExitProcess', 'GetStartupInfoW', 'TlsGetValue', 'GetCurrentThreadId', 'GetCurrentProcessId', 'LCMapStringEx', 'IsValidLocale', 'GetOEMCP', 'GetLocaleInfoW', 'GetCPInfo', 'GetACP', 'LCMapStringW', 'IsValidCodePage', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InitializeCriticalSectionEx', 'LeaveCriticalSection', 'EnterCriticalSection', 'DecodePointer', 'EncodePointer', 'CompareStringW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'SendMessageA', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'PostMessageA', 'MessageBeep', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetModuleHandleExW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetModuleFileNameW', 'RtlUnwind', 'GetCommandLineA', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetStdHandle', 'GetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'FindFirstFileExW', 'ReadFile', 'FindClose', 'FlushFileBuffers', 'GetFileSizeEx', 'SetFilePointerEx', 'CreateFileW', 'GetFileType', 'FindNextFileW', 'WriteFile', 'GetProcessHeap', 'HeapReAlloc', 'HeapAlloc', 'HeapSize', 'HeapFree', 'CloseHandle', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteConsoleW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'InternetCloseHandle', 'GetModuleFileNameExA', 'DispatchMessageA', 'GetUserNameA', 'ShellExecuteA'], ['GetConsoleAliasA', 'GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetTapeParameters', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'FatalAppExitW', 'GetCalendarInfoW', 'HeapDestroy', 'FindNextVolumeW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'ReadConsoleA', 'EnumSystemLocalesA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'ReadFileEx', 'ResetEvent', 'InterlockedExchangeAdd', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'GetDefaultCommConfigA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'RequestWakeupLatency', 'OpenEventW', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'FindNextVolumeA', 'WriteConsoleOutputW', 'GetConsoleAliasesLengthW', 'SetThreadContext', 'GetLargestConsoleWindowSize', 'GetTempFileNameW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsW', 'GetCharABCWidthsI'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'LoadLibraryA', 'GetVersionExA', 'DeleteFileA', 'DeleteFileW', 'CloseHandle', 'LoadLibraryW', 'UnlockFile', 'GetProcAddress', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'GetModuleFileNameA', 'SetWaitableTimer', 'TlsSetValue', 'VerifyVersionInfoA', 'HeapFree', 'SetLastError', 'VirtualAlloc', 'WaitForMultipleObjects', 'InitializeCriticalSectionAndSpinCount', 'GetQueuedCompletionStatus', 'InitializeCriticalSectionEx', 'CreateMutexA', 'WaitForSingleObject', 'LocalAlloc', 'ReleaseMutex', 'UnmapViewOfFile', 'GetModuleHandleA', 'GetFileAttributesW', 'HeapSize', 'SetCurrentDirectoryA', 'PostQueuedCompletionStatus', 'CreateToolhelp32Snapshot', 'CreateEventW', 'GetFileInformationByHandle', 'QueryFullProcessImageNameA', 'SetEvent', 'FileTimeToSystemTime', 'TerminateThread', 'TlsAlloc', 'GlobalAlloc', 'Process32Next', 'GlobalFree', 'HeapReAlloc', 'RaiseException', 'HeapAlloc', 'QueueUserAPC', 'GetLocalTime', 'DecodePointer', 'GlobalLock', 'CreateFileMappingA', 'LocalFree', 'VerSetConditionMask', 'GetProcessHeap', 'SystemTimeToFileTime', 'SleepEx', 'TlsGetValue', 'TlsFree', 'MapViewOfFile', 'CreateIoCompletionPort', 'GlobalUnlock', 'ReadConsoleW', 'GetStringTypeW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetFileSizeEx', 'CreateFileW', 'GetTempPathW', 'SetEndOfFile', 'GetFullPathNameA', 'SetFilePointer', 'AreFileApisANSI', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LockFile', 'GetCurrentThreadId', 'WriteFile', 'GetFullPathNameW', 'EnterCriticalSection', 'ReadFile', 'OpenProcess', 'GetConsoleMode', 'GetConsoleOutputCP', 'SetStdHandle', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'GetCPInfo', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'GetModuleFileNameW', 'SystemTimeToTzSpecificLocalTime', 'PeekNamedPipe', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'ResetEvent', 'WaitForSingleObjectEx', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStartupInfoW', 'InitializeSListHead', 'GetCurrentDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetFileInformationByHandle', 'SetFilePointerEx', 'GetFileInformationByHandleEx', 'OutputDebugStringW', 'RtlUnwind', 'EncodePointer', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetDriveTypeW', 'WriteConsoleW', 'GetKeyState', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'ReleaseDC', 'OpenClipboard', 'GetDesktopWindow', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'GetDIBits', 'GetDeviceCaps', 'GetObjectW', 'CreateDCA', 'StretchBlt', 'RegGetValueA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegEnumKeyExA', 'SHGetFolderPathA', 'htons', 'getsockopt', 'setsockopt', 'WSAGetLastError', 'connect', 'WSAStartup', 'WSASocketW', 'WSAStringToAddressW', 'htonl', 'WSASetLastError', 'ntohl', 'select', 'WSASend', 'closesocket', 'WSACleanup', 'ioctlsocket'], ['AddAtomA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteAtom', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'FormatMessageA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LocalFree', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringA', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_commode', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_memccpy', '_onexit', '_setjmp', '_strdup', '_ultoa', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'free', 'fwrite', 'getc', 'islower', 'isspace', 'isupper', 'isxdigit', 'localeconv', 'longjmp', 'malloc', 'memcpy', 'memmove', 'memset', 'printf', 'realloc', 'signal', 'strchr', 'strerror', 'strlen', 'strncmp', 'strstr', 'strtol', 'strtoul', 'tolower', 'ungetc', 'vfprintf', 'wcslen'], ['ExitProcess', 'GetEnvironmentStringsA', 'CloseHandle', 'GetSystemDirectoryA', 'OpenMutexA', 'RtlUnwind', 'WinExec', '_fdopen', '_open_osfhandle', 'fclose', '_cexit', 'malloc', 'printf', 'raise', 'setbuf', 'sprintf', 'strcpy'], ['ConvertInterfaceLuidToIndex', 'ConvertInterfaceLuidToNameW', 'ConvertInterfaceNameToLuidW', 'GetAdaptersAddresses', 'GetAdaptersInfo', 'GetNetworkParams', 'GetBestRoute', 'GetBestInterface', 'ConvertInterfaceIndexToLuid', 'CertDuplicateCertificateContext', 'CertGetCertificateContextProperty', 'CertOpenStore', 'CertFreeCertificateChain', 'CertGetCertificateChain', 'CertFreeCertificateContext', 'CertCreateCertificateContext', 'CertOpenSystemStoreW', 'CertFindCertificateInStore', 'CertCloseStore', 'CertEnumCertificatesInStore', 'socket', 'WSAStartup', 'htons', 'inet_pton', 'bind', 'WSAConnect', 'closesocket', 'connect', 'getsockname', 'htonl', 'ntohl', 'ntohs', 'recv', 'gethostname', 'WSACleanup', 'WSASetLastError', 'recvfrom', 'WSASocketW', 'WSASendTo', 'WSASend', 'WSARecvFrom', 'WSARecv', 'WSANtohs', 'WSANtohl', 'WSAHtonl', 'WSAAsyncSelect', 'WSAAccept', 'select', 'listen', 'getpeername', '__WSAFDIsSet', 'getsockopt', 'getnameinfo', 'freeaddrinfo', 'getaddrinfo', 'inet_ntop', 'WSAPoll', 'WSAIoctl', 'WSAGetLastError', 'shutdown', 'setsockopt', 'sendto', 'send', 'CryptDecrypt', 'FreeSid', 'AllocateAndInitializeSid', 'AddAccessAllowedAce', 'OpenProcessToken', 'RegOpenKeyExW', 'RegNotifyChangeKeyValue', 'RegCloseKey', 'GetTokenInformation', 'InitializeAcl', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'CryptExportKey', 'SetSecurityDescriptorOwner', 'BuildTrusteeWithSidW', 'GetNamedSecurityInfoW', 'GetEffectiveRightsFromAclW', 'LookupAccountSidW', 'MapGenericMask', 'DuplicateToken', 'CopySid', 'CryptGetUserKey', 'CryptGetProvParam', 'CryptSetHashParam', 'CryptDestroyKey', 'CryptReleaseContext', 'CryptAcquireContextW', 'ReportEventW', 'RegisterEventSourceW', 'DeregisterEventSource', 'CryptCreateHash', 'CryptDestroyHash', 'AccessCheck', 'RegSetValueExW', 'RegQueryInfoKeyW', 'GetLengthSid', 'CryptSignHashW', 'CryptEnumProvidersW', 'RegQueryValueExW', 'SystemFunction036', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegFlushKey', 'NetApiBufferFree', 'NetShareEnum', 'GetUserProfileDirectoryW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateTimerQueue', 'SignalObjectAndWait', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'UnhandledExceptionFilter', 'GetCPInfo', 'GetStringTypeW', 'LCMapStringW', 'CompareStringW', 'GetTickCount', 'TryEnterCriticalSection', 'RaiseException', 'DecodePointer', 'EncodePointer', 'VirtualFree', 'Sleep', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'GetCurrentThreadId', 'GetLastError', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'TryAcquireSRWLockExclusive', 'InitializeCriticalSection', 'WaitForSingleObject', 'TerminateThread', 'GetModuleFileNameA', 'LocalFree', 'FormatMessageW', 'CreateFileW', 'CloseHandle', 'DisconnectNamedPipe', 'WaitNamedPipeW', 'CreateEventW', 'WaitForMultipleObjects', 'GetProcAddress', 'GlobalFree', 'LoadLibraryW', 'ConnectNamedPipe', 'CreateNamedPipeW', 'GetOverlappedResult', 'SetEvent', 'ResetEvent', 'GetCurrentProcess', 'SetHandleInformation', 'SetLastError', 'GetSystemTime', 'SystemTimeToFileTime', 'GetModuleHandleExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'ChangeTimerQueueTimer', 'FindFirstFileW', 'FindNextFileW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'ConvertFiberToThread', 'ConvertThreadToFiber', 'FreeLibrary', 'LoadLibraryA', 'GetEnvironmentVariableW', 'GetConsoleMode', 'SetConsoleMode', 'ReadConsoleA', 'ReadConsoleW', 'OutputDebugStringW', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetConsoleWindow', 'GetCommandLineW', 'GetStartupInfoW', 'WaitForSingleObjectEx', 'GetLocalTime', 'DuplicateHandle', 'SwitchToThread', 'CreateThread', 'GetCurrentThread', 'SetThreadPriority', 'GetThreadPriority', 'ResumeThread', 'GetSystemInfo', 'QueryPerformanceFrequency', 'GetTickCount64', 'ReadFileEx', 'PeekNamedPipe', 'CancelIoEx', 'SleepEx', 'WriteFileEx', 'UnregisterWaitEx', 'RegisterWaitForSingleObject', 'GetSystemDirectoryW', 'VirtualQuery', 'CreateFileMappingW', 'OpenFileMappingW', 'MapViewOfFile', 'UnmapViewOfFile', 'ReleaseSemaphore', 'CreateSemaphoreW', 'GetFileAttributesExW', 'FlushFileBuffers', 'GetDriveTypeW', 'GetLogicalDrives', 'ReadFile', 'SetEndOfFile', 'SetFilePointerEx', 'SetErrorMode', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'DeleteFileW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLongPathNameW', 'RemoveDirectoryW', 'SetFileTime', 'GetTempPathW', 'GetVolumePathNamesForVolumeNameW', 'DeviceIoControl', 'CopyFileW', 'MoveFileW', 'MoveFileExW', 'TzSpecificLocalTimeToSystemTime', 'FileTimeToSystemTime', 'GetFileInformationByHandleEx', 'GetModuleFileNameW', 'GetTimeZoneInformation', 'GetGeoInfoW', 'GetUserGeoID', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetExitCodeProcess', 'GetDateFormatW', 'GetTimeFormatW', 'GetLocaleInfoW', 'GetCurrencyFormatW', 'GetUserDefaultLCID', 'GetUserPreferredUILanguages', 'FindFirstFileExW', 'OpenProcess', 'VirtualAlloc', 'CreateMutexW', 'ReleaseMutex', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'UnregisterWait', 'GetThreadTimes', 'FreeLibraryAndExitThread', 'GetModuleHandleA', 'LoadLibraryExW', 'GetVersionExW', 'VirtualProtect', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'RtlUnwind', 'ExitProcess', 'ExitThread', 'SystemTimeToTzSpecificLocalTime', 'SetConsoleCtrlHandler', 'GetCommandLineA', 'SetStdHandle', 'SetFileAttributesW', 'GetConsoleOutputCP', 'IsValidLocale', 'EnumSystemLocalesW', 'HeapReAlloc', 'GetFileSizeEx', 'SetEnvironmentVariableW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'WriteConsoleW', 'SetUnhandledExceptionFilter', 'FindClose', 'HeapSize', 'CommandLineToArgvW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoCreateGuid', 'CoTaskMemFree', 'timeKillEvent', 'timeSetEvent', 'FwpmFreeMemory0', 'FwpmGetAppIdFromFileName0', 'FwpmFilterAdd0', 'FwpmSubLayerGetByKey0', 'FwpmSubLayerAdd0', 'FwpmEngineClose0', 'FwpmEngineOpen0', 'BCryptGenRandom', 'DestroyWindow', 'MsgWaitForMultipleObjectsEx', 'SetTimer', 'KillTimer', 'CreateWindowExW', 'CharNextExA', 'GetWindowThreadProcessId', 'EnumWindows', 'PostThreadMessageW', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'SetWindowLongW', 'GetQueueStatus', 'GetProcessWindowStation', 'GetUserObjectInformationW', 'MessageBoxW', 'TranslateMessage', 'DispatchMessageW', 'PeekMessageW', 'PostMessageW', 'DefWindowProcW', 'RegisterClassW', 'UnregisterClassW', 'GetWindowLongW'], ['InterlockedDecrement', 'SizeofResource', 'MultiByteToWideChar', 'InterlockedIncrement', 'LockResource', 'FreeConsole', 'LoadResource', 'FindResourceW', 'lstrlenW', 'CreateFileMappingA', 'MapViewOfFile', 'GetSystemInfo', 'UnmapViewOfFile', 'VirtualAlloc', 'GetProcessHeap', 'GetLastError', 'HeapValidate', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetCommandLineA', 'HeapSetInformation', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DecodePointer', 'EncodePointer', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThread', 'RaiseException', 'HeapAlloc', 'GetModuleFileNameA', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'LoadLibraryW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStartupInfoW', 'RtlUnwind', 'GetStringTypeW', 'LCMapStringW', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'CreateFileW', 'CloseHandle', 'FlushFileBuffers', 'SetEvent', 'OpenEventA', 'lstrlenA', 'FindResourceExW', 'MessageBoxW', 'CoCreateInstance', 'CoUninitialize', 'CLSIDFromProgID', 'CoInitializeEx', 'SysFreeString', 'SysAllocString', 'RevertToSelf', 'OpenThreadToken', 'SetThreadToken'], ['GetModuleHandleA', 'CreateCursor', 'RegCloseKey', '_CorExeMain', 'ShellAboutA', 'InitMUILanguage'], ['ImageList_AddMasked', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_Destroy', 'GetStartupInfoA', 'GetModuleHandleA', 'lstrcpynA', 'lstrlenA', 'CloseHandle', 'LoadLibraryA', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'ReadFile', 'SetFilePointer', 'CreateFileA', 'GetTickCount', 'WriteFile', 'lstrcmpA', 'SetThreadPriority', 'GetThreadPriority', 'GetCurrentThread', 'FreeLibrary', 'SetFocus', 'CreateWindowExA', 'GetSystemMetrics', 'RegisterClassExA', 'LoadCursorA', 'LoadIconA', 'TrackPopupMenu', 'GetSubMenu', 'GetCursorPos', 'PostQuitMessage', 'CreateDialogParamA', 'MessageBoxA', 'OpenClipboard', 'EmptyClipboard', 'GetWindowTextA', 'CloseClipboard', 'SetWindowTextA', 'SetForegroundWindow', 'PostMessageA', 'SetWindowLongA', 'LoadMenuA', 'SendDlgItemMessageA', 'GetClientRect', 'GetMenu', 'AdjustWindowRect', 'GetWindowRect', 'DestroyMenu', 'DestroyWindow', 'IsDialogMessageA', 'DefWindowProcA', 'GetDlgItemTextA', 'SetClipboardData', 'ScreenToClient', 'MoveWindow', 'EnableWindow', 'wsprintfA', 'SetDlgItemTextA', 'LoadBitmapA', 'LoadImageA', 'GetDC', 'ReleaseDC', 'BeginPaint', 'EndPaint', 'GetDlgItemInt', 'SetDlgItemInt', 'ShowWindow', 'InvalidateRect', 'SetWindowPos', 'UpdateWindow', 'GetWindowLongA', 'CallWindowProcA', 'HideCaret', 'GetDlgItem', 'SendMessageA', 'PeekMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'CopyRect', 'DeleteDC', 'StretchBlt', 'RealizePalette', 'SelectPalette', 'SelectObject', 'CreateCompatibleDC', 'CreateHalftonePalette', 'CreatePalette', 'GetDIBColorTable', 'GetObjectA', 'CreateFontIndirectA', 'CreateSolidBrush', 'SetBkColor', 'SetTextColor', 'GetStockObject', 'DeleteObject', 'GetOpenFileNameA', 'GetSaveFileNameA', 'DragAcceptFiles', 'DragQueryFileA', '__CxxFrameHandler', '_strlwr', 'strstr', 'sprintf', 'memmove', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'malloc', 'free', 'strchr', '__dllonexit', '_onexit', '_exit', '_XcptFilter', 'exit', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_controlfp', 'calloc', '_stricmp', '_acmdln'], ['LoadLibraryExW', 'InterlockedIncrement', 'ReadConsoleA', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleTitleA', 'SetFileTime', 'LoadLibraryW', 'GetLocaleInfoW', 'FreeConsole', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'CreateActCtxA', 'SetConsoleTitleA', 'GetTempPathW', 'VerifyVersionInfoW', 'GetStdHandle', 'GetCPInfoExW', 'GetProcAddress', 'GetLongPathNameA', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'WriteProfileSectionA', 'AllocConsole', 'EnterCriticalSection', 'FindClose', 'GetAtomNameA', 'LoadLibraryA', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'DnsHostnameToComputerNameA', 'MoveFileA', 'BeginUpdateResourceA', 'GlobalGetAtomNameW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'GetConsoleTitleW', 'GetFileTime', 'PeekConsoleInputA', 'GetVolumeNameForVolumeMountPointW', 'GetFileInformationByHandle', 'SetFileValidData', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetConsoleAliasesLengthW', 'GetStringTypeA', 'GetFirmwareEnvironmentVariableW', 'GetSystemDefaultLangID', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'GetLastError', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetLocaleInfoA', 'LCMapStringA', 'MultiByteToWideChar', 'GetStringTypeW', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpSetDefaultProxyConfiguration'], ['GetStdHandle', 'FormatMessageW', 'SetFilePointer', 'GetLastError', 'GetFileSize', 'CreateDirectoryW', 'FindFirstFileW', 'FindClose', 'FindFirstFileExW', 'WideCharToMultiByte', 'GetConsoleCP', 'MultiByteToWideChar', 'GetOEMCP', 'GetCurrentProcessId', 'CreateEventW', 'SetEvent', 'TerminateThread', 'CreateThread', 'WaitForSingleObject', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetCurrentDirectoryW', 'GetLocaleInfoW', 'FindNextFileW', 'SetFileTime', 'ReadFile', 'FileTimeToSystemTime', 'SystemTimeToTzSpecificLocalTime', 'GetFileAttributesW', 'ResetEvent', 'ExpandEnvironmentStringsW', 'CreatePipe', 'GetStartupInfoW', 'CreateProcessW', 'PeekNamedPipe', 'TerminateProcess', 'DisconnectNamedPipe', 'ResumeThread', 'DeviceIoControl', 'GetThreadLocale', 'LeaveCriticalSection', 'EnterCriticalSection', 'OutputDebugStringW', 'DeleteFileW', 'Sleep', 'GetTempPathW', 'CloseHandle', 'SizeofResource', 'WriteFile', 'CreateFileW', 'LoadResource', 'FindResourceW', 'GetSystemInfo', 'GetModuleHandleW', 'GetProcAddress', 'GetTickCount', 'GetVersionExW', 'CreateFileA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'LoadLibraryA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'HeapSize', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'HeapAlloc', 'HeapFree', 'InterlockedDecrement', 'GetCurrentThreadId', 'GetCommandLineA', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetConsoleMode', 'FlushFileBuffers', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'ExitProcess', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapCreate', 'HeapDestroy', 'GetModuleFileNameA', 'GetCPInfo', 'InterlockedIncrement', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'RaiseException', 'wsprintfW', 'RegCloseKey', 'CryptDestroyHash', 'CryptCreateHash', 'RegOpenKeyExA', 'CryptReleaseContext', 'RegQueryValueExA', 'RegSetValueExA', 'CryptAcquireContextW', 'CryptGetHashParam', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'CryptHashData', 'ShellExecuteW', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'CoCreateInstance', 'CoCreateGuid', 'WSAStartup', 'connect', 'setsockopt', 'socket', 'WSACleanup', 'ntohs', 'inet_ntoa', 'closesocket', 'send', '__WSAFDIsSet', 'recv', 'select', 'gethostbyname', 'ntohl', 'inet_addr', 'htons', 'PathCombineW', 'SetupCopyOEMInfW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'GetProcessImageFileNameA', 'SHGetSpecialFolderPathA', 'StrStrIA', 'URLDownloadToFileA', 'InternetOpenA'], ['GetLogicalDrives', 'GetDriveTypeA', 'GetDiskFreeSpaceExA', 'ExitProcess', 'GetComputerNameA', 'ExitThread', 'Process32First', 'GetTickCount', 'WideCharToMultiByte', 'GetModuleFileNameW', 'MultiByteToWideChar', 'CreateThread', 'Process32Next', 'GlobalMemoryStatusEx', 'CreateMutexA', 'CreateToolhelp32Snapshot', 'SetFileAttributesW', 'CloseHandle', 'FindNextFileW', 'lstrcmpiW', 'LoadLibraryA', 'FindClose', 'MoveFileW', 'GetProcAddress', 'GetFileSizeEx', 'CreateFileW', 'ReadFile', 'GetFileAttributesW', 'Sleep', 'WriteFile', 'WaitForSingleObject', 'SetFilePointerEx', 'SetFilePointer', 'GetStringTypeW', 'LCMapStringW', 'GetLastError', 'FindFirstFileW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'RtlUnwind', 'LoadLibraryW', 'EncodePointer', 'DecodePointer', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapSetInformation', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapSize', 'GetModuleHandleW', 'HeapFree', 'HeapAlloc', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'HeapReAlloc', 'LeaveCriticalSection', 'EnterCriticalSection', 'RegQueryValueExA', 'CryptHashData', 'CryptDecrypt', 'CryptCreateHash', 'CryptDeriveKey', 'RegCloseKey', 'RegOpenKeyExA', 'RegCreateKeyExA', 'GetCurrentHwProfileA', 'RegSetValueExA', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptAcquireContextA', 'CryptExportKey', 'GetUserNameA', 'SHEmptyRecycleBinA', 'SHGetFolderPathW', 'ShellExecuteW', 'ShellExecuteA', 'CryptStringToBinaryA', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenA', 'InternetOpenUrlA', 'PathFindExtensionW', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['GetProfileIntW', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'UnlockFile', 'SetCommBreak', 'GetTickCount', 'GetConsoleAliasesA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'FindResourceExA', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'MulDiv', 'GetVolumePathNameA', 'GetDevicePowerState', 'CreateMutexW', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateFileMappingA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'HeapWalk', 'GetModuleHandleA', 'SetLocaleInfoW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetComputerNameA', 'GetDateFormatW', 'ReplaceFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'RaiseException', 'GetClipboardOwner', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpQueryHeaders'], ['RpcAsyncAbortCall', 'CryptEncryptMessage', 'OffsetWindowOrgEx', 'GetCharWidth32W', 'CreatePalette', 'PdhCloseQuery', 'GetModuleHandleA', 'GetNLSVersion', 'WinExec', 'GetSystemRegistryQuota', 'memset', 'WSASetLastError', 'OleCreateLink', 'RegSaveKeyA', 'SCardGetStatusChangeW', 'StrCatW', 'CloseClusterResource', 'CharToOemW', 'OpenColorProfileW'], ['CloseHandle', 'GetLocalTime', 'SystemTimeToFileTime', 'GetCurrentProcessId', 'GetPrivateProfileIntW', 'GetCommandLineW', 'GetLastError', 'GetFileSize', 'WideCharToMultiByte', 'Sleep', 'GetTickCount', 'CopyFileW', 'MultiByteToWideChar', 'GetFileAttributesExW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetTempPathW', 'TerminateProcess', 'GetCurrentProcess', 'GetProcessHeap', 'HeapFree', 'GetCurrentThreadId', 'FlushInstructionCache', 'lstrlenW', 'OutputDebugStringW', 'ExpandEnvironmentStringsW', 'WritePrivateProfileStringW', 'lstrcmpiW', 'RaiseException', 'InitializeCriticalSection', 'DeleteCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenSemaphoreW', 'CreateSemaphoreW', 'WaitForSingleObject', 'LocalFree', 'CreateMutexW', 'ReleaseMutex', 'CreateThread', 'SetLastError', 'ReleaseSemaphore', 'InterlockedCompareExchange', 'GetLongPathNameW', 'GetFileTime', 'GetSystemTime', 'CreateDirectoryW', 'GetPrivateProfileStringW', 'CreateProcessW', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'DeleteAtom', 'FindAtomW', 'AddAtomW', 'OpenThread', 'GetVersionExW', 'FormatMessageW', 'SetFilePointerEx', 'LocalFileTimeToFileTime', 'SetEnvironmentVariableA', 'GetFileSizeEx', 'CompareStringA', 'CreateFileA', 'ReadFile', 'SetEndOfFile', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'FlushFileBuffers', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetLocaleInfoA', 'GetModuleHandleW', 'InterlockedExchange', 'FindResourceExW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'LoadLibraryExW', 'GetModuleFileNameW', 'EnterCriticalSection', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringA', 'QueryPerformanceCounter', 'LoadLibraryW', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetTimeZoneInformation', 'LCMapStringW', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'LeaveCriticalSection', 'GetProcAddress', 'GetCPInfo', 'RtlUnwind', 'GetStartupInfoW', 'GetFileAttributesW', 'CompareStringW', 'CreateFileW', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'FreeLibrary', 'GetAtomNameW', 'HeapDestroy', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'IsProcessorFeaturePresent', 'VirtualFree', 'VirtualAlloc', 'DeviceIoControl', 'GetSystemDirectoryW', 'ExitProcess', 'GetVolumeNameForVolumeMountPointA', 'ReadDirectoryChangesW', 'Module32FirstW', 'EnumResourceLanguagesW', 'GetShortPathNameW', 'GetPrivateProfileSectionW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'VirtualQuery', 'VirtualProtect', 'GetSystemInfo', 'GetModuleHandleA', 'GetCommandLineA', 'MulDiv', 'GetVersionExA', 'GlobalAlloc', 'lstrcpyW', 'GlobalFree', 'lstrcatW', 'MessageBoxW', 'FindWindowW', 'IsWindow', 'SendMessageTimeoutW', 'GetWindowThreadProcessId', 'IsWindowVisible', 'DefWindowProcW', 'GetActiveWindow', 'UnregisterClassA', 'SetWindowLongW', 'GetWindowLongW', 'CallWindowProcW', 'SendMessageW', 'GetWindowTextW', 'PostQuitMessage', 'CreateWindowExW', 'LoadCursorW', 'GetClassInfoExW', 'RegisterClassExW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'SetWindowTextW', 'SetTimer', 'EnumThreadWindows', 'DestroyWindow', 'CharNextW', 'GetAltTabInfoA', 'CreateIconIndirect', 'GetMenuItemID', 'GetWindowInfo', 'GetTitleBarInfo', 'GrayStringW', 'CharLowerA', 'EnumWindows', 'OpenWindowStationW', 'SetDeskWallpaper', 'GetGuiResources', 'CheckMenuRadioItem', 'SetWindowRgn', 'CallMsgFilterW', 'EnableWindow', 'ValidateRgn', 'RealGetWindowClassA', 'WINNLSGetEnableStatus', 'GetWindowRect', 'InvalidateRect', 'EndDialog', 'EnableMenuItem', 'GetMenu', 'DialogBoxParamW', 'LoadStringW', 'ReleaseDC', 'GetDC', 'SetCapture', 'GetWindowPlacement', 'IsIconic', 'IsZoomed', 'DrawMenuBar', 'DrawTextW', 'SetRect', 'FrameRect', 'FillRect', 'OffsetRect', 'InvertRect', 'IntersectRect', 'ReleaseCapture', 'UpdateWindow', 'PostMessageW', 'PtInRect', 'GetSubMenu', 'GetDesktopWindow', 'MoveWindow', 'GetForegroundWindow', 'ShowWindow', 'GetSystemMetrics', 'EndPaint', 'BeginPaint', 'WaitMessage', 'TranslateAcceleratorW', 'LoadAcceleratorsW', 'RegisterClassW', 'LoadIconW', 'MessageBoxA', 'LoadStringA', 'SetDlgItemTextW', 'GetDlgItem', 'WinHelpW', 'CheckDlgButton', 'IsDlgButtonChecked', 'CheckRadioButton', 'GetDlgItemTextW', 'UnionRect', 'LoadBitmapW', 'wsprintfW', 'GetClientRect', 'GetParent', 'CharUpperW', 'IsMenu', 'GetWindowContextHelpId', 'CharNextA', 'GetDialogBaseUnits', 'VkKeyScanA', 'CreatePopupMenu', 'IsClipboardFormatAvailable', 'GetMessagePos', 'CharLowerW', 'GetMessageExtraInfo', 'LoadCursorFromFileA', 'CloseDesktop', 'AnyPopup', 'OpenIcon', 'CreateMenu', 'SetRectRgn', 'BRUSHOBJ_hGetColorTransform', 'CreateHalftonePalette', 'EngQueryLocalTime', 'GdiGetLocalBrush', 'GdiGetSpoolMessage', 'GdiReleaseDC', 'GdiGradientFill', 'CLIPOBJ_cEnumStart', 'CreateColorSpaceW', 'RestoreDC', 'ExtCreateRegion', 'ExtEscape', 'SetWinMetaFileBits', 'StrokeAndFillPath', 'PolyDraw', 'StartFormPage', 'EnumFontFamiliesA', 'DrawEscape', 'GetCharWidth32A', 'CreateScalableFontResourceW', 'EngAlphaBlend', 'SetMiterLimit', 'SetWindowExtEx', 'GetGlyphOutline', 'SetDCBrushColor', 'GdiConvertMetaFilePict', 'GetCurrentObject', 'GetPixel', 'CreateSolidBrush', 'GdiInitSpool', 'CancelDC', 'HT_Get8BPPMaskPalette', 'SetBkColor', 'GdiGetCharDimensions', 'PlayMetaFileRecord', 'GdiConvertBrush', 'CreateEnhMetaFileA', 'GetGlyphOutlineA', 'Polyline', 'EngQueryEMFInfo', 'FONTOBJ_pQueryGlyphAttrs', 'SaveDC', 'GetDeviceCaps', 'CreateFontIndirectW', 'Ellipse', 'GetTextExtentPoint32W', 'GdiFlush', 'ExcludeClipRect', 'CreateCompatibleBitmap', 'GetStockObject', 'GetBkMode', 'GetTextColor', 'SetBkMode', 'SetTextColor', 'SetPixel', 'MoveToEx', 'LineTo', 'CreateCompatibleDC', 'SelectObject', 'BitBlt', 'DeleteObject', 'DeleteDC', 'CloseFigure', 'DeleteEnhMetaFile', 'GetMapMode', 'CloseMetaFile', 'GetLayout', 'GetTextCharacterExtra', 'GetTextAlign', 'GetDCBrushColor', 'RegQueryValueExA', 'RegQueryValueExW', 'RegCloseKey', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'SHGetFolderPathW', 'ShellExecuteW', 'SHLoadInProc', 'DoEnvironmentSubstA', 'ExtractAssociatedIconExA', 'SHFileOperationW', 'CoInitialize', 'CoUninitialize', 'CoTaskMemRealloc', 'CoTaskMemFree', 'CoCreateInstance', 'CoTaskMemAlloc', 'SHSetValueW', 'PathFindFileNameW', 'PathAppendW', 'StrStrIW', 'PathRemoveFileSpecW', 'SHGetValueW', 'PathCombineW', 'PathFileExistsW', 'StrToIntW', 'StrCmpNIW', 'StrCmpNA', 'StrStrIA', 'InitCommonControlsEx', 'ImmDisableIME'], ['GetModuleHandleA', 'GetProcAddress', 'GetExitCodeThread', 'LocalFlags', 'WritePrivateProfileStringW', 'GetModuleHandleW'], ['GetProfileIntW', 'BuildCommDCBAndTimeoutsA', 'InterlockedIncrement', 'InterlockedDecrement', 'SetMailslotInfo', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetDriveTypeA', 'GetProcessTimes', 'GetVolumePathNameW', 'GetCalendarInfoA', 'GetConsoleAliasExesLengthW', 'GetFileAttributesA', 'WriteConsoleW', 'SetSystemPowerState', 'GetModuleFileNameW', 'CompareStringW', 'GetShortPathNameA', 'EnumSystemLocalesA', 'SearchPathW', 'DeleteFiber', 'GetLastError', 'GetProcAddress', 'AttachConsole', 'HeapSize', 'SetComputerNameA', 'EnterCriticalSection', 'OpenWaitableTimerA', 'LoadLibraryA', 'GetProcessId', 'LocalAlloc', 'SetCalendarInfoW', 'IsSystemResumeAutomatic', 'AddAtomA', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'CancelTimerQueueTimer', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetFileShortNameA', 'AreFileApisANSI', 'HeapCompact', 'GetPrivateProfileIntW', 'GetVolumeNameForVolumeMountPointA', 'HeapFree', 'HeapAlloc', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'IsProcessorFeaturePresent', 'HeapCreate', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsA', 'SelectObject'], ['CloseHandle', 'CompareStringW', 'CopyFileW', 'CreateFileW', 'DeleteCriticalSection', 'EncodePointer', 'EnterCriticalSection', 'EnumSystemLocalesW', 'ExitProcess', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentStringsW', 'GetFileSizeEx', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryExW', 'LocalFree', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RaiseException', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlPcToFileHeader', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEnvironmentVariableW', 'SetFilePointerEx', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'CryptAcquireContextW', 'CryptCreateHash', 'CryptDecrypt', 'CryptDeriveKey', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptHashData', 'CryptReleaseContext', 'FreeSid', 'RegCloseKey', 'RegOpenKeyExW', 'CoCreateInstance', 'CoInitialize', 'CoInitializeEx', 'CoInitializeSecurity', 'CoUninitialize', 'SysAllocString', 'SysFreeString', 'VariantClear', 'VariantInit', 'wsprintfW', 'NtAllocateVirtualMemory', 'NtCreateThreadEx', 'NtProtectVirtualMemory', 'NtWaitForSingleObject', 'WSACleanup', 'WSAStartup', '__WSAFDIsSet', 'bind', 'closesocket', 'connect', 'gethostbyname', 'htonl', 'htons', 'ntohl', 'recvfrom', 'select', 'send', 'socket'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageExtraInfo', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'CreateDirectoryExW', 'GlobalAlloc', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetCPInfoExW', 'AllocConsole', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'GetConsoleTitleW', 'SetCalendarInfoA', 'SetFilePointer', 'SetLastError', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['CreateMutexW', 'GetConsoleAliasesLengthW', 'AllocConsole', 'lstrcpynA', 'GetConsoleAliasExesLengthA', 'HeapAlloc', 'InterlockedIncrement', 'OpenJobObjectA', 'InterlockedDecrement', 'GetNamedPipeHandleStateA', 'GetUserDefaultLCID', 'WriteConsoleInputA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetCommandLineA', 'GetPriorityClass', 'GetVolumePathNameW', 'GetPrivateProfileIntA', 'SetFileShortNameW', 'GetCalendarInfoW', 'CreateEventA', 'LeaveCriticalSection', 'CreateSemaphoreA', 'GetFileAttributesW', 'WriteConsoleW', 'GetCompressedFileSizeA', 'CompareStringW', 'GetVolumePathNameA', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'GetTempFileNameW', 'DeleteFiber', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'RemoveDirectoryA', 'SearchPathA', 'SetFileAttributesA', 'GlobalFree', 'OpenWaitableTimerA', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'MoveFileA', 'GetNumberFormatW', 'BeginUpdateResourceA', 'AddAtomA', 'GetPrivateProfileSectionNamesA', 'GetModuleHandleA', 'FindNextFileW', 'GetStringTypeW', 'GetCurrentDirectoryA', 'EnumDateFormatsW', 'GetShortPathNameW', 'GetCPInfoExA', 'SetCalendarInfoA', 'GetVersionExA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'OpenFileMappingA', 'lstrcpyW', 'DeleteFileA', 'LocalFileTimeToFileTime', 'CreateMailslotW', 'GetVolumeNameForVolumeMountPointA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'WideCharToMultiByte', 'HeapSetInformation', 'GetStartupInfoW', 'HeapFree', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'CloseHandle', 'RaiseException', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'MultiByteToWideChar', 'IsProcessorFeaturePresent', 'LCMapStringW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LoadLibraryW', 'HeapReAlloc', 'ReadFile', 'CreateFileW', 'ReadEventLogW'], ['GetModuleHandleA', 'ValidateRect', 'GetUserNameA', '_CorExeMain', 'DPA_Create', 'ShellAboutW'], ['GetCurrentThread', 'GetSystemDefaultUILanguage', 'UnregisterApplicationRecoveryCallback', 'GetEnvironmentStringsW', 'SwitchToThread', 'IsSystemResumeAutomatic', 'GetThreadLocale', 'SetFileApisToOEM', 'GetCommandLineW', 'GetThreadUILanguage', 'FlushProcessWriteBuffers', 'GetCurrentProcess', 'GetLastError', 'GetErrorMode', 'GetLogicalDrives', 'GetCurrentProcessorNumber', 'RaiseException', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'DecodePointer', 'MultiByteToWideChar', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetModuleHandleW', 'GetOEMCP', 'LoadLibraryExW', 'GetModuleFileNameW', 'lstrcmpiW', 'FreeLibrary', 'WriteConsoleW', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileSizeEx', 'HeapSize', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetFileType', 'GetStdHandle', 'GetProcessHeap', 'GetCommandLineA', 'CloseHandle', 'ReadFile', 'FindClose', 'GetTickCount64', 'GetProcAddress', 'LoadLibraryA', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleExW', 'ExitProcess', 'InterlockedFlushSList', 'RtlUnwind', 'OutputDebugStringW', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'GetMessageExtraInfo', 'GetActiveWindow', 'IsWow64Message', 'GetKBCodePage', 'GetOpenClipboardWindow', 'GetProcessWindowStation', 'IsProcessDPIAware', 'GetFocus', 'GetClipboardSequenceNumber', 'GetCapture', 'GetShellWindow', 'CreateMenu', 'GetDesktopWindow', 'GetClipboardViewer', 'DestroyCaret', 'GetForegroundWindow', 'SetCursor', 'LoadCursorW', 'CharNextW', 'GetDialogBaseUnits', 'EmptyClipboard', 'GdiFlush', 'RegSetValueExW', 'RegEnumKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'CoTaskMemFree', 'CoCreateInstance', 'CoTaskMemRealloc', 'CoTaskMemAlloc', 'CoUninitialize', 'OleUninitialize', 'CoFreeUnusedLibraries', 'VarUI4FromStr', 'InternetQueryDataAvailable'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegNotifyChangeKeyValue', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'GetUserNameA', 'AdjustTokenPrivileges', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualAlloc', 'UpdateResourceA', 'UnmapViewOfFile', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'OpenProcess', 'OpenMutexA', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetTempFileNameA', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'EndUpdateResourceA', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreatePipe', 'CreateMutexA', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'BeginUpdateResourceA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'ToAsciiEx', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyExA', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'CLSIDFromString', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteExA', 'ExtractIconExW', 'InternetGetConnectedState', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA', 'InternetCloseHandle', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHGetDesktopFolder', 'OpenSCManagerA', 'CloseServiceHandle', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'inet_ntoa', 'Netbios'], ['GetDCBrushColor', 'VirtualProtectEx', 'FreeConsole', 'RaiseException', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableCS', 'SleepConditionVariableSRW', 'FormatMessageA', 'InitOnceBeginInitialize', 'InitOnceComplete', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'RtlCaptureStackBackTrace', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'SetFileInformationByHandle', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'InitOnceExecuteOnce', 'CreateEventExW', 'CreateSemaphoreExW', 'FlushProcessWriteBuffers', 'GetCurrentProcessorNumber', 'GetSystemTimeAsFileTime', 'GetTickCount64', 'CreateThreadpoolTimer', 'SetThreadpoolTimer', 'WaitForThreadpoolTimerCallbacks', 'CloseThreadpoolTimer', 'CreateThreadpoolWait', 'SetThreadpoolWait', 'CloseThreadpoolWait', 'GetModuleHandleW', 'GetProcAddress', 'GetFileInformationByHandleEx', 'CreateSymbolicLinkW', 'CloseHandle', 'WaitForSingleObjectEx', 'Sleep', 'SwitchToThread', 'GetExitCodeThread', 'GetNativeSystemInfo', 'LocalFree', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'ResumeThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'SetConsoleCtrlHandler', 'HeapFree', 'HeapAlloc', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'ReadFile', 'ReadConsoleW', 'CreateFileW', 'DecodePointer'], ['OpenMutexW', 'GetSystemTimeAdjustment', 'VerSetConditionMask', 'SetLocaleInfoW', 'FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'FillConsoleOutputCharacterW', 'VirtualFree', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExW', 'FreeResource', 'EnumResourceNamesW', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBW', 'SetDefaultCommConfigA', 'WritePrivateProfileStructA', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputA', 'WriteConsoleInputA', 'LoadResource', 'AddAtomA', 'SearchPathW', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryA', 'LocalAlloc', 'SetProcessPriorityBoost', 'GetProfileSectionA', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'GetNamedPipeHandleStateW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GetProcessHeap', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileA', 'GetLastError', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceW', 'SetLastError', 'FatalAppExitW', 'SetSystemTime', 'OpenFileMappingW', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'ContinueDebugEvent', 'VirtualAllocEx', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'GetACP', 'GlobalFindAtomA', 'lstrcatA', 'GetPrivateProfileStringA', 'SetMailslotInfo', 'CreateActCtxW', '_lwrite', 'OutputDebugStringA', 'CreateNamedPipeA', 'GetAtomNameW', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetDriveTypeW', 'GetFileAttributesExW', 'OpenWaitableTimerW', 'MoveFileA', 'GetVolumePathNameA', 'GetCommMask', 'SetFileShortNameW', 'VerLanguageNameW', 'LockFile', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AttachConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'DebugActiveProcessStop', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleA', 'GetModuleFileNameW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'GlobalUnWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeA', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'ReadConsoleW', 'MapUserPhysicalPagesScatter', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'GetDateFormatW', 'GetConsoleAliasExesW', 'EnumDateFormatsA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InterlockedIncrement', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'GlobalAlloc', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetConsoleAliasesLengthW', 'GetCPInfoExW', 'SetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'GetModuleHandleA', 'SetCalendarInfoA', 'SetFilePointer', 'GetStdHandle', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'InitializeCriticalSectionAndSpinCount', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['GetModuleHandleA', 'PeekMessageA', 'RegOpenKeyExA', '_CorExeMain', 'ImageList_Create', 'ShellAboutW'], ['GetLastError', 'lstrcpyA', 'GetModuleHandleA', 'GetCommandLineA', 'FindFirstFileA', 'FormatMessageA', 'FindClose', 'FindNextFileA', 'DeleteFileA', 'CloseHandle', 'GetACP', 'CreateFileA', 'CreateFontIndirectA', 'PostQuitMessage', 'GetMessageA', 'UpdateWindow', 'EndPaint', 'DispatchMessageA', 'BeginPaint', 'TranslateMessage', 'MoveWindow', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcA', 'MessageBoxA', 'SendMessageA', 'DestroyWindow', 'LoadCursorA', 'LoadIconA', 'ShowWindow', 'GetWindowRect'], ['LoadLibraryA', 'WriteProfileSectionW', 'GetNumaProcessorNode', 'FindFirstVolumeW', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationW', 'WaitForSingleObject', 'GetNamedPipeHandleStateA', 'FileTimeToDosDateTime', 'CallNamedPipeW', 'EnumResourceTypesW', 'EnumResourceNamesW', 'TerminateProcess', 'ActivateActCtx', 'GetConsoleAliasesLengthA', 'GetVersionExA', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'GetCommConfig', 'WritePrivateProfileStructA', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeA', 'LeaveCriticalSection', 'WriteConsoleInputA', 'TlsSetValue', 'SetComputerNameExA', 'FindAtomA', 'BuildCommDCBAndTimeoutsA', 'LocalAlloc', 'VerifyVersionInfoA', 'TlsGetValue', 'GetCommandLineA', 'InterlockedExchange', 'GetCalendarInfoA', 'CopyFileW', 'ReleaseActCtx', 'OutputDebugStringW', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringW', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetSystemWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointA', 'DebugActiveProcessStop', 'lstrcmpW', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetSystemWindowsDirectoryW', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringA', 'InterlockedDecrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceA', 'WriteConsoleA', 'VirtualProtect', 'BuildCommDCBW', 'InterlockedFlushSList', 'DeleteCriticalSection', 'GetFileAttributesExA', 'FileTimeToLocalFileTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameW', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GetProcAddress', 'GetOverlappedResult', 'GlobalFix', 'UnregisterWait', 'FatalExit', 'InterlockedExchangeAdd', 'WaitNamedPipeW', 'SetSystemTime', 'SetLocalTime', 'GetPrivateProfileStructA', 'EnumCalendarInfoExA', 'OpenSemaphoreA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameA', 'LockFile', 'EndUpdateResourceW', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasW', 'GetLargestConsoleWindowSize', 'WriteConsoleInputW', 'CreateMailslotW', 'EnumDateFormatsW', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'ResetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'DeleteAtom', 'CreateIoCompletionPort', 'ChangeTimerQueueTimer', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileA', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'LocalLock', 'GetCommMask', 'SetEndOfFile', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerA', 'GetProcessShutdownParameters', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringW', 'InitAtomTable', 'AddAtomW', 'WriteConsoleOutputCharacterA', 'QueryInformationJobObject', 'QueryDosDeviceW', 'EnterCriticalSection', 'VirtualAlloc', 'GetBinaryTypeA', 'CreateFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleW', 'LoadLibraryW', 'SetFilePointer', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharW', 'WinHttpConnect'], ['GetModuleHandleW', 'GetProcAddress', 'CloseHandle', 'GetFileSize', 'lstrcatA', 'ExpandEnvironmentStringsA', 'CreateFileA', 'WriteFile', 'DeleteFileA', 'ReadFile', 'GetModuleHandleA', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CreateFileW'], ['InitCommonControlsEx', 'SHAutoComplete', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetNumberFormatW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'Sleep', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'GetTickCount', 'OpenFileMappingW', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateThread', 'GetProcessAffinityMask', 'CreateEventW', 'CreateSemaphoreW', 'ReleaseSemaphore', 'ResetEvent', 'SetEvent', 'SetThreadPriority', 'SystemTimeToFileTime', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CompareStringW', 'IsDBCSLeadByte', 'SetFileTime', 'SetFileAttributesW', 'SetCurrentDirectoryW', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleHandleA', 'LCMapStringW', 'LCMapStringA', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetModuleFileNameA', 'ExitProcess', 'HeapSize', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'InterlockedDecrement', 'GetCurrentThreadId', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'GetStartupInfoA', 'GetCommandLineA', 'RaiseException', 'GetFileAttributesW', 'FlushFileBuffers', 'ReadFile', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'GetStdHandle', 'GetLongPathNameW', 'GetShortPathNameW', 'GlobalAlloc', 'MoveFileW', 'CreateFileW', 'CreateDirectoryW', 'DeviceIoControl', 'RemoveDirectoryW', 'DeleteFileW', 'CreateHardLinkW', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'CreateFileA', 'GetCPInfo', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'RtlUnwind', 'EnableWindow', 'GetDlgItem', 'ShowWindow', 'SetWindowLongW', 'GetDC', 'ReleaseDC', 'FindWindowExW', 'GetParent', 'MapWindowPoints', 'CreateWindowExW', 'UpdateWindow', 'LoadCursorW', 'RegisterClassExW', 'DefWindowProcW', 'DestroyWindow', 'CopyRect', 'IsWindow', 'CharUpperW', 'OemToCharBuffA', 'LoadIconW', 'LoadBitmapW', 'PostMessageW', 'GetSysColor', 'SetForegroundWindow', 'MessageBoxW', 'WaitForInputIdle', 'IsWindowVisible', 'DialogBoxParamW', 'DestroyIcon', 'SetFocus', 'GetClassNameW', 'SendDlgItemMessageW', 'EndDialog', 'GetDlgItemTextW', 'SetDlgItemTextW', 'wvsprintfW', 'SendMessageW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'LoadStringW', 'GetWindowRect', 'GetClientRect', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'GetWindowLongW', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'DeleteDC', 'GetObjectW', 'DeleteObject', 'CreateDIBSection', 'GetSaveFileNameW', 'CommDlgExtendedError', 'GetOpenFileNameW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'SHBrowseForFolderW', 'ShellExecuteExW', 'SHGetSpecialFolderLocation', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'SHChangeNotify', 'SHGetFileInfoW', 'CLSIDFromString', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'CreateStreamOnHGlobal', 'VariantInit'], ['InterlockedDecrement', 'SetMailslotInfo', 'GetComputerNameW', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'SetCommConfig', 'Sleep', 'GetCalendarInfoA', 'IsBadCodePtr', 'DnsHostnameToComputerNameW', 'GetAtomNameW', 'SetConsoleTitleA', 'GetStringTypeExA', 'InterlockedExchange', 'GetProcAddress', 'SetStdHandle', 'SetFileAttributesA', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'UpdateResourceW', 'GetFileTime', 'GetVersionExA', 'LCMapStringW', 'DeleteFileA', 'SwitchToThread', 'VirtualAlloc', 'GetLocaleInfoA', 'WideCharToMultiByte', 'InterlockedIncrement', 'MultiByteToWideChar', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'ExitProcess', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleA', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpCheckPlatform'], ['GetCurrentHwProfileA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DeleteFileA', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'feof', 'ferror', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'getc', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'wcslen', 'SHGetFolderPathA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetMailslotInfo', 'GetBinaryTypeW', 'lstrlenW', 'GetStdHandle', 'GetCPInfoExW', 'MoveFileExA', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetConsoleAliasesLengthW', 'GetLastError', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LoadLibraryA', 'SetStdHandle', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'OffsetRect', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SysFreeString', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysReAllocStringLen', 'SafeArrayCreate', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'ResizePalette', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetNearestPaletteIndex', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'HeapAlloc', 'HeapCreate', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '__dllonexit', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__mb_cur_max', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_strrev', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'free', 'fwrite', 'getc', 'getenv', 'islower', 'isspace', 'isupper', 'isxdigit', 'localeconv', 'malloc', 'memcpy', 'memmove', 'realloc', 'signal', 'strerror', 'strlen', 'strncmp', 'strtol', 'strtoul', 'tolower', 'ungetc', 'vfprintf', 'wcslen', 'EnumWindows'], ['SetStdHandle', 'WriteConsoleW', 'WriteConsoleA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW', 'CreateFileA', 'FreeConsole', 'GetModuleHandleA', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'GetClassInfoA', 'CallWindowProcA', 'SetWindowLongA', 'CheckDlgButton', 'GetActiveWindow', 'LoadCursorA', 'MessageBoxA', 'wsprintfA', 'GetDlgItemTextA', 'SetTextColor', 'CreateFontIndirectA', 'SelectObject', 'SetBkMode', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegDeleteKeyA'], ['HeapAlloc', 'Process32First', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetComputerNameA', 'SetEvent', 'Sleep', 'WaitForSingleObject', 'VirtualAlloc', 'MultiByteToWideChar', 'lstrlenW', 'GetLastError', 'SetLastError', 'DeleteFileW', 'CopyFileW', 'CreateDirectoryW', 'CreateEventA', 'VirtualFreeEx', 'WriteProcessMemory', 'VirtualAllocEx', 'IsBadReadPtr', 'ExitProcess', 'CreateRemoteThread', 'DuplicateHandle', 'CreateProcessW', 'lstrlenA', 'CreateThread', 'MapViewOfFile', 'CreateFileMappingA', 'InitializeCriticalSection', 'VirtualQuery', 'lstrcpyW', 'GetModuleFileNameW', 'lstrcatW', 'GetProcessHeap', 'TerminateProcess', 'OpenProcess', 'GetCurrentProcessId', 'CreateMutexA', 'GetCommandLineA', 'ReadProcessMemory', 'VirtualQueryEx', 'lstrcmpA', 'VirtualFree', 'WideCharToMultiByte', 'lstrcmpiA', 'WriteFile', 'CreateFileW', 'TerminateThread', 'ResumeThread', 'SuspendThread', 'HeapFree', 'lstrcatA', 'Process32Next', 'GetModuleHandleA', 'GetSystemInfo', 'GetVersionExA', 'LoadLibraryA', 'GetProcAddress', 'GetCurrentProcess', 'CloseHandle', 'lstrcpyA', 'GetProcessVersion', 'GetTickCount', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcA', 'GetSystemMetrics', 'wsprintfA', 'wsprintfW', 'OpenProcessToken', 'AdjustTokenPrivileges', 'GetUserNameA', 'RegQueryValueExA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExW', 'RegOpenKeyExA', 'RegSetValueExA', 'RegNotifyChangeKeyValue', 'RegDeleteKeyA', 'LookupPrivilegeValueA', 'SHGetFolderPathW', 'CoCreateGuid', 'StrStrA', 'StrCmpNIA', 'HttpSendRequestA', 'HttpOpenRequestA', 'InternetConnectA', 'InternetOpenA', 'InternetGetCookieA', 'InternetReadFile', 'InternetOpenUrlA', 'InternetCloseHandle', 'ObtainUserAgentString', 'UuidToStringA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'AddAce', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'sndPlaySoundA'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeA', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'DeleteTimerQueueTimer', 'TerminateThread', 'SetLastError', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBA', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomA', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GlobalFix', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryA', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetDllDirectoryW', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'CopyFileA', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthW', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringA', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'WriteConsoleW', 'OpenMutexA', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'UnlockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressW', 'GetPrivateProfileIntA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringW', 'OpenWaitableTimerW', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'InterlockedIncrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'GetFileType', 'OutputDebugStringW', 'LoadLibraryW', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'CloseHandle', 'CreateFileA'], ['GetLastError', 'CloseHandle', 'GetModuleFileNameW', 'DeleteFileA', 'GetProcessHeap', 'WaitForSingleObject', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'LocalFree', 'GetVersionExA', 'LocalAlloc', 'LoadLibraryA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetVersionExW', 'Sleep', 'GlobalFindAtomA', 'ExpandEnvironmentStringsA', 'GetCurrentProcess', 'GlobalAddAtomA', 'SetErrorMode', 'lstrcpynA', 'ExitProcess', 'GetTickCount', 'CreateFileA', 'GetShortPathNameA', 'GetHandleInformation', 'SetPriorityClass', 'GetCurrentThread', 'WriteFile', 'ReadFile', 'SetThreadPriority', 'GetFileSizeEx', 'CopyFileA', 'SetFileAttributesA', 'GetTempFileNameA', 'wsprintfW', 'DestroyWindow', 'keybd_event', 'GetMessageA', 'SetTimer', 'RegisterClassExA', 'PostQuitMessage', 'KillTimer', 'TranslateMessage', 'CreateWindowExA', 'DefWindowProcA', 'FlashWindow', 'DispatchMessageA', 'UpdateWindow', 'ShowWindow', 'ShellExecuteExW', 'ShellExecuteExA', 'SHGetFolderPathW', 'SHGetFolderPathA', 'CoInitializeEx', 'CoUninitialize', 'GetModuleBaseNameW', 'PathAppendW', 'PathAddBackslashA', 'PathFindFileNameA', 'PathFileExistsA', 'PathAddExtensionA', 'PathIsDirectoryA', 'PathCombineA', 'StrStrNIW', 'RtlImageNtHeader', '_stricmp', 'ZwClose', 'memset', '_alloca_probe', 'strstr', '_snprintf', 'RtlUnwind', 'CryptGetHashParam', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'OpenProcessToken', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'RegSetValueExA', 'RegQueryValueExA', 'RegCreateKeyA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegFlushKey', 'RegCloseKey', 'CryptReleaseContext'], ['LoadLibraryExA', 'CreateMutexA', 'GetLastError', 'FreeConsole', 'TerminateProcess', 'CloseHandle', 'CreateProcessA', 'HeapSize', 'GetProcessHeap', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetTimeZoneInformation', 'ReadConsoleW', 'GetFileSizeEx', 'MultiByteToWideChar', 'LocalFree', 'FormatMessageA', 'GetCurrentDirectoryW', 'CreateFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'SetFileInformationByHandle', 'SetFilePointerEx', 'GetTempPathW', 'AreFileApisANSI', 'CopyFileW', 'GetFileInformationByHandleEx', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'Sleep', 'GetCurrentThreadId', 'InitializeCriticalSectionEx', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetLocaleInfoEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetDriveTypeW', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'SetStdHandle', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'WriteConsoleW', 'SHGetKnownFolderPath', 'CoTaskMemFree', 'WSAStartup', 'recv', 'getaddrinfo', 'closesocket', 'WSASocketA', 'connect'], ['LocalAlloc', 'GetProcAddress', 'LoadLibraryA', 'GetTapeParameters', 'LocalFree', 'Sleep', 'MoveFileW', 'GetLocalTime', 'LockFile', 'LockResource', 'InterlockedCompareExchange', 'InterlockedIncrement', 'EnterCriticalSection', 'EnumDateFormatsExW', 'GetConsoleAliasExesLengthA', 'GetConsoleAliasesLengthA', 'GetConsoleAliasesW', 'SetLastError', 'CloseHandle', 'GetThreadId', 'ConvertFiberToThread', 'FreeLibrary', 'VirtualLock', 'SizeofResource', 'GetLargePageMinimum', 'GetSystemDefaultLangID', 'GetCurrentProcess', 'GetProcessHeap', 'GetSystemDefaultLCID', 'GlobalUnfix', 'GetVersionExA', 'DeleteFiber', 'GetCompressedFileSizeA', 'SetConsoleTitleW', 'GetFileAttributesExW', 'SetFileShortNameW', 'GetUILanguageInfo', 'GetStringTypeA', 'RtlUnwind', 'MultiByteToWideChar', 'RaiseException', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'LeaveCriticalSection', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'GetModuleHandleA', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'DeleteCriticalSection', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'CreateFileA', 'GetSysColorBrush'], ['SetBkMode', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', '_iob', 'CharLowerA', 'CreateEnvironmentBlock'], ['HeapAlloc', 'GetCommandLineA', 'RtlUnwind', 'Sleep', 'HeapReAlloc', 'RaiseException', 'VirtualAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'GetACP', 'IsValidCodePage', 'LCMapStringW', 'LCMapStringA', 'SetHandleCount', 'HeapFree', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetOEMCP', 'GetCPInfo', 'GetModuleHandleW', 'CreateFileA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'MultiByteToWideChar', 'lstrlenA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'LoadLibraryA', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'LoadResource', 'FindResourceA', 'GetFileType', 'ExitProcess', 'LoadCursorA', 'GetSysColorBrush', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'UpdateWindow', 'CreateWindowExA', 'GetClassInfoA', 'AdjustWindowRectEx', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'GetWindowPlacement', 'GetWindowRect', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'UnhookWindowsHookEx', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowTextA', 'EnableWindow', 'GetSystemMetrics', 'AppendMenuA', 'SendMessageA', 'GetWindow', 'SetFocus', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'GetClassInfoExA', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'CopyRect', 'FrameRect', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'PostQuitMessage', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'PostMessageA', 'RegisterClassA', 'DeleteDC', 'GetDeviceCaps', 'ScaleWindowExtEx', 'SetWindowExtEx', 'Escape', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'GetStockObject', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetObjectA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'SelectObject', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['SHFileOperationW', 'SHGetFolderPathW', 'UnMapAndLoad', 'MapAndLoad', 'TlsAlloc', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'GetFileSizeEx', 'CreateDirectoryW', 'ReadFile', 'SetConsoleCtrlHandler', 'GetCommandLineW', 'WriteFile', 'GetShortPathNameW', 'GetModuleFileNameW', 'GetProcessId', 'SetFilePointer', 'GetTempPathW', 'WaitForSingleObject', 'CreateFileW', 'GetLastError', 'CloseHandle', 'SetEnvironmentVariableA', 'GetCurrentProcessId', 'CreateProcessW', 'GetSystemTimeAsFileTime', 'FormatMessageA', 'GenerateConsoleCtrlEvent', 'GetExitCodeProcess', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetConsoleMode', 'RtlUnwindEx', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleW', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetStdHandle', 'HeapAlloc', 'MultiByteToWideChar', 'HeapFree', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'WideCharToMultiByte', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP'], ['GetACP', 'LocalFree', 'CloseHandle', 'SizeofResource', 'GetCurrentProcessId', 'VirtualProtect', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'CopyFileW', 'LoadLibraryA', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'GetModuleHandleA', 'HeapCreate', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'EnumResourceNamesW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'CreateEventW', 'WaitForMultipleObjectsEx', 'SetThreadLocale', 'GetThreadLocale', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'GetClassInfoExW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'SysFreeString', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysReAllocStringLen', 'SafeArrayCreate', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'NetWkstaGetInfo', 'NetApiBufferFree', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['SetUnhandledExceptionFilter', 'GetCurrentProcessId', 'ExitProcess', 'GetCurrentThreadId', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'RegDeleteKeyExW', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'GetUserNameA', 'socket', 'inet_addr', 'gethostbyname', 'gethostbyaddr', 'closesocket', 'htons', 'connect', 'send', 'recv', 'WSAStartup', 'WSACleanup', '?_Xbad_alloc@std@@YAXXZ', '?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z', '?uncaught_exception@std@@YA_NXZ', '?_Xlength_error@std@@YAXPBD@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ', '??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ', '?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ', '?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z', '?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PAD_J@Z', '?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAVios_base@1@AAV21@@Z@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z', '??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ', '?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PAD_J@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z', 'memmove', '__CxxFrameHandler3', '__std_terminate', 'strstr', '__std_exception_copy', '__std_exception_destroy', '_CxxThrowException', 'memset', '_except_handler4_common', 'memcpy', '__p__commode', '__stdio_common_vsprintf', '_set_fmode', '_get_wide_winmain_command_line', '_initterm_e', 'exit', '_exit', '_initialize_wide_environment', '_seh_filter_exe', '_cexit', '_c_exit', '_register_thread_local_exe_atexit_callback', '_set_app_type', '_invalid_parameter_noinfo_noreturn', '_configure_wide_argv', '_initterm', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_controlfp_s', 'terminate', '_set_new_mode', 'free', 'realloc', '_callnewh', 'malloc', 'toupper', 'strncpy', 'isalnum', 'atoi', '__setusermatherr', '_configthreadlocale'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['GetProcessHeap', 'Sleep', 'GetSystemTimeAsFileTime', 'GetLocalTime', 'HeapAlloc', 'GetEnvironmentVariableA', 'GetTempPathA', 'CreateFileA', 'FindFirstChangeNotificationA', 'GetCommandLineA', 'RaiseException', 'CreateFileW', 'DecodePointer', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetTimeZoneInformation', 'GetACP', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'GetStdHandle', 'GetFileType', 'GetCommandLineW', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CloseHandle', 'VirtualProtect', 'CoTaskMemAlloc', 'CLSIDFromString', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'SystemFunction036'], ['SetThreadToken', 'RevertToSelf', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'GetNamedSecurityInfoW', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'GetSecurityDescriptorSacl', 'ConvertStringSidToSidW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerExW', 'OpenSCManagerW', 'OpenServiceW', 'QueryServiceStatus', 'StartServiceW', 'CloseServiceHandle', 'StartServiceCtrlDispatcherW', 'CreateServiceW', 'QueryServiceConfig2W', 'ChangeServiceConfig2W', 'DeleteService', 'ControlService', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'EventRegister', 'EventUnregister', 'EventWrite', 'OpenThreadToken', 'StartTraceW', 'ControlTraceW', 'EnableTraceEx2', 'TraceSetInformation', 'GetCurrentThreadId', 'UnregisterWaitEx', 'OpenProcess', 'GetLastError', 'RegisterWaitForSingleObject', 'CreateThread', 'GetFileAttributesW', 'DeleteFileW', 'WaitForSingleObject', 'CloseHandle', 'GetTempPathW', 'GetCurrentProcess', 'LocalFree', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'LoadLibraryExW', 'GetProcAddress', 'FreeLibrary', 'QueryPerformanceCounter', 'SetEvent', 'CreateEventW', 'GetModuleFileNameW', 'GetCurrentProcessId', 'GetComputerNameExW', 'QueryPerformanceFrequency', 'GetCurrentThread', 'GetVersionExW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'WriteConsoleW', 'SetFilePointer', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'SetThreadStackGuarantee', 'LCMapStringW', 'WideCharToMultiByte', 'RaiseException', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'HeapAlloc', 'HeapFree', 'RtlPcToFileHeader', 'EncodePointer', 'DecodePointer', 'SetLastError', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'HeapCreate', 'HeapSetInformation', 'GetFileType', 'GetStartupInfoW', 'SetHandleCount', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'OutputDebugStringA', 'RtlUnwindEx', 'HeapReAlloc', 'HeapSize', 'Sleep', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeW', 'MultiByteToWideChar', 'CoRevertToSelf', 'CoImpersonateClient', 'CoSuspendClassObjects', 'CoRevokeClassObject', 'CoResumeClassObjects', 'CoRegisterClassObject', 'CoInitializeSecurity', 'StringFromGUID2', 'CoCreateGuid', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'SysFreeString', 'SysAllocStringLen', 'SysStringLen', 'SysAllocString', 'SHDeleteKeyW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf', 'InternetCheckConnectionA'], ['FltGetRoutineAddress', 'MmGetSystemRoutineAddress', '__C_specific_handler', '__chkstk', 'MmMapLockedPagesSpecifyCache', 'KeBugCheckEx'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'VirtualProtect', 'FindMediaType'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA', 'mciSendCommandA', 'mciGetErrorStringA'], ['_aullshr', '_aulldiv', '_alldvrm', '_aullrem', 'memset', 'RtlNtStatusToDosError', 'memmove', 'strncmp', 'memcmp', 'strcmp', '_alldiv', '_snwprintf', 'memcpy', '_snprintf', '_allshl', '_allrem', '_allmul', '_aulldvrm', 'StrStrIA', 'StrCmpNA', 'PathCombineW', 'StrChrW', 'StrToIntExA', 'PathFindFileNameW', 'StrChrA', 'StrRChrA', 'GetVersionExA', 'DeleteCriticalSection', 'GetFileAttributesExW', 'GetSystemInfo', 'GetDiskFreeSpaceA', 'lstrlenW', 'LocalAlloc', 'GetCurrentThreadId', 'OutputDebugStringA', 'GetCurrentProcessId', 'LocalFree', 'HeapAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'SetEvent', 'Sleep', 'CreateEventA', 'HeapDestroy', 'HeapCreate', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'CreateThread', 'SwitchToThread', 'FindFirstFileW', 'FindClose', 'FindNextFileW', 'lstrlenA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'DeleteFileW', 'GetFileSize', 'FreeLibrary', 'WaitForSingleObject', 'LoadLibraryW', 'LeaveCriticalSection', 'GetFileAttributesA', 'GetFileAttributesW', 'ReadFile', 'CreateFileW', 'GetProcAddress', 'EnterCriticalSection', 'LoadLibraryA', 'CreateFileMappingW', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'LockFileEx', 'HeapSize', 'GetTempPathW', 'FlushFileBuffers', 'AreFileApisANSI', 'HeapValidate', 'GetVersionExW', 'FormatMessageW', 'InitializeCriticalSection', 'WriteFile', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'GetProcessHeap', 'UnlockFileEx', 'GetTickCount', 'OutputDebugStringW', 'LockFile', 'GetTempPathA', 'GetSystemTime', 'ExpandEnvironmentStringsW', 'DeleteFileA', 'GetFullPathNameW', 'GetFullPathNameA', 'HeapReAlloc', 'CreateFileA', 'CreateMutexW', 'HeapCompact', 'SetFilePointer', 'TryEnterCriticalSection', 'MapViewOfFile', 'UnmapViewOfFile', 'SetEndOfFile', 'SystemTimeToFileTime', 'QueryPerformanceCounter', 'InterlockedCompareExchange', 'UnlockFile', 'SHGetFolderPathW', 'CoUninitialize', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'CryptBinaryToStringW', 'CryptStringToBinaryA', 'CryptUnprotectData'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpW', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'SetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'GetProcAddress', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceW', 'VirtualAlloc', 'GetBinaryTypeW', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['GetFileVersionInfoSizeExW', 'CreateEnvironmentBlock', 'WTSQueryUserToken', 'GetVersionExW', 'GetUserObjectInformationW', 'RegDeleteKeyExW', 'CommandLineToArgvW', 'CoCreateInstance', 'connect', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['PlaySoundW', 'FindFirstUrlCacheEntryW', 'FindNextUrlCacheEntryW', 'InternetCloseHandle', 'InternetReadFile', 'FindCloseUrlCache', 'InternetOpenW', 'InternetOpenUrlW', 'DeleteUrlCacheEntryW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'InitCommonControls', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'SHGetSpecialFolderLocation', 'Shell_NotifyIconW', 'SHAppBarMessage', 'SHFileOperationW', 'ShellExecuteW', 'SHGetPathFromIDListW', 'DdeSetUserHandle', 'MoveWindow', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'DdeCmpStringHandles', 'SendMessageA', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'GetScrollBarInfo', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'SetSystemCursor', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'GetAsyncKeyState', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetThreadDesktop', 'SetFocus', 'ReleaseDC', 'mouse_event', 'ExitWindowsEx', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'PtInRect', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetMessageTime', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'CreateDesktopW', 'GetWindowPlacement', 'CreateWindowExW', 'ChildWindowFromPoint', 'OpenDesktopW', 'GetMessageW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'SetScrollPos', 'GetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'SendInput', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'MonitorFromRect', 'InsertMenuItemW', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'VkKeyScanW', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'OemToCharBuffW', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CountClipboardFormats', 'CloseClipboard', 'DestroyCursor', 'PostMessageA', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'MonitorFromPoint', 'LoadIconW', 'SystemParametersInfoW', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'MenuItemFromPoint', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetErrorInfo', 'SysFreeString', 'VariantClear', 'VariantInit', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'GetActiveObject', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'GetUserNameW', 'RegQueryInfoKeyW', 'CryptGenRandom', 'RegUnLoadKeyW', 'IsValidAcl', 'CryptReleaseContext', 'RegSaveKeyW', 'RegReplaceKeyW', 'RegCreateKeyExW', 'CryptAcquireContextW', 'InitializeAcl', 'RegLoadKeyW', 'RegEnumKeyExW', 'AdjustTokenPrivileges', 'RegDeleteKeyW', 'SetSecurityInfo', 'LookupPrivilegeValueW', 'RegOpenKeyExW', 'OpenProcessToken', 'RegDeleteValueW', 'RegFlushKey', 'RegEnumValueW', 'RegQueryValueExW', 'RegCloseKey', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'strncmp', '_stricmp', '_ftol', 'memcpy', 'memset', 'sprintf', 'SetFileAttributesW', 'GetFileTime', 'GetFileType', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'TerminateThread', 'QueryPerformanceFrequency', 'SetProcessWorkingSetSize', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'HeapAlloc', 'ExitProcess', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'DosDateTimeToFileTime', 'GetUserDefaultLCID', 'CreateProcessW', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'CopyFileW', 'MapViewOfFile', 'CreateMutexW', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'MoveFileW', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'OpenProcess', 'SwitchToThread', 'GetExitCodeThread', 'OutputDebugStringW', 'GetCurrentThread', 'GetLogicalDrives', 'LocalFileTimeToFileTime', 'GetFileAttributesExW', 'LockResource', 'LoadLibraryExW', 'TerminateProcess', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'SetVolumeLabelW', 'EnterCriticalSection', 'SetFilePointer', 'ReleaseMutex', 'FlushFileBuffers', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetTempFileNameW', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'InitializeCriticalSection', 'GetThreadPriority', 'GetCurrentProcess', 'GlobalLock', 'SetThreadPriority', 'VirtualAlloc', 'GetTempPathW', 'GetCommandLineW', 'GetSystemInfo', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'GetConsoleOutputCP', 'UnmapViewOfFile', 'GetConsoleCP', 'GetModuleHandleExA', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'GetLocaleInfoW', 'CreateFileW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'IsDBCSLeadByteEx', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'GetOEMCP', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'SHGetFolderPathW', 'gethostbyaddr', 'getsockopt', 'setsockopt', 'select', 'WSACleanup', 'gethostbyname', 'bind', 'gethostname', 'closesocket', 'WSAGetLastError', 'connect', 'getpeername', 'inet_addr', 'WSAAsyncSelect', 'WSAAsyncGetServByName', 'WSACancelAsyncRequest', 'send', 'accept', 'ntohs', 'htons', 'WSAStartup', 'getservbyname', '__WSAFDIsSet', 'getsockname', 'listen', 'socket', 'recv', 'inet_ntoa', 'ioctlsocket', 'shutdown', 'WSAAsyncGetHostByName', 'OleRegEnumVerbs', 'IsAccelerator', 'CreateBindCtx', 'MkParseDisplayName', 'CoCreateInstance', 'CoUninitialize', 'IsEqualGUID', 'ProgIDFromCLSID', 'CreateStreamOnHGlobal', 'OleInitialize', 'CLSIDFromProgID', 'OleUninitialize', 'CoGetClassObject', 'CoInitialize', 'CoTaskMemFree', 'OleDraw', 'CoTaskMemAlloc', 'StringFromCLSID', 'OleSetMenuDescriptor', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'ResizePalette', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'SetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'CreateEllipticRgn', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'CombineRgn', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetNearestPaletteIndex', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries', 'RtlCompressBuffer', 'RtlGetCompressionWorkSpaceSize', 'WTSSendMessageW', 'VirtualQuery', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'CreateEventA', 'GetModuleFileNameW', 'LoadLibraryA', 'TerminateProcess', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Thread32First', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'WriteProcessMemory', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'GetCurrentThread', 'SetThreadAffinityMask', 'Sleep', 'FreeLibrary', 'GetTickCount', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GlobalFree', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleW', 'LoadResource', 'MultiByteToWideChar', 'FindResourceExW', 'FindResourceExA', 'WideCharToMultiByte', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'CreateFileW', 'LoadLibraryW', 'GetLastError', 'FlushFileBuffers', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'HeapFree', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'LCMapStringA', 'LCMapStringW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'HeapReAlloc', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'WriteFile', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetProcessWindowStation', 'GetUserObjectInformationW', 'CharUpperBuffW', 'MessageBoxW', 'LocalAlloc', 'GetModuleFileNameW', 'LocalFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'HeapAlloc', 'HeapCreate', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_unlock', 'abort', 'calloc', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'IsValidSid', 'capGetDriverDescriptionA', 'ImageList_Add', 'SaveDC', 'GdipFree', 'acmStreamSize', 'Netbios', 'NtUnmapViewOfSection', 'NtQuerySystemInformation', 'IsEqualGUID', 'VariantCopy', 'ShellExecuteA', 'SHGetFolderPathA', 'URLDownloadToFileA', 'GetDC', 'VerQueryValueA', 'FtpPutFileA', 'waveInOpen', 'WSAIoctl', 'send'], ['GetCurrentProcess', 'SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'GlobalAlloc', 'LoadLibraryW', 'CreateEventA', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetSystemDirectoryA', 'GetBinaryTypeW', 'InterlockedExchange', 'FreeLibrary', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'TransmitCommChar', 'OpenJobObjectW', 'EnumCalendarInfoExA', 'SetFileAttributesW', 'FindResourceW', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateLoggedOnUser'], ['VirtualProtect', 'Sleep', 'GetWindowsDirectoryA', 'VirtualQuery', 'GetSystemInfo', 'RaiseException', 'CreateFileW', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetCommandLineA', 'GetCommandLineW', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CloseHandle', 'WriteConsoleW', 'LoadLibraryExA', 'DrawThemeBackground', 'DrawThemeText', 'GetThemeFont', 'CloseThemeData'], ['GetLastError', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'VirtualProtect', 'SetErrorMode', 'SleepEx', 'GetModuleHandleW', 'VirtualAlloc', 'GetFileSizeEx', 'ReadFile', 'RaiseException', 'GetModuleFileNameW', 'CreateFileW', 'VirtualFree', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnregisterWaitEx', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'CloseHandle', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'GetCommandLineA', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'IsProcessorFeaturePresent', 'SetLastError', 'GetCurrentThread', 'GetStdHandle', 'WriteFile', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'CreateSemaphoreW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'DuplicateHandle', 'WaitForSingleObject', 'GetExitCodeThread', 'CreateThread', 'ExitThread', 'CreateTimerQueue', 'SetEvent', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetThreadTimes', 'FreeLibraryAndExitThread', 'GetModuleHandleA', 'GetVersionExW', 'ReleaseSemaphore', 'InitializeSListHead', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'LoadLibraryW', 'CryptImportKey', 'CryptSetKeyParam', 'CryptDestroyKey', 'CryptGenRandom', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptDecrypt'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ChooseFontA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'ClientToScreen', 'CloseFigure', 'CopySid', 'VariantChangeTypeEx', 'RaiseException'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'NtUnmapViewOfSection', 'SysFreeString', 'SHGetMalloc', 'SHDeleteKeyW', 'URLDownloadToCacheFileW', 'CharNextW', 'FtpPutFileW'], ['RegCloseKey', 'CryptDecodeObjectEx', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'CoInitialize', 'ShellExecuteA', 'SystemParametersInfoA'], ['GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'LoadLibraryW', 'GetBinaryTypeA', 'GetModuleFileNameW', 'GetPrivateProfileIntW', 'GetLastError', 'GetLongPathNameW', 'SetLastError', 'GetProcAddress', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'OpenJobObjectW', 'SetConsoleTitleW', 'EnumDateFormatsW', 'LocalSize', 'WriteFileEx', 'LocalFree', 'HeapReAlloc', 'HeapSize', 'InterlockedIncrement', 'FreeLibrary', 'GetConsoleAliasesLengthW', 'RtlUnwind', 'HeapFree', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'GetStringTypeW', 'Sleep', 'RaiseException', 'ClientToScreen', 'GetFontUnicodeRanges', 'GetOldestEventLogRecord', 'CoRevokeMallocSpy'], ['GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'lstrlenA', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'SetFilePointer', 'VirtualAlloc', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ChooseFontA', 'GetProcAddress', 'AutodialHookCallback'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', '_TrackMouseEvent', 'GetOpenFileNameA', 'DeleteDC', 'gluPerspective', 'pow', 'glEnd', 'ExtractIconA', 'GetDC', 'timeGetTime', 'bind'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['GetNumberOfConsoleMouseButtons', 'SetMailslotInfo', 'CreateJobObjectW', 'InterlockedCompareExchange', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'WaitNamedPipeW', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'GetModuleFileNameW', 'GetStringTypeExA', 'InterlockedFlushSList', 'SetLastError', 'ReadConsoleA', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'SetStdHandle', 'LocalAlloc', 'WritePrivateProfileStringA', 'WriteProfileSectionW', 'AddAtomA', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleHandleA', 'OpenEventW', 'QueryPerformanceFrequency', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'DeleteAtom', 'AddConsoleAliasA', 'DebugBreak', 'EnumCalendarInfoExA', 'DeleteFileA', 'GetCommState', 'MoveFileExW', 'VerSetConditionMask', 'CommConfigDialogA', 'InterlockedIncrement', 'BackupRead', 'GetSystemDefaultLangID', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCharacterPlacementA', 'SelectPalette', 'GetTextExtentExPointA', 'GetCharWidthI', 'MapGenericMask', 'GetEventLogInformation'], ['CreateFileA', 'GetFileSize', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'GetCurrentActCtx', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetCompressedFileSizeA', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'FillConsoleOutputCharacterA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'GetStartupInfoA', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'GetACP', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'DeleteFileA', 'MultiByteToWideChar', 'GetCommandLineA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'ImpersonateSelf'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['VirtualProtect', 'GetProcessHeap', 'HeapAlloc', 'GetTempPathA', 'FindFirstChangeNotificationA', 'GetSystemDirectoryA', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'GetStringTypeW', 'MultiByteToWideChar', 'InterlockedCompareExchange', 'InterlockedExchange', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetCPInfo', 'LCMapStringW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameA', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'SetFilePointer', 'FlushFileBuffers', 'CloseHandle', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'GetLocaleInfoW', 'GetLocaleInfoA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'SetStdHandle', 'CreateFileW', 'DCISetDestination', 'DCIBeginAccess', 'DCICloseProvider', 'DCICreateOffscreen', 'DCICreateOverlay', 'DCICreatePrimary', 'DCIDestroy', 'DCIDraw', 'WinWatchClose', 'GetWindowRegionData', 'GetDCRegionData', 'DCISetSrcDestClip', 'DCISetClipList', 'DCIOpenProvider', 'DCIEnum', 'DCIEndAccess'], ['GetVolumeInformationA', 'Sleep', 'GetFileAttributesA', 'CreateProcessA', 'TerminateProcess', 'CreateDirectoryA', 'GetLastError', 'CopyFileA', 'Process32Next', 'GetModuleFileNameA', 'CreateToolhelp32Snapshot', 'CloseHandle', 'GetCurrentProcessId', 'DeleteFileA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'OpenProcess', 'GetTickCount', 'VirtualQueryEx', 'ReadProcessMemory', 'SetThreadPriority', 'GetProcessId', 'CreateThread', 'GetCurrentProcess', 'IsWow64Process', 'GetFileSize', 'CallNamedPipeA', 'WaitNamedPipeA', 'ConnectNamedPipe', 'WriteFile', 'TerminateThread', 'ReadFile', 'DisconnectNamedPipe', 'CreateNamedPipeA', 'Process32First', 'CreateFileA', 'DeleteCriticalSection', 'GetComputerNameA', 'CreateFileW', 'GetStringTypeW', 'FlushFileBuffers', 'WriteConsoleW', 'LCMapStringW', 'EncodePointer', 'DecodePointer', 'GetSystemTimeAsFileTime', 'InterlockedDecrement', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'MultiByteToWideChar', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleMode', 'ReadConsoleW', 'SetLastError', 'InterlockedIncrement', 'GetCurrentThreadId', 'GetStdHandle', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetConsoleCP', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetProcessHeap', 'GetFileType', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetFilePointerEx', 'SetStdHandle', 'OutputDebugStringW', 'LoadLibraryW', 'SetEndOfFile', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SHGetFolderPathA', 'InternetOpenA', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpQueryInfoA', 'HttpSendRequestA', 'InternetCloseHandle', 'URLDownloadToFileA'], ['GetModuleHandleW', 'VirtualAllocEx', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'lstrlenW', 'lstrcmpA', 'lstrcmpW', 'WriteProcessMemory', 'WritePrivateProfileStringW', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'UnmapViewOfFile', 'TerminateThread', 'TerminateProcess', 'SystemTimeToFileTime', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetUnhandledExceptionFilter', 'SetThreadPriority', 'SetLastError', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReleaseMutex', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OutputDebugStringW', 'OpenProcess', 'OpenFileMappingA', 'OpenFileMappingW', 'MulDiv', 'MapViewOfFile', 'LockResource', 'LocalSize', 'LocalFree', 'LoadResource', 'LoadLibraryExA', 'LoadLibraryW', 'LeaveCriticalSection', 'IsBadWritePtr', 'IsBadReadPtr', 'InitializeCriticalSection', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalMemoryStatus', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'GetVersionExA', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetThreadContext', 'GetTempPathA', 'GetTempPathW', 'GetTempFileNameW', 'GetSystemTime', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetSystemDefaultLangID', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetFileAttributesW', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetComputerNameW', 'GetCommandLineA', 'GetCommandLineW', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageA', 'FormatMessageW', 'FlushInstructionCache', 'FindResourceA', 'FindResourceW', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsA', 'ExitThread', 'ExitProcess', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileA', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateRemoteThread', 'CreateProcessA', 'CreateProcessW', 'CreatePipe', 'CreateMutexA', 'CreateMutexW', 'CreateFileMappingA', 'CreateFileMappingW', 'CreateFileA', 'CreateFileW', 'CreateEventW', 'CreateDirectoryA', 'CopyFileA', 'CompareStringW', 'CloseHandle', 'Beep', 'RtlUnwind', 'UnlockFileEx', 'FlushFileBuffers', 'LockFileEx', 'GetFileSizeEx', 'SetFilePointerEx', 'SetThreadUILanguage', 'GetStartupInfoW', 'GetStdHandle', 'GetFileType', 'WideCharToMultiByte', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetConsoleMode', 'LoadLibraryExW', 'SetConsoleMode', 'SystemTimeToTzSpecificLocalTime', 'GetSystemTimeAsFileTime', 'UnhandledExceptionFilter', 'GetACP', 'MultiByteToWideChar', 'GetConsoleCP', 'SetThreadLocale', 'SearchPathW', 'QueryDosDeviceW', 'GetLogicalDriveStringsW', 'ProcessIdToSessionId', 'GetProcessHeap', 'SetErrorMode', 'GetExitCodeProcess', 'lstrcpyW', 'SwitchToThread', 'PulseEvent', 'OpenEventW', 'InitializeCriticalSectionAndSpinCount', 'GlobalMemoryStatusEx', 'GetSystemPowerStatus', 'FindFirstFileW', 'LoadLibraryA', 'lstrcmpiA', 'GetSystemDirectoryA', 'SetThreadAffinityMask', 'GetQueuedCompletionStatus', 'SetThreadPriorityBoost', 'WaitForSingleObjectEx', 'CreateIoCompletionPort', 'MoveFileExA', 'MoveFileA', 'lstrcpynA', 'lstrcatA', 'lstrcpyA', 'lstrlenA', 'GetStringTypeW', 'GetStringTypeA', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'LCMapStringA', 'LCMapStringW', 'GetEnvironmentVariableA', 'HeapReAlloc', 'SetStdHandle', 'GetCPInfo', 'GetOEMCP', 'AddAtomA', 'AreFileApisANSI', 'DeviceIoControl', 'FindAtomA', 'GetAtomNameA', 'GetConsoleScreenBufferInfo', 'GetDriveTypeA', 'GetFileInformationByHandle', 'GetFullPathNameA', 'GetLogicalDriveStringsA', 'GetShortPathNameA', 'GetTimeZoneInformation', 'GetVolumeInformationA', 'PeekNamedPipe', 'SetFileTime', 'SetVolumeLabelA', 'UnlockFile', 'WritePrivateProfileSectionA', 'GetPrivateProfileSectionA', '_llseek', '_lwrite', '_lread', '_lclose', 'GetTempFileNameA', 'FindResourceExA', 'EnumResourceLanguagesA', 'EnumResourceNamesA', 'EnumResourceTypesA', 'GetCurrentDirectoryA', 'GetPrivateProfileIntA', 'TlsFree', 'TlsAlloc', 'IsDBCSLeadByte', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'lstrcmpiW', 'lstrcpynW', 'lstrcatW', 'GetShortPathNameW', 'GetSystemWindowsDirectoryW', 'GetLocaleInfoW', 'GetUserDefaultUILanguage', 'WaitForMultipleObjects', 'SetEnvironmentVariableW', 'GetEnvironmentVariableW', 'GetFileAttributesExW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'CopyFileW', 'SetFileAttributesW', 'MoveFileExW', 'RemoveDirectoryW', 'GetSystemDefaultLCID', 'FindNextChangeNotification', 'FlushViewOfFile', 'OpenMutexW', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'FindFirstChangeNotificationW', 'FindCloseChangeNotification', 'GetUserDefaultLCID', 'WaitNamedPipeW', 'FindNextFileW', 'GetProcessWindowStation', 'GetQueueStatus', 'LoadCursorFromFileW', 'PaintDesktop', 'CharUpperA', 'IsWindow', 'GetSysColorBrush', 'IsClipboardFormatAvailable', 'AnyPopup', 'CloseWindowStation', 'GetDesktopWindow', 'GetClipboardOwner', 'GetThreadDesktop', 'GetCaretBlinkTime', 'DestroyWindow', 'GetKeyState', 'IsIconic', 'GetTopWindow', 'GetSysColor', 'GetListBoxInfo', 'CharNextW', 'IsWindowVisible', 'CharUpperW', 'ShowCaret', 'GetDC', 'DestroyCursor', 'VkKeyScanW', 'GetActiveWindow', 'MessageBoxA', 'DeleteObject', 'UpdateColors', 'GetLayout', 'CreateMetaFileW', 'DeleteEnhMetaFile', 'GetTextAlign', 'GetDCPenColor', 'CloseMetaFile', 'CreateMetaFileA', 'FillPath', 'RealizePalette', 'EndDoc', 'SwapBuffers', 'GetFontLanguageInfo', 'GetSystemPaletteUse', 'GetGraphicsMode', 'GetStretchBltMode', 'WidenPath', 'ExtSelectClipRgn', 'CreatePatternBrush', 'GetViewportExtEx', 'SelectPalette', 'CreatePen', 'CreateRectRgnIndirect', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'GetTextExtentPoint32A', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetMapMode', 'CreateRectRgn', 'SelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'GetObjectA', 'SetMapMode', 'SetStretchBltMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'BitBlt', 'CreateCompatibleBitmap', 'GetDeviceCaps', 'CreateFontIndirectA', 'GetStockObject', 'DeleteDC', 'StretchBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateSolidBrush', 'GetWindowExtEx', 'RegOpenKeyA', 'RegQueryValueExA', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['GetDriveTypeW', 'GetEnvironmentVariableA', 'GetExitCodeThread', 'GetFileAttributesA', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileSize', 'GetFileTime', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetTempFileNameA', 'GetTempFileNameW', 'GetTempPathA', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExW', 'GetWindowsDirectoryW', 'GlobalAlloc', 'GlobalFree', 'GetCommandLineA', 'GlobalLock', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'IsDebuggerPresent', 'GetDateFormatW', 'LoadLibraryW', 'LocalAlloc', 'LocalFree', 'MoveFileW', 'MultiByteToWideChar', 'OpenEventW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'SetEndOfFile', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'Sleep', 'TerminateProcess', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'lstrcmpiW', 'lstrlenA', 'lstrlenW', 'GetCPInfo', 'FreeLibrary', 'FormatMessageW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'DeleteFileW', 'DeleteFileA', 'CreateProcessW', 'CreateMutexW', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateDirectoryW', 'GetCurrentProcessId', 'LoadLibraryA', 'GetCurrentProcess', 'CopyFileW', 'GlobalHandle', 'CloseHandle', 'IsCharUpperW', 'GetMenuItemCount', 'CharUpperW', 'wsprintfA', 'UpdateWindow', 'SystemParametersInfoA', 'SetTimer', 'SetCursor', 'SendMessageA', 'ReleaseDC', 'PostMessageA', 'LoadStringA', 'LoadCursorA', 'KillTimer', 'GetParent', 'GetDlgItem', 'GetDC', 'BeginPath', 'CreateMetaFileW', 'AccessCheck', 'AllocateAndInitializeSid', 'FreeSid', 'GetLengthSid', 'ImpersonateSelf', 'InitializeAcl', 'InitializeSecurityDescriptor', 'IsValidSecurityDescriptor', 'OpenProcessToken', 'OpenThreadToken', 'RegCloseKey', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RevertToSelf', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'RegOpenKeyExW', 'AddAccessAllowedAce'], ['VirtualAllocEx', 'GetModuleHandleW', 'FindWindowA', 'GetDlgItem', 'MsgWaitForMultipleObjects', 'DispatchMessageA', 'PostMessageA', 'SendMessageA', 'SetWindowPos', 'TranslateMessage', 'wsprintfA', 'DestroyWindow', 'IsGUIThread', 'GetDC', 'LoadIconW', 'PeekMessageA', 'GetEnhMetaFileA', 'RegQueryValueExW', 'RegOpenKeyExA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'WTSSendMessageW', 'GetProcessWindowStation', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['WNetOpenEnumA', 'WNetEnumResourceA', 'WNetCloseEnum', 'FileTimeToSystemTime', 'CreateThread', 'GetExitCodeThread', 'TerminateThread', 'CloseHandle', 'WriteFile', 'lstrlenA', 'CreateFileA', 'GetSystemTime', 'HeapSize', 'HeapAlloc', 'HeapCreate', 'HeapFree', 'GetTempFileNameA', 'GetTempPathA', 'GetLastError', 'ReadFile', 'MoveFileA', 'ExitProcess', 'FindClose', 'FindNextFileA', 'lstrcmpA', 'FindFirstFileA', 'lstrcatA', 'lstrcpyA', 'HeapDestroy', 'GetFileSize', 'DeleteFileA', 'CharToOemA', 'GetMessageA', 'SetTimer', 'wsprintfA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWindowUpdate', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'GradientFill', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CombineRgn', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA', 'InetIsOffline'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'SendNotifyMessageA', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcessTimes', 'LoadLibraryW', 'LocalHandle', 'ReadFile', 'lstrlenW', 'SetConsoleTitleA', 'GetLastError', 'GetProcAddress', 'BuildCommDCBW', 'GetDriveTypeA', 'WriteConsoleA', 'RegisterWaitForSingleObjectEx', 'GlobalUnWire', 'DebugSetProcessKillOnExit', 'GetProcessShutdownParameters', 'lstrcatW', 'DebugBreakProcess', 'VirtualProtect', 'GetCurrentProcessId', 'OpenFileMappingA', 'EnumSystemLocalesW', 'GetCommandLineA', 'GetUserDefaultLCID', 'HeapAlloc', 'LoadResource', 'MapViewOfFile', 'IsBadStringPtrW', 'FindResourceA', 'CreateTimerQueue', 'GetAtomNameA', 'CreateFileA', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetModuleHandleA', 'CloseHandle', 'FlushFileBuffers', 'AllocateAndInitializeSid', 'AccessCheckAndAuditAlarmA'], ['Sleep', 'CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'CreateMutexW', 'LoadLibraryA', 'lstrlenW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'WaitForSingleObject', 'GetProcAddress', 'GetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow', 'GetMetaRgn', 'GdiGetBatchLimit'], ['FormatMessageA', 'GetLogicalDriveStringsA', 'SetEndOfFile', 'ReadConsoleW', 'CreateFileW', 'FlushFileBuffers', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'GetStringTypeW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetModuleFileNameA', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'DeleteFileW', 'GetComputerNameExA', 'SetFileAttributesA', 'GetFileAttributesA', 'GetDriveTypeA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'lstrlenA', 'LocalFree', 'LocalAlloc', 'GetLastError', 'CloseHandle', 'SetFilePointerEx', 'GetFileSizeEx', 'GetConsoleMode', 'GetConsoleCP', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'WriteFile', 'ReadFile', 'GetOEMCP', 'CreateFileA', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetModuleHandleW', 'GetProcAddress', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentThreadId', 'IsDebuggerPresent', 'GetStartupInfoW', 'RaiseException', 'MultiByteToWideChar', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'InitializeSListHead', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'EncodePointer', 'GetModuleHandleExW', 'ExitProcess', 'GetStdHandle', 'HeapValidate', 'GetSystemInfo', 'GetCurrentThread', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'DecodePointer', 'PostQuitMessage', 'MessageBoxW', 'SystemParametersInfoA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DefWindowProcW', 'RegisterClassW', 'CreateWindowExW', 'SetWindowPos', 'EnableWindow', 'LoadIconA', 'LoadCursorA', 'GetSysColorBrush', 'GetWindowRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'CryptCreateHash', 'CryptReleaseContext', 'CryptDeriveKey', 'CryptDestroyKey', 'GetUserNameA', 'CryptDestroyHash', 'CryptHashData', 'CryptAcquireContextA', 'CryptDecrypt', 'CryptEncrypt', 'CryptImportKey', 'closesocket', 'connect', 'htons', 'inet_addr', 'recv', 'send', 'socket', 'gethostbyaddr', 'gethostbyname', 'WSAStartup', 'WSACleanup', 'CryptImportPublicKeyInfo', 'CryptStringToBinaryA', 'CryptDecodeObjectEx'], ['DecodePointer', 'CreateThread', 'SetEvent', 'WaitForSingleObject', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'Sleep', 'CreateTimerQueue', 'CreateEventW', 'CreateTimerQueueTimer', 'DeleteTimerQueueTimer', 'DeleteTimerQueue', 'GetCurrentProcessId', 'CreateToolhelp32Snapshot', 'Process32NextW', 'SetConsoleCtrlHandler', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'CreateFileW', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'SetFileTime', 'CloseHandle', 'FindFirstFileW', 'GetModuleFileNameW', 'CreateProcessW', 'GetConsoleWindow', 'FindNextFileW', 'FindClose', 'OpenProcess', 'TerminateProcess', 'GetFileAttributesA', 'GetWindowsDirectoryW', 'GetCurrentProcess', 'GetSystemInfo', 'FileTimeToSystemTime', 'GetFileInformationByHandle', 'GetFileSize', 'UnmapViewOfFile', 'GetLocalTime', 'GetTickCount', 'SetEndOfFile', 'LoadLibraryW', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'GetTimeZoneInformation', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'RaiseException', 'DeleteFileW', 'WideCharToMultiByte', 'InitializeSListHead', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetVersionExW', 'GetModuleHandleA', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileType', 'MoveFileExW', 'LoadLibraryExW', 'FreeLibrary', 'GetStdHandle', 'GetCurrentThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetConsoleMode', 'GetConsoleCP', 'SetEnvironmentVariableA', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'CreateSemaphoreW', 'GetStartupInfoW', 'SetLastError', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetCurrentThreadId', 'GetStringTypeW', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'GetCPInfo', 'GetCommandLineA', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetLogicalProcessorInformation', 'ChangeTimerQueueTimer', 'GetModuleHandleW', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'TranslateMessage', 'GetSystemMetrics', 'GetDC', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'wsprintfW', 'ReleaseDC', 'DispatchMessageW', 'GetDesktopWindow', 'GetMessageW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'DeleteObject', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoCreateGuid', 'StringFromGUID2', 'GdipDisposeImage', 'GdipSaveImageToFile', 'GdiplusShutdown', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipFree', 'recv', 'inet_addr', 'htons', 'socket', 'WSAStartup', 'WSACleanup', 'closesocket', 'select', 'sendto', 'GetProcessMemoryInfo', 'QueryWorkingSet'], ['Sleep', 'HeapFree', 'GetProcessHeap', 'VirtualFree', 'FreeLibrary', 'HeapAlloc', 'VirtualAlloc', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'CloseHandle', 'CreateFileA', 'WriteFile', 'ReadFile', 'GetFileSize', 'RtlUnwind', 'RaiseException', 'GetLastError', 'HeapReAlloc', 'GetCommandLineA', 'GetVersionExA', 'GetStartupInfoA', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'InitializeCriticalSection', 'SetConsoleCtrlHandler', 'InterlockedExchange', 'HeapSize', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoW', 'GetTimeZoneInformation', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'LocalAlloc', 'LocalFree'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['VirtualUnlock', 'OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'MoveFileW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'ExitThread', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'GetModuleFileNameW', 'TerminateProcess', 'VirtualAlloc', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'CloseHandle', 'lstrlenW', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'LockFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'HttpQueryInfoA', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['GlobalUnlock', 'GetCurrentProcess', 'QueryPerformanceCounter', 'GetLogicalProcessorInformation', 'DeleteFileW', 'CompareFileTime', 'SetEvent', 'FormatMessageW', 'GetDateFormatW', 'UnregisterWaitEx', 'SleepEx', 'GetTimeFormatW', 'LoadLibraryW', 'TryEnterCriticalSection', 'LoadResource', 'lstrcmpiW', 'ExpandEnvironmentStringsW', 'LockResource', 'CloseHandle', 'SetLastError', 'SetEnvironmentVariableA', 'MapViewOfFile', 'GetTimeZoneInformation', 'WaitForSingleObjectEx', 'TlsAlloc', 'DuplicateHandle', 'GetFullPathNameW', 'EncodePointer', 'UnmapViewOfFile', 'SizeofResource', 'VirtualFree', 'FreeLibrary', 'LocalAlloc', 'GetConsoleMode', 'WideCharToMultiByte', 'CreateThread', 'HeapSize', 'DecodePointer', 'InterlockedPushEntrySList', 'SetThreadAffinityMask', 'GetModuleHandleA', 'GetModuleFileNameW', 'TlsSetValue', 'ChangeTimerQueueTimer', 'FileTimeToSystemTime', 'FindClose', 'CompareStringW', 'RtlUnwind', 'InterlockedPopEntrySList', 'EnumSystemLocalesW', 'GlobalLock', 'SetCurrentDirectoryW', 'MultiByteToWideChar', 'GetModuleHandleExW', 'GlobalFree', 'lstrcmpW', 'WaitForSingleObject', 'lstrcpynW', 'SwitchToThread', 'GlobalAlloc', 'HeapReAlloc', 'InitializeSListHead', 'LeaveCriticalSection', 'OutputDebugStringW', 'SystemTimeToTzSpecificLocalTime', 'GetCurrentThreadId', 'IsValidLocale', 'WriteFile', 'GetModuleHandleW', 'GetTempPathW', 'ResetEvent', 'GetCurrentProcessId', 'GetConsoleCP', 'LoadLibraryExW', 'CreateFileW', 'GetProcessHeap', 'RegisterWaitForSingleObject', 'ReleaseSemaphore', 'ReleaseMutex', 'FreeEnvironmentStringsW', 'FindFirstFileW', 'GetCommandLineA', 'IsDebuggerPresent', 'CreateDirectoryW', 'VirtualProtect', 'SetStdHandle', 'GetSystemInfo', 'LCMapStringW', 'InterlockedFlushSList', 'QueueUserAPC', 'GlobalSize', 'MoveFileExW', 'CreateFileMappingW', 'ReadDirectoryChangesW', 'TerminateProcess', 'GetTickCount64', 'GetLocalTime', 'CopyFileW', 'WriteConsoleW', 'GetCurrentDirectoryW', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'ReadConsoleW', 'SetThreadPriority', 'GetStringTypeW', 'FindNextFileA', 'CreateSemaphoreW', 'VirtualAlloc', 'FindNextFileW', 'UnhandledExceptionFilter', 'GetEnvironmentStringsW', 'HeapDestroy', 'GetThreadPriority', 'UnregisterWait', 'FindResourceW', 'CancelIo', 'GetStartupInfoW', 'GetModuleFileNameA', 'DeleteTimerQueueTimer', 'GetCPInfo', 'IsProcessorFeaturePresent', 'GetACP', 'CreateMutexW', 'MulDiv', 'RaiseException', 'FlushFileBuffers', 'GetOEMCP', 'GetTickCount', 'WaitForMultipleObjects', 'GetCurrentThread', 'GetProcessAffinityMask', 'GetLocaleInfoW', 'ReadFile', 'GetProcAddress', 'EnterCriticalSection', 'SetUnhandledExceptionFilter', 'HeapFree', 'CreateEventW', 'LocalFree', 'lstrcpyW', 'TlsFree', 'TlsGetValue', 'GetStdHandle', 'GetNumaHighestNodeNumber', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'DeleteCriticalSection', 'GetUserDefaultLCID', 'GetCommandLineW', 'IsValidCodePage', 'SetFileAttributesW', 'GetFileType', 'GetLastError', 'CreateMutexA', 'GetFileAttributesW', 'lstrlenW', 'GetLongPathNameW', 'SignalObjectAndWait', 'CreateTimerQueue', 'CreateTimerQueueTimer', 'GetSystemMenu', 'SetScrollPos', 'CreateWindowExW', 'GetWindowPlacement', 'InvalidateRect', 'SetCursor', 'UpdateWindow', 'GetDC', 'SetScrollRange', 'GetTopWindow', 'GetWindowLongW', 'SetDlgItemTextA', 'DrawFrameControl', 'RegisterWindowMessageW', 'CharLowerW', 'LoadIconW', 'LoadMenuW', 'SystemParametersInfoW', 'GetWindowTextLengthW', 'TrackPopupMenu', 'SetWindowPlacement', 'GetFocus', 'TranslateMessage', 'DrawMenuBar', 'ScreenToClient', 'SetDlgItemInt', 'FindWindowW', 'IsIconic', 'DispatchMessageW', 'CreateCaret', 'CreateMenu', 'GetMenuStringW', 'DestroyCursor', 'FrameRect', 'SendMessageW', 'EndDialog', 'DestroyWindow', 'GetKeyboardType', 'GetMenuItemCount', 'GetParent', 'IsWindowUnicode', 'CallWindowProcW', 'GetWindowContextHelpId', 'GetWindowTextW', 'EmptyClipboard', 'GetKeyState', 'SetClipboardViewer', 'CharUpperW', 'MessageBoxW', 'SetRectEmpty', 'UnregisterClassW', 'SetWindowPos', 'GetMenuItemInfoW', 'ShowCaret', 'MonitorFromWindow', 'ChangeClipboardChain', 'SetWindowTextW', 'GetDesktopWindow', 'GetPropW', 'GetDCEx', 'SetFocus', 'DeleteMenu', 'SetParent', 'GetDlgCtrlID', 'InflateRect', 'ShowScrollBar', 'GetDlgItemTextW', 'DefWindowProcW', 'DestroyMenu', 'CreateDialogIndirectParamW', 'LoadImageW', 'EndPaint', 'RegisterClassExW', 'IsClipboardFormatAvailable', 'EnableMenuItem', 'GetMenuState', 'FlashWindowEx', 'IsChild', 'IsCharLowerW', 'RegisterClassW', 'DeferWindowPos', 'DialogBoxIndirectParamW', 'SetMenu', 'LoadStringW', 'TranslateAcceleratorW', 'BeginPaint', 'DrawIcon', 'SetCaretPos', 'GetClassNameW', 'GetDlgItemInt', 'ToAscii', 'AppendMenuW', 'BeginDeferWindowPos', 'FillRect', 'CheckMenuItem', 'RedrawWindow', 'CreateDialogParamW', 'IsCharAlphaNumericW', 'DrawFocusRect', 'PostMessageW', 'DestroyCaret', 'OpenClipboard', 'CallNextHookEx', 'UnhookWindowsHookEx', 'IsCharAlphaW', 'SetCapture', 'IsWindow', 'DefDlgProcA', 'DrawTextExW', 'GetClassNameA', 'SendDlgItemMessageW', 'CloseClipboard', 'ShowWindow', 'SetMenuItemInfoW', 'ModifyMenuW', 'IsZoomed', 'GetCursorPos', 'LoadBitmapW', 'GetWindowRect', 'CloseWindow', 'RemoveMenu', 'LockWindowUpdate', 'SetScrollInfo', 'EndDeferWindowPos', 'GetMenuItemID', 'GetMessageW', 'GetScrollRange', 'GetSystemMetrics', 'SetWindowLongW', 'DrawIconEx', 'GetLastActivePopup', 'HideCaret', 'ShowCursor', 'MessageBeep', 'DrawTextW', 'GetWindowThreadProcessId', 'SetDlgItemTextW', 'GetMenu', 'GetScrollPos', 'CreateCursor', 'MessageBoxA', 'DialogBoxParamW', 'ScrollWindow', 'GetKeyboardState', 'TrackMouseEvent', 'SetPropW', 'SetWindowsHookExW', 'SetForegroundWindow', 'InsertMenuW', 'InsertMenuItemW', 'GetClipboardData', 'DrawEdge', 'CheckMenuRadioItem', 'ReleaseDC', 'GetSubMenu', 'IsDialogMessageW', 'mouse_event', 'GetCapture', 'MapWindowPoints', 'BringWindowToTop', 'CreatePopupMenu', 'ClientToScreen', 'GetDlgItem', 'DestroyIcon', 'MoveWindow', 'GetSysColorBrush', 'GetClientRect', 'LoadCursorW', 'RemovePropW', 'EnableWindow', 'ReleaseCapture', 'GetActiveWindow', 'RegisterClipboardFormatW', 'SetClipboardData', 'GetMonitorInfoW', 'IsWindowVisible', 'GetSysColor', 'DestroyAcceleratorTable', 'GetClassLongA', 'AdjustWindowRectEx', 'CreateAcceleratorTableW', 'DeleteDC', 'CreateCompatibleBitmap', 'CreateFontA', 'OffsetWindowOrgEx', 'GetStockObject', 'SetTextAlign', 'SetBkMode', 'StartPage', 'SetBrushOrgEx', 'CreateSolidBrush', 'CreateFontW', 'ExtSelectClipRgn', 'SetTextColor', 'DPtoLP', 'PatBlt', 'GetTextMetricsW', 'DeleteObject', 'MoveToEx', 'CreatePatternBrush', 'CreateRectRgn', 'GetTextExtentPointW', 'LineTo', 'GetROP2', 'GdiFlush', 'LPtoDP', 'SetWindowOrgEx', 'CreateFontIndirectW', 'SetBkColor', 'Rectangle', 'StartDocW', 'CreateBitmap', 'GetTextExtentPoint32W', 'EndDoc', 'ExtTextOutW', 'EnumFontFamiliesExW', 'SetROP2', 'GetObjectW', 'SaveDC', 'GetNearestColor', 'CreatePen', 'GetDeviceCaps', 'EndPage', 'CreateCompatibleDC', 'SelectObject', 'GetPixel', 'StretchBlt', 'RestoreDC', 'CreateHatchBrush', 'GetViewportOrgEx', 'SelectClipRgn', 'AllocateAndInitializeSid', 'FreeSid', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegDeleteValueW', 'RegEnumKeyExW', 'IsTextUnicode', 'RegSetValueExW', 'CheckTokenMembership', 'RegDeleteKeyW', 'RegCloseKey', '??_V@YAXPAX@Z', '??3@YAXPAX@Z', 'memmove', 'memset', '__CxxFrameHandler3', '_initterm', '_initterm_e', '_cexit', '_except_handler4_common', '__getmainargs', '??_U@YAPAXI@Z', '??0exception@@QAE@ABQBD@Z', '??0exception@@QAE@ABV0@@Z', '??1exception@@UAE@XZ', '?what@exception@@UBEPBDXZ', 'free', '_invalid_parameter', '_lock', '_unlock', '?terminate@@YAXXZ', '__CppXcptFilter', '_CxxThrowException', '??2@YAPAXI@Z', 'wcsstr'], ['InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'CreateJobObjectW', 'EnumCalendarInfoExW', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'GetVersionExW', 'SetConsoleMode', 'HeapValidate', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetMailslotInfo', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'BackupRead', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'DeleteVolumeMountPointA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'GetVersionExA', 'GetWindowsDirectoryW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'CommConfigDialogW', 'DeleteFileA', 'FindResourceExW', 'LoadLibraryA', 'GetSystemDefaultLangID', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask'], ['GetCurrentHwProfileA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__C_specific_handler', '__iob_func', '_amsg_exit', '_beginthreadex', '_endthreadex', '_initterm', '_lock', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strcpy', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'SHGetFolderPathA', 'WSACleanup', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['GetAce', 'ImageList_Remove', 'GetOpenFileNameW', 'LineTo', 'IcmpSendEcho', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetUseConnectionW', 'CoGetObject', 'VariantInit', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'connect'], ['RtlZeroMemory', 'SetFileAttributesW', 'SetFilePointerEx', 'SetThreadPriority', 'Sleep', 'UnmapViewOfFile', 'WriteFile', 'RtlMoveMemory', 'lstrcmpW', 'lstrcmpiA', 'lstrcmpiW', 'lstrcpyW', 'lstrlenA', 'lstrlenW', 'MultiByteToWideChar', 'MoveFileW', 'MapViewOfFile', 'GlobalMemoryStatus', 'GlobalFree', 'GlobalAlloc', 'GetModuleFileNameA', 'GetFileAttributesW', 'GetEnvironmentVariableA', 'CreateThread', 'CreateFileW', 'CreateFileMappingA', 'CreateFileA', 'CopyFileA', 'lstrcatW', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'CryptReleaseContext', 'CryptImportKey', 'CryptGenKey', 'CryptExportKey', 'CryptEncrypt', 'CryptDestroyKey', 'CryptDecrypt', 'CryptAcquireContextA', 'AdjustTokenPrivileges', 'RegSetValueExA'], ['CreateFileA', 'FindResourceA', 'FreeLibrary', 'LoadResource', 'WriteFile', 'SizeofResource', 'GetProcAddress', 'LoadLibraryA', 'LockResource', 'EnumResourceNamesA', 'CloseHandle', 'FreeResource', 'GetWindowsDirectoryA', 'OutputDebugStringA', 'GetTempPathA', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'EncodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameW', 'Sleep', 'HeapSize', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'ShellExecuteA', 'SHGetSpecialFolderPathA'], ['AuthzFreeContext', 'AuthzAddSidsToContext', 'AuthzFreeAuditEvent', 'AuthzFreeResourceManager', 'AuthzInitializeContextFromSid', 'AuthzFreeResourceManager', 'AuthzAddSidsToContext', 'AuthzFreeContext', 'AuthzFreeAuditEvent', 'AuthzInitializeContextFromSid', 'WriteProcessMemory', 'OpenEventW', 'MoveFileA', 'GetFileAttributesW', 'DecodePointer', 'InterlockedIncrement', 'GetACP', 'CreateEventW', 'GetModuleHandleA', 'OpenFileMappingA', 'GetEnvironmentVariableA', 'VirtualAlloc', 'GetEnvironmentVariableA', 'LoadLibraryExW', 'LoadBitmapW', 'IsCharLowerA', 'MessageBoxExW', 'GetMessageA', 'MessageBoxW', 'CreateWindowExW', 'SetWindowTextW', 'GetWindow', 'InsertMenuW', 'FindWindowW', 'FindWindowW', 'GetFocus', 'ExtractIconW', 'DragQueryFileA', 'ShellMessageBoxA', 'ShellExecuteW', 'DragQueryPoint', 'FindExecutableA', 'SHEmptyRecycleBinA', 'FindExecutableA', 'SHDefExtractIconW', 'ShellAboutA', 'SHGetFileInfoA', 'SHGetDataFromIDListW', 'ClusWorkerTerminate', 'ResUtilDupString', 'CAEnumNextCA', 'CACloseCertType', 'RegSaveKeyA', 'RegReplaceKeyA', 'IsValidSid', 'RegDeleteValueW', 'CryptSignHashA', 'ReadEventLogW', 'RegCreateKeyExW', 'RegUnLoadKeyA', 'IsValidAcl', 'InitializeAcl', 'OpenEventLogA'], ['FsRtlIsNameInExpression', 'PsGetProcessImageFileName', 'ZwQueryInformationProcess', '__C_specific_handler', 'strchr', 'RtlAppendUnicodeToString', 'KeInitializeSemaphore', 'KeReleaseSemaphore', 'KeWaitForSingleObject', 'KeAcquireSpinLockRaiseToDpc', 'KeReleaseSpinLock', 'PsCreateSystemThread', 'PsTerminateSystemThread', 'ZwQueryInformationFile', 'ZwWriteFile', 'PsGetCurrentThreadId', 'ZwDeleteFile', '_vsnprintf', 'PsThreadType', 'PsSetCreateProcessNotifyRoutine', 'PsGetProcessSessionId', 'RtlAppendUnicodeStringToString', 'ZwDeleteValueKey', 'ZwSetValueKey', 'towupper', 'RtlIntegerToUnicodeString', 'KeInitializeEvent', 'KeSetEvent', 'KeAcquireSpinLockAtDpcLevel', 'KeReleaseSpinLockFromDpcLevel', 'MmProbeAndLockPages', 'IoAllocateIrp', 'IoAllocateMdl', 'IofCallDriver', 'IoFreeIrp', 'IoFreeMdl', 'IoGetDeviceObjectPointer', 'IoGetRelatedDeviceObject', 'ObCloseHandle', 'ObfReferenceObject', 'ZwSetInformationFile', 'ZwReadFile', 'ZwOpenSymbolicLinkObject', 'ZwQuerySymbolicLinkObject', 'IoCreateFileSpecifyDeviceObjectHint', 'IoGetDeviceAttachmentBaseRef', 'FsRtlGetFileSize', 'ObQueryNameString', 'IoFileObjectType', 'KeReadStateEvent', 'ExQueueWorkItem', 'ExGetPreviousMode', 'MmGetSystemRoutineAddress', 'NtOpenProcess', 'ZwCreateEvent', 'ZwWaitForSingleObject', 'ZwSetEvent', 'NtQuerySystemInformation', 'ExEventObjectType', 'NtBuildNumber', 'ZwDeleteKey', 'ObReferenceObjectByName', 'IoDriverObjectType', 'MmIsDriverVerifying', 'IofCompleteRequest', 'IoCreateDevice', 'IoCreateSymbolicLink', 'IoDeleteDevice', 'IoDeleteSymbolicLink', 'RtlSetDaclSecurityDescriptor', 'MmMapLockedPagesSpecifyCache', 'PsGetProcessId', 'IoThreadToProcess', 'PsGetCurrentProcessSessionId', 'ZwTerminateProcess', 'KeStackAttachProcess', 'KeUnstackDetachProcess', 'ZwOpenThread', 'PsProcessType', 'ExInterlockedInsertHeadList', 'ExInterlockedRemoveHeadList', 'CmRegisterCallback', 'CmUnRegisterCallback', 'RtlCreateRegistryKey', 'ZwOpenKey', 'ZwEnumerateKey', 'ZwQueryKey', 'ZwQueryValueKey', 'RtlUnicodeStringToAnsiString', 'RtlFreeAnsiString', 'ProbeForWrite', 'PsSetLoadImageNotifyRoutine', 'PsRemoveLoadImageNotifyRoutine', 'PsGetProcessSectionBaseAddress', 'MmSystemRangeStart', 'KeBugCheckEx', 'PsLookupProcessByProcessId', 'ZwOpenProcess', 'PsGetCurrentProcessId', 'RtlUpcaseUnicodeString', 'RtlUpperString', 'ZwClose', 'ZwCreateFile', 'ObfDereferenceObject', 'ObReferenceObjectByHandle', 'ProbeForRead', 'ExFreePoolWithTag', 'ExAllocatePoolWithTag', 'KeDelayExecutionThread', 'RtlGetVersion', 'DbgPrint', 'RtlCopyUnicodeString', 'RtlInitUnicodeString', 'wcsstr', 'ZwQuerySystemInformation', 'strstr', 'FltSendMessage', 'FltCloseCommunicationPort', 'FltCreateCommunicationPort', 'FltReleaseContext', 'FltGetStreamHandleContext', 'FltSetStreamHandleContext', 'FltAllocateContext', 'FltCancelFileOpen', 'FltQueryInformationFile', 'FltReadFile', 'FltParseFileNameInformation', 'FltReleaseFileNameInformation', 'FltGetFileNameInformation', 'FltFreePoolAlignedWithTag', 'FltAllocatePoolAlignedWithTag', 'FltStartFiltering', 'FltUnregisterFilter', 'FltRegisterFilter', 'FltBuildDefaultSecurityDescriptor'], ['RtlCaptureContext', 'GetExitCodeThread', 'FindWindowA', 'OpenProcessToken', 'CoCreateGuid', 'VariantClear', 'PathMatchSpecExW', 'WSAGetLastError', 'CertOpenStore', 'InitSecurityInterfaceW', 'CryptUIDlgViewContext', 'GetAdaptersInfo', 'URLDownloadToFileA', 'DnsNameCompare_W', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetStartupInfoA', 'FormatMessageA', 'GetLastError', 'Sleep', 'GetExitCodeProcess', 'WaitForSingleObject', 'CloseHandle', 'CreateProcessA', 'lstrcatA', 'lstrcpyA', 'RemoveDirectoryA', 'lstrlenA', 'DeleteFileA', 'OpenFile', 'ReadFile', 'SetFilePointer', 'CreateFileA', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetTempFileNameA', 'GetTempPathA', 'GetWindowsDirectoryA', 'WriteFile', 'SetHandleCount', 'GetStdHandle', 'GetStringTypeA', 'LCMapStringW', 'GetStringTypeW', 'LCMapStringA', 'MultiByteToWideChar', 'LoadLibraryA', 'GetModuleHandleA', 'LocalFree', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetProcAddress', 'GetCPInfo', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'MessageBoxA', 'WaitForInputIdle', 'GetDesktopWindow', 'LZOpenFileA', 'LZCopy', 'LZClose'], ['WriteConsoleOutputCharacterW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'LoadLibraryW', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'GetModuleFileNameW', 'lstrlenW', 'CreateDirectoryA', 'GetConsoleAliasesW', 'GetLastError', 'GetProcAddress', 'FindFirstChangeNotificationW', 'MoveFileW', 'WriteProfileSectionA', 'SetStdHandle', 'EnterCriticalSection', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'UnregisterWaitEx', 'LocalFree', 'InterlockedPushEntrySList', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoW'], ['GetLastError', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'VirtualAllocEx', 'WriteProcessMemory', 'VirtualFreeEx', 'Module32First', 'Module32Next', 'VirtualQueryEx', 'ReadProcessMemory', 'GetSystemInfo', 'VirtualProtectEx', 'OpenProcess', 'Beep', 'UnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'CloseHandle', 'VirtualProtect', 'GetCurrentProcess', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetModuleHandleW', 'Sleep', 'SetWindowsHookExA', 'CallNextHookEx', 'ShellExecuteA', 'PlaySoundA', '__CxxRegisterExceptionObject', '__CxxExceptionFilter', 'memmove', '_except_handler4_common', '__CxxDetectRethrow', '__std_exception_destroy', '__telemetry_main_return_trigger', '__CxxUnregisterExceptionObject', '__FrameUnwindFilter', '__telemetry_main_invoke_trigger', '__std_exception_copy', '__CxxFrameHandler3', 'memset', '_CxxThrowException', '__CxxQueryExceptionSize', '_stricmp', '_c_exit', '_seh_filter_exe', 'terminate', '_controlfp_s', '_crt_atexit', '_register_onexit_function', '_initialize_onexit_table', '_invalid_parameter_noinfo_noreturn', '_register_thread_local_exe_atexit_callback', 'abort', '_cexit', '_set_app_type', '_exit', 'exit', '_initterm_e', '_initterm', '_get_narrow_winmain_command_line', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', 'free', 'malloc', '_set_new_mode', '_callnewh', '?_Xlength_error@std@@YAXPBD@Z', '?_Xout_of_range@std@@YAXPBD@Z', '?_Xbad_alloc@std@@YAXXZ', '_CorExeMain'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', 'ShowWindow', 'memmove', '_register_thread_local_exe_atexit_callback', '_set_fmode', '__setusermatherr', '_configthreadlocale', '_callnewh', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcessHeap', 'GetModuleFileNameW', 'GetLastError', 'WaitForSingleObject', 'DeleteFileA', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'LocalFree', 'GetVersionExA', 'LocalAlloc', 'LoadLibraryA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetVersionExW', 'Sleep', 'GlobalFindAtomA', 'ExpandEnvironmentStringsA', 'GetCurrentProcess', 'GlobalAddAtomA', 'SetErrorMode', 'lstrcpynA', 'CloseHandle', 'ExitProcess', 'GetTickCount', 'SwitchToThread', 'Module32Next', 'VirtualProtectEx', 'Module32First', 'GetExitCodeProcess', 'CreateRemoteThread', 'GetTempFileNameA', 'SetFileAttributesA', 'GetThreadContext', 'CreateFileA', 'SetThreadContext', 'Process32First', 'VirtualFree', 'OpenProcess', 'TerminateThread', 'CreateProcessA', 'TerminateProcess', 'FlushInstructionCache', 'GetShortPathNameA', 'SetCurrentDirectoryA', 'FindFirstFileA', 'GetHandleInformation', 'VirtualAlloc', 'VirtualAllocEx', 'FindClose', 'Process32Next', 'FindNextFileA', 'VirtualProtect', 'GetCurrentDirectoryA', 'CreateToolhelp32Snapshot', 'WriteProcessMemory', 'ResumeThread', 'CreateThread', 'SetPriorityClass', 'GetCurrentThread', 'WriteFile', 'GetBinaryTypeA', 'ReadFile', 'SetThreadPriority', 'GetFileSizeEx', 'CopyFileA', 'wsprintfW', 'DestroyWindow', 'keybd_event', 'GetMessageA', 'SetTimer', 'RegisterClassExA', 'PostQuitMessage', 'KillTimer', 'TranslateMessage', 'CreateWindowExA', 'DefWindowProcA', 'FlashWindow', 'DispatchMessageA', 'UpdateWindow', 'WaitForInputIdle', 'ShowWindow', 'SHGetFolderPathW', 'ShellExecuteExW', 'SHGetFolderPathA', 'ShellExecuteExA', 'CoInitializeEx', 'CoUninitialize', 'GetModuleBaseNameW', 'PathAppendW', 'PathFindFileNameA', 'StrStrIA', 'PathFileExistsA', 'PathAddBackslashA', 'SHGetValueA', 'StrStrNIW', 'PathAddExtensionA', 'PathIsDirectoryA', 'PathCombineA', 'ZwSetInformationThread', 'RtlImageNtHeader', '_stricmp', 'ZwClose', 'ZwUnmapViewOfSection', 'memset', '_alloca_probe', 'strstr', '_snprintf', 'ZwOpenProcess', 'RtlUnwind', 'CryptGetHashParam', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'OpenProcessToken', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'RegSetValueExA', 'RegCreateKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CryptReleaseContext', 'VerQueryValueA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'WinVerifyTrust'], ['GetExitCodeThread', 'LocalFlags', 'WritePrivateProfileStringW', 'GetModuleHandleW'], ['CloseHandle', 'WriteFile', 'CreateFileA', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'CreateProcessA', 'free', '_initterm', 'malloc', '_adjust_fdiv', 'sprintf'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'CopyFileA', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'VirtualAlloc', 'GetBinaryTypeA', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['GetModuleFileNameExW', 'GetModuleBaseNameA', 'GetModuleInformation', 'EnumProcessModules', 'UuidCreate', 'UuidToStringW', 'UuidFromStringW', 'RpcStringFreeW', 'GetExtendedTcpTable', 'ntohs', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'OpenProcess', 'Thread32First', 'VirtualFreeEx', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'ReadProcessMemory', 'FormatMessageW', 'GetVersionExW', 'LeaveCriticalSection', 'GetFileAttributesW', 'Thread32Next', 'ReadFile', 'GetModuleFileNameW', 'CreateFileW', 'FlushFileBuffers', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'EnterCriticalSection', 'VirtualAllocEx', 'FindClose', 'OpenThread', 'SetConsoleCtrlHandler', 'GetExitCodeThread', 'CreateEventW', 'GetSystemInfo', 'FindNextFileW', 'CreateToolhelp32Snapshot', 'GetCurrentThreadId', 'CloseHandle', 'DeleteFileW', 'GetCurrentProcessId', 'DebugBreak', 'WriteProcessMemory', 'SuspendThread', 'ResumeThread', 'CreateThread', 'WriteFile', 'GetEnvironmentVariableW', 'CompareStringW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'lstrlenW', 'ExpandEnvironmentStringsW', 'SetLastError', 'GetPrivateProfileStringW', 'VirtualFree', 'GetModuleHandleW', 'SleepEx', 'SetEvent', 'GetComputerNameW', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'InterlockedDecrement', 'InterlockedIncrement', 'LoadLibraryExW', 'FreeLibrary', 'VirtualQuery', 'SetFilePointer', 'SetUnhandledExceptionFilter', 'FindFirstFileW', 'GetFileSize', 'ExitProcess', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetEnvironmentVariableW', 'CreateRemoteThread', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapSetInformation', 'InterlockedCompareExchange', 'DecodePointer', 'EncodePointer', 'RaiseException', 'InterlockedExchange', 'LocalAlloc', 'LoadLibraryExA', 'IsDebuggerPresent', 'GlobalFlags', 'LoadLibraryA', 'GetModuleHandleA', 'FileTimeToSystemTime', 'RegOpenKeyW', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'QueryServiceStatusEx', 'SetServiceStatus', 'StartServiceW', 'LookupPrivilegeValueW', 'RegQueryValueExW', 'RegisterServiceCtrlHandlerExW', 'OpenServiceW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'OpenProcessToken', 'CloseServiceHandle', 'GetTokenInformation', 'GetSidIdentifierAuthority', 'IsValidSid', 'DeleteObject', 'CreateCompatibleDC', 'OffsetViewportOrgEx', 'DeleteDC', 'RectVisible', 'ScaleWindowExtEx', 'CreateDIBSection', 'GetClipBox', 'CreateBrushIndirect', 'ScaleViewportExtEx', 'SetDIBColorTable', 'GetPixel', 'CreateDIBPatternBrushPt', 'GetSystemMetrics', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'GetDC', 'VarBstrFromDec', 'StringFromGUID2'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FileTimeToSystemTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['GetFullPathNameA', 'LocalUnlock', 'GetPrivateProfileSectionNamesW', 'EnumResourceNamesW', 'SetCriticalSectionSpinCount', 'GlobalMemoryStatus', 'FindResourceA', 'FindFirstFileW', 'SetThreadContext', 'FindFirstChangeNotificationW', 'EnumCalendarInfoA', 'WriteConsoleInputW', 'SetFilePointer', 'IsBadStringPtrW', 'EnumDateFormatsExW', 'CopyFileExW', 'TlsGetValue', 'GetStringTypeA', 'UnmapViewOfFile', 'MoveFileExA', 'CommConfigDialogA', 'GetConsoleAliasExesLengthA', 'BuildCommDCBAndTimeoutsA', 'DeleteVolumeMountPointA', 'SetUnhandledExceptionFilter', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentProcess', 'SetDefaultCommConfigW', 'SetFirmwareEnvironmentVariableA', 'QueryDosDeviceA', 'GlobalLock', 'SetVolumeMountPointW', 'GetComputerNameW', 'SetEvent', 'SetThreadExecutionState', 'OpenSemaphoreA', 'GetFileAttributesExA', 'FreeEnvironmentStringsA', '_lclose', 'GetModuleHandleW', 'GetCommConfig', 'GetProcessHeap', 'IsBadReadPtr', 'GetSystemTimeAsFileTime', 'GetNumberFormatA', 'GetPrivateProfileStringW', 'GetConsoleTitleA', 'CreateRemoteThread', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'WaitNamedPipeW', 'EnumTimeFormatsA', 'SetCommState', 'GetSystemWow64DirectoryA', 'WriteFileGather', 'TzSpecificLocalTimeToSystemTime', 'TlsSetValue', 'AllocateUserPhysicalPages', 'FindResourceExA', 'LoadLibraryW', 'GetConsoleMode', 'FatalAppExitW', 'GetThreadSelectorEntry', 'CopyFileW', 'GetPrivateProfileStructW', 'GetCalendarInfoW', 'GetCalendarInfoA', 'SetSystemTimeAdjustment', 'GetProcessHandleCount', 'GetSystemWindowsDirectoryA', 'GetVersionExW', 'SetConsoleCP', 'LeaveCriticalSection', 'GetFileAttributesA', 'lstrcpynW', 'SetDllDirectoryA', 'SetConsoleMode', 'HeapValidate', 'GetVolumePathNamesForVolumeNameW', 'CreateSemaphoreA', 'SetConsoleCursorPosition', 'WritePrivateProfileSectionW', 'TerminateProcess', 'IsDBCSLeadByte', 'GetModuleFileNameW', 'CreateActCtxA', 'GetComputerNameA', 'lstrcmpW', 'lstrlenW', 'WritePrivateProfileStringW', 'VirtualUnlock', 'CreateJobObjectA', 'GetNamedPipeHandleStateW', 'EnumSystemLocalesA', 'GetPrivateProfileIntW', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstFileA', 'OpenMutexW', 'GetLastError', 'ChangeTimerQueueTimer', 'GetLongPathNameW', 'SetLastError', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'HeapSize', 'PeekConsoleInputW', 'BackupWrite', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'CreateJobSet', 'SetStdHandle', 'EnterCriticalSection', 'VerLanguageNameW', 'SearchPathA', 'BuildCommDCBW', 'DefineDosDeviceA', 'GetNumaHighestNodeNumber', 'GetPrivateProfileStringA', 'GetAtomNameA', 'LoadLibraryA', 'Process32FirstW', 'OpenMutexA', 'CreateSemaphoreW', 'ProcessIdToSessionId', 'LocalAlloc', 'CreateHardLinkW', 'IsSystemResumeAutomatic', 'GetExitCodeThread', 'SetCurrentDirectoryW', 'SetFileApisToANSI', 'PostQueuedCompletionStatus', 'GetCurrentConsoleFont', 'HeapWalk', 'GetPrivateProfileStructA', 'SetNamedPipeHandleState', 'SetEnvironmentVariableA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'WriteProfileStringA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'WaitCommEvent', 'SetConsoleTitleW', 'FindFirstChangeNotificationA', 'GetProcessShutdownParameters', 'QueueUserWorkItem', 'ContinueDebugEvent', 'lstrcatW', 'HeapSetInformation', 'FreeEnvironmentStringsW', 'FindNextFileW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'CompareStringA', 'WriteConsoleOutputAttribute', 'OutputDebugStringA', 'DuplicateHandle', 'FindFirstVolumeA', 'TerminateJobObject', 'CloseHandle', 'DeleteTimerQueueTimer', 'GlobalAddAtomW', 'SetFileValidData', 'GetTempPathA', 'FindActCtxSectionStringW', 'ResetWriteWatch', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'TlsFree', 'CopyFileExA', 'DeleteFileA', 'lstrcpyA', 'GetBinaryTypeW', 'ExitProcess', 'MoveFileA', 'GetCommandLineW', 'GetStartupInfoW', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'InterlockedIncrement', 'GetEnvironmentStringsW', 'TlsAlloc', 'HeapCreate', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'WriteConsoleW', 'OutputDebugStringW', 'RtlUnwind', 'MultiByteToWideChar', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'HeapAlloc', 'HeapReAlloc', 'HeapQueryInformation', 'HeapFree', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'LCMapStringW', 'ReadFile', 'CreateFileW', 'RaiseException', 'GetFileSecurityA'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxW', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetPrivateProfileIntW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetDateFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'BuildCommDCBAndTimeoutsW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'GetUserNameA', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'CryptUnprotectData', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetDriveTypeA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetLastError', 'GetLocalTime', 'GetLogicalDriveStringsA', 'GetModuleFileNameA', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetSystemInfo', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MoveFileA', 'OpenProcess', 'PeekNamedPipe', 'Process32First', 'Process32Next', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'SetErrorMode', 'SetFilePointer', 'Sleep', 'TerminateProcess', 'WriteFile', '_beginthreadex', '_filelengthi64', '_vscprintf', '_vsnprintf', 'fclose', 'fflush', 'fgetpos', 'fgets', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'getenv', 'malloc', 'realloc', 'strlen', 'time', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'EnumWindows', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardState', 'GetMessageA', 'GetSystemMetrics', 'GetWindowTextA', 'IsWindowVisible', 'MapVirtualKeyA', 'PostQuitMessage', 'RegisterClassExA', 'ReleaseDC', 'SendMessageA', 'SetCursorPos', 'SetWindowTextA', 'ShowWindow', 'ToAscii', 'TranslateMessage', 'keybd_event', 'mouse_event', 'WSACleanup', 'WSAGetLastError', 'WSAIoctl', 'WSAStartup', '__WSAFDIsSet', 'closesocket', 'connect', 'gethostbyname', 'gethostname', 'htons', 'ioctlsocket', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'GetCurrentProcessId', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetTimeFormatW', 'GetDateFormatW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'VariantClear', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['SetMailslotInfo', 'GetLogicalDriveStringsW', 'WritePrivateProfileSectionA', 'GetSystemWindowsDirectoryW', 'FreeEnvironmentStringsA', 'GetProcessPriorityBoost', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'WaitNamedPipeW', 'EnumTimeFormatsW', 'GetVolumePathNameW', 'GetPrivateProfileIntA', 'GetSystemPowerStatus', 'GetCalendarInfoA', 'GetProcessHandleCount', 'GetConsoleAliasExesLengthW', 'LeaveCriticalSection', 'GetFileAttributesA', 'GetFileAttributesW', 'GetModuleFileNameW', 'GetShortPathNameA', 'DeleteFiber', 'SetLastError', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'SetComputerNameA', 'InterlockedIncrement', 'GetDiskFreeSpaceW', 'OpenWaitableTimerA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessId', 'InterlockedExchangeAdd', 'LocalAlloc', 'DeleteTimerQueue', 'SetCalendarInfoW', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'IsSystemResumeAutomatic', 'AddAtomW', 'OpenJobObjectW', 'GetPrivateProfileStructA', 'FindFirstVolumeMountPointA', 'EnumDateFormatsA', 'GetModuleHandleA', 'CreateMutexA', 'FindNextFileW', 'EnumDateFormatsW', 'CompareStringA', 'GetShortPathNameW', 'SetFileShortNameA', 'FindAtomW', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'EnumSystemLocalesW', 'AreFileApisANSI', 'GetDriveTypeW', 'SearchPathA', 'GetStringTypeA', 'GetLastError', 'HeapFree', 'DeleteFileA', 'WideCharToMultiByte', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'HeapAlloc', 'IsProcessorFeaturePresent', 'HeapCreate', 'EnterCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'GetCharABCWidthsW', 'SelectObject'], ['GetAce', 'PropertySheetW', 'CertCloseStore', 'StackWalk64', 'BitBlt', 'GdipFree', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'GradientFill', 'CoInitialize', 'SysStringLen', 'GetProcessImageFileNameW', 'DecryptMessage', 'ShellExecuteW', 'PathCanonicalizeW', 'GetDC', 'VerQueryValueW', 'shutdown'], ['FindResourceW', 'GetWindowsDirectoryA', 'OpenProcess', 'FindResourceA', 'InterlockedCompareExchange', 'GetProcessHeap', 'GetSystemDefaultUILanguage', 'GetTempPathA', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetTimeFormatW', 'TerminateProcess', 'SetThreadPriority', 'lstrlenW', 'PeekNamedPipe', 'VirtualProtect', 'lstrcatA', 'EnumSystemLocalesA', 'VerSetConditionMask', 'LCMapStringA', 'SetCurrentDirectoryW', 'SetFilePointerEx', 'lstrcpyA', 'SignalObjectAndWait', 'SetFileAttributesA', 'ExitThread', 'SystemTimeToTzSpecificLocalTime', 'GetPrivateProfileSectionW', 'GetSystemDefaultLCID', 'ConnectNamedPipe', 'GetDiskFreeSpaceW', 'SetErrorMode', 'CloseHandle', 'GetModuleFileNameA', 'DeleteFileW', 'HeapValidate', 'RemoveDirectoryA', 'OpenFileMappingA', 'IsDBCSLeadByteEx', 'SetLastError', 'GetSystemDirectoryW', 'MoveFileW', 'GlobalAlloc', 'FindClose', 'CreateProcessA', 'SetThreadExecutionState', 'SetNamedPipeHandleState', 'TlsSetValue', 'GetSystemTime', 'GetTempPathW', 'GetShortPathNameA', 'CreateEventA'], ['GetServiceDisplayNameW', 'LoadLibraryA', 'HeapUnlock'], ['InterlockedIncrement', 'GetCPInfo', 'GetOEMCP', 'GetCurrentDirectoryA', 'SetErrorMode', 'HeapFree', 'HeapAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'SetStdHandle', 'GetFileType', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'GetFileTime', 'GetACP', 'GetTimeZoneInformation', 'Sleep', 'SetHandleCount', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetConsoleCP', 'GetConsoleMode', 'SetConsoleCtrlHandler', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetLocaleInfoW', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetAtomNameA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'CloseHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MoveFileA', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'LockResource', 'SizeofResource', 'LoadResource', 'lstrcpynA', 'FindResourceA', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'SetLastError', 'DeleteFileA', 'GetVersion', 'CompareStringA', 'lstrcmpiW', 'lstrcmpiA', 'GetLastError', 'InterlockedExchange', 'GetStringTypeExA', 'lstrlenW', 'MultiByteToWideChar', 'CompareStringW', 'GetEnvironmentVariableA', 'GetStringTypeExW', 'WideCharToMultiByte', 'lstrlenA', 'GetEnvironmentVariableW', 'GetStdHandle', 'ExitProcess', 'UnpackDDElParam', 'InflateRect', 'LoadCursorA', 'GetDialogBaseUnits', 'UnregisterClassA', 'DeleteMenu', 'DestroyIcon', 'IsRectEmpty', 'GetSystemMenu', 'SetParent', 'UnionRect', 'SetRect', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'GetDCEx', 'LockWindowUpdate', 'SetCapture', 'ValidateRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'ReuseDDElParam', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'RemoveMenu', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'EnableWindow', 'CharUpperW', 'CharLowerA', 'CharLowerW', 'SendMessageA', 'CharUpperA', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetScrollPos', 'SetScrollPos', 'GetWindow', 'GetWindowLongA', 'DestroyMenu', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'GetMessageA', 'GetMessageTime', 'TranslateMessage', 'CopyRect', 'UpdateWindow', 'GetSysColorBrush', 'GetSysColor', 'InvalidateRect', 'DrawStateA', 'DrawFocusRect', 'GetClientRect', 'GetParent', 'LoadBitmapA', 'GetFocus', 'FillRect', 'LoadIconA', 'SetMenuItemInfoA', 'AppendMenuA', 'GetMenuItemInfoA', 'GetCursorPos', 'LoadMenuA', 'SetFocus', 'MapVirtualKeyA', 'GetKeyNameTextA', 'ReleaseDC', 'GetDC', 'IsWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetSubMenu', 'ScrollWindow', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetStockObject', 'SelectPalette', 'SetViewportOrgEx', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'GetTextMetricsA', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetBkColor', 'SelectObject', 'Escape', 'SelectClipPath', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'PlayMetaFileRecord', 'CreateRectRgnIndirect', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'PatBlt', 'CreateBitmap', 'GetTextExtentPoint32A', 'GetBitmapDimensionEx', 'GetViewportExtEx', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegQueryValueA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegSetValueA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegCreateKeyA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ExtractIconA', 'Shell_NotifyIconA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'CoDisconnectObject', 'ReadFmtUserTypeStg', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetLastError', 'VirtualAlloc', 'lstrcpyW', 'lstrcatW', 'CreateFileW', 'WriteFile', 'CloseHandle', 'ExpandEnvironmentStringsW', 'CreateMutexW', 'CreateThread', 'WaitForSingleObject', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapSize', 'LCMapStringW', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'WideCharToMultiByte', 'HeapAlloc', 'EncodePointer', 'DecodePointer', 'RaiseException', 'HeapFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'IsDebuggerPresent', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapReAlloc', 'WriteConsoleW', 'WinHttpReadData', 'WinHttpQueryHeaders', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpSetOption', 'ShellExecuteW'], ['GetModuleHandleW', 'LoadLibraryA', 'GetProcAddress', 'GetStartupInfoA', 'GetModuleHandleA', 'GetProcessWindowStation', 'GetQueueStatus', 'LoadCursorFromFileW', 'PaintDesktop', 'CharUpperA', 'IsWindow', 'GetSysColorBrush', 'IsClipboardFormatAvailable', 'AnyPopup', 'CloseWindowStation', 'GetDesktopWindow', 'GetClipboardOwner', 'GetThreadDesktop', 'GetCaretBlinkTime', 'DestroyWindow', 'GetKeyState', 'IsIconic', 'GetTopWindow', 'GetSysColor', 'GetListBoxInfo', 'CharNextW', 'IsWindowVisible', 'CharToOemBuffA', 'CharNextExA', 'DeleteObject', 'UpdateColors', 'GetLayout', 'CreateMetaFileW', 'DeleteEnhMetaFile', 'GetTextAlign', 'GetDCPenColor', 'CloseMetaFile', 'CreateMetaFileA', 'FillPath', 'RealizePalette', 'EndDoc', 'SwapBuffers', 'GetFontLanguageInfo', 'GetSystemPaletteUse', 'RegOpenKeyA', 'RegQueryValueExA', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_controlfp'], ['GetStdHandle', 'GetFileType', 'SetStdHandle', 'QueryPerformanceFrequency', 'VirtualQuery', 'GetSystemInfo', 'HeapQueryInformation', 'GetModuleHandleExW', 'GetTimeZoneInformation', 'ExitThread', 'CreateThread', 'GetCommandLineW', 'GetCommandLineA', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'RtlUnwind', 'OutputDebugStringW', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'IsValidLocale', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetStringTypeW', 'SetConsoleCtrlHandler', 'GetStartupInfoW', 'IsDebuggerPresent', 'EnumSystemLocalesW', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'WaitForSingleObjectEx', 'ResetEvent', 'LocalUnlock', 'LocalLock', 'GetUserDefaultLCID', 'ReplaceFileW', 'GetTempFileNameW', 'GetDiskFreeSpaceW', 'Sleep', 'SearchPathW', 'GetProfileIntW', 'GetTickCount', 'GetTempPathW', 'SystemTimeToTzSpecificLocalTime', 'SetFileTime', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesExW', 'FileTimeToLocalFileTime', 'SetErrorMode', 'FindResourceExW', 'GetFileAttributesW', 'VerifyVersionInfoW', 'VerSetConditionMask', 'GetStringTypeExW', 'MoveFileW', 'lstrcmpiW', 'GetCurrentProcess', 'DuplicateHandle', 'WriteFile', 'UnlockFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'LockFile', 'GetVolumeInformationW', 'GetShortPathNameW', 'GetFullPathNameW', 'GetFileSize', 'FlushFileBuffers', 'FindFirstFileW', 'FindClose', 'CreateFileW', 'DeleteFileW', 'GetCurrentDirectoryW', 'VirtualProtect', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'GetThreadLocale', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetAtomNameW', 'GlobalGetAtomNameW', 'lstrcpyW', 'GlobalFlags', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'ResumeThread', 'SuspendThread', 'SetThreadPriority', 'CreateEventW', 'WaitForSingleObject', 'SetEvent', 'CloseHandle', 'CompareStringA', 'lstrcmpA', 'GetVersionExW', 'GetCurrentThread', 'GetCurrentProcessId', 'CompareStringW', 'GlobalFindAtomW', 'GlobalAddAtomW', 'lstrcmpW', 'GlobalDeleteAtom', 'LoadLibraryA', 'LoadLibraryExW', 'GetSystemDirectoryW', 'EncodePointer', 'MultiByteToWideChar', 'GetModuleHandleW', 'GetModuleHandleA', 'OutputDebugStringA', 'SetLastError', 'CopyFileW', 'FormatMessageW', 'LocalFree', 'GlobalLock', 'GlobalUnlock', 'GlobalSize', 'GetProcAddress', 'WinExec', 'FreeLibrary', 'LoadLibraryW', 'GetWindowsDirectoryW', 'ExitProcess', 'VirtualAlloc', 'lstrcpynW', 'WideCharToMultiByte', 'GlobalFree', 'GlobalAlloc', 'GetCurrentThreadId', 'GetModuleFileNameW', 'GetProcessHeap', 'DeleteCriticalSection', 'HeapDestroy', 'DecodePointer', 'HeapAlloc', 'RaiseException', 'HeapReAlloc', 'GetLastError', 'SizeofResource', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'HeapFree', 'MulDiv', 'FindResourceW', 'LoadResource', 'LockResource', 'FreeLibraryAndExitThread', 'WriteConsoleW', 'GetMenuItemInfoW', 'DestroyMenu', 'ShowOwnedPopups', 'TranslateMessage', 'GetMessageW', 'PostQuitMessage', 'GetWindowThreadProcessId', 'TabbedTextOutW', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'IntersectRect', 'WindowFromPoint', 'GetCursorPos', 'LoadMenuW', 'IsDialogMessageW', 'SetWindowTextW', 'ScrollWindowEx', 'SendDlgItemMessageW', 'IsDlgButtonChecked', 'CheckRadioButton', 'CheckDlgButton', 'GetDlgItemTextW', 'SetDlgItemTextW', 'GetDlgItemInt', 'SetDlgItemInt', 'MoveWindow', 'ShowWindow', 'SetMenuItemInfoW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'GetMonitorInfoW', 'MonitorFromWindow', 'WinHelpW', 'GetScrollInfo', 'SetScrollInfo', 'GetWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetClassNameW', 'GetClassLongW', 'EqualRect', 'MapWindowPoints', 'MessageBoxW', 'AdjustWindowRectEx', 'GetWindowTextLengthW', 'GetWindowTextW', 'RemovePropW', 'GetPropW', 'SetPropW', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'ValidateRect', 'EndPaint', 'BeginPaint', 'SetForegroundWindow', 'GetForegroundWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetMenu', 'GetSysColorBrush', 'GetCapture', 'GetKeyState', 'SetFocus', 'GetDlgCtrlID', 'IsWindowVisible', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'IsChild', 'IsMenu', 'GetClassInfoExW', 'GetClassInfoW', 'CallWindowProcW', 'CloseClipboard', 'PeekMessageW', 'DispatchMessageW', 'SetRectEmpty', 'SendDlgItemMessageA', 'GetDesktopWindow', 'GetWindowLongW', 'SetActiveWindow', 'IsWindowEnabled', 'GetActiveWindow', 'GetNextDlgTabItem', 'GetDlgItem', 'EndDialog', 'CreateDialogIndirectParamW', 'RemoveMenu', 'InsertMenuW', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetMenuState', 'GetMenuStringW', 'CopyIcon', 'SetCursor', 'ScreenToClient', 'MessageBeep', 'DestroyCursor', 'SetClipboardData', 'EmptyClipboard', 'SetClassLongW', 'SetWindowRgn', 'EnableWindow', 'RedrawWindow', 'SetTimer', 'GetClientRect', 'LoadBitmapW', 'RegisterWindowMessageW', 'SetCursorPos', 'IsIconic', 'AppendMenuW', 'GetSystemMenu', 'LoadIconW', 'DrawIcon', 'ReleaseCapture', 'SetRect', 'SystemParametersInfoW', 'GetMessagePos', 'MapVirtualKeyW', 'SetCapture', 'GetSystemMetrics', 'PtInRect', 'GetDialogBaseUnits', 'RealChildWindowFromPoint', 'TrackMouseEvent', 'CopyImage', 'GetAsyncKeyState', 'MapDialogRect', 'WaitMessage', 'DeleteMenu', 'CharUpperW', 'CreatePopupMenu', 'GetMenuDefaultItem', 'GetNextDlgGroupItem', 'IsRectEmpty', 'DrawIconEx', 'ClientToScreen', 'DrawFocusRect', 'EnableScrollBar', 'HideCaret', 'InvertRect', 'NotifyWinEvent', 'GetKeyNameTextW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'GetMenu', 'SendMessageW', 'KillTimer', 'GetParent', 'IsWindow', 'GetFocus', 'UnregisterClassW', 'UpdateWindow', 'SetWindowLongW', 'SetWindowsHookExW', 'LoadCursorW', 'UnhookWindowsHookEx', 'RegisterClassW', 'LoadStringW', 'CallNextHookEx', 'CreateWindowExW', 'SetWindowPos', 'DestroyWindow', 'GetWindowRect', 'PostMessageW', 'DefWindowProcW', 'GetDC', 'GetIconInfo', 'CreateIconIndirect', 'ReleaseDC', 'DestroyIcon', 'LoadImageW', 'CopyRect', 'OffsetRect', 'InvalidateRect', 'GetWindowDC', 'DrawStateW', 'GetSysColor', 'InflateRect', 'FillRect', 'FrameRect', 'DrawEdge', 'SetParent', 'DrawFrameControl', 'IsZoomed', 'BringWindowToTop', 'OpenClipboard', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'GetTabbedTextExtentW', 'GetDCEx', 'GetWindowRgn', 'WindowFromDC', 'CreateMenu', 'InSendMessage', 'MonitorFromRect', 'SendNotifyMessageW', 'SubtractRect', 'TranslateMDISysAccel', 'DefMDIChildProcW', 'DefFrameProcW', 'DrawMenuBar', 'EnumChildWindows', 'GetUpdateRect', 'IsClipboardFormatAvailable', 'CharUpperBuffW', 'RegisterClipboardFormatW', 'ModifyMenuW', 'GetDoubleClickTime', 'SetMenuDefaultItem', 'LockWindowUpdate', 'CopyAcceleratorTableW', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'GetKeyboardState', 'ToUnicodeEx', 'MapVirtualKeyExW', 'IsCharLowerW', 'GetKeyboardLayout', 'PostThreadMessageW', 'GetComboBoxInfo', 'MonitorFromPoint', 'UpdateLayeredWindow', 'UnionRect', 'ReuseDDElParam', 'UnpackDDElParam', 'GetMenuBarInfo', 'GetMessageTime', 'InsertMenuItemW', 'SetBkColor', 'SetTextColor', 'CreateBitmap', 'CombineRgn', 'CreatePatternBrush', 'CreateRectRgn', 'CreateRectRgnIndirect', 'GetMapMode', 'PatBlt', 'SetRectRgn', 'ExtTextOutW', 'DPtoLP', 'CreateDIBPatternBrushPt', 'Escape', 'ExcludeClipRect', 'GetClipBox', 'GetClipRgn', 'GetCurrentPositionEx', 'GetObjectType', 'GetPixel', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'OffsetClipRgn', 'PlayMetaFile', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBkMode', 'SetMapperFlags', 'SetGraphicsMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetTextCharacterExtra', 'SetTextAlign', 'SetTextJustification', 'PlayMetaFileRecord', 'EnumMetaFile', 'SetWorldTransform', 'ModifyWorldTransform', 'SetColorAdjustment', 'StartDocW', 'ArcTo', 'PolyDraw', 'SelectClipPath', 'SetArcDirection', 'ExtCreatePen', 'MoveToEx', 'TextOutW', 'PolyBezierTo', 'PolylineTo', 'CopyMetaFileW', 'SetViewportOrgEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'GetTextMetricsW', 'CreatePalette', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'GetSystemPaletteEntries', 'RealizePalette', 'GetBkColor', 'CreateDIBitmap', 'EnumFontFamiliesW', 'GetTextCharsetInfo', 'SetPixel', 'StretchBlt', 'CreateDIBSection', 'SetDIBColorTable', 'CreateEllipticRgn', 'Ellipse', 'GetTextColor', 'CreatePolygonRgn', 'Polygon', 'Polyline', 'CreateRoundRectRgn', 'LPtoDP', 'EnumFontFamiliesExW', 'GetRgnBox', 'OffsetRgn', 'GetCurrentObject', 'CreateFontW', 'GetCharWidthW', 'StretchDIBits', 'RoundRect', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'PtInRegion', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetWindowOrgEx', 'GetViewportOrgEx', 'CloseMetaFile', 'CreateMetaFileW', 'DeleteMetaFile', 'EndDoc', 'StartPage', 'EndPage', 'AbortDoc', 'SetAbortProc', 'GetROP2', 'GetBkMode', 'GetNearestColor', 'GetPolyFillMode', 'GetStretchBltMode', 'GetTextAlign', 'GetTextFaceW', 'Rectangle', 'CreatePen', 'GetTextExtentPoint32W', 'CreateFontIndirectW', 'GetStockObject', 'CreateHatchBrush', 'CreateSolidBrush', 'GetObjectW', 'CreateCompatibleDC', 'SetDIBits', 'CreateCompatibleBitmap', 'GetDIBits', 'DeleteDC', 'GetDeviceCaps', 'CreateDCW', 'SetViewportExtEx', 'BitBlt', 'DeleteObject', 'TransparentBlt', 'AlphaBlend', 'GradientFill', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'GetJobW', 'RegDeleteValueW', 'RegOpenKeyExW', 'SetFileSecurityW', 'GetFileSecurityW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegEnumKeyW', 'RegSetValueExW', 'RegQueryValueExW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueW', 'RegQueryValueW', 'RegCloseKey', 'SHAddToRecentDocs', 'ExtractIconW', 'SHGetFileInfoW', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'DragQueryFileW', 'DragFinish', 'ShellExecuteExW', 'SHAppBarMessage', 'SHBrowseForFolderW', 'SHGetMalloc', 'ShellExecuteW', '_TrackMouseEvent', 'PathRemoveExtensionW', 'PathFindExtensionW', 'PathIsUNCW', 'PathStripToRootW', 'StrFormatKBSizeW', 'PathRemoveFileSpecW', 'PathFindFileNameW', 'IsThemeBackgroundPartiallyTransparent', 'GetCurrentThemeName', 'GetThemePartSize', 'GetThemeSysColor', 'IsAppThemed', 'DrawThemeText', 'DrawThemeParentBackground', 'OpenThemeData', 'CloseThemeData', 'DrawThemeBackground', 'GetThemeColor', 'GetWindowTheme', 'RevokeDragDrop', 'RegisterDragDrop', 'CoLockObjectExternal', 'OleInitialize', 'OleUninitialize', 'OleSetMenuDescriptor', 'OleLockRunning', 'StgCreateDocfile', 'StgOpenStorage', 'StgOpenStorageOnILockBytes', 'StgIsStorageFile', 'CreateILockBytesOnHGlobal', 'CreateFileMoniker', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'OleRegGetMiscStatus', 'OleRegEnumVerbs', 'StgCreateDocfileOnILockBytes', 'WriteClassStm', 'GetHGlobalFromILockBytes', 'CreateGenericComposite', 'CreateItemMoniker', 'OleCreate', 'OleCreateFromData', 'OleCreateLinkFromData', 'OleCreateStaticFromData', 'OleCreateLinkToFile', 'OleCreateFromFile', 'OleLoad', 'OleSave', 'PropVariantCopy', 'OleGetClipboard', 'DoDragDrop', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'OleSetClipboard', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'CLSIDFromString', 'CoDisconnectObject', 'StringFromGUID2', 'CoInitialize', 'CoCreateInstance', 'CoCreateGuid', 'CoUninitialize', 'SetConvertStg', 'OleRegGetUserType', 'ReleaseStgMedium', 'OleDuplicateData', 'ReadFmtUserTypeStg', 'WriteFmtUserTypeStg', 'CreateBindCtx', 'CoTreatAsClass', 'WriteClassStg', 'ReadClassStg', 'CoTaskMemFree', 'CoTaskMemAlloc', 'StringFromCLSID', 'OleSaveToStream', 'OleSetContainedObject', 'OleGetIconOfClass', 'OleRun', 'CreateDataAdviseHolder', 'CreateOleAdviseHolder', 'GetRunningObjectTable', 'OleIsRunning', 'CoGetMalloc', 'OleQueryLinkFromData', 'OleQueryCreateFromData', 'CoGetClassObject', 'CLSIDFromProgID', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoFreeUnusedLibraries', 'RegisterTypeLib', 'SysReAllocStringLen', 'SysStringLen', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCreate', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayRedim', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetUBound', 'LoadRegTypeLib', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayGetElement', 'SafeArrayPutElement', 'SafeArrayCopy', 'SafeArrayPtrOfIndex', 'VariantCopy', 'VarDateFromStr', 'VarCyFromStr', 'VarBstrFromCy', 'VarBstrFromDate', 'SysAllocStringLen', 'VarBstrFromDec', 'VarDecFromStr', 'LoadTypeLib', 'SysAllocString', 'VariantChangeType', 'VariantInit', 'VariantClear', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayGetLBound', 'SysFreeString', 'OleUIBusyW', 'PlaySoundW', 'GdipCreateFromHDC', 'GdipSetInterpolationMode', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromFileICM', 'GdipCreateBitmapFromStreamICM', 'GdipDrawImageRectI', 'GdipCreateBitmapFromStream', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdiplusShutdown', 'GdipCreateBitmapFromFile', 'GdipCreateBitmapFromHBITMAP', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject', 'ImmReleaseContext', 'ImmGetOpenStatus', 'ImmGetContext'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SetLastError', 'SetFilePointer', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'InterlockedExchange', 'FormatMessageA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'RegConnectRegistryA', 'ImageList_LoadImageA', 'CreateCompatibleDC', '_strdup', '__getmainargs', 'VariantClear', 'ExtractIconA', 'CharNextW', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcAddress', 'DeleteCriticalSection', 'GetCurrentProcessId', 'GetProcessHeap', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'CreateFileA', 'Process32FirstW', 'WriteConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'DecodePointer', 'HeapAlloc', 'RaiseException', 'CloseHandle', 'HeapReAlloc', 'LoadLibraryA', 'GetLastError', 'GetTempPathA', 'HeapSize', 'CreateFileW', 'InitializeCriticalSectionEx', 'VirtualAlloc', 'DeviceIoControl', 'VirtualFree', 'Sleep', 'HeapFree', 'GetEnvironmentStringsW', 'GetCommandLineW', 'FormatMessageA', 'WideCharToMultiByte', 'LocalFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'MultiByteToWideChar', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'IsDebuggerPresent', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetModuleHandleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwindEx', 'RtlPcToFileHeader', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'DeleteFileW', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'GetFileSizeEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'ReadConsoleW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'RtlUnwind', 'CreateServiceA', 'CloseServiceHandle', 'OpenSCManagerA', 'DeleteService', 'ControlService', 'StartServiceA', 'OpenServiceA', 'NtQuerySystemInformation', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'CreateEventA', 'GetModuleFileNameW', 'LoadLibraryA', 'TerminateProcess', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'Thread32First', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'WriteProcessMemory', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'GetCurrentThread', 'SetThreadAffinityMask', 'Sleep', 'FreeLibrary', 'GetTickCount', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GlobalFree', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleW', 'LoadResource', 'MultiByteToWideChar', 'FindResourceExW', 'FindResourceExA', 'WideCharToMultiByte', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'CreateFileW', 'LoadLibraryW', 'GetLastError', 'FlushFileBuffers', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'HeapFree', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'HeapAlloc', 'LCMapStringA', 'LCMapStringW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'WriteFile', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'InitializeCriticalSectionAndSpinCount', 'GetUserObjectInformationW', 'CharUpperBuffW', 'MessageBoxW', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'QueryPerformanceCounter', 'HeapCreate', 'WriteFile', 'ExitProcess', 'GetLastError', 'EnterCriticalSection', 'TlsGetValue', 'GetStdHandle', 'HeapFree', 'VirtualAlloc', 'GetOEMCP', 'FreeEnvironmentStringsA', 'VirtualProtect', 'GetModuleHandleA', 'LoadLibraryA', 'GetCurrentProcessId', 'lstrlenA', 'GetCommandLineA', 'GetTickCount', 'RtlUnwind', 'SetHandleCount', 'QueryPerformanceCounter', 'GetProcAddress', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'GetEnvironmentStringsW', 'GetStartupInfoA', 'LCMapStringW', 'LoadLibraryW', 'OutputDebugStringA', 'TlsFree', 'GetCPInfo', 'MultiByteToWideChar', 'InterlockedDecrement', 'GetCurrentThreadId', 'GetCurrentProcessId', 'TlsSetValue', 'InterlockedIncrement', 'GetSystemInfo', 'HeapAlloc', 'TerminateProcess', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'DeleteCriticalSection', 'VirtualQuery', 'GetLocaleInfoA', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetCommandLineA', 'VirtualProtect', 'GetFileType', 'HeapDestroy', 'HeapReAlloc', 'TlsAlloc', 'Sleep', 'GetVersion', 'FreeLibrary', 'VirtualFree', 'GetVersionExA', 'ExpandEnvironmentStringsA', 'SetLastError', 'GetTickCount', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'GetCurrentThreadId', 'GetStringTypeA', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetACP'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'WriteProfileSectionA', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'ReadConsoleOutputW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'SetVolumeMountPointA', 'EnumCalendarInfoA', 'SetProcessPriorityBoost', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'BuildCommDCBAndTimeoutsA', 'GetPrivateProfileStringW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetCharWidth32A'], ['GetACP', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['EnumCalendarInfoA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'SetUnhandledExceptionFilter', 'WaitNamedPipeA', 'GetNamedPipeHandleStateA', 'GetModuleHandleExW', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'WriteConsoleInputA', 'SetEvent', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'CreateRemoteThread', 'GetDateFormatA', 'WriteFile', 'FindActCtxSectionStringA', 'EnumResourceTypesA', 'AllocateUserPhysicalPages', 'GetEnvironmentStrings', 'GlobalAlloc', 'GetSystemDirectoryW', 'ReadFileScatter', 'GetVersionExW', 'GetFileAttributesA', 'FindNextVolumeW', 'GetConsoleAliasW', 'GetModuleFileNameW', 'lstrcmpA', 'MultiByteToWideChar', 'FindNextVolumeMountPointW', 'GetConsoleOutputCP', 'GetLastError', 'BackupRead', 'GetProcAddress', 'GetComputerNameExW', 'RemoveDirectoryA', 'GlobalGetAtomNameA', 'LoadLibraryA', 'OpenMutexA', 'DnsHostnameToComputerNameA', 'GetCommMask', 'RtlCaptureStackBackTrace', 'GetPrivateProfileStructA', 'GlobalFindAtomW', 'FindNextFileA', 'EraseTape', 'CreateMutexA', 'GetStringTypeW', 'RequestWakeupLatency', 'ScrollConsoleScreenBufferA', 'SetCalendarInfoA', 'GetDiskFreeSpaceExA', 'DeleteFileW', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CreateFileW', 'IsProcessorFeaturePresent', 'GetBinaryTypeW', 'GetVolumeNameForVolumeMountPointA', 'WriteConsoleW', 'HeapSize', 'DeleteFileA', 'HeapReAlloc', 'ExitProcess', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetCurrentThread', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapAlloc', 'FatalAppExitA', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryW', 'GetLocaleInfoW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'Sleep', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'LCMapStringW', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'CloseHandle', 'GetMenu', 'ReportEventA', 'WinHttpSetOption'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExA', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'GetOEMCP', 'EnterCriticalSection', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenA', 'LoadLibraryW', 'MoveFileW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'CopyFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'FindActCtxSectionStringW', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetStringTypeA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'FindAtomA', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ReadFile', 'ImpersonateSelf'], ['AddAtomW', 'AssignProcessToJobObject', 'CreateEventW', 'CreateFileW', 'CreateMutexW', 'DeleteAtom', 'DeleteCriticalSection', 'EnterCriticalSection', 'FindNextVolumeMountPointW', 'FreeConsole', 'FreeLibrary', 'GetACP', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetExitCodeProcess', 'GetLastError', 'GetLogicalDrives', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetStringTypeW', 'GetSystemInfo', 'GetVersion', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LockFile', 'ResumeThread', 'SetCalendarInfoW', 'SetConsoleMode', 'SetConsoleScreenBufferSize', 'SetEndOfFile', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__initenv', '__p__acmdln', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleW', 'lstrcpyW', 'lstrcmpW', 'WritePrivateProfileStringW', 'WinExec', 'WideCharToMultiByte', 'TerminateProcess', 'SearchPathW', 'OpenProcess', 'LoadLibraryW', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetLastError', 'GetFileAttributesW', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetACP', 'FreeLibrary', 'ExpandEnvironmentStringsW', 'ExitProcess', 'CloseHandle', 'Sleep', 'GetLongPathNameW', 'GetStartupInfoA', 'GetModuleHandleA', 'GetProfileIntA', 'LoadLibraryA', 'lstrcatA', 'GetTempPathA', 'GlobalUnlock', 'GlobalLock', 'GlobalFlags', 'GlobalFree', 'GlobalAlloc', 'GetVersion', 'GlobalSize', 'lstrcmpA', 'VirtualAllocEx', 'SetErrorMode', 'DestroyAcceleratorTable', 'SendMessageCallbackA', 'OpenWindowStationA', 'DrawTextA', 'DlgDirSelectExW', 'CheckMenuItem', 'SendNotifyMessageW', 'EnumDisplayMonitors', 'TrackPopupMenu', 'DdeUninitialize', 'MonitorFromWindow', 'IMPGetIMEA', 'ToAscii', 'GetDesktopWindow', 'ExitWindowsEx', 'SendNotifyMessageA', 'EnumPropsExA', 'DialogBoxIndirectParamW', 'SetWindowTextA', 'SetSystemCursor', 'SetThreadDesktop', 'TranslateAcceleratorA', 'FindWindowW', 'GetIconInfo', 'ScrollWindow', 'EndTask', 'DdeNameService', 'wsprintfA', 'TranslateAccelerator', 'GetInputState', 'DdeDisconnectList', 'SetRectEmpty', 'BeginDeferWindowPos', 'BroadcastSystemMessageA', 'GetClipboardViewer', 'DrawStateA', 'CreateWindowExA', 'GetSystemMenu', 'ChangeMenuA', 'DefWindowProcA', 'PostQuitMessage', 'RegisterClassA', 'DdeGetData', 'DdeCmpStringHandles', 'DdePostAdvise', 'LoadCursorA', 'LoadIconA', 'ShowWindow', 'GetMessageA', 'DispatchMessageA', 'TranslateMessage', 'PostMessageA', 'RegisterWindowMessageA', 'DdeCreateDataHandle', 'DdeCreateStringHandleA', 'DdeFreeStringHandle', 'DdeGetLastError', 'DdeInitializeA', 'DdeDisconnect', 'PeekMessageA', 'GetStockObject', 'StrokePath', 'PathToRegion', 'OpenProcessToken', 'LookupAccountSidW', 'GetUserNameW', 'GetTokenInformation', 'StartServiceW', 'QueryServiceStatus', 'OpenServiceW', 'OpenSCManagerW', 'CloseServiceHandle', 'RegQueryValueExA', 'SHGetFileInfoA', 'SHGetMalloc', 'Shell_NotifyIconW', 'SHBrowseForFolder', 'SHGetIconOverlayIndexA', 'SHEmptyRecycleBinW', 'SHChangeNotify', 'ExtractIconA', 'ExtractIconExW', 'CommandLineToArgvW', 'SHGetDiskFreeSpaceA', 'SHInvokePrinterCommandW', 'SHGetIconOverlayIndexW', 'SHGetDiskFreeSpaceExW', 'DuplicateIcon', 'SHGetSpecialFolderLocation', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'StrChrA', 'StrRChrIA', 'StrChrW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['CreateThread', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'memset', '_except_handler4_common', '__std_type_info_destroy_list', '_configure_narrow_argv', '_initterm_e', '_initterm', 'system', '_cexit', '_initialize_narrow_environment', '_execute_onexit_table', '_seh_filter_dll', '_initialize_onexit_table'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'CryptDecrypt', 'ShellExecuteW', 'PathIsDirectoryW'], ['InitCommonControlsEx', 'SHAutoComplete', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetNumberFormatW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'Sleep', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'GetTickCount', 'OpenFileMappingW', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateThread', 'GetProcessAffinityMask', 'CreateEventW', 'CreateSemaphoreW', 'ReleaseSemaphore', 'ResetEvent', 'SetEvent', 'SetThreadPriority', 'SystemTimeToFileTime', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CompareStringW', 'SetFileTime', 'SetFileAttributesW', 'GlobalAlloc', 'SetCurrentDirectoryW', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleHandleA', 'LCMapStringW', 'LCMapStringA', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetModuleFileNameA', 'ExitProcess', 'HeapSize', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'InterlockedDecrement', 'GetCurrentThreadId', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'GetStartupInfoA', 'GetFileAttributesW', 'FlushFileBuffers', 'ReadFile', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'GetStdHandle', 'GetLongPathNameW', 'GetShortPathNameW', 'GetCPInfo', 'MoveFileW', 'CreateFileW', 'CreateDirectoryW', 'DeviceIoControl', 'RemoveDirectoryW', 'DeleteFileW', 'CreateHardLinkW', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'CreateFileA', 'IsDBCSLeadByte', 'GetCommandLineA', 'RaiseException', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'RtlUnwind', 'EnableWindow', 'GetDlgItem', 'ShowWindow', 'SetWindowLongW', 'GetDC', 'ReleaseDC', 'FindWindowExW', 'GetParent', 'MapWindowPoints', 'CreateWindowExW', 'UpdateWindow', 'LoadCursorW', 'RegisterClassExW', 'DefWindowProcW', 'DestroyWindow', 'CopyRect', 'IsWindow', 'LoadIconW', 'LoadBitmapW', 'PostMessageW', 'GetSysColor', 'SetForegroundWindow', 'MessageBoxW', 'WaitForInputIdle', 'IsWindowVisible', 'DialogBoxParamW', 'DestroyIcon', 'SetFocus', 'GetClassNameW', 'SendDlgItemMessageW', 'EndDialog', 'GetDlgItemTextW', 'SetDlgItemTextW', 'wvsprintfW', 'SendMessageW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'LoadStringW', 'GetWindowRect', 'GetClientRect', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'GetWindowLongW', 'OemToCharBuffA', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'DeleteDC', 'GetObjectW', 'DeleteObject', 'CreateDIBSection', 'GetSaveFileNameW', 'CommDlgExtendedError', 'GetOpenFileNameW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'SHGetMalloc', 'SHGetSpecialFolderLocation', 'SHGetFileInfoW', 'ShellExecuteExW', 'SHChangeNotify', 'SHFileOperationW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'CLSIDFromString', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'CreateStreamOnHGlobal', 'VariantInit'], ['SetDllDirectoryA', 'GetSystemTimeAsFileTime', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'Sleep', 'LoadLibraryA', 'GetModuleHandleA'], ['ZombifyActCtx', 'GetConsoleAliasesLengthA', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeA', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsSetValue', 'SetComputerNameExA', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'GetModuleHandleA', 'LocalAlloc', 'InitializeCriticalSection', 'TlsGetValue', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringW', 'ExitThread', 'GlobalWire', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'IsDebuggerPresent', 'SetConsoleCursorPosition', 'GetLastError', 'ContinueDebugEvent', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'InterlockedPushEntrySList', 'WritePrivateProfileSectionA', 'DeleteCriticalSection', 'GetPrivateProfileSectionNamesA', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'MoveFileW', 'GetVolumePathNameA', 'TerminateProcess', 'lstrcmpW', 'GetComputerNameW', 'FindActCtxSectionStringA', 'SetThreadContext', 'MoveFileExA', 'GetProcAddress', 'GlobalCompact', 'UnregisterWait', 'WriteConsoleInputA', 'FormatMessageA', 'FatalExit', 'SetCommTimeouts', 'WaitNamedPipeW', 'CreateIoCompletionPort', 'FindResourceExA', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'FreeEnvironmentStringsA', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'SetThreadExecutionState', 'GetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'GetAtomNameW', 'WriteConsoleInputW', 'CreateMailslotA', 'GetCommState', 'SetHandleCount', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'EnumDateFormatsA', 'GlobalDeleteAtom', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetCurrentProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringW', 'InitAtomTable', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterA', 'TerminateJobObject', 'VirtualAlloc', 'GetBinaryTypeW', 'QueryDosDeviceW', 'LeaveCriticalSection', 'HeapSetInformation', 'FileTimeToDosDateTime', 'Sleep', 'EnterCriticalSection', 'RaiseException', 'RtlUnwind', 'MoveFileA', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetModuleHandleW', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'CloseHandle', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'ExitProcess', 'GetStdHandle', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'SetStdHandle', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'LoadLibraryA', 'CreateFileA', 'OemToCharA', 'GetFileSecurityW', 'AlphaBlend'], ['lstrlenW', 'FindNextVolumeMountPointW', 'IsBadStringPtrA', 'GetStringTypeExA', 'GetNamedPipeHandleStateW', 'LCMapStringA', 'GetLargestConsoleWindowSize', 'EnumSystemLocalesA', 'BackupRead', 'GetProcAddress', 'CreateTimerQueueTimer', 'HeapUnlock', 'VirtualProtectEx', 'BuildCommDCBW', 'CreateFileW', 'LoadLibraryA', 'TransmitCommChar', 'GetTapeParameters', 'DebugSetProcessKillOnExit', 'SetConsoleTitleW', 'GetProcessShutdownParameters', 'LoadLibraryExA', 'DebugBreakProcess', 'OpenFileMappingW', 'LocalSize', 'GetCurrentProcessId', 'GetPrivateProfileSectionW', 'AddConsoleAliasA', 'GetAtomNameW', 'GetFileAttributesW', 'Beep', 'SetFileShortNameW', 'GlobalAlloc', 'GetCurrencyFormatW', 'GetDriveTypeA', 'GetCommandLineA', 'FormatMessageA', 'EnumCalendarInfoExW', 'GetTickCount', 'CreateHardLinkA', 'GetUserDefaultLCID', 'GlobalLock', 'WriteTapemark', 'MapViewOfFile', 'FindFirstFileW', 'lstrcmpA', 'GlobalDeleteAtom', 'GetProcessVersion', 'DosDateTimeToFileTime', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'HeapDestroy', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetCurrentThread', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetLocaleInfoW', 'HeapSize', 'FatalAppExitA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'IsValidLocale', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'FreeLibrary', 'LoadLibraryW', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'CloseHandle', 'WriteConsoleW', 'SetFilePointer', 'SetStdHandle', 'CloseEventLog', 'RegLoadKeyW', 'GetServiceDisplayNameA', 'GetLengthSid', 'GetSecurityDescriptorSacl', 'FreeSid', 'AddAccessAllowedAce', 'RegDeleteValueW', 'LookupPrivilegeValueW', 'DeregisterEventSource', 'EqualSid', 'AccessCheckAndAuditAlarmA', 'RegSetValueExA', 'RegRestoreKeyA', 'SetServiceObjectSecurity', 'IsValidAcl', 'LookupPrivilegeNameW', 'OpenServiceA', 'GetCurrentHwProfileA', 'GetSecurityDescriptorDacl'], ['GetModuleHandleW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'LoadLibraryW', 'LeaveCriticalSection', 'lstrcpynW', 'GetModuleFileNameW', 'ReleaseActCtx', 'SetLastError', 'GetLongPathNameA', 'MoveFileW', 'WriteProfileSectionA', 'InitializeSListHead', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'IsWow64Process', 'GetModuleFileNameA', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'VirtualProtect', 'GetShortPathNameW', 'GetFileInformationByHandle', 'SetMailslotInfo', 'SetFileAttributesA', 'FreeLibrary', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetLastError', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'GetProcAddress', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'RaiseException', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'MultiByteToWideChar', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'SetStdHandle', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileW', 'CloseHandle', 'ClearEventLogA'], ['GetModuleHandleA', 'GetLocaleInfoA', 'OpenProcess', 'PostQueuedCompletionStatus', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'Sleep', 'GetLastError', 'Process32NextW', 'GetDiskFreeSpaceExW', 'GetCurrentThread', 'TerminateThread', 'LoadLibraryA', 'lstrcatW', 'CloseHandle', 'GetNativeSystemInfo', 'GetSystemInfo', 'CreateThread', 'SetVolumeMountPointW', 'GetWindowsDirectoryW', 'GetProcAddress', 'SetFilePointerEx', 'LocalFree', 'DeleteCriticalSection', 'ExitProcess', 'GetCurrentProcessId', 'GetModuleHandleW', 'CopyFileW', 'WideCharToMultiByte', 'GetVolumePathNamesForVolumeNameW', 'lstrcpyW', 'SleepEx', 'GetDiskFreeSpaceExA', 'FindNextVolumeW', 'lstrcmpiW', 'GetCurrentThreadId', 'GetTickCount', 'lstrcmpW', 'MoveFileW', 'GetDriveTypeW', 'GetComputerNameA', 'QueryDosDeviceW', 'DuplicateHandle', 'CreateEventW', 'SetEvent', 'FindVolumeClose', 'GetFileType', 'WriteConsoleW', 'SetEndOfFile', 'ReadConsoleW', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'GetFileAttributesW', 'CreateFileW', 'WaitForSingleObject', 'FindClose', 'lstrlenA', 'GetQueuedCompletionStatus', 'SetErrorMode', 'InitializeCriticalSection', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'GetModuleFileNameW', 'GetUserDefaultLangID', 'TerminateProcess', 'WriteFile', 'GetCurrentProcess', 'FindNextFileW', 'lstrlenW', 'GetCommandLineW', 'EnterCriticalSection', 'FindFirstVolumeW', 'FindFirstFileExW', 'GetFileSizeEx', 'GetLogicalDrives', 'ReadFile', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'QueryPerformanceCounter', 'CreateIoCompletionPort', 'LCMapStringW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'GetStdHandle', 'GetModuleHandleExW', 'LoadLibraryExW', 'FreeLibrary', 'TlsFree', 'TlsSetValue', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'ResetEvent', 'WaitForSingleObjectEx', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'DecodePointer', 'CreateWindowExW', 'GetCursorPos', 'DefWindowProcW', 'RegisterClassW', 'CloseServiceHandle', 'OpenThreadToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CreateServiceW', 'RegCloseKey', 'CryptAcquireContextW', 'RegQueryValueExA', 'CryptGenRandom', 'OpenSCManagerW', 'AllocateAndInitializeSid', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'RegSetValueExW', 'OpenProcessToken', 'FreeSid', 'StartServiceW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'CryptReleaseContext', 'CommandLineToArgvW', 'ShellExecuteW', 'ShellExecuteA', 'NetShareEnum', 'NetApiBufferFree', 'wnsprintfA', 'StrCmpNIW', 'StrCmpNW', 'StrDupW', 'StrStrIW', 'UrlUnescapeA', 'UrlEscapeA', 'SHDeleteKeyW', 'wnsprintfW', 'GetIpNetTable', 'inet_ntoa', 'InternetCrackUrlW', 'InternetQueryOptionW', 'InternetCloseHandle', 'InternetConnectW', 'InternetSetOptionW', 'InternetOpenW', 'InternetQueryDataAvailable', 'HttpOpenRequestW', 'InternetReadFile', 'HttpSendRequestW'], ['gethostname', 'connect', 'WSACleanup', '__WSAFDIsSet', 'accept', 'send', 'ntohs', 'recv', 'WSAPoll', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'bind', 'WSAIoctl', 'WSASend', 'shutdown', 'listen', 'WSASocketW', 'getsockname', 'socket', 'WSARecv', 'ioctlsocket', 'FreeAddrInfoW', 'GetAddrInfoW', 'htonl', 'closesocket', 'getsockopt', 'setsockopt', 'WSAGetLastError', 'htons', 'GetAdaptersAddresses', 'ExitThread', 'SetFileAttributesW', 'GetFileAttributesExW', 'GetConsoleCP', 'SetStdHandle', 'GetCommandLineW', 'GetModuleHandleExW', 'RtlUnwind', 'ExitProcess', 'HeapFree', 'GetCommandLineA', 'HeapAlloc', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'OutputDebugStringA', 'CreateMutexA', 'ReleaseMutex', 'GetLastError', 'CloseHandle', 'FreeConsole', 'GetConsoleWindow', 'MultiByteToWideChar', 'SetThreadAffinityMask', 'SetPriorityClass', 'GetCurrentProcess', 'SetThreadPriority', 'GetCurrentThread', 'GetProcAddress', 'GetModuleHandleW', 'VirtualFree', 'VirtualAlloc', 'LocalAlloc', 'LocalFree', 'SetErrorMode', 'PostQueuedCompletionStatus', 'GetQueuedCompletionStatusEx', 'CreateIoCompletionPort', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'QueueUserWorkItem', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'WideCharToMultiByte', 'SetConsoleCursorPosition', 'GetLongPathNameW', 'GetShortPathNameW', 'GetFileAttributesW', 'GetCurrentDirectoryW', 'ReadDirectoryChangesW', 'VerifyVersionInfoA', 'EnterCriticalSection', 'GetModuleFileNameW', 'SetEnvironmentVariableW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'QueryPerformanceFrequency', 'GetSystemInfo', 'VerSetConditionMask', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'SetConsoleCtrlHandler', 'Sleep', 'GetFileType', 'CreateDirectoryW', 'ReadFile', 'SetLastError', 'WriteFile', 'DeviceIoControl', 'RemoveDirectoryW', 'GetFinalPathNameByHandleW', 'SetFileTime', 'ReOpenFile', 'CreateHardLinkW', 'GetFileInformationByHandle', 'SetFilePointerEx', 'MoveFileExW', 'CopyFileW', 'CreateSymbolicLinkW', 'FlushFileBuffers', 'SleepConditionVariableCS', 'TlsSetValue', 'ReleaseSemaphore', 'WakeConditionVariable', 'InitializeConditionVariable', 'WaitForSingleObject', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'DeleteCriticalSection', 'CreateSemaphoreW', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'CreateEventA', 'CancelIo', 'SetHandleInformation', 'SetFileCompletionNotificationModes', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'CancelSynchronousIo', 'GetNamedPipeHandleStateA', 'CancelIoEx', 'SwitchToThread', 'ConnectNamedPipe', 'FormatMessageA', 'DebugBreak', 'GetModuleHandleA', 'LoadLibraryA', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'GetStartupInfoW', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentThreadId', 'GetTickCount64', 'RaiseException', 'LoadLibraryExW', 'FreeLibraryAndExitThread', 'FreeLibrary', 'GetThreadTimes', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapReAlloc', 'GetTimeZoneInformation', 'HeapSize', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetEndOfFile', 'CreateEventW', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateThread', 'TranslateMessage', 'ShowWindow', 'DispatchMessageA', 'MapVirtualKeyW', 'GetMessageA', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation'], ['AddAtomA', 'CreateDirectoryA', 'CreateProcessA', 'CreateSemaphoreA', 'DeleteFileA', 'ExitProcess', 'FindAtomA', 'GetAtomNameA', 'GetCommandLineA', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetStartupInfoA', 'InterlockedDecrement', 'InterlockedIncrement', 'ReleaseSemaphore', 'SetFileAttributesA', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'WaitForSingleObject', '_fdopen', '_read', '_strdup', '_write', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_assert', '_cexit', '_ctype', '_errno', '_fstati64', '_iob', '_isctype', '_lseeki64', '_onexit', '_pctype', '_setmode', '_strnicmp', '_vsnprintf', 'abort', 'atexit', 'fclose', 'fflush', 'fopen', 'fprintf', 'free', 'localeconv', 'malloc', 'memchr', 'memcpy', 'memmove', 'memset', 'rand', 'setlocale', 'setvbuf', 'signal', 'srand', 'strcat', 'strcmp', 'strcoll', 'strcpy', 'strftime', 'strlen', 'strtod', 'strxfrm', 'time', 'SHGetFolderPathA', 'ShellExecuteA', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameA', '_configthreadlocale', 'free', 'exit', 'memset', '_lock_file', 'ImageList_Draw', 'SHGetDiskFreeSpaceExW', '__setusermatherr', 'fputc', '??1_Lockit@std@@QAE@XZ', '_time64', 'accept', 'rand'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameW', 'memset', 'rand', 'exit', '_configthreadlocale', '__setusermatherr', '??1_Lockit@std@@QAE@XZ', 'SHGetIconOverlayIndexA', '_time64', '_lock_file', 'ImageList_Create', 'free', 'accept', 'fputc'], ['GetModuleHandleA', 'ValidateRect', 'RegisterEventSourceA', 'SHGetDiskFreeSpaceA', '_CorExeMain', 'CreateStatusWindowA'], ['Sleep', 'GetSystemDirectoryA', 'GetModuleFileNameA', 'VirtualProtect', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'HeapSize', 'MultiByteToWideChar', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW'], ['InitCommonControlsEx', 'SHAutoComplete', 'DeleteFileW', 'DeleteFileA', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetFullPathNameA', 'GetFullPathNameW', 'MultiByteToWideChar', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetTickCount', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetCurrentProcessId', 'SetFileAttributesW', 'GetNumberFormatW', 'DosDateTimeToFileTime', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'SetEnvironmentVariableW', 'OpenFileMappingW', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemTime', 'WideCharToMultiByte', 'CompareStringW', 'IsDBCSLeadByte', 'GetCPInfo', 'GlobalAlloc', 'SetCurrentDirectoryW', 'SetFileAttributesA', 'GetFileAttributesW', 'GetFileAttributesA', 'WriteFile', 'GetStdHandle', 'ReadFile', 'GetCurrentDirectoryW', 'CreateFileW', 'CreateFileA', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'FlushFileBuffers', 'MoveFileW', 'SetFileTime', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'GetLocaleInfoW', 'GetClassNameW', 'DialogBoxParamW', 'IsWindowVisible', 'WaitForInputIdle', 'SetForegroundWindow', 'GetSysColor', 'PostMessageW', 'LoadBitmapW', 'LoadIconW', 'CharToOemA', 'OemToCharA', 'IsWindow', 'CopyRect', 'DestroyWindow', 'DefWindowProcW', 'RegisterClassExW', 'LoadCursorW', 'UpdateWindow', 'CreateWindowExW', 'MapWindowPoints', 'GetParent', 'GetDlgItemTextW', 'TranslateMessage', 'DispatchMessageW', 'wvsprintfW', 'wvsprintfA', 'CharUpperA', 'CharToOemBuffA', 'LoadStringW', 'GetWindowRect', 'GetClientRect', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'GetWindowLongW', 'CharUpperW', 'CharToOemBuffW', 'MessageBoxW', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'OemToCharBuffA', 'SendDlgItemMessageW', 'DestroyIcon', 'EndDialog', 'SetFocus', 'SetDlgItemTextW', 'SendMessageW', 'GetDC', 'ReleaseDC', 'PeekMessageW', 'FindWindowExW', 'GetMessageW', 'SetWindowLongW', 'GetDeviceCaps', 'GetObjectW', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'GetOpenFileNameW', 'CommDlgExtendedError', 'GetSaveFileNameW', 'RegOpenKeyExW', 'LookupPrivilegeValueW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'SetFileSecurityA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'SHChangeNotify', 'ShellExecuteExW', 'SHFileOperationW', 'SHGetFileInfoW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'CLSIDFromString', 'CreateStreamOnHGlobal', 'OleUninitialize', 'CoCreateInstance', 'OleInitialize', 'VariantInit'], ['Sleep', 'GetProcAddress', 'LoadLibraryA', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'GetVersion', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'GetLastError', 'SetUnhandledExceptionFilter', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'TerminateProcess', 'GetCurrentProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'WriteFile', 'IsBadReadPtr', 'IsBadCodePtr', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'InterlockedDecrement', 'InterlockedIncrement', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW'], ['DnsQuery_A', 'DnsFree', 'ApplyControlToken', 'InitializeSecurityContextA', 'DecryptMessage', 'EncryptMessage', 'AcquireCredentialsHandleW', 'FreeContextBuffer', 'QueryContextAttributesW', 'DeleteSecurityContext', 'FreeCredentialsHandle', 'InitializeSecurityContextW', 'SHGetFileInfoA', 'ShellExecuteA', 'SHGetSpecialFolderPathW', 'InternetQueryDataAvailable', 'HttpQueryInfoA', 'InternetOpenUrlA', 'InternetOpenA', 'HttpQueryInfoW', 'InternetQueryOptionW', 'InternetCloseHandle', 'InternetReadFile', 'PathAppendW', 'StrStrIA', 'PathAppendA', 'PathFindExtensionA', 'closesocket', 'connect', 'htons', 'send', 'WSAStartup', 'WSACleanup', 'inet_addr', 'inet_ntoa', 'WSAGetLastError', 'recv', 'setsockopt', 'ioctlsocket', 'select', 'ntohs', 'gethostbyname', 'sendto', 'getpeername', 'socket', 'strncat', 'isalnum', 'vsprintf', 'strrchr', 'toupper', 'strncmp', 'memmove', 'isxdigit', '_strnicmp', '??2@YAPAXI@Z', '_snwprintf', 'strchr', 'strtok', '_stricmp', '_vsnprintf', '_wcsnicmp', '_memicmp', 'strncpy', 'sprintf', '_snprintf', 'printf', '_strcmpi', 'sscanf', 'atoi', '??3@YAXPAX@Z', 'wcsrchr', 'strstr', 'wcsstr', 'memset', 'GetWindowsDirectoryA', 'GetModuleFileNameA', 'OpenMutexA', 'GetLogicalDriveStringsA', 'CreateDirectoryA', 'GetFileSize', 'LockFile', 'SetCurrentDirectoryA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'CopyFileW', 'FlushFileBuffers', 'GetLocaleInfoA', 'GetVolumeInformationW', 'lstrcatA', 'ExitProcess', 'CreateProcessW', 'VirtualAlloc', 'DeviceIoControl', 'SetFilePointer', 'lstrcpynA', 'LocalAlloc', 'LocalFree', 'lstrcpyW', 'SetFileAttributesA', 'DeleteFileA', 'lstrcpynW', 'lstrcatW', 'GetTempFileNameW', 'DeleteFileW', 'GetWindowsDirectoryW', 'CreateThread', 'InterlockedCompareExchange', 'GetModuleFileNameW', 'GetVersionExA', 'CreateMutexA', 'UnmapViewOfFile', 'InterlockedIncrement', 'CreateFileMappingA', 'OpenFileMappingA', 'MapViewOfFile', 'ReleaseMutex', 'WaitForSingleObject', 'OpenProcess', 'CreateRemoteThread', 'IsWow64Process', 'VirtualAllocEx', 'VirtualFreeEx', 'CreateFileA', 'WaitForMultipleObjects', 'GetOverlappedResult', 'DisconnectNamedPipe', 'lstrcpyA', 'MoveFileExA', 'lstrcmpA', 'WideCharToMultiByte', 'MoveFileExW', 'lstrcmpW', 'ExitThread', 'MultiByteToWideChar', 'GetFileAttributesA', 'SetFileAttributesW', 'GetFileAttributesW', 'LoadLibraryW', 'CloseHandle', 'SetFileTime', 'CreateFileW', 'GetFileTime', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetModuleHandleW', 'GetLastError', 'ReadFile', 'GetTickCount', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'lstrlenA', 'Sleep', 'WriteProcessMemory', 'ReadProcessMemory', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'SetEvent', 'ConnectNamedPipe', 'CreateNamedPipeA', 'CreateEventA', 'RegisterClassExA', 'CreateWindowExA', 'RegisterDeviceNotificationA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DefWindowProcA', 'wsprintfW', 'wvsprintfA', 'MessageBoxA', 'RegSetValueExW', 'CryptDestroyHash', 'CryptHashData', 'RegOpenKeyExA', 'RegSetValueExA', 'RegNotifyChangeKeyValue', 'RegCreateKeyExW', 'CryptGetHashParam', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptReleaseContext', 'CoInitialize', 'CoCreateInstance'], ['GetCurrentHwProfileA', 'CryptUnprotectData', 'AddVectoredExceptionHandler', 'AreFileApisANSI', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateFileMappingW', 'CreateFileW', 'CreateMutexW', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DeleteFileA', 'DeleteFileW', 'DuplicateHandle', 'EnterCriticalSection', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FormatMessageW', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDiskFreeSpaceA', 'GetDiskFreeSpaceW', 'GetFileAttributesA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFullPathNameA', 'GetFullPathNameW', 'GetHandleInformation', 'GetLastError', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathA', 'GetTempPathW', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'GetVersionExA', 'GetVersionExW', 'HeapAlloc', 'HeapCompact', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LocalFree', 'LockFile', 'LockFileEx', 'MapViewOfFile', 'MultiByteToWideChar', 'OutputDebugStringA', 'OutputDebugStringW', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEndOfFile', 'SetEvent', 'SetFilePointer', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnlockFileEx', 'UnmapViewOfFile', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'WriteFile', '__C_specific_handler', '__iob_func', '_access', '_amsg_exit', '_beginthreadex', '_endthreadex', '_initterm', '_localtime64', '_lock', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strcspn', 'strlen', 'strncmp', 'strrchr', 'strtoul', 'system', 'vfprintf', 'SHGetFolderPathA', 'WSACleanup', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['memcpy', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'CharUpperBuffW', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['GetProcAddress', 'lstrlenA', 'LocalAlloc', 'LoadLibraryA', 'CoInitialize'], ['FindFirstVolumeA', 'SetConsoleCursorInfo', 'HeapLock', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesW', 'EnumResourceNamesA', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'TlsGetValue', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'ReleaseActCtx', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedIncrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'GetNumaProcessorNode', 'TryEnterCriticalSection', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExA', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'LockFile', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'FindAtomW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'InterlockedPushEntrySList', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedDecrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'CreateFileA', 'OemToCharW', 'SetKernelObjectSecurity', 'WinHttpReadData'], ['SetupUninstallNewlyCopiedInfs', 'CM_Get_Device_Interface_List_ExW', 'CM_Get_Res_Des_Data_Ex', 'SCardForgetCardTypeW', 'BuildExplicitAccessWithNameW', 'GetForegroundWindow', 'GdiComment', 'GetFileInformationByHandle', 'AssignProcessToJobObject', 'GetProcAddress', 'GetModuleHandleA'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'GetFileAttributesExW', 'FreeLibrary', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'GetCommandLineA', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'TlsAlloc', 'GetProcessAffinityMask', 'SetLocaleInfoA', 'SetFileTime', 'CompareFileTime', 'SearchPathW', 'GetShortPathNameW', 'GetFullPathNameW', 'MoveFileW', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTickCount', 'GetFileSize', 'CopyFileW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'lstrcpynA', 'lstrcpynW', 'GetDiskFreeSpaceW', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessW', 'lstrcmpiA', 'GetTempFileNameW', 'lstrcatW', 'LoadLibraryA', 'GetModuleHandleA', 'OpenProcess', 'lstrcpyW', 'GetVersionExW', 'GetSystemDirectoryW', 'GetVersion', 'lstrcpyA', 'RemoveDirectoryW', 'lstrcmpA', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GlobalFree', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MulDiv', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW', 'lstrlenW', 'LoadIconW', 'MessageBoxW', 'wsprintfW', 'SetClassWord', 'EnableScrollBar', 'LoadCursorA', 'DrawTextA', 'ToUnicode', 'SendDlgItemMessageW', 'GetMessageTime', 'SetWinEventHook', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'ScreenToClient', 'GetMessagePos', 'CallWindowProcW', 'IsWindowVisible', 'LoadBitmapW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'GetWindowRect', 'AppendMenuW', 'CreatePopupMenu', 'GetSystemMetrics', 'EndDialog', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'SetWindowPos', 'DialogBoxParamW', 'CheckDlgButton', 'CreateWindowExW', 'SystemParametersInfoW', 'RegisterClassW', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharNextA', 'CharUpperW', 'CharPrevW', 'wvsprintfW', 'DispatchMessageW', 'PeekMessageW', 'wsprintfA', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'SendMessageTimeoutW', 'LoadCursorW', 'SetCursor', 'GetWindowLongW', 'GetSysColor', 'CharNextW', 'GetClassInfoW', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'EndPaint', 'FindWindowExW', 'GetStockObject', 'GetStringBitmapA', 'SetBoundsRect', 'FONTOBJ_vGetInfo', 'GetETM', 'FONTOBJ_pfdg', 'GdiEntry4', 'FONTOBJ_pifi', 'SetMetaFileBitsEx', 'AnimatePalette', 'ResetDCA', 'CLIPOBJ_cEnumStart', 'SetBkColor', 'GdiConvertRegion', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectW', 'SetBkMode', 'SetTextColor', 'SelectObject', 'GetUserNameW', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegEnumKeyW', 'RegCloseKey', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumValueW', 'SHGetFolderPathW', 'SHGetDiskFreeSpaceA', 'Shell_NotifyIconW', 'SHCreateProcessAsUserW', 'ShellExecuteEx', 'SHFormatDrive', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'SHGetSpecialFolderLocation', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'PathAppendW', 'PathRemoveFileSpecW', 'StrCmpNA', 'StrStrIA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create'], ['SetFilePointerEx', 'CloseHandle', 'lstrlenW', 'CreateFileW', 'HeapCreate', 'GetCurrentProcess', 'ExitProcess', 'CreateThread', 'GetCurrentThread', 'SetThreadPriority', 'WaitForMultipleObjects', 'Sleep', 'GetLogicalDrives', 'SetFilePointer', 'FindClose', 'lstrcmpiA', 'lstrcmpiW', 'lstrcpyA', 'ReadFile', 'lstrcatW', 'GetModuleFileNameW', 'CreateProcessW', 'GetEnvironmentVariableW', 'GetDriveTypeA', 'GetTempPathW', 'GetTempFileNameW', 'SetFileAttributesW', 'GetFileAttributesW', 'FindFirstFileW', 'FindNextFileW', 'CopyFileW', 'MoveFileExW', 'SetPriorityClass', 'MultiByteToWideChar', 'WideCharToMultiByte', 'CompareStringA', 'WriteFile', 'GetFileSizeEx', 'GetLastError', 'lstrlenA', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'lstrcpyW', 'HeapAlloc', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegCloseKey', 'CryptGenRandom', 'CryptReleaseContext', 'CryptAcquireContextW', 'RegSetValueExW', 'SHChangeNotify', 'ShellExecuteExW', 'PathFindFileNameW', 'PathRemoveFileSpecW', 'PathAddBackslashW', '_aulldiv', '_alldiv', '_allrem', '_chkstk', 'RtlUnwind', 'NtQueryVirtualMemory'], ['FreeLibrary', 'GetCurrentProcess', 'SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'SetComputerNameW', 'GetModuleHandleW', 'GlobalAlloc', 'GetSystemDirectoryW', 'LoadLibraryW', 'CreateEventA', 'GetProcessHandleCount', 'SetConsoleMode', 'GetBinaryTypeA', 'GetModuleFileNameW', 'lstrcmpW', 'FindResourceW', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'GetDiskFreeSpaceW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'TransmitCommChar', 'OpenJobObjectW', 'EnumCalendarInfoExA', 'SetFileAttributesW', 'CommConfigDialogA', 'InterlockedExchange', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateLoggedOnUser'], ['GetConsoleWindow', 'WriteConsoleW', 'CreateFileW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'CloseHandle', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'GetFileAttributesExW', 'HeapAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer', 'ShowWindow'], ['CreateDirectoryA', 'IsWow64Process', 'lstrcatA', 'GetModuleHandleA', 'lstrcpyA', 'WinExec', 'lstrlenA', 'HeapAlloc', 'GetProcAddress', 'lstrcpynA', 'GetProcessHeap', 'WriteConsoleW', 'LocalFree', 'GetWindowsDirectoryA', 'CloseHandle', 'DeleteFileA', 'LoadLibraryA', 'GetFileAttributesA', 'GetLastError', 'CopyFileA', 'Sleep', 'LocalAlloc', 'GetVolumeInformationA', 'GetCurrentProcess', 'HeapFree', 'GetModuleFileNameA', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'ReadConsoleW', 'ReadFile', 'FlushFileBuffers', 'CreateFileW', 'GetStringTypeW', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'MultiByteToWideChar', 'LCMapStringW', 'MoveFileExW', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'CreateServiceA', 'RegCloseKey', 'StartServiceCtrlDispatcherA', 'GetCurrentHwProfileA', 'CloseServiceHandle', 'RegQueryValueExA', 'SetServiceStatus', 'RegisterServiceCtrlHandlerA', 'OpenSCManagerA', 'GetUserNameA', 'StartServiceA', 'RegOpenKeyExA', 'OpenServiceA', 'SHGetSpecialFolderPathA', 'SHGetFolderPathA', 'ShellExecuteA', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiEnumDeviceInfo'], ['WriteFile', 'GetProcessTimes', 'LoadLibraryW', 'GetStringTypeExW', 'FileTimeToSystemTime', 'IsBadStringPtrA', 'GetNamedPipeHandleStateW', 'GetLastError', 'GetTickCount', 'GlobalFree', 'GetPrivateProfileStringA', 'GetAtomNameA', 'WriteConsoleA', 'GetProcessId', 'LocalAlloc', 'GetCurrentConsoleFont', 'SetConsoleTitleW', 'OpenFileMappingW', 'VirtualProtect', 'EnumSystemLocalesW', 'BackupSeek', 'GetCurrentProcess', 'LoadResource', 'DebugActiveProcessStop', 'lstrlenA', 'lstrcmpA', 'CreateFileA', 'BuildCommDCBW', 'GetCommandLineW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCommandLineA', 'GetStartupInfoA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'SetStdHandle', 'GetConsoleOutputCP', 'MultiByteToWideChar', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetModuleHandleA', 'CloseHandle'], ['FreeLibrary', 'GetProcAddress', 'GetLastError', 'LoadLibraryExW', 'CreateFileA', 'SetEndOfFile', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetFileAttributesW', 'ExpandEnvironmentStringsW', 'MultiByteToWideChar', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetFullPathNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetFullPathNameA', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'CloseHandle', 'RaiseException', 'GetDriveTypeA', 'ReadFile', 'SetFilePointer', 'SetStdHandle', 'LoadLibraryA', 'InitializeCriticalSection', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetCurrentDirectoryA', 'FlushFileBuffers', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'CreateFileW', 'HeapSize', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableW', 'MessageBoxW', 'RegQueryValueExW', 'RegCloseKey', 'RegEnumKeyExW', 'RegOpenKeyExW'], ['SetDllDirectoryA', 'SetWindowLongW', 'CryptGenRandom', 'HttpOpenRequestA', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'VirtualAllocExNuma', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'RegDeleteKeyExW', 'socket', 'inet_addr', 'WSAStartup', 'recv', 'gethostbyname', 'send', 'connect', 'gethostbyaddr', 'closesocket', 'htons', 'WSACleanup', '?_Xlength_error@std@@YAXPBD@Z', 'memcpy', 'memmove', '__CxxFrameHandler3', 'strstr', '__std_exception_copy', '__std_exception_destroy', '_CxxThrowException', 'memset', '_except_handler4_common', '__p__commode', '__stdio_common_vsprintf', '_set_fmode', '_seh_filter_exe', '_exit', 'exit', '_initialize_onexit_table', '_invalid_parameter_noinfo_noreturn', '_crt_atexit', '_controlfp_s', 'terminate', '_set_app_type', '_register_thread_local_exe_atexit_callback', '_c_exit', '_register_onexit_function', '_cexit', '_initterm_e', '_initterm', '_get_wide_winmain_command_line', '_initialize_wide_environment', '_configure_wide_argv', '_callnewh', 'malloc', 'realloc', 'free', '_set_new_mode', 'strncpy', '__setusermatherr', '_configthreadlocale'], ['lstrlenA', 'lstrcmpiA', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['MessageBoxW', 'GetSystemMetrics', 'GetSysColorBrush', 'FindWindowA', 'GetProcAddress', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetLastError', 'GetCurrentProcessId', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'SetEnvironmentVariableW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'WriteConsoleW', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['SetCaretBlinkTime', 'TerminateProcess', 'CreateFileW', 'GetModuleHandleA', 'DisableThreadLibraryCalls', 'FreeConsole', 'MultiByteToWideChar', 'GetStringTypeW', 'WideCharToMultiByte', 'GetCurrentThreadId', 'CloseHandle', 'WaitForSingleObjectEx', 'GetExitCodeThread', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'WriteConsoleW', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'HeapSize', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'ReadConsoleW'], ['ObRegisterCallbacks', 'IoAllocateMdl', 'MmProbeAndLockPages', 'MmMapLockedPagesSpecifyCache', 'MmUnlockPages', 'IoFreeMdl', 'ExAllocatePool', 'ExFreePool', 'NtQuerySystemInformation', 'HalMakeBeep'], ['GetCurrentProcess', 'VirtualAlloc', 'VirtualFree', 'FreeLibrary', 'Sleep', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryA', 'FreeConsole', 'CreateFileW', 'QueryPerformanceFrequency', 'GetModuleHandleA', 'QueryPerformanceCounter', 'FormatMessageA', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'LocalFree', 'GetLocaleInfoEx', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'RaiseException', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'ExitProcess', 'GetModuleHandleExW', 'HeapValidate', 'GetSystemInfo', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'GetTimeZoneInformation', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'SetEndOfFile', 'RegCloseKey', 'RegOpenKeyExA'], ['InterlockedIncrement', 'SystemTimeToFileTime', 'SetMailslotInfo', 'GetFileAttributesExA', 'MoveFileWithProgressA', 'GetModuleHandleW', 'GetTickCount', 'GetCurrentThread', 'SetFileShortNameW', 'ReadConsoleInputA', 'CreateEventA', 'GetBinaryTypeA', 'GetGeoInfoA', 'GetMailslotInfo', 'GetSystemDirectoryA', 'CreateActCtxA', 'GetACP', 'GetStartupInfoA', 'GetLastError', 'SetLastError', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'VirtualAlloc', 'DisableThreadLibraryCalls', 'LoadLibraryA', 'DeleteVolumeMountPointA', 'UnhandledExceptionFilter', 'GetProcessWorkingSetSize', 'LocalAlloc', 'IsSystemResumeAutomatic', 'GetNumberFormatW', 'RemoveDirectoryW', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'HeapSetInformation', 'GetConsoleTitleW', 'GetVersionExA', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'GetTempPathA', 'CopyFileExA', 'InitializeCriticalSectionAndSpinCount', 'HeapSize', 'HeapReAlloc', 'MapUserPhysicalPages', 'FillConsoleOutputCharacterA', 'GetNumaProcessorNode', 'MultiByteToWideChar', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'GetCPInfo', 'InterlockedDecrement', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapAlloc', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetLocaleInfoA', 'GetKeyNameTextW', 'IsChild', 'RealGetWindowClassA', 'LoadMenuA', 'CharUpperA', 'CharLowerBuffW', 'GetCursorInfo', 'CharLowerBuffA', 'ClipCursor', 'LogonUserW', 'ReportEventA', 'IsValidAcl', 'CoRevokeMallocSpy'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'inet_ntoa', 'GetOpenFileNameA', 'StgCreateDocfile', 'CreateTextFilter', 'lua_typename', '?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV12@II@Z', '_localtime32', 'EDOneTimePad_Decipher', 'ImmAssociateContext', 'timeGetTime'], ['SizeofResource', 'WriteFile', 'CreateFileW', 'LockResource', 'CloseHandle', 'LoadResource', 'FindResourceW', 'CreateProcessW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetModuleHandleW', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '_Thrd_join', '_Thrd_id', '_Cnd_do_broadcast_at_thread_exit', '?_Xlength_error@std@@YAXPBD@Z', '?uncaught_exception@std@@YA_NXZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?_Throw_Cpp_error@std@@YAXH@Z', '_except_handler4_common', '_CxxThrowException', '__current_exception_context', '__current_exception', 'memset', '__std_terminate', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', '__p___argc', '_beginthreadex', '_exit', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_c_exit', '_controlfp_s', 'terminate', '__p___argv', '_register_thread_local_exe_atexit_callback', '_invalid_parameter_noinfo_noreturn', '_cexit', 'exit', '_initterm_e', '_initterm', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '_set_app_type', '_seh_filter_exe', '_callnewh', 'free', 'malloc', '_set_new_mode', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale'], ['InterlockedCompareExchange', 'OpenWaitableTimerW', 'CreateEventA', 'ReadConsoleInputA', 'WaitNamedPipeW', 'FindVolumeMountPointClose', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesW', 'GetModuleFileNameW', 'IsBadCodePtr', 'DeleteFileA', 'SearchPathW', 'VirtualAlloc', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasA', 'GetShortPathNameW', 'GetPrivateProfileStringA', 'PeekConsoleInputA', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDefaultLangID', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameW', 'lstrcpynA', 'AddAtomW', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameW', 'FoldStringW', 'ResetEvent', 'GlobalWire', 'GetComputerNameW', 'GetVersionExA', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'SetFileShortNameA', 'GetFileSize', 'GetFileAttributesExW', 'SetComputerNameA', 'GetFileAttributesA', 'ReadConsoleW', 'FindFirstChangeNotificationA', 'GetVolumePathNameA', 'GlobalGetAtomNameA', 'LoadLibraryA', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'HeapSize', 'FlushFileBuffers', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap', 'ClearEventLogA', 'CoRevokeMallocSpy'], ['ExitProcess', 'GetCommandLineW', 'GetFileSize', 'CreateProcessW', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'GetProcessHeap', 'WriteFile', 'GetSystemDirectoryW', 'ReadFile', 'GetModuleFileNameW', 'CreateFileW', 'lstrcatW', 'CloseHandle', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'wsprintfW', 'CommandLineToArgvW', 'wcsstr', 'memcpy', 'free', 'malloc'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationW', 'SetPriorityClass', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointA', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'GetTimeZoneInformation', 'GetSystemDirectoryA', 'GetDriveTypeW', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'CreateWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'WaitForDebugEvent', 'EndUpdateResourceW', 'GetLastError', 'GetSystemTime', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'TerminateThread', 'GetACP', 'FindAtomA', 'HeapUnlock', 'EnterCriticalSection', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'GetOverlappedResult', 'CreateNamedPipeA', 'InterlockedDecrement', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'GetStringTypeW', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileA', 'GetCommMask', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotA', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeW', 'GetConsoleAliasExesLengthW', 'CopyFileExA', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileA', 'GetDateFormatA', 'GetMailslotInfo', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'ImpersonateSelf'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'Beep', 'Sleep', 'TerminateProcess', 'GetSystemInfo', 'VirtualProtectFromApp', 'GetSystemMetrics', 'GetConsoleWindow', 'ShowWindow', '_CxxThrowException', '_exit', '__stdio_common_vfprintf', '__setusermatherr', '_configthreadlocale', '_callnewh', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'VariantChangeTypeEx', 'RaiseException'], ['GetTickCount', 'GetModuleFileNameW', 'GetLastError', 'Sleep', 'lstrcpyW', 'DisableThreadLibraryCalls', 'free', 'malloc', 'memset', 'strstr', 'wcsstr', 'memcpy', 'fclose', 'fwrite', 'fseek', '_wfopen', 'strcmp', '_initterm', '_adjust_fdiv'], ['MessageBoxW', 'MessageBoxA', 'GetLastError', 'SetDllDirectoryW', 'GetModuleFileNameW', 'GetProcAddress', 'GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'DecodePointer', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'LoadLibraryExW', 'CreateDirectoryW', 'GetShortPathNameW', 'FormatMessageW', 'LoadLibraryA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'WaitForSingleObject', 'CloseHandle', 'SetEndOfFile', 'HeapReAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetCommandLineA', 'ReadFile', 'CreateFileW', 'GetDriveTypeW', 'GetFileType', 'RaiseException', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'GetFullPathNameA', 'RemoveDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'SetStdHandle', 'SetConsoleCtrlHandler', 'DeleteFileW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleCP', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'SetEnvironmentVariableA', 'GetFileAttributesExW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetProcessHeap', 'WriteConsoleW', 'GetTimeZoneInformation', 'HeapSize', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ntohl'], ['CertCreateCertificateContext', 'CertDeleteCertificateFromStore', 'CertOpenSystemStoreA', 'CryptMsgClose', 'CertFreeCertificateContext', 'CertAddCertificateContextToStore', 'CryptQueryObject', 'CertCloseStore', 'CryptMsgGetParam', 'ReadFile', 'GetModuleFileNameW', 'SetFilePointer', 'LocalAlloc', 'CreateFileW', 'Sleep', 'LoadLibraryA', 'CloseHandle', 'GetProcAddress', 'LocalFree', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'DecodePointer'], ['SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'SetCommConfig', 'SwitchToFiber', 'Sleep', 'GetCalendarInfoW', 'IsBadCodePtr', 'GetStringTypeExW', 'DnsHostnameToComputerNameW', 'GetMailslotInfo', 'InterlockedExchange', 'GetProcAddress', 'VirtualAlloc', 'SetFileAttributesA', 'GetAtomNameA', 'LoadLibraryA', 'UnhandledExceptionFilter', 'LocalAlloc', 'FoldStringW', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'SetConsoleTitleW', 'UpdateResourceW', 'GetVersionExA', 'LCMapStringW', 'DeleteFileA', 'GetLocaleInfoA', 'SetStdHandle', 'GetComputerNameA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'MultiByteToWideChar', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetFilePointer', 'CloseHandle', 'WriteFile', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleA', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpCheckPlatform'], ['GetModuleHandleW', 'GlobalFree', 'GlobalSize', 'lstrcpynW', 'lstrcpyW', 'GetProcAddress', 'WideCharToMultiByte', 'VirtualFree', 'FreeLibrary', 'lstrlenW', 'LoadLibraryW', 'GlobalAlloc', 'MultiByteToWideChar', 'VirtualAlloc', 'VirtualProtect', 'GetLastError', 'wsprintfW', 'StringFromGUID2', 'CLSIDFromString'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetStringTypeW', 'GetSystemTime', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'EnterCriticalSection', 'GetACP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'MoveFileA', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'MoveFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotW', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'TerminateThread', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ImpersonateSelf'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetModuleHandleA', 'GetProcAddress', 'ShellExecuteW', 'VerQueryValueW', 'CharNextW', 'VariantCopy', 'NetWkstaGetInfo', 'RegLoadKeyW'], ['GetUserNameA', 'AddAtomA', 'CloseHandle', 'CreateDirectoryA', 'CreateFileA', 'CreateProcessA', 'ExitProcess', 'FindAtomA', 'FreeLibrary', 'GetAtomNameA', 'GetComputerNameA', 'GetFileAttributesA', 'GetFileSize', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetTempPathA', 'GetVersionExA', 'GetVolumeInformationA', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'Sleep', 'WaitForSingleObject', 'WriteFile', '_itoa', '_strlwr', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'atoi', 'exit', 'fclose', 'fflush', 'fopen', 'fprintf', 'fread', 'free', 'fwrite', 'malloc', 'memcpy', 'memmove', 'memset', 'signal', 'strcat', 'strcmp', 'strcpy', 'strlen', 'strncat', 'ShellExecuteExA', 'GetSystemMetrics', 'WSACleanup', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['GetModuleHandleA', 'EndPaint', 'GetUserNameA', '_CorExeMain', 'ShellAboutW', 'ImageList_SetBkColor'], ['LoadLibraryA', 'GetProcAddress', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SetLastError', 'SetErrorMode', 'RemoveDirectoryA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'FormatMessageA', 'DeleteFileA', 'CreateProcessA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'CharNextA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['SetDefaultCommConfigA', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetConsoleAliasExesA', 'GetStringTypeA', 'GetDriveTypeW', 'DebugActiveProcessStop', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'SetDllDirectoryW', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'MoveFileExW', 'InterlockedDecrement', 'GetCurrentActCtx', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'SetVolumeMountPointW', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleTitleA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadProcessMemory', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'VerifyVersionInfoA', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetCompressedFileSizeA', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetFileSize', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetNamedPipeHandleStateW', 'GetConsoleAliasesW', 'GlobalUnfix', 'ReleaseActCtx', 'GetStartupInfoA', 'FillConsoleOutputCharacterW', 'GetLastError', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'DisableThreadLibraryCalls', 'BuildCommDCBW', 'ResetEvent', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'ProcessIdToSessionId', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'CreateFileA', 'GetOverlappedResult', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetCommandLineA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'DeleteFileA', 'ImpersonateSelf', 'IsTokenUntrusted'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetUserDefaultLCID', 'GetCommandLineW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetTimeZoneInformation', 'RtlUnwind', 'HeapQueryInformation', 'VirtualAlloc', 'SetStdHandle', 'GetFileType', 'GetStdHandle', 'GetStartupInfoW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateSemaphoreW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'SetFilePointerEx', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeW', 'ReadConsoleW', 'GetTempFileNameW', 'EnumSystemLocalesW', 'SetEnvironmentVariableW', 'WriteConsoleW', 'SetEnvironmentVariableA', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'InitializeSListHead', 'ReleaseSemaphore', 'VirtualFree', 'FreeLibraryAndExitThread', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'GetProfileIntW', 'SearchPathW', 'LoadLibraryExA', 'GetThreadTimes', 'lstrlenA', 'FindResourceExW', 'GetWindowsDirectoryW', 'IsValidLocale', 'VirtualProtect', 'GetFileTime', 'GetFileSizeEx', 'FileTimeToLocalFileTime', 'VerifyVersionInfoW', 'VerSetConditionMask', 'lstrcmpiW', 'DuplicateHandle', 'FindClose', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'CompareStringW', 'GetCurrentDirectoryW', 'GlobalFlags', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'GetThreadLocale', 'FileTimeToSystemTime', 'GlobalGetAtomNameW', 'GlobalFindAtomW', 'EncodePointer', 'lstrcpyW', 'ResumeThread', 'SetThreadPriority', 'CreateEventW', 'SetEvent', 'FreeResource', 'GetModuleHandleA', 'GlobalAddAtomW', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'lstrcmpW', 'lstrcmpA', 'GlobalDeleteAtom', 'GetCurrentThread', 'MulDiv', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalSize', 'GlobalAlloc', 'SetLastError', 'InterlockedDecrement', 'DeleteFileA', 'AreFileApisANSI', 'GetSystemTime', 'LocalFree', 'GetTempPathA', 'GetVersionExA', 'GetCurrentThreadId', 'GetFileAttributesExW', 'GetSystemInfo', 'GetDiskFreeSpaceA', 'CreateFileMappingW', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'LockFileEx', 'GetTempPathW', 'FlushFileBuffers', 'GetFileAttributesW', 'HeapValidate', 'HeapCreate', 'GetFileAttributesA', 'GetVersionExW', 'FormatMessageW', 'InitializeCriticalSection', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'UnlockFileEx', 'WaitForSingleObjectEx', 'LockFile', 'FlushViewOfFile', 'UnlockFile', 'InterlockedCompareExchange', 'QueryPerformanceCounter', 'SystemTimeToFileTime', 'UnmapViewOfFile', 'MapViewOfFile', 'TryEnterCriticalSection', 'HeapCompact', 'GetFullPathNameA', 'GetFullPathNameW', 'GetTickCount', 'SetEndOfFile', 'GetExitCodeThread', 'Sleep', 'FindNextFileW', 'LoadLibraryExW', 'FindFirstFileW', 'CreateFileA', 'GetVolumeInformationW', 'GetCurrentProcessId', 'DeleteFileW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'CopyFileW', 'WideCharToMultiByte', 'GetSystemDirectoryW', 'GetModuleHandleW', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'VirtualQuery', 'CreateMutexW', 'GetFileSize', 'OutputDebugStringA', 'TerminateProcess', 'TerminateThread', 'LoadLibraryW', 'FreeLibrary', 'CreateThread', 'CloseHandle', 'CreateFileW', 'ReadFile', 'WriteFile', 'OutputDebugStringW', 'SetFilePointer', 'LockResource', 'LoadLibraryA', 'GetProcAddress', 'MultiByteToWideChar', 'SizeofResource', 'GetPrivateProfileStringW', 'LoadResource', 'FindResourceW', 'DeleteCriticalSection', 'DecodePointer', 'EnterCriticalSection', 'HeapSize', 'GetLastError', 'RaiseException', 'LeaveCriticalSection', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'HeapReAlloc', 'GetComboBoxInfo', 'DestroyCursor', 'CreateMenu', 'GetWindowRgn', 'HideCaret', 'InvertRect', 'CopyIcon', 'GetIconInfo', 'GetDoubleClickTime', 'LockWindowUpdate', 'BringWindowToTop', 'SetRect', 'SetCursorPos', 'LoadImageW', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'OpenClipboard', 'SetParent', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'MonitorFromPoint', 'UnionRect', 'EnableScrollBar', 'UpdateLayeredWindow', 'IsMenu', 'SetMenuDefaultItem', 'GetMenuDefaultItem', 'CreatePopupMenu', 'NotifyWinEvent', 'IntersectRect', 'SetRectEmpty', 'MessageBeep', 'GetAsyncKeyState', 'IsZoomed', 'TrackMouseEvent', 'CharUpperW', 'DestroyIcon', 'WindowFromPoint', 'ReleaseCapture', 'SetCapture', 'WaitMessage', 'KillTimer', 'SetTimer', 'DeleteMenu', 'CopyImage', 'RealChildWindowFromPoint', 'LoadCursorW', 'IsDialogMessageW', 'SetWindowTextW', 'CheckDlgButton', 'MoveWindow', 'ShowWindow', 'GetMonitorInfoW', 'MonitorFromWindow', 'WinHelpW', 'GetScrollInfo', 'SetScrollInfo', 'GetTopWindow', 'GetClassLongW', 'SetWindowLongW', 'EqualRect', 'AdjustWindowRectEx', 'GetWindowTextLengthW', 'GetWindowTextW', 'RemovePropW', 'GetPropW', 'SetPropW', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'TranslateMDISysAccel', 'GetForegroundWindow', 'TrackPopupMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'SetFocus', 'GetDlgCtrlID', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'CallWindowProcW', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'SystemParametersInfoW', 'CopyRect', 'GetMenuItemInfoW', 'DestroyMenu', 'GetClassNameW', 'InvalidateRect', 'UpdateWindow', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'TabbedTextOutW', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'SetActiveWindow', 'GetNextDlgTabItem', 'GetDlgItem', 'EndDialog', 'CreateDialogIndirectParamW', 'DestroyWindow', 'ValidateRect', 'GetKeyState', 'GetActiveWindow', 'PeekMessageW', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'MapDialogRect', 'GetWindow', 'SetWindowContextHelpId', 'SetWindowPos', 'DrawIconEx', 'IsRectEmpty', 'OffsetRect', 'InflateRect', 'FillRect', 'DrawFocusRect', 'GetSysColorBrush', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'GetNextDlgGroupItem', 'InvalidateRgn', 'MessageBoxW', 'GetDesktopWindow', 'EnableWindow', 'RedrawWindow', 'SetWindowRgn', 'DrawStateW', 'IsWindowVisible', 'DrawFrameControl', 'DrawEdge', 'RegisterWindowMessageW', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PtInRect', 'ScreenToClient', 'ClientToScreen', 'GetCursorPos', 'GetWindowRect', 'DefMDIChildProcW', 'DefFrameProcW', 'DrawMenuBar', 'MapVirtualKeyExW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'SubtractRect', 'GetKeyNameTextW', 'PostThreadMessageW', 'FrameRect', 'CreateAcceleratorTableW', 'MapVirtualKeyW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToUnicodeEx', 'CharUpperBuffW', 'IsWindow', 'GetLastActivePopup', 'RegisterClipboardFormatW', 'ReuseDDElParam', 'UnpackDDElParam', 'InsertMenuItemW', 'TranslateAcceleratorW', 'LoadAcceleratorsW', 'SetForegroundWindow', 'GetUpdateRect', 'SendMessageW', 'GetSystemMetrics', 'AppendMenuW', 'LoadIconW', 'GetClientRect', 'DrawIcon', 'IsIconic', 'GetSystemMenu', 'wsprintfA', 'GetMenuStringW', 'GetMenuState', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'InsertMenuW', 'RemoveMenu', 'GetFocus', 'CheckMenuItem', 'EnableMenuItem', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'SetMenuItemInfoW', 'GetParent', 'LoadBitmapW', 'PostMessageW', 'PostQuitMessage', 'ShowOwnedPopups', 'SetCursor', 'IsWindowEnabled', 'GetWindowLongW', 'GetWindowThreadProcessId', 'CopyAcceleratorTableW', 'CharNextW', 'SetClassLongW', 'DestroyAcceleratorTable', 'IsChild', 'ModifyMenuW', 'LoadMenuW', 'BitBlt', 'CreateCompatibleDC', 'CreatePen', 'CreatePatternBrush', 'DeleteObject', 'Escape', 'ExcludeClipRect', 'GetClipBox', 'GetObjectType', 'GetPixel', 'GetStockObject', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetTextAlign', 'GetObjectW', 'MoveToEx', 'TextOutW', 'SetViewportExtEx', 'Polygon', 'SetWindowExtEx', 'SetWindowOrgEx', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'CreateFontIndirectW', 'GetTextMetricsW', 'CreateCompatibleBitmap', 'CreateDIBSection', 'GetMapMode', 'SetRectRgn', 'DPtoLP', 'CreateDIBitmap', 'EnumFontFamiliesW', 'GetTextCharsetInfo', 'RealizePalette', 'SetPixel', 'StretchBlt', 'SetDIBColorTable', 'Rectangle', 'GetRgnBox', 'OffsetRgn', 'RoundRect', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'GetSystemPaletteEntries', 'ExtFloodFill', 'SetPaletteEntries', 'EnumFontFamiliesExW', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'PtInRegion', 'GetViewportOrgEx', 'LPtoDP', 'GetWindowOrgEx', 'SetPixelV', 'GetTextFaceW', 'CreatePolygonRgn', 'ExtTextOutW', 'PatBlt', 'GetTextExtentPoint32W', 'GetTextColor', 'GetBkColor', 'Ellipse', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreateHatchBrush', 'CreateEllipticRgn', 'CombineRgn', 'CreateBitmap', 'GetDeviceCaps', 'CreateRoundRectRgn', 'Polyline', 'CreateDCW', 'SetViewportOrgEx', 'DeleteDC', 'CopyMetaFileW', 'TransparentBlt', 'AlphaBlend', 'ClosePrinter', 'DocumentPropertiesW', 'OpenPrinterW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryValueW', 'RegEnumKeyW', 'RegSetValueExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'SHGetFileInfoW', 'SHGetSpecialFolderPathW', 'SHGetFolderPathA', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderW', 'DragFinish', 'DragQueryFileW', 'SHAppBarMessage', 'ShellExecuteExW', 'SHGetDesktopFolder', 'InitCommonControlsEx', 'PathFindExtensionW', 'PathFindFileNameW', 'PathIsUNCW', 'PathStripToRootW', 'PathRemoveFileSpecW', 'PathFileExistsW', 'StrFormatKBSizeW', 'GetWindowTheme', 'GetThemeSysColor', 'OpenThemeData', 'IsThemeBackgroundPartiallyTransparent', 'GetThemePartSize', 'DrawThemeParentBackground', 'DrawThemeText', 'IsAppThemed', 'GetCurrentThemeName', 'GetThemeColor', 'DrawThemeBackground', 'CloseThemeData', 'OleUIBusyW', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdiplusShutdown', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipBitmapLockBits', 'GdipBitmapUnlockBits', 'GdipDeleteGraphics', 'GdipDrawImageI', 'GdipCreateBitmapFromHBITMAP', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'InternetCloseHandle', 'InternetReadFile', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetOpenW', 'WinHttpSetOption', 'WinHttpSendRequest', 'WinHttpWriteData', 'WinHttpConnect', 'WinHttpQueryHeaders', 'WinHttpSetStatusCallback', 'WinHttpReceiveResponse', 'WinHttpReadData', 'WinHttpSetCredentials', 'WinHttpAddRequestHeaders', 'WinHttpQueryAuthSchemes', 'WinHttpOpen', 'WinHttpCloseHandle', 'WinHttpCrackUrl', 'WinHttpOpenRequest', 'AMGetErrorTextW', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'LresultFromObject', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext', 'PlaySoundW'], ['SendMessageA', 'CreateWindowExA', 'GetWindowRect', 'DrawTextA', 'EndPaint', 'ClientToScreen', 'ScreenToClient', 'SetWindowPos', 'LoadBitmapA', 'CallWindowProcA', 'GetDlgItemTextA', 'PeekMessageA', 'CreateDialogParamA', 'SetWindowTextA', 'ShowWindow', 'GetCursorPos', 'GetForegroundWindow', 'MessageBoxA', 'BeginPaint', 'InternetOpenA', 'InternetOpenUrlA', 'InternetReadFile', 'InternetConnectA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'IsUserAnAdmin', 'OpenProcessToken', 'AllocateAndInitializeSid', 'GetTokenInformation', 'EqualSid', 'GetUserNameA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'FreeSid', 'strcat', 'strcpy', 'sprintf', 'strlen', 'fopen', 'fseek', 'ftell', 'fread', 'fwrite', 'fclose', 'memset', 'time', 'gmtime', 'memcpy', 'free', 'malloc', 'OpenProcess', 'OpenThread', 'GetTickCount', 'Sleep', 'VirtualProtect', 'ExitProcess', 'ExpandEnvironmentStringsA', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'FindFirstFileA', 'GetSystemWow64DirectoryA', 'GetVersionExA', 'GetCurrentProcessId', 'MultiByteToWideChar', 'WideCharToMultiByte', 'RtlZeroMemory', 'CreatePipe', 'GetStartupInfoA', 'CreateProcessA', 'PeekNamedPipe', 'ReadFile', 'CreateFileA', 'SetFilePointer', 'GetFileSize', 'CloseHandle', 'GetVolumeInformationA', 'GetComputerNameA', 'GetModuleHandleA', 'GetProcAddress'], ['QueryPerformanceCounter', 'GetUserDefaultLCID', 'SetConsoleScreenBufferSize', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'ReadConsoleW', 'GetWindowsDirectoryA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedFlushSList', 'WaitNamedPipeA', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'SetFirmwareEnvironmentVariableW', 'RemoveDirectoryA', 'SetStdHandle', 'CreateSemaphoreW', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'OpenEventW', 'GetShortPathNameW', 'GetVersionExA', 'GetConsoleProcessList', 'DebugBreak', 'GetCommState', 'InterlockedIncrement', 'MultiByteToWideChar', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapReAlloc', 'CharLowerBuffW', 'GetBrushOrgEx', 'GetCharWidthI'], ['GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoW', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'FreeConsole', 'GetModuleHandleA', 'MultiByteToWideChar', 'WriteConsoleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'GetClassInfoA', 'CallWindowProcA', 'SetWindowLongA', 'CheckDlgButton', 'GetActiveWindow', 'LoadCursorA', 'MessageBoxA', 'wsprintfA', 'GetDlgItemTextA', 'SelectObject', 'GetObjectA', 'GetStockObject', 'DeleteObject', 'SetBkMode', 'SetTextColor', 'CreateFontIndirectA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegDeleteKeyA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'CoInitialize', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'SearchPathA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['CloseHandle', 'CreateWaitableTimerW', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeConsole', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', '_strdup', '_stricoll', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_fpreset', '_fullpath', '_iob', '_isctype', '_onexit', '_pctype', '_rotl', '_setmode', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'malloc', 'mbstowcs', 'memcpy', 'memset', 'realloc', 'setlocale', 'signal', 'strcoll', 'strlen', 'tolower', 'vfprintf', 'wcstombs'], ['GetModuleHandleW', 'IsChild', 'RegisterEventSourceW', '_CorExeMain', 'SHChangeNotifyRegister', 'InitMUILanguage'], ['CreateProcessA', 'CreateDirectoryA', 'IsWow64Process', 'lstrcatA', 'GetModuleHandleA', 'lstrcpyA', 'lstrlenA', 'HeapAlloc', 'GetProcAddress', 'lstrcpynA', 'GetProcessHeap', 'WriteConsoleW', 'LocalFree', 'GetWindowsDirectoryA', 'CloseHandle', 'DeleteFileA', 'LoadLibraryA', 'GetFileAttributesA', 'GetLastError', 'CopyFileA', 'Sleep', 'LocalAlloc', 'WaitForSingleObject', 'GetVolumeInformationA', 'GetCurrentProcess', 'HeapFree', 'GetModuleFileNameA', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'ReadConsoleW', 'ReadFile', 'FlushFileBuffers', 'CreateFileW', 'GetStringTypeW', 'SetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'MultiByteToWideChar', 'LCMapStringW', 'MoveFileExW', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'CreateServiceA', 'RegCloseKey', 'StartServiceCtrlDispatcherA', 'GetCurrentHwProfileA', 'CloseServiceHandle', 'RegQueryValueExA', 'SetServiceStatus', 'RegisterServiceCtrlHandlerA', 'OpenSCManagerA', 'GetUserNameA', 'StartServiceA', 'RegOpenKeyExA', 'OpenServiceA', 'SHGetSpecialFolderPathA', 'SHGetFolderPathA', 'ShellExecuteA', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiEnumDeviceInfo'], ['CreateFileW', 'GetFileInformationByHandle', 'GetFileSize', 'SetEndOfFile', 'SetFilePointer', 'IsProcessorFeaturePresent', 'GetVersion', 'DeleteAtom', 'AddAtomW', 'FindAtomW', 'GetAtomNameW'], ['WaitForSingleObject', 'CreateThread', 'VirtualAlloc', 'FreeLibrary', 'VirtualQuery', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetLastError', 'GetModuleHandleW', 'GetStartupInfoW', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RaiseException', 'IsDebuggerPresent', 'GetCurrentThreadId', 'GetProcAddress', '__std_type_info_destroy_list', 'memset', '_except_handler4_common', '__vcrt_GetModuleFileNameW', '__vcrt_GetModuleHandleW', '__vcrt_LoadLibraryExW', 'memcpy', '__stdio_common_vsprintf_s', '__p___argc', '_configure_narrow_argv', '_initialize_narrow_environment', '_initialize_onexit_table', '_register_onexit_function', '_execute_onexit_table', '_crt_atexit', '_crt_at_quick_exit', '_controlfp_s', 'terminate', '_wmakepath_s', '_wsplitpath_s', 'strcpy_s', '_seh_filter_dll', '_set_fmode', '_exit', 'exit', '_initterm_e', '_initterm', '_get_initial_wide_environment', '_initialize_wide_environment', '_configure_wide_argv', '__setusermatherr', '_set_app_type', '_seh_filter_exe', '_CrtDbgReportW', '_CrtDbgReport', 'strcat_s', '__p__commode', '_set_new_mode', '_configthreadlocale', '_register_thread_local_exe_atexit_callback', '_c_exit', '_cexit', 'wcscpy_s', '__p___wargv'], ['GetCurrentProcess', 'SetMailslotInfo', 'SetDefaultCommConfigW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'GlobalAlloc', 'GetSystemDirectoryW', 'LoadLibraryW', 'CreateEventA', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetBinaryTypeA', 'GetModuleFileNameW', 'InterlockedExchange', 'FreeLibrary', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'GetDiskFreeSpaceW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'MoveFileA', 'TransmitCommChar', 'OpenJobObjectW', 'EnumCalendarInfoExA', 'SetFileAttributesW', 'FindResourceW', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateLoggedOnUser'], ['GetWindowTextA', 'GetWindowThreadProcessId', 'CreateWindowExA', 'LoadCursorA', 'LoadIconA', 'RegisterClassA', 'SendMessageA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow', 'GetMessageA', 'GetClassNameA', 'DispatchMessageA', 'DefWindowProcA', 'wsprintfA', 'WaitForSingleObject', 'WriteFile', 'CloseHandle', 'CreateDirectoryA', 'CreateEventA', 'CreateFileA', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteFileA', 'ExitThread', 'FileTimeToSystemTime', 'GetCommandLineW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetEnvironmentVariableA', 'GetLastError', 'GetLocalTime', 'GetModuleHandleA', 'GetTempPathA', 'GetVolumeInformationA', 'LocalAlloc', 'LocalFree', 'OpenProcess', 'RemoveDirectoryA', 'SetEvent', 'SetFilePointer', 'VirtualFree', 'SystemTimeToFileTime', 'VirtualAlloc', 'Sleep', 'CryptExportKey', 'CryptDestroyKey', 'CryptAcquireContextA', 'CryptReleaseContext', 'GetSidSubAuthority', 'GetTokenInformation', 'GetUserNameW', 'OpenProcessToken', 'CryptImportKey', 'htons', 'inet_addr', 'inet_ntoa', 'ioctlsocket', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket', 'connect', 'closesocket', 'WSAStartup', 'WSACleanup', 'CommandLineToArgvW', 'freeaddrinfo', 'WSAIoctl', 'getaddrinfo', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'GetUserNameExW', 'QueryContextAttributesA', 'AcquireCredentialsHandleA', 'DecryptMessage', 'DeleteSecurityContext', 'EncryptMessage', 'FreeContextBuffer', 'FreeCredentialsHandle', 'GetUserNameExA', 'InitSecurityInterfaceA', 'InitializeSecurityContextA', 'CryptStringToBinaryA', 'CryptDecodeObject', 'GetModuleFileNameExA'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'ShellExecuteA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'ObtainUserAgentString', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['LoadLibraryA', 'GetProcAddress', 'GetCommandLineA', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'WriteFile', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsDebuggerPresent', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['LoadLibraryA', 'GetModuleHandleA', 'InterlockedCompareExchange', 'OpenWaitableTimerW', 'CreateEventA', 'ReadConsoleInputW', 'WaitNamedPipeA', 'SetVolumeMountPointA', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesA', 'GetModuleFileNameW', 'IsBadCodePtr', 'LoadLibraryW', 'DeleteFileW', 'SearchPathA', 'VirtualAlloc', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasA', 'GetShortPathNameA', 'GetPrivateProfileStringW', 'PeekConsoleInputW', 'GlobalGetAtomNameA', 'GetProcAddress', 'GetUserDefaultLangID', 'GetConsoleAliasW', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameA', 'lstrcpynA', 'AddAtomA', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameA', 'FoldStringW', 'OpenWaitableTimerA', 'ResetEvent', 'GlobalWire', 'GetComputerNameA', 'GetVersionExW', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'SetCalendarInfoW', 'SetComputerNameA', 'GetFileAttributesA', 'GetVolumePathNameW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap'], ['SetFilePointer', 'ReadFile', 'CloseHandle', 'CreateThread', 'TerminateThread', 'WriteFile', 'GetPrivateProfileStringW', 'GetTempPathW', 'GetFileSize', 'CreatePipe', 'GetStartupInfoA', 'CreateProcessA', 'OpenProcess', 'TerminateProcess', 'QueryPerformanceCounter', 'GetLastError', 'CreateFileA', 'WideCharToMultiByte', 'Sleep', 'WriteConsoleW', 'FlushFileBuffers', 'SetStdHandle', 'CreateFileW', 'OutputDebugStringW', 'LCMapStringW', 'GetStringTypeW', 'HeapReAlloc', 'LoadLibraryExW', 'SetFilePointerEx', 'ReadConsoleW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'GetCurrentProcess', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'EncodePointer', 'DecodePointer', 'HeapFree', 'HeapAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'MultiByteToWideChar', 'HeapSize', 'RtlUnwindEx', 'GetProcessHeap', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThreadId', 'GetFileAttributesExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'GetModuleFileNameW', 'RtlPcToFileHeader', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetEndOfFile', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptGenRandom', 'SHGetSpecialFolderPathW', 'recv', 'closesocket', 'send', 'connect', 'inet_addr', 'htons', 'socket', 'WSAGetLastError', 'WSAStartup', 'WinHttpQueryHeaders', 'WinHttpReceiveResponse', 'WinHttpWriteData', 'WinHttpSendRequest', 'WinHttpAddRequestHeaders', 'WinHttpSetOption', 'WinHttpQueryDataAvailable', 'WinHttpSetCredentials', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpOpen', 'WinHttpGetIEProxyConfigForCurrentUser', 'WinHttpCloseHandle', 'WinHttpReadData', 'WinHttpQueryOption'], ['GetModuleHandleA', 'BeginPaint', 'RegQueryValueW', 'ImageList_SetBkColor', 'SHGetIconOverlayIndexA', '_CorExeMain'], ['WSACloseEvent', 'gethostname', 'WSAAddressToStringW', 'WSAStartup', 'WSAConnect', 'getsockname', 'setsockopt', 'sendto', 'WSACleanup', 'socket', 'gethostbyname', 'GetModuleHandleA', 'CreateFileA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'ReadFile', 'GetLocaleInfoW', 'GetFileSize', 'SetEndOfFile', 'CreateProcessW', 'CreateDirectoryW', 'VirtualFree', 'WriteFile', 'LoadLibraryW', 'Sleep', 'MulDiv', 'CreateFileW', 'GetProcAddress', 'VirtualAlloc', 'GetDiskFreeSpaceW', 'ResetEvent', 'LocalAlloc', 'RemoveDirectoryW', 'VirtualProtect', 'DeleteCriticalSection', 'GetCurrentThreadId', 'CloseHandle', 'DeleteFileW', 'LocalFree', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoW', 'GetCPInfo', 'GetLastError', 'RaiseException', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetACP', 'GetOEMCP', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'LoadLibraryA'], ['GetExitCodeThread', 'WritePrivateProfileStringW', 'LocalFlags', 'GetModuleHandleW'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'VirtualAlloc', 'GetBinaryTypeA', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseServiceHandle', 'ControlService', 'EnumDependentServicesW', 'EnumServicesStatusW', 'FreeSid', 'ImpersonateLoggedOnUser', 'LogonUserW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'StartServiceW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindFirstVolumeW', 'FindNextFileW', 'FindNextVolumeW', 'FindVolumeClose', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetVolumePathNamesForVolumeNameW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'OpenProcess', 'Process32FirstW', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['WSACleanup', 'waveOutGetVolume', 'GetFileVersionInfoSizeW', 'CreateStatusWindowW', 'GetModuleBaseNameW', 'GetVersionExW', 'GetLocalTime', 'GetMenuItemInfoW', 'CreateRoundRectRgn', 'GetSaveFileNameW', 'RegEnumKeyExW', 'SHGetDesktopFolder', 'OleUninitialize', 'SafeArrayLock', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['ReadFile', 'GetCurrentProcess', 'lstrcatA', 'GetModuleHandleA', 'SetCurrentDirectoryA', 'GetModuleHandleExA', 'CreateFileA', 'lstrcpyA', 'CloseHandle', 'GetFileSize', 'GetLastError', 'GetProcAddress', 'HeapFree', 'WriteFile', 'lstrlenA', 'lstrcpynA', 'WriteConsoleW', 'QueryPerformanceCounter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'SetFilePointerEx', 'GetFileType', 'HeapAlloc', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'GetConsoleMode', 'FlushFileBuffers', 'GetConsoleOutputCP', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'DecodePointer'], ['lstrcpyA', 'GlobalFree', 'CloseHandle', 'CreateThread', 'MoveFileExW', 'lstrcpyW', 'CreateFileMappingW', 'MapViewOfFile', 'lstrcmpW', 'GetShortPathNameA', 'GetModuleFileNameA', 'BeginUpdateResourceA', 'EraseTape', 'FindFirstVolumeW', 'GetProfileSectionW', 'GetCurrentProcess', 'lstrlenW', 'CancelDeviceWakeupRequest', 'TerminateProcess', 'GlobalUnWire', 'GetConsoleTitleW', 'EnumResourceNamesW', 'CreateMutexW', 'OpenFile', 'GetEnvironmentVariableA', 'EnumSystemCodePagesW', 'CancelThreadpoolIo', 'GlobalDeleteAtom', 'QueryMemoryResourceNotification', 'GetACP', 'OpenProcess', 'FindFirstVolumeMountPointA', 'FindActCtxSectionStringA', 'CreateToolhelp32Snapshot', 'CreateEventW', 'Sleep', 'GetLastError', 'GetConsoleAliasesLengthW', 'Process32NextW', 'CreateFileA', 'SetEvent', 'DefineDosDeviceA', 'DeleteFileW', 'GetCurrentThread', 'GetSystemDirectoryA', 'Process32FirstW', 'GlobalFindAtomW', 'QueueUserAPC', 'LocalSize', 'FindAtomA', 'ExitProcess', 'FreeLibrary', 'GetSystemTime', 'GlobalUnlock', 'GetDriveTypeW', 'FindFirstFileTransactedA', 'CreateTimerQueue', 'SizeofResource', 'GetCurrentDirectoryA', 'LockResource', 'LoadResource', 'FindResourceW', 'GetModuleHandleW', 'DecodePointer', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'GetStringTypeW', 'GlobalAlloc', 'ReadFile', 'lstrcatW', 'GetFileType', 'SetStdHandle', 'OutputDebugStringW', 'SetFileAttributesW', 'UnmapViewOfFile', 'CreateFileW', 'WaitForSingleObject', 'FindClose', 'lstrlenA', 'SetFilePointer', 'SetErrorMode', 'VirtualAlloc', 'LCMapStringW', 'WriteFile', 'FindNextFileW', 'VirtualFree', 'FindFirstFileW', 'GetSystemFileCacheSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'RaiseException', 'GetWindowTextW', 'wsprintfW', 'GetDC', 'EqualRect', 'wsprintfA', 'DestroyIcon', 'GetKeyboardLayout', 'EnumWindows', 'CharUpperBuffW', 'GetDesktopWindow', 'GetLastActivePopup', 'CreateDIBPatternBrush', 'GetTextCharset', 'OpenPrinterA', 'RegisterServiceCtrlHandlerW', 'CryptGenKey', 'CryptExportKey', 'CryptEncrypt', 'CryptAcquireContextW', 'SetServiceStatus', 'CryptReleaseContext', 'StartServiceCtrlDispatcherW', 'CryptDestroyKey', 'SHGetSpecialFolderPathW', 'ShellExecuteA', 'StrStrW', 'CryptStringToBinaryA', 'CryptImportPublicKeyInfoEx', 'CryptDecodeObjectEx', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum'], ['GetDefaultCommConfigW', 'GetProcessIoCounters', 'LoadResource', 'ClearCommError', 'SetConsoleTextAttribute', 'SetCommBreak', 'GetTickCount', 'GetPrivateProfileStringW', 'ReadConsoleW', 'GetWindowsDirectoryA', 'GetProcessTimes', 'WideCharToMultiByte', 'FindNextVolumeW', 'GetEnvironmentVariableA', 'CompareStringW', 'lstrlenW', 'IsBadStringPtrA', 'FindFirstFileExA', 'GetLastError', 'SetupComm', 'EnumSystemCodePagesW', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'SetFileApisToANSI', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'SetConsoleCursorInfo', 'CreateIoCompletionPort', 'SetCalendarInfoA', 'GetVolumeNameForVolumeMountPointW', 'ResetWriteWatch', 'OpenFileMappingA', 'GetProcAddress', 'HeapReAlloc', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ReadFile', 'SetEndOfFile', 'GetProcessHeap', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCursorInfo', 'RegQueryMultipleValuesW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', 'GetForegroundWindow', '__std_exception_destroy', '_exit', '_set_fmode', 'malloc', '__setusermatherr', '_configthreadlocale', 'VariantChangeTypeEx', 'RaiseException'], ['GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetLastError', 'GetProcAddress', 'HeapFree', 'HeapAlloc', 'GetModuleFileNameW', 'GetProcessHeap', 'VirtualAlloc', 'VirtualFree', 'LoadLibraryA', 'GetVersionExA', 'GetStartupInfoW', 'GetWindowRect', 'DbgPrint', 'PathFileExistsW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetInputState', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CreateMutexW', 'FindFirstFileW', 'GetDriveTypeW', 'SetEndOfFile', 'SetFilePointerEx', 'GetLogicalDrives', 'WriteFile', 'ReadFile', 'CreateFileW', 'GetLastError', 'FindClose', 'GetFileSize', 'HeapSetInformation', 'FindNextFileW', 'WinExec', 'CloseHandle', 'SetFilePointer', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'RtlUnwind', 'RemoveDirectoryW', 'GetComputerNameA', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'GetModuleFileNameW', 'HeapAlloc', 'EncodePointer', 'DecodePointer', 'MoveFileW', 'GetCommandLineA', 'GetStartupInfoW', 'RaiseException', 'FreeLibrary', 'InterlockedExchange', 'GetProcAddress', 'LoadLibraryW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'IsProcessorFeaturePresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'HeapCreate', 'Sleep', 'HeapSize', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetStdHandle', 'ShowWindow', 'CreateWindowExW', 'RegisterClassW', 'GetSystemMetrics', 'SetWindowLongW', 'LoadCursorW', 'GetStockObject', 'SHGetSpecialFolderPathW', 'SHEmptyRecycleBinW'], ['MessageBoxW', 'memset', '__current_exception_context', '__current_exception', '__C_specific_handler', '_crt_atexit', 'terminate', '_exit', 'exit', '_initterm_e', '_initterm', '_get_wide_winmain_command_line', '_initialize_wide_environment', '_configure_wide_argv', '_initialize_onexit_table', '_set_app_type', '_seh_filter_exe', '_register_thread_local_exe_atexit_callback', '_c_exit', '_cexit', '_register_onexit_function', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', '_set_new_mode', 'QueryPerformanceCounter', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'RtlCaptureContext', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'Sleep', 'CreateThread', 'GetSystemInfo', 'VirtualProtectFromApp', 'GetSystemMetrics', 'GetConsoleWindow', 'SendMessageA', '_CxxThrowException', '_register_onexit_function', '__stdio_common_vfprintf', '__setusermatherr', '_configthreadlocale', 'free', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'VariantChangeTypeEx', 'RaiseException'], ['GetOpenFileNameA', 'GetSaveFileNameA', 'GetStockObject', 'AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetFileSize', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'GlobalAlloc', 'GlobalFree', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReadFile', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'rand', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'srand', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'time', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DispatchMessageA', 'GetDlgItem', 'GetMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'LoadCursorA', 'LoadIconA', 'MessageBoxA', 'MoveWindow', 'PostMessageA', 'PostQuitMessage', 'RegisterClassExA', 'SendDlgItemMessageA', 'SetFocus', 'SetWindowTextA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fputwc', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memmove', 'printf', 'putc', 'putwc', 'rand', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'srand', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strncmp', 'strxfrm', 'time', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'RtlGetVersion', '_wtoi', 'memcpy', 'memset', 'strlen', 'MessageBoxA', 'WinHttpCloseHandle', 'WinHttpConnect', 'WinHttpOpen', 'WinHttpOpenRequest', 'WinHttpQueryAuthSchemes', 'WinHttpQueryDataAvailable', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpSetCredentials'], ['DeregisterEventSource', 'RegisterEventSourceW', 'ReportEventW', 'CryptAcquireContextW', 'CryptReleaseContext', 'CryptDestroyKey', 'CryptSetHashParam', 'CryptGetProvParam', 'CryptGetUserKey', 'CryptExportKey', 'CryptDecrypt', 'CryptCreateHash', 'CryptDestroyHash', 'CryptSignHashW', 'CryptEnumProvidersW', 'CryptGenRandom', 'CertCloseStore', 'CertEnumCertificatesInStore', 'CertFindCertificateInStore', 'CertDuplicateCertificateContext', 'CertFreeCertificateContext', 'CertGetCertificateContextProperty', 'CertOpenStore', 'GetUserObjectInformationW', 'MessageBoxW', 'GetProcessWindowStation', 'closesocket', 'WSASetLastError', 'send', 'recv', 'WSACleanup', 'ioctlsocket', 'shutdown', '__WSAFDIsSet', 'WSAGetLastError', 'GetTimeZoneInformation', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'PeekNamedPipe', 'GetFileInformationByHandle', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToTzSpecificLocalTime', 'GetDriveTypeW', 'FindFirstFileExW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'SetEndOfFile', 'CreateFileW', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetStringTypeW', 'LCMapStringW', 'CompareStringW', 'lstrcpynA', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'MultiByteToWideChar', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'ConvertFiberToThread', 'ConvertThreadToFiber', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetTickCount', 'GlobalMemoryStatus', 'GetEnvironmentVariableW', 'GetConsoleMode', 'ReadConsoleA', 'ReadConsoleW', 'SetConsoleMode', 'SetLastError', 'GetSystemTime', 'SystemTimeToFileTime', 'GetCommandLineA', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'ExitProcess', 'GetModuleHandleExW', 'AreFileApisANSI', 'SetConsoleCtrlHandler', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ReadFile', 'GetProcessHeap', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RtlUnwindEx', 'HeapSize', 'GetModuleFileNameW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleCP', 'SetFilePointerEx', 'SetStdHandle', 'OutputDebugStringW'], ['CreateThread', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'memset', '__C_specific_handler', '__std_type_info_destroy_list', '_configure_narrow_argv', '_initterm_e', '_initterm', 'system', '_initialize_narrow_environment', '_initialize_onexit_table', '_execute_onexit_table', '_seh_filter_dll', '_cexit'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA', 'mciSendCommandA', 'mciGetErrorStringA'], ['LoadLibraryA', 'GetProcAddress', 'WriteProcessMemory', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'memset', '_except_handler4_common', '__std_type_info_destroy_list', '_cexit', '_seh_filter_dll', '_initterm_e', '_initterm', '_initialize_narrow_environment', '_initialize_onexit_table', '_execute_onexit_table', '_configure_narrow_argv'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'WNetGetConnectionA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetEnvironmentVariableA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'waveOutWrite', 'waveOutUnprepareHeader', 'waveOutReset', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutGetDevCapsA', 'waveOutClose', 'waveInGetNumDevs', 'waveInGetDevCapsA'], ['GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'WideCharToMultiByte', 'Sleep', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'DecodePointer', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'CloseClipboard', 'GetClipboardData'], ['WriteConsoleOutputCharacterW', 'lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'InitializeCriticalSection', 'GetBinaryTypeA', 'ReplaceFileW', 'CreateDirectoryA', 'GetConsoleAliasesW', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'FindFirstChangeNotificationW', 'MoveFileW', 'WriteProfileSectionA', 'SetStdHandle', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'VirtualProtect', 'SetCalendarInfoA', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'Sleep', 'GetCurrentProcessId', 'GetSystemInfo', 'VirtualProtectFromApp', 'GetSystemMetrics', 'GetConsoleWindow', 'FindWindowA', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'SetLastError', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'RtlUnwind', 'LeaveCriticalSection', 'DecodePointer', 'GetCommandLineA', 'CreateFileW', 'HeapFree', 'GetCPInfo', 'CompareStringW', 'WriteConsoleW', 'CloseHandle', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleFileNameExW', 'MultiByteToWideChar', 'VirtualAlloc', 'VirtualFree', 'WideCharToMultiByte', 'FreeLibrary', 'GetProcAddress', 'GetLastError', 'FindClose', 'CloseHandle', 'LoadLibraryA', 'GetModuleHandleW', 'RemoveDirectoryW', 'SetFileAttributesW', 'GetProcessHeap', 'FindFirstFileW', 'FindNextFileW', 'HeapFree', 'Process32First', 'Process32Next', 'LocalAlloc', 'LocalFree', 'OpenProcess', 'GetCurrentProcess', 'ExitProcess', 'TerminateProcess', 'SetErrorMode', 'Sleep', 'GetModuleFileNameW', 'CreateProcessW', 'CreateThread', 'TerminateThread', 'DuplicateHandle', 'WaitForSingleObjectEx', 'HeapAlloc', 'DeleteFileW', 'CreateToolhelp32Snapshot', 'RegDeleteValueW', 'RegSetValueExW', 'RegEnumValueW', 'RegOpenKeyExW', 'RegCloseKey', 'CoTaskMemFree'], ['GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'WriteFile', 'GetLastError', 'SetFilePointer', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'FlushFileBuffers', 'CloseHandle'], ['K32GetProcessImageFileNameA', 'Thread32First', 'lstrlenA', 'SuspendThread', 'ResumeThread', 'UnmapViewOfFile', 'GetModuleHandleA', 'CreateToolhelp32Snapshot', 'Sleep', 'GetModuleHandleExA', 'K32GetModuleFileNameExA', 'CopyFileA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'CloseHandle', 'Thread32Next', 'FreeConsole', 'K32GetModuleInformation', 'HeapAlloc', 'GetThreadContext', 'GetProcAddress', 'GetCurrentProcessId', 'GetModuleHandleW', 'FreeLibrary', 'CreateProcessA', 'K32EnumProcessModules', 'GetComputerNameExA', 'CreateDirectoryA', 'CreateFileMappingW', 'MapViewOfFile', 'SetThreadContext', 'OpenThread', 'CreateFileW', 'GetCurrentProcess', 'VirtualProtect', 'HeapCreate', 'K32GetModuleBaseNameA', 'GetModuleFileNameA', 'FlushFileBuffers', 'GetConsoleCP', 'WriteFile', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'SetStdHandle', 'GetProcessHeap', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwindEx', 'InterlockedFlushSList', 'RtlPcToFileHeader', 'RaiseException', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'GetACP', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetConsoleMode', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'WriteConsoleW', 'RegSetValueExA', 'RegOpenKeyExA', 'SystemFunction036', 'RegCloseKey', 'SHGetFolderPathA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'HttpAddRequestHeadersA', 'HttpOpenRequestA', 'HttpQueryInfoA', 'InternetQueryOptionW', 'InternetSetOptionW', 'InternetReadFile', 'InternetOpenA', 'GetUserNameExA'], ['GlobalUnlock', 'Heap32ListNext', 'HeapAlloc', 'HeapCreate', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LocalReAlloc', 'LocalSize', 'LockResource', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenEventW', 'OpenMutexW', 'OpenSemaphoreA', 'OpenThread', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'ReplaceFileA', 'RtlUnwind', 'GlobalReAlloc', 'SetConsoleCtrlHandler', 'SetConsoleMode', 'SetConsoleOutputCP', 'SetConsoleTextAttribute', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VerLanguageNameA', 'VirtualAlloc', 'VirtualFree', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', '_lwrite', 'lstrcmpA', 'lstrcmpW', 'lstrlenA', 'lstrlenW', 'GlobalLock', 'GlobalHandle', 'GlobalFree', 'GlobalFlags', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersionExA', 'GetUserDefaultUILanguage', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemTimeAsFileTime', 'GetSystemDefaultLCID', 'GetStringTypeW', 'GetStringTypeExW', 'GetStringTypeA', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetShortPathNameW', 'GetProcessHeaps', 'GetProcessHeap', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetExitCodeThread', 'GetEnvironmentStringsW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleFontSize', 'GetConsoleCP', 'GetComputerNameW', 'GetCommandLineW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FlushFileBuffers', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileA', 'CreateEventW', 'ConvertDefaultLocale', 'SetComputerNameExA', 'CloseHandle', 'LoadCursorFromFileA', 'GetClipboardData', 'InSendMessage', 'IsMenu', 'DestroyIcon', 'CharLowerW', 'GetMenuContextHelpId', 'VkKeyScanA', 'CountClipboardFormats', 'IsCharAlphaA', 'IsCharAlphaNumericA', 'GetProcessWindowStation', 'IsWindowUnicode', 'GetKeyboardLayout', 'VkKeyScanW', 'GetKBCodePage', 'GetClipboardOwner', 'GetAsyncKeyState', 'DestroyCursor', 'CloseClipboard', 'PaintDesktop', 'GetInputState', 'GetCursor', 'CharNextW', 'CloseDesktop', 'ReleaseCapture', 'EnumClipboardFormats', 'GetWindowContextHelpId', 'GetWindowTextLengthA', 'GetClipboardViewer', 'GetThreadDesktop', 'IsCharAlphaW', 'AnyPopup', 'CharUpperW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'GetQueueStatus', 'CloseWindow', 'GetDialogBaseUnits', 'OemKeyScan', 'CharNextA', 'LoadIconA', 'WindowFromDC', 'WinHelpW', 'ValidateRect', 'UnregisterDeviceNotification', 'UnregisterClassW', 'UnhookWindowsHookEx', 'UnhookWinEvent', 'TranslateMessage', 'TabbedTextOutW', 'SystemParametersInfoA', 'ShowWindow', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowLongW', 'SetPropW', 'SetMessageQueue', 'SetMenuItemBitmaps', 'SetMenu', 'SetForegroundWindow', 'SetCursor', 'SendMessageW', 'SendMessageA', 'RemovePropW', 'ReleaseDC', 'RegisterWindowMessageW', 'RegisterClassW', 'PtInRect', 'PostThreadMessageA', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'NotifyWinEvent', 'MsgWaitForMultipleObjectsEx', 'ModifyMenuW', 'MessageBoxW', 'MessageBoxA', 'MapWindowPoints', 'LoadStringW', 'LoadMenuW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'GrayStringW', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindow', 'GetTopWindow', 'GetSystemMetrics', 'GetSysColor', 'GetSubMenu', 'GetScrollPos', 'GetPropW', 'GetParent', 'GetMessageW', 'GetMessageTime', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetClassNameW', 'GetClassLongW', 'GetClassInfoW', 'GetClassInfoExW', 'GetCapture', 'GetActiveWindow', 'EnableWindow', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExW', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DefWindowProcW', 'DefWindowProcA', 'DdeQueryConvInfo', 'CreateWindowExW', 'CreateDialogParamW', 'CopyRect', 'ClientToScreen', 'CheckMenuItem', 'CharToOemW', 'CharLowerA', 'CallWindowProcW', 'CallNextHookEx', 'AdjustWindowRectEx', 'GetSysColorBrush', 'GetObjectType', 'GetColorSpace', 'AddFontResourceW', 'GetPolyFillMode', 'GetGraphicsMode', 'AbortPath', 'DeleteColorSpace', 'GetSystemPaletteUse', 'UnrealizeObject', 'StartDocW', 'GetDCPenColor', 'UpdateColors', 'CreatePatternBrush', 'StrokePath', 'CreateHalftonePalette', 'GdiFlush', 'GetBkColor', 'GetLayout', 'AbortDoc', 'GdiGetBatchLimit', 'FlattenPath', 'CreateSolidBrush', 'SwapBuffers', 'GetTextCharset', 'XLATEOBJ_cGetPalette', 'XFORMOBJ_iGetXform', 'CreateCompatibleDC', 'CopyMetaFileW', 'SetWindowExtEx', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetMapMode', 'SetBkColor', 'SelectObject', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'PtVisible', 'OffsetViewportOrgEx', 'GetTextColor', 'GetStockObject', 'GetICMProfileW', 'GetDeviceCaps', 'GetClipBox', 'GetCharABCWidthsA', 'GdiStartDocEMF', 'GdiDllInitialize', 'ExtTextOutW', 'Escape', 'EngReleaseSemaphore', 'EngQueryLocalTime', 'EngLoadModule', 'DeleteObject', 'DeleteDC', 'DPtoLP', 'CreateBitmap', 'TextOutW', 'RegSetValueExA', 'RegQueryValueW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCreateKeyExA', 'RegCloseKey', 'RegSetValueExW', 'ShellExecuteEx', 'ShellExecuteA', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHIsFileAvailableOffline', 'SHInvokePrinterCommandW', 'SHInvokePrinterCommandA', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderPathA', 'SHGetDesktopFolder', 'SHGetDataFromIDListA', 'SHFormatDrive', 'SHFileOperationA', 'SHFileOperation', 'SHEmptyRecycleBinA', 'SHCreateDirectoryExA', 'SHBrowseForFolderA', 'SHBindToParent', 'ExtractIconW', 'DragQueryPoint', 'DragQueryFileAorW', 'DragQueryFileA', 'DoEnvironmentSubstW', 'CommandLineToArgvW', 'PathFindFileNameW', 'StrChrIW', 'StrChrW', 'StrCmpNIW', 'StrRChrIA', 'StrRChrW', 'PathFindExtensionW'], ['MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'GetMailslotInfo', 'lstrlenW', 'ReplaceFileA', 'GetConsoleAliasesW', 'GetStdHandle', 'GetLastError', 'SetConsoleTextAttribute', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'AllocConsole', 'GetProcAddress', 'SetFilePointer', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ClientToScreen', 'ClearEventLogW'], ['CreateEventA', 'WinExec', 'ExitProcess', 'ActivateKeyboardLayout', 'AdjustWindowRectEx'], ['CreateProcessA', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoA', 'GetLastError', 'VirtualQuery', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'LoadLibraryA', 'InitializeCriticalSection', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyExA', 'ShellExecuteExA'], ['StrStrA', 'PathFindFileNameW', 'HeapFree', 'FlushFileBuffers', 'Sleep', 'GetEnvironmentVariableW', 'GetShortPathNameW', 'GetModuleFileNameW', 'TerminateProcess', 'CloseHandle', 'TerminateJobObject', 'GetLastError', 'CreateProcessW', 'SetHandleInformation', 'CreatePipe', 'AssignProcessToJobObject', 'CreateJobObjectW', 'DeleteFileW', 'ReadProcessMemory', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetFileAttributesW', 'WriteFile', 'WaitForSingleObject', 'WideCharToMultiByte', 'MultiByteToWideChar', 'PeekNamedPipe', 'GetExitCodeProcess', 'GetTickCount', 'CreateEventA', 'WaitForMultipleObjects', 'CancelIo', 'GetOverlappedResult', 'ResetEvent', 'CreateNamedPipeA', 'GetNamedPipeInfo', 'CreateFileA', 'DisconnectNamedPipe', 'ConnectNamedPipe', 'GetCurrentProcess', 'GetProcAddress', 'GetModuleHandleA', 'WriteConsoleW', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'RtlUnwind', 'GetStartupInfoW', 'HeapAlloc', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'ShellExecuteW'], ['SetDllDirectoryA', 'SetWindowLongW', 'CryptGenRandom', 'HttpOpenRequestA', 'URLDownloadToCacheFileA', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetProcessWindowStation', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CreateBitmap', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateFontA', 'CreateFontIndirectA', 'CreatePalette', 'CreatePen', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'ExcludeClipRect', 'ExtTextOutA', 'ExtTextOutW', 'GetBkMode', 'GetCharABCWidthsFloatA', 'GetCharWidth32A', 'GetCharWidth32W', 'GetCharWidthA', 'GetCharWidthW', 'GetCharacterPlacementW', 'GetDeviceCaps', 'GetObjectA', 'GetPixel', 'GetStockObject', 'GetTextExtentExPointA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'IntersectClipRect', 'LineTo', 'MoveToEx', 'Polyline', 'RealizePalette', 'Rectangle', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetMapMode', 'SetPaletteEntries', 'SetPixel', 'SetTextAlign', 'SetTextColor', 'TextOutA', 'TranslateCharsetInfo', 'UnrealizeObject', 'UpdateColors', 'AppendMenuA', 'BeginPaint', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'CloseClipboard', 'CreateCaret', 'CreateDialogParamA', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExA', 'CreateWindowExW', 'DefDlgProcA', 'DefWindowProcA', 'DefWindowProcW', 'DeleteMenu', 'DestroyCaret', 'DestroyIcon', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DispatchMessageW', 'DrawEdge', 'DrawIconEx', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'FindWindowA', 'FlashWindow', 'GetCapture', 'GetCaretBlinkTime', 'GetClientRect', 'GetClipboardData', 'GetClipboardOwner', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetDlgItem', 'GetDlgItemTextA', 'GetDoubleClickTime', 'GetForegroundWindow', 'GetKeyboardLayout', 'GetKeyboardState', 'GetMessageA', 'GetMessageTime', 'GetParent', 'GetQueueStatus', 'GetScrollInfo', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowTextLengthA', 'HideCaret', 'InsertMenuA', 'InvalidateRect', 'IsDialogMessageA', 'IsDlgButtonChecked', 'IsIconic', 'IsWindow', 'IsZoomed', 'KillTimer', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'MapDialogRect', 'MessageBeep', 'MessageBoxA', 'MessageBoxIndirectA', 'MoveWindow', 'MsgWaitForMultipleObjects', 'OpenClipboard', 'PeekMessageA', 'PeekMessageW', 'PostMessageA', 'PostQuitMessage', 'RegisterClassA', 'RegisterClassW', 'RegisterClipboardFormatA', 'RegisterWindowMessageA', 'ReleaseCapture', 'ReleaseDC', 'ScreenToClient', 'SendDlgItemMessageA', 'SendMessageA', 'SetActiveWindow', 'SetCapture', 'SetCaretPos', 'SetClassLongA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetFocus', 'SetForegroundWindow', 'SetKeyboardState', 'SetScrollInfo', 'SetTimer', 'SetWindowLongA', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextA', 'ShowCaret', 'ShowCursor', 'ShowWindow', 'SystemParametersInfoA', 'ToAsciiEx', 'TrackPopupMenu', 'TranslateMessage', 'UpdateWindow', 'ChooseColorA', 'ChooseFontA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'ShellExecuteA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'ImmGetCompositionStringW', 'ImmGetContext', 'ImmReleaseContext', 'ImmSetCompositionFontA', 'ImmSetCompositionWindow', 'AllocateAndInitializeSid', 'CopySid', 'EqualSid', 'GetLengthSid', 'GetUserNameA', 'InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorOwner', 'Beep', 'ClearCommBreak', 'CloseHandle', 'CompareStringW', 'ConnectNamedPipe', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeA', 'CreatePipe', 'CreateProcessA', 'CreateThread', 'DecodePointer', 'DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindFirstFileExA', 'FindNextFileA', 'FindResourceA', 'FlushFileBuffers', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommState', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetFileAttributesExA', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemTimeAsFileTime', 'GetTempPathA', 'GetThreadTimes', 'GetTickCount', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetVersionExA', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalMemoryStatus', 'GlobalUnlock', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockResource', 'MapViewOfFile', 'MulDiv', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringW', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'RtlUnwind', 'SetCommBreak', 'SetCommState', 'SetCommTimeouts', 'SetCurrentDirectoryA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFilePointerEx', 'SetHandleInformation', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WaitNamedPipeA', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile'], ['CreateFileA', 'CreateTimerQueue', 'GetFileSize', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'GetCurrentActCtx', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'FillConsoleOutputCharacterA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'GetACP', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'DeleteFileA', 'MultiByteToWideChar', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'SetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'ImpersonateSelf'], ['RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'SetFileSecurityA', 'ImageList_AddMasked', 'ImageList_Create', 'ImageList_Destroy', 'InitCommonControls', 'CreateBrushIndirect', 'CreateFontIndirectA', 'DeleteObject', 'GetDeviceCaps', 'SelectObject', 'SetBkColor', 'SetBkMode', 'SetTextColor', 'CloseHandle', 'CompareFileTime', 'CopyFileA', 'CreateDirectoryA', 'CreateFileA', 'CreateProcessA', 'CreateThread', 'DeleteFileA', 'ExitProcess', 'ExpandEnvironmentStringsA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetCurrentProcess', 'GetDiskFreeSpaceA', 'GetExitCodeProcess', 'GetFileAttributesA', 'GetFileSize', 'GetFullPathNameA', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetShortPathNameA', 'GetSystemDirectoryA', 'GetTempFileNameA', 'GetTempPathA', 'GetTickCount', 'GetVersion', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'LoadLibraryA', 'LoadLibraryExA', 'MoveFileA', 'MulDiv', 'MultiByteToWideChar', 'ReadFile', 'RemoveDirectoryA', 'SearchPathA', 'SetCurrentDirectoryA', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'SetFileTime', 'Sleep', 'WaitForSingleObject', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpynA', 'lstrlenA', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'SHBrowseForFolderA', 'SHFileOperationA', 'SHGetFileInfoA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'AppendMenuA', 'BeginPaint', 'CallWindowProcA', 'CharNextA', 'CharPrevA', 'CheckDlgButton', 'CloseClipboard', 'CreateDialogParamA', 'CreatePopupMenu', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawTextA', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'ExitWindowsEx', 'FillRect', 'FindWindowExA', 'GetClassInfoA', 'GetClientRect', 'GetDC', 'GetDlgItem', 'GetDlgItemTextA', 'GetMessagePos', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowRect', 'InvalidateRect', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'LoadBitmapA', 'LoadCursorA', 'LoadImageA', 'MessageBoxIndirectA', 'OpenClipboard', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassA', 'ScreenToClient', 'SendMessageA', 'SendMessageTimeoutA', 'SetClassLongA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetForegroundWindow', 'SetTimer', 'SetWindowLongA', 'SetWindowPos', 'SetWindowTextA', 'ShowWindow', 'SystemParametersInfoA', 'TrackPopupMenu', 'wsprintfA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'GetACP', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryW', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCurrentDirectoryW', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CreateFileW', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WindowFromDC', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LockWindowUpdate', 'LoadStringW', 'LoadMenuW', 'LoadKeyboardLayoutW', 'LoadImageW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsClipboardFormatAvailable', 'IsChild', 'IsCharAlphaNumericW', 'IsCharAlphaW', 'InvalidateRgn', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndMenu', 'EndDialog', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextA', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DestroyAcceleratorTable', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CreateAcceleratorTableW', 'CountClipboardFormats', 'CopyRect', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharUpperW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BringWindowToTop', 'BeginPaint', 'CharLowerBuffA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMetaFileBitsEx', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'ResizePalette', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetTextColor', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetNearestPaletteIndex', 'GetNearestColor', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'FillRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteMetaFile', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRoundRectRgn', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateMetaFileW', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'CloseMetaFile', 'Chord', 'BitBlt', 'ArcTo', 'Arc', 'AngleArc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WNetGetConnectionW', 'lstrlenA', 'lstrlenW', 'lstrcmpW', 'WritePrivateProfileStringW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObjectEx', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReleaseMutex', 'ReadFile', 'RaiseException', 'QueryDosDeviceW', 'IsDebuggerPresent', 'OpenMutexW', 'OpenFileMappingW', 'MultiByteToWideChar', 'MulDiv', 'MapViewOfFile', 'LockResource', 'LocalFree', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVolumeInformationW', 'GetVersionExW', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathW', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetMailslotInfo', 'GetLogicalDrives', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsW', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CopyFileW', 'CompareStringA', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'GetUserNameW', 'Sleep', 'CoCreateGuid', 'GetErrorInfo', 'SysFreeString', 'CreateILockBytesOnHGlobal', 'OleGetIconOfClass', 'OleSetMenuDescriptor', 'OleSetContainedObject', 'OleCreateFromFile', 'OleCreateLinkToFile', 'OleCreateStaticFromData', 'OleCreateLinkFromData', 'OleCreateFromData', 'OleCreate', 'OleUninitialize', 'OleInitialize', 'CreateBindCtx', 'StgCreateDocfileOnILockBytes', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateGuid', 'CLSIDFromProgID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'EnumDisplayMonitors', 'GetMonitorInfoW', 'MonitorFromPoint', 'MonitorFromRect', 'MonitorFromWindow', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW', 'ShellExecuteW', 'DragQueryFileW', 'DragFinish', 'DragAcceptFiles', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHGetMalloc', 'SHGetDesktopFolder', 'SHChangeNotify', 'SHBrowseForFolderW', 'ReplaceTextW', 'FindTextW', 'ChooseColorW', 'GetSaveFileNameW', 'GetOpenFileNameW', 'waveOutSetVolume', 'timeGetTime', 'sndPlaySoundW', 'PlaySoundW', 'mciSendCommandW', 'mciGetErrorStringW', 'OleUIObjectPropertiesW', 'OleUIPasteSpecialW', 'OleUIInsertObjectW', 'GetVersionExW', 'CreateMutexW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'TlsFree', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['GetModuleHandleA', 'GetDC', 'GetUserNameA', 'ShellAboutW', 'ImageList_SetBkColor', '_CorExeMain'], ['OpenEventA', 'SetThreadLocale', 'CopyFileA', 'LoadLibraryA', 'SetLocaleInfoW', 'OpenSemaphoreA', 'CloseHandle', 'ReadFile', 'GetFileSize', 'SetConsoleMode', 'CreateFileA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetModuleHandleW', 'GetCurrentProcessId', 'CompareStringW', 'GetFileAttributesW', 'CompareStringA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'SetConsoleCtrlHandler', 'GetLastError', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'HeapAlloc', 'RtlUnwind', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapFree', 'RaiseException', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'IsBadWritePtr', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'WriteFile', 'SetUnhandledExceptionFilter', 'IsBadReadPtr', 'IsBadCodePtr', 'SetEnvironmentVariableA', 'DestroyWindow', 'IsWindow', 'GetWindowTextLengthW', 'GetWindowTextA', 'IsZoomed', 'CreatePopupMenu', 'IsWindowVisible', 'FindWindowExA', 'CreateMenu', 'CreateWindowExW', 'FindWindowExW'], ['NtCreateTimer', 'NtAlertThread', 'NtSetTimer', 'RtlGetGroupSecurityDescriptor', 'RtlGetOwnerSecurityDescriptor', 'RtlGetSaclSecurityDescriptor', 'RtlLengthSecurityDescriptor', 'NtCreateSemaphore', 'NtQueryObject', 'NtClearEvent', 'NtCreateKeyedEvent', 'NtWaitForKeyedEvent', 'NtReleaseKeyedEvent', 'RtlGetVersion', 'NtDeviceIoControlFile', 'NtSetInformationObject', 'NtQueryFullAttributesFile', 'NtSuspendProcess', 'NtOpenFile', 'NtQuerySecurityObject', 'NtOpenSection', 'NtQueryDirectoryFile', 'NtCreateFile', 'NtCreateKey', 'NtWriteVirtualMemory', 'NtSetContextThread', 'NtOpenThreadToken', 'NtQueryDirectoryObject', 'NtFsControlFile', 'NtDuplicateObject', 'NtOpenDirectoryObject', 'NtReadVirtualMemory', 'RtlPrefixUnicodeString', 'NtSetSecurityObject', 'NtResumeProcess', 'NtOpenProcess', 'NtQuerySymbolicLinkObject', 'RtlConvertSidToUnicodeString', 'NtOpenKey', 'NtUnloadDriver', 'RtlEqualUnicodeString', 'NtOpenSymbolicLinkObject', 'NtGetContextThread', 'NtOpenThread', 'NtDeleteKey', 'NtQueryKey', 'NtQueryValueKey', 'LdrLoadDll', 'LdrUnloadDll', 'NtSuspendThread', 'LdrGetProcedureAddress', 'NtQueryInformationFile', 'NtFlushBuffersFile', 'NtLockFile', 'NtUnlockFile', 'RtlInterlockedPopEntrySList', 'RtlUnicodeToMultiByteSize', 'RtlMultiByteToUnicodeSize', 'RtlMultiByteToUnicodeN', 'RtlReAllocateHeap', 'RtlUpcaseUnicodeChar', 'RtlUnicodeToMultiByteN', 'RtlExpandEnvironmentStrings_U', 'NtResumeThread', 'RtlGetDaclSecurityDescriptor', 'RtlCreateUserProcess', 'RtlNtStatusToDosError', 'RtlCreateProcessParameters', 'NtFilterToken', 'RtlStringFromGUID', 'RtlFindMessage', 'NtQueryAttributesFile', 'RtlAddAce', 'RtlDestroyProcessParameters', 'RtlDosPathNameToNtPathName_U', 'RtlFreeUnicodeString', 'RtlGetAce', 'RtlRandomEx', 'NtDuplicateToken', 'RtlGetFullPathName_U', 'NtSetInformationToken', 'NtTerminateProcess', 'NtCreateDebugObject', 'RtlCreateUserThread', 'NtAllocateVirtualMemory', 'NtCreateJobObject', 'NtTerminateThread', 'NtDebugActiveProcess', 'NtPowerInformation', 'NtTestAlert', 'RtlTimeToSecondsSince1980', 'RtlEqualSid', 'RtlSecondsSince1980ToTime', 'NtIsProcessInJob', 'RtlFirstEntrySList', 'RtlCreateSecurityDescriptor', 'RtlCreateAcl', 'RtlAddAccessAllowedAce', 'NtAcceptConnectPort', 'NtReplyWaitReceivePort', 'NtCompleteConnectPort', 'RtlSetDaclSecurityDescriptor', 'RtlSubAuthoritySid', 'NtCreatePort', 'RtlInitializeSid', 'RtlLengthRequiredSid', 'NtQueryInformationProcess', 'NtRemoveProcessDebug', 'NtSetInformationThread', 'NtDelayExecution', 'NtClose', 'RtlValidRelativeSecurityDescriptor', 'RtlSelfRelativeToAbsoluteSD2', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'RtlUnwindEx', 'RtlValidSid', 'NtConnectPort', 'NtRequestWaitReplyPort', 'RtlAbsoluteToSelfRelativeSD', 'RtlLengthSid', 'NtCreateSection', 'NtQueryMutant', 'NtReleaseSemaphore', 'NtSetHighEventPair', 'NtQueryEvent', 'NtQuerySemaphore', 'NtCancelTimer', 'NtPulseEvent', 'NtSetLowEventPair', 'NtQueryTimer', 'NtResetEvent', 'RtlIpv6AddressToStringW', 'RtlIpv4AddressToStringW', 'RtlInterlockedFlushSList', 'RtlInitializeSListHead', 'RtlInterlockedPushEntrySList', 'RtlSecondsSince1970ToTime', 'RtlCreateHeap', 'RtlFreeHeap', 'RtlAllocateHeap', 'RtlDestroyHeap', 'NtQueryVirtualMemory', 'NtProtectVirtualMemory', 'NtSetSystemInformation', 'NtSetInformationFile', 'NtQueryInformationToken', 'NtOpenProcessToken', 'NtCreateMutant', 'NtAdjustPrivilegesToken', 'NtTerminateJobObject', 'NtAssignProcessToJobObject', 'NtQueryInformationJobObject', 'NtMapViewOfSection', 'NtQuerySection', 'RtlSetHeapInformation', 'RtlLeaveCriticalSection', 'RtlInitializeCriticalSection', 'RtlEnterCriticalSection', 'RtlQueryEnvironmentVariable_U', 'NtQueryPerformanceCounter', 'RtlDeleteCriticalSection', 'NtSetValueKey', 'RtlDetermineDosPathNameType_U', 'NtDeleteValueKey', 'NtAddAtom', 'RtlGUIDFromString', 'NtWaitForMultipleObjects', 'NtSetEvent', 'NtCreateEvent', 'NtReadFile', 'NtWriteFile', 'NtQueryInformationThread', 'NtQuerySystemInformation', 'NtWaitForSingleObject', 'RtlDoesFileExists_U', 'NtSetInformationDebugObject', 'NtUnmapViewOfSection', 'RtlRaiseStatus', 'NtSetInformationProcess', 'NtInitiatePowerAction', 'NtFreeVirtualMemory', 'WinStationSendMessageW', 'WinStationShadow', 'WinStationGetAllProcesses', 'WinStationFreeGAPMemory', 'WinStationRegisterConsoleNotification', 'WinStationQueryInformationW', 'WinStationFreeMemory', 'WinStationEnumerateW', 'WinStationReset', 'WinStationDisconnect', 'WinStationConnectW', 'ImageList_SetImageCount', 'PropertySheetW', 'InitCommonControlsEx', 'CreatePropertySheetPageW', 'ImageList_Remove', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_ReplaceIcon', 'ImageList_Replace', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetModuleHandleW', 'GetProcAddress', 'GetLastError', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'CreateProcessW', 'SetConsoleCtrlHandler', 'RaiseException', 'WriteConsoleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'TlsFree', 'LoadLibraryExW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetStringTypeW', 'MultiByteToWideChar', 'GetACP', 'GetStdHandle', 'WriteFile', 'WideCharToMultiByte', 'GetCurrentProcess', 'TerminateProcess', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'LCMapStringW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetCPInfo', 'IsValidCodePage', 'GetOEMCP', 'CloseHandle', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetProcessHeap', 'CreateFileW', 'GetConsoleCP', 'GlobalSize', 'LocalAlloc', 'GlobalUnlock', 'GlobalLock', 'FindResourceW', 'LoadResource', 'GlobalFree', 'GlobalAlloc', 'LockResource', 'SizeofResource', 'ExitThread', 'CreateRemoteThread', 'CreateThread', 'SetEndOfFile', 'GetDateFormatW', 'GetTimeFormatW', 'GetNumberFormatW', 'GetSystemDefaultLangID', 'GetSystemDirectoryW', 'GetLocaleInfoW', 'GetUserDefaultLangID', 'SearchPathW', 'LocalFree', 'SetLastError', 'GetComputerNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'FreeLibrary', 'LoadLibraryW', 'SetProcessShutdownParameters', 'ExitProcess', 'SetErrorMode', 'GetTickCount', 'AllocConsole', 'GetConsoleWindow', 'FreeConsole', 'GetConsoleMode', 'SetFilePointerEx', 'FlushFileBuffers', 'ReadFile', 'ReadConsoleW', 'HeapSize', 'HeapReAlloc', 'CreatePipe', 'GetActiveWindow', 'GetFocus', 'GetWindowTextLengthW', 'GetWindowLongW', 'DestroyMenu', 'TrackPopupMenu', 'CreatePopupMenu', 'InsertMenuItemW', 'EndPaint', 'BeginPaint', 'ReleaseCapture', 'PtInRect', 'SetScrollPos', 'ShowCaret', 'EnableScrollBar', 'SetCapture', 'DestroyCaret', 'DragDetect', 'GetClipboardData', 'CreateCaret', 'SetCaretPos', 'GetScrollInfo', 'RegisterClipboardFormatW', 'SetScrollInfo', 'GetDCEx', 'FrameRect', 'ScreenToClient', 'ScrollWindowEx', 'GetUpdateRect', 'GetMessageTime', 'DrawFocusRect', 'GetCapture', 'GetAsyncKeyState', 'InvalidateRgn', 'WaitMessage', 'MessageBeep', 'GetMessagePos', 'GetUpdateRgn', 'GetIconInfo', 'SetCursorPos', 'DialogBoxParamW', 'SetDlgItemTextW', 'EndDialog', 'LockWorkStation', 'ExitWindowsEx', 'SendMessageW', 'IsWindowVisible', 'EnableWindow', 'GetParent', 'GetDlgItem', 'SetPropW', 'IsWindowEnabled', 'RemovePropW', 'GetPropW', 'GetClassNameW', 'GetWindowThreadProcessId', 'IsIconic', 'InvalidateRect', 'SetForegroundWindow', 'GetClientRect', 'FindWindowW', 'SetLayeredWindowAttributes', 'MoveWindow', 'ClientToScreen', 'GetMonitorInfoW', 'GetWindowInfo', 'RedrawWindow', 'ShowWindow', 'GetSubMenu', 'GetWindowPlacement', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'GetMenuItemCount', 'MonitorFromRect', 'SetWindowPos', 'GetMenu', 'FindWindowExW', 'PostMessageW', 'GetKeyState', 'GetMenuItemInfoW', 'MapWindowPoints', 'SetWindowTextW', 'GetWindowRect', 'MapDialogRect', 'DestroyIcon', 'EnableMenuItem', 'BringWindowToTop', 'DeleteMenu', 'GetSystemMenu', 'SetCursor', 'LoadCursorW', 'CreateDialogParamW', 'GetSysColorBrush', 'GetSysColor', 'CopyIcon', 'SetDlgItemInt', 'SetTimer', 'DestroyWindow', 'ReleaseDC', 'SystemParametersInfoW', 'TranslateMessage', 'TranslateAcceleratorW', 'IsChild', 'IsDialogMessageW', 'DispatchMessageW', 'LoadAcceleratorsW', 'GetSystemMetrics', 'GetDC', 'SendMessageTimeoutW', 'GetMessageW', 'LoadImageW', 'UpdateWindow', 'PostQuitMessage', 'KillTimer', 'AppendMenuW', 'EndDeferWindowPos', 'DrawMenuBar', 'LoadIconW', 'SetFocus', 'SetMenuInfo', 'SetMenuItemInfoW', 'BeginDeferWindowPos', 'IsWindow', 'RegisterClassExW', 'CreateWindowExW', 'ShowWindowAsync', 'LoadMenuW', 'DefWindowProcW', 'DeferWindowPos', 'GetCursorPos', 'DrawIconEx', 'DrawTextW', 'TrackMouseEvent', 'IsHungAppWindow', 'SetActiveWindow', 'MonitorFromWindow', 'MonitorFromPoint', 'CallWindowProcW', 'GetForegroundWindow', 'GetDoubleClickTime', 'CreateIconIndirect', 'FillRect', 'GetDlgItemInt', 'GetGuiResources', 'OpenWindowStationW', 'GetProcessWindowStation', 'OpenDesktopW', 'GetUserObjectInformationW', 'CloseDesktop', 'CloseWindowStation', 'EnumDesktopsW', 'EnumWindows', 'GetGUIThreadInfo', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'GetWindowTextW', 'CreateDialogIndirectParamW', 'GetDesktopWindow', 'SetClipboardData', 'InternalGetWindowText', 'EmptyClipboard', 'CloseClipboard', 'OpenClipboard', 'GetDIBits', 'SaveDC', 'GetCharWidthW', 'Rectangle', 'SetBkMode', 'BitBlt', 'DeleteDC', 'CreateDIBSection', 'GetClipRgn', 'GetStockObject', 'Polyline', 'SetDCBrushColor', 'SetDCPenColor', 'SelectObject', 'GetTextMetricsW', 'GetTextExtentPoint32W', 'GetTextColor', 'DeleteObject', 'CreateFontW', 'GetDeviceCaps', 'SetTextColor', 'SetBkColor', 'GetObjectW', 'CreateFontIndirectW', 'TextOutW', 'SelectClipRgn', 'ExcludeClipRect', 'RestoreDC', 'CombineRgn', 'IntersectClipRect', 'GdiAlphaBlend', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SetBoundsRect', 'CreateRectRgn', 'GetOpenFileNameW', 'GetSaveFileNameW', 'ChooseFontW', 'ChooseColorW', 'SystemFunction036', 'GetSecurityInfo', 'SetSecurityInfo', 'LsaLookupPrivilegeValue', 'LsaLookupPrivilegeDisplayName', 'LsaLookupNames2', 'LsaOpenPolicy', 'LsaLookupPrivilegeName', 'EnumServicesStatusExW', 'QueryServiceConfigW', 'CreateProcessWithLogonW', 'LsaOpenAccount', 'LsaEnumeratePrivilegesOfAccount', 'LogonUserW', 'CreateProcessAsUserW', 'QueryServiceConfig2W', 'OpenServiceW', 'RegisterServiceCtrlHandlerExW', 'LsaEnumerateAccounts', 'LsaFreeMemory', 'SetServiceStatus', 'StartServiceCtrlDispatcherW', 'CreateServiceW', 'OpenSCManagerW', 'ChangeServiceConfig2W', 'ChangeServiceConfigW', 'LsaAddAccountRights', 'LsaClose', 'CloseServiceHandle', 'DeleteService', 'ControlService', 'StartServiceW', 'LsaLookupSids', 'DuplicateIcon', 'SHGetFileInfoW', 'ShellExecuteExW', 'SHGetFolderPathW', 'SHCreateDirectoryExW', 'Shell_NotifyIconW', 'ExtractIconExW', 'CoTaskMemFree', 'CoInitializeEx', 'CoCreateInstance', 'CoUninitialize', 'SysFreeString'], ['Sleep', 'CreateSemaphoreA', 'GetEnvironmentVariableA', 'GetModuleFileNameA', 'HeapAlloc', 'GetProcessHeap', 'VirtualProtect', 'SetStdHandle', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoA', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'GetStringTypeW', 'MultiByteToWideChar', 'InterlockedCompareExchange', 'InterlockedExchange', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetCPInfo', 'LCMapStringW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'SetFilePointer', 'FlushFileBuffers', 'CloseHandle', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'GetLocaleInfoW', 'CreateFileW', 'DhcpCApiInitialize', 'DhcpDeRegisterParamChange', 'DhcpRegisterParamChange', 'DhcpRemoveDNSRegistrations', 'DhcpCApiCleanup'], ['LoadLibraryExW', 'InterlockedIncrement', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'FindActCtxSectionStringA', 'GlobalAlloc', 'ReadConsoleInputA', 'LeaveCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'EnumSystemLocalesA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'GetDefaultCommConfigW', 'SetThreadContext', 'GetAtomNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'GetFileType', 'ContinueDebugEvent', 'UpdateResourceW', 'GetStringTypeW', 'GetConsoleTitleW', 'GetFileTime', 'GetVersionExA', 'GetVolumeNameForVolumeMountPointW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'SetStdHandle', 'GetLocaleInfoA', 'GetComputerNameA', 'EnterCriticalSection', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'IsValidLocale', 'GetStringTypeA', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'ScreenToClient', 'GetCharWidthFloatA', 'ClearEventLogW'], ['GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'VirtualAlloc', 'VirtualFree', 'MessageBoxA'], ['GetModuleHandleA', 'IsChild', 'GetUserNameW', '_CorExeMain', 'DSA_Create', 'SHChangeNotifyRegister'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'ReportEventA', 'RegisterEventSourceA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'DeregisterEventSource', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageExtraInfo', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'StartServiceCtrlDispatcherA', 'SetServiceStatus', 'RegisterServiceCtrlHandlerA', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'CreateServiceA', 'CloseServiceHandle', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetCurrentThreadId', 'WriteFile', 'SHGetFolderPathA', 'ShellExecuteA', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['ShellAboutA', '_CorExeMain', 'GetUserNameW', 'OffsetRect', 'GetModuleHandleA'], ['CertVerifyCertificateChainPolicy', 'CertFreeCertificateChain', 'CertFreeCertificateChainEngine', 'CertFreeCertificateContext', 'CertGetCertificateChain', 'CertCreateCertificateChainEngine', 'InitSecurityInterfaceA', 'SetEvent', 'TerminateThread', 'GetCurrentProcessId', 'CreateEventA', 'SetWaitableTimer', 'TlsSetValue', 'VerifyVersionInfoA', 'SetLastError', 'EnterCriticalSection', 'WaitForMultipleObjects', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'GetQueuedCompletionStatus', 'PostQueuedCompletionStatus', 'CreateEventW', 'FormatMessageW', 'TlsAlloc', 'QueueUserAPC', 'CreateWaitableTimerA', 'LocalFree', 'DeleteCriticalSection', 'VerSetConditionMask', 'WideCharToMultiByte', 'SleepEx', 'TlsGetValue', 'TlsFree', 'FormatMessageA', 'CreateIoCompletionPort', 'AreFileApisANSI', 'ReadFile', 'SetHandleInformation', 'CreateNamedPipeA', 'WriteFile', 'TerminateProcess', 'GetCurrentThreadId', 'GetSystemDirectoryW', 'MultiByteToWideChar', 'CreateFileA', 'GetEnvironmentStrings', 'CreateProcessA', 'FreeEnvironmentStringsA', 'GetExitCodeProcess', 'FileTimeToSystemTime', 'LoadLibraryW', 'GetLocalTime', 'GetProcAddress', 'SystemTimeToFileTime', 'GetModuleHandleW', 'GetCurrentProcess', 'Thread32Next', 'Thread32First', 'GetModuleHandleA', 'LoadLibraryA', 'VirtualProtectEx', 'OpenThread', 'GetModuleFileNameW', 'SetFilePointer', 'lstrlenA', 'CreateFileW', 'lstrcmpA', 'VirtualAlloc', 'HeapFree', 'GetLastError', 'HeapAlloc', 'GetProcessHeap', 'VirtualQuery', 'lstrcpyA', 'Wow64DisableWow64FsRedirection', 'ExpandEnvironmentStringsW', 'Wow64RevertWow64FsRedirection', 'GetWindowsDirectoryW', 'GetCurrentDirectoryW', 'GlobalMemoryStatusEx', 'VerifyVersionInfoW', 'GetFileAttributesW', 'Process32NextW', 'Process32FirstW', 'GetStdHandle', 'RtlCaptureContext', 'WaitForSingleObjectEx', 'ResetEvent', 'SetFilePointerEx', 'HeapSize', 'GetConsoleMode', 'Sleep', 'lstrcatA', 'GetFileAttributesA', 'OpenProcess', 'GetModuleFileNameA', 'CloseHandle', 'CreateToolhelp32Snapshot', 'WaitForSingleObject', 'GetCPInfo', 'GetConsoleCP', 'FlushFileBuffers', 'SetStdHandle', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'FindNextFileA', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'RaiseException', 'DecodePointer', 'EncodePointer', 'RtlPcToFileHeader', 'RtlVirtualUnwind', 'HeapReAlloc', 'FindFirstFileExA', 'FindClose', 'GetTimeZoneInformation', 'GetOEMCP', 'IsValidCodePage', 'OutputDebugStringW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'ExitProcess', 'GetACP', 'WriteConsoleW', 'GetFileType', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'FreeLibrary', 'RtlUnwindEx', 'InterlockedFlushSList', 'InitializeSListHead', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlLookupFunctionEntry', 'wsprintfW', 'FindWindowW', 'LookupPrivilegeValueA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetUserNameW', 'SHGetSpecialFolderPathA', 'SHGetSpecialFolderPathW', 'CoCreateInstance', 'CoInitializeSecurity', 'CoInitializeEx', 'CoSetProxyBlanket', 'CoUninitialize', 'SafeArrayGetUBound', 'SafeArrayGetElement', 'SafeArrayGetLBound', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SysFreeString', 'SysAllocString', 'VariantClear', 'VariantInit', 'WNetGetProviderNameW', 'GetAdaptersInfo', 'getaddrinfo', 'WSASocketW', 'WSASetLastError', 'select', 'WSAStartup', 'WSAGetLastError', 'setsockopt', 'connect', 'ioctlsocket', 'freeaddrinfo', 'getsockopt', 'WSASend', 'closesocket', 'WSACleanup', 'WSARecv', 'PathCombineW', 'StrCmpIW', 'StrChrA', 'StrStrIW', 'StrToIntA'], ['CM_Get_Res_Des_Data_Ex', 'CM_Get_Device_Interface_List_ExW', 'SetupUninstallNewlyCopiedInfs', 'GetForegroundWindow', 'GetLastInputInfo', 'RedrawWindow', 'GdiComment', 'DrawEscape', 'BuildExplicitAccessWithNameW', 'UuidEqual', 'GetComputerObjectNameW', 'QuerySecurityPackageInfoW', 'HttpEndRequestW', 'SCardForgetCardTypeW', 'GetPrinterDriverW', 'GetFileInformationByHandle', 'SetInformationJobObject', 'GetProcAddress', 'GetModuleHandleA'], ['WriteFile', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['GdipCreateBitmapFromHBITMAP', 'GdiplusStartup', 'GdipDisposeImage', 'GdipFree', 'GdipAlloc', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipSaveImageToFile', 'PathFindExtensionW', 'PathFindFileNameW', 'GetProcessImageFileNameW', 'EnumProcesses', 'isxdigit', 'wcsstr', 'wcsncmp', 'strstr', '_vsnwprintf', '_allshl', '_alldiv', '_aullshr', 'RtlUnwind', 'HeapFree', 'GetProcessHeap', 'WriteFile', 'GlobalAlloc', 'Sleep', 'GetFileAttributesW', 'CreateFileW', 'ExitThread', 'FlushFileBuffers', 'GetLastError', 'GlobalFree', 'FindClose', 'CloseHandle', 'DeleteFileW', 'SetFileAttributesW', 'GetVolumeInformationW', 'GlobalMemoryStatus', 'FreeLibrary', 'QueryPerformanceCounter', 'GetTickCount', 'LoadLibraryW', 'GetLogicalDriveStringsW', 'GetCurrentProcessId', 'GetEnvironmentVariableW', 'CreateProcessW', 'GetCurrentProcess', 'WaitForSingleObject', 'GetModuleHandleW', 'CopyFileW', 'GetModuleFileNameW', 'SetThreadPriority', 'SetLastError', 'LocalAlloc', 'GetShortPathNameW', 'LocalFree', 'CreateThread', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'MoveFileExW', 'HeapAlloc', 'GetDriveTypeW', 'SetFilePointer', 'GetFileSize', 'ReadFile', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetConsoleCP', 'GetVersionExW', 'GetConsoleMode', 'MultiByteToWideChar', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleW', 'IsProcessorFeaturePresent', 'HeapSize', 'SetEndOfFile', 'GetProcAddress', 'GetCurrentThreadId', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCPInfo', 'GetStdHandle', 'ExitProcess', 'HeapCreate', 'DecodePointer', 'EncodePointer', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'LoadStringW', 'GetDC', 'ReleaseDC', 'DrawTextA', 'SetBkMode', 'CreateFontW', 'GetStockObject', 'DeleteDC', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SetTextColor', 'RegQueryValueExA', 'AdjustTokenPrivileges', 'CheckTokenMembership', 'FreeSid', 'AllocateAndInitializeSid', 'LookupPrivilegeValueA', 'GetTokenInformation', 'GetSidSubAuthority', 'OpenProcessToken', 'RegSetValueExW', 'RegCloseKey', 'RegFlushKey', 'RegCreateKeyExA', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteExW', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoInitializeEx', 'WNetEnumResourceW', 'WNetOpenEnumW', 'WNetCloseEnum', 'InternetOpenA', 'InternetCrackUrlA', 'HttpSendRequestA', 'InternetSetOptionA', 'InternetCloseHandle'], ['RegCloseKey', 'MiniDumpWriteDump', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'GetModuleFileNameExA', 'ShowWindow', 'VerQueryValueA', 'InternetOpenA', 'WSAGetLastError'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'ShellExecuteA'], ['KeClearEvent', 'HalReturnToFirmware', 'FltParseFileNameInformation', 'IoAllocateMdl', 'MmProbeAndLockPages', 'MmMapLockedPagesSpecifyCache', 'MmUnlockPages', 'IoFreeMdl', 'ExAllocatePool', 'ExFreePool', 'NtQuerySystemInformation', 'HalMakeBeep'], ['MoveFileExA', 'AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'LocalHandle', 'GetMailslotInfo', 'GetBinaryTypeW', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'GetModuleHandleA', 'QueueUserWorkItem', 'VirtualProtect', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['GetModuleHandleA', 'FindWindowA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['ClusterRegCloseKey', 'GetProcessShutdownParameters', 'CreateTimerQueue', 'GetFileSize', 'GetPrivateProfileStructW', 'IsSystemResumeAutomatic', 'LocaleNameToLCID', 'LoadLibraryA', 'GetLastError', 'InterlockedExchange', 'FreeLibrary', 'RaiseException', 'GetProcAddress', 'LocalFree', 'LocalAlloc', 'CertGetCRLContextProperty', 'WSAIsBlocking', 'LoadCursorA', 'MprAdminPortDisconnect', 'SetupGetBackupInformationW', 'memcpy', 'PathUnExpandEnvStringsA'], ['CloseHandle', 'lstrcpynA', 'lstrlenA', 'LoadLibraryA', 'GetCurrentDirectoryW', 'GetFileAttributesExW', 'GetVolumeNameForVolumeMountPointA', 'UnlockFile', 'GetNumberFormatA', 'PeekConsoleInputW', 'SetConsoleCursorPosition', 'CreateFileW', 'GetStringTypeW', 'OutputDebugStringW', 'DebugActiveProcessStop', 'GetLastError', 'TerminateProcess', 'LocalAlloc', 'GlobalAlloc', 'WTSGetActiveConsoleSessionId', 'GetProcAddress', 'WriteConsoleW', 'SetFilePointerEx', 'SetStdHandle', 'HeapReAlloc', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LoadLibraryExW', 'EncodePointer', 'DecodePointer', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'RaiseException', 'RtlUnwind', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleExW', 'AreFileApisANSI', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'DeleteCriticalSection', 'ReadFile', 'ReadConsoleW', 'GetCurrentThreadId', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetEndOfFile', 'GetClassInfoW', 'PeekMessageA', 'SetMapperFlags', 'AddFontResourceExA', 'GetCharWidthA', 'GetBitmapBits', 'Ellipse', 'SetMapMode', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpOpenRequest', 'WinHttpSendRequest', 'WinHttpQueryHeaders', 'WinHttpReadData', 'GradientFill'], ['CloseHandle', 'CreateSemaphoreW', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentThreadId', 'GetLastError', 'GetStartupInfoA', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'RaiseException', 'ReleaseSemaphore', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_commode', '_errno', '_fmode', '_initterm', '_onexit', '_wcsicmp', '_wcsnicmp', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'fputs', 'fputwc', 'free', 'fwprintf', 'fwrite', 'localeconv', 'malloc', 'memcpy', 'memset', 'realloc', 'signal', 'strcat', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strstr', 'vfprintf', 'wcscat', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsstr'], ['GetModuleHandleA', 'ValidateRect', 'RegQueryValueA', 'ShellAboutW', '_CorExeMain', 'ImageList_SetBkColor'], ['CreateFileA', 'CreateTimerQueue', 'GetFileSize', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'GetCurrentActCtx', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'WriteConsoleInputA', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'SetComputerNameExW', 'CreateActCtxA', 'GetOverlappedResult', 'FillConsoleOutputCharacterA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'EnumDateFormatsExA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'GlobalGetAtomNameA', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObject', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'SetCurrentDirectoryW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'SetThreadAffinityMask', 'SetProcessShutdownParameters', 'Module32NextW', 'GetVersionExA', 'ReadConsoleInputW', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'GetACP', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'WideCharToMultiByte', 'DeleteFileA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetStdHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'ImpersonateSelf'], ['FindCloseUrlCache', 'lstrlenW', 'GetEnvironmentStrings', 'ClearCommBreak', 'GetCurrentThread', 'GetOEMCP', 'GetCurrentThreadId', 'SwitchToThread', 'FindFirstVolumeMountPointW', 'GetModuleFileNameW', 'GetSystemDefaultUILanguage', 'GetBinaryTypeW', 'CompareStringA', 'GetTimeZoneInformation', 'GetLocaleInfoW', 'UnhandledExceptionFilter', 'GetACP', 'GetSystemRegistryQuota', 'CompareStringW', 'GetModuleHandleW', 'WriteFile', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'HeapReAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'GetVersionExA', 'GetStartupInfoA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetLastError', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringW', 'SetUnhandledExceptionFilter', 'GetModuleHandleA', 'ExitProcess', 'SetEnvironmentVariableA', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'HeapAlloc', 'OutputDebugStringA', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'Sleep', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryExA', 'ExtractIconA', 'FindNextPrinterChangeNotification', 'AreAnyAccessesGranted', 'GetFontUnicodeRanges', 'GetMapMode', 'LoadImageA', 'DefFrameProcA', 'GetFileVersionInfoA'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpW', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceW', 'VirtualAlloc', 'GetBinaryTypeW', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'CoInitialize', 'SHGetFileInfoA', 'MessageBoxA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', 'GetCursorPos', 'memset', '_initialize_onexit_table', '_libm_sse2_sqrt_precise', '_set_fmode', '_configthreadlocale', 'free', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'CreateDCW', 'UnregisterClassA', 'CoRevokeClassObject', 'SysFreeString', 'LresultFromObject', 'GetFileTitleW', 'DragAcceptFiles', 'PathFindExtensionW', 'RegQueryValueW'], ['SetVolumeLabelA', 'GetNumaNodeProcessorMask', 'SetPriorityClass', 'IsBadStringPtrW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetDefaultCommConfigW', 'GetProcessIoCounters', 'ClearCommError', 'SetConsoleScreenBufferSize', 'SetThreadExecutionState', 'FlushViewOfFile', 'FindFirstFileExW', 'ConnectNamedPipe', 'GetTickCount', 'GetWindowsDirectoryA', 'WideCharToMultiByte', 'LoadLibraryW', '_hread', 'SizeofResource', 'GetWriteWatch', 'GetEnvironmentVariableA', 'HeapReAlloc', 'DisconnectNamedPipe', 'GetLastError', 'GetProcAddress', 'GetLongPathNameA', 'EnumDateFormatsExA', 'EnumSystemCodePagesW', 'GetAtomNameA', 'SetCalendarInfoW', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'GetExitCodeThread', 'SetFileApisToANSI', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'CreateIoCompletionPort', '_lread', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'FindNextVolumeA', 'CompareStringW', 'GetFullPathNameA', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'CloseHandle', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'LoadLibraryA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'HeapSize', 'GetCaretPos', 'RegisterEventSourceW'], ['VirtualFree', 'GetModuleFileNameW', 'CreateFileW', 'GetFileSize', 'ReadFile', 'CloseHandle', 'VirtualAlloc', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetCurrentProcess', 'TerminateProcess', 'HeapAlloc', 'HeapFree'], ['LoadLibraryA', 'HeapAlloc', 'GetProcAddress', 'GetProcessHeap', 'IsBadReadPtr', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'ZwQueryInformationFile', 'ZwProtectVirtualMemory', 'ZwAllocateVirtualMemory', 'RtlInitUnicodeString', 'ZwClose', 'ZwCreateFile', 'ZwReadFile', 'ZwWaitForSingleObject', 'ZwQuerySystemInformation', '_chkstk', 'RtlExpandEnvironmentStrings_U'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['WaitNamedPipeA', 'GetComputerNameW', 'InitializeCriticalSection', 'ReadConsoleInputA', 'GetCalendarInfoA', 'GetStringTypeExW', 'DnsHostnameToComputerNameW', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'GetStdHandle', 'GetProcAddress', 'InterlockedIncrement', 'LoadLibraryA', 'LocalAlloc', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'DebugSetProcessKillOnExit', 'LoadLibraryExA', 'GetConsoleTitleW', 'GetVersionExA', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'GetStringTypeA', 'UpdateResourceA', 'GetLocaleInfoA', 'VirtualAlloc', 'GetConsoleAliasesLengthW', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'CloseEventLog'], ['IsValidLanguageGroup', 'GetUserDefaultLangID', 'GetThreadLocale', 'VirtualProtectEx', 'OpenSemaphoreA', 'GetCurrentProcessId', 'LocalLock', 'GetModuleFileNameA', 'GetBinaryTypeA', 'lstrlenA', 'GlobalDeleteAtom', 'GetLocaleInfoA', 'GetCurrentProcess', 'GetCommandLineW', 'DefineDosDeviceW', 'LocalSize', 'GetProcessWorkingSetSize', 'WritePrivateProfileStructW', 'GetComputerNameA', 'GetCompressedFileSizeA', 'GetPrivateProfileSectionNamesA', 'GetCurrentThread', 'GetModuleHandleW', 'GetClusterResourceNetworkName', 'FindFirstFreeAce', 'tolower', 'strcspn', 'setvbuf', 'strcmp', 'GetPrinterDataExW', 'GetMapMode', 'GetDIBColorTable', 'GetTextFaceW', 'RemoveFontResourceA', 'GdiComment', 'GetTextExtentPoint32A', 'GetLayout', 'IsPwrHibernateAllowed', 'GetStandardColorSpaceProfileW', 'IsWindow', 'GetWindowTextW', 'GetClientRect', 'DeregisterShellHookWindow', 'GetClassInfoExW', 'DefWindowProcW', 'GetWindowPlacement', 'DialogBoxParamW', 'InsertMenuItemW', 'GetSysColor', 'DrawStateW', 'GetDC', 'MessageBoxIndirectA', 'GetClipboardFormatNameW', 'EnumWindows', 'GetKeyboardLayoutNameW', 'GetUserObjectInformationW', 'LoadMenuIndirectA', 'FindNextUrlCacheGroup', 'DeleteUrlCacheEntryW', 'GetMenuPosFromID', 'GetErrorInfo'], ['DeleteFileA', 'ExitProcess', 'FindResourceA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetTempPathA', 'LoadLibraryA', 'LoadResource', 'RtlMoveMemory', 'SizeofResource', 'VirtualAlloc', 'lstrcatA', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteFile'], ['GetMessageW', 'DdeQueryStringA', 'LoadCursorA', 'DrawStateW', 'CharToOemW', 'SetFocus', 'LoadBitmapW', 'DefWindowProcA', 'CreateWindowExA', 'MessageBoxExA', 'InvokeControlPanel', 'drvSetDefaultCommConfigA', 'CountryRunOnce', 'drvGetDefaultCommConfigA', 'NDdeShareGetInfoA', 'NDdeShareDelA', 'NDdeShareEnumA', 'NDdeShareSetInfoA', 'CreateEventA', 'FindFirstFileW', 'lstrcmpi', 'FindAtomW', 'DeleteFileW', 'lstrcmp', 'GetFileSize', 'GetLocalTime', 'LoadLibraryA', 'WaitForMultipleObjectsEx', 'GetTimeFormatA', 'ReadConsoleA', 'CreateFileMappingA', 'OpenJobObjectA', 'GetFileAttributesW', 'ReleaseMutex', 'VirtualFreeEx', 'TlsGetValue', 'FormatMessageA', 'GetVersionExW', 'GetProcAddress', 'GetOEMCP', 'InterlockedDecrement', 'WaitForSingleObject', 'CreateProcessA', 'ReleaseMutex', 'CompareStringW', 'GetLogicalDriveStringsW', 'GetShortPathNameW', 'GetModuleHandleA', 'CAEnumFirstCA', 'CACloseCA', 'CACloseCertType', 'CAEnumNextCA', 'CADeleteCA'], ['RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'ImageList_AddMasked', 'ImageList_Create', 'ImageList_Destroy', 'InitCommonControls', 'CreateBrushIndirect', 'CreateFontIndirectA', 'DeleteObject', 'GetDeviceCaps', 'SelectObject', 'SetBkColor', 'SetBkMode', 'SetTextColor', 'CloseHandle', 'CompareFileTime', 'CopyFileA', 'CreateDirectoryA', 'CreateFileA', 'CreateProcessA', 'CreateThread', 'DeleteFileA', 'ExitProcess', 'ExpandEnvironmentStringsA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetCurrentProcess', 'GetDiskFreeSpaceA', 'GetExitCodeProcess', 'GetFileAttributesA', 'GetFileSize', 'GetFullPathNameA', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetShortPathNameA', 'GetSystemDirectoryA', 'GetTempFileNameA', 'GetTempPathA', 'GetTickCount', 'GetVersion', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'LoadLibraryA', 'LoadLibraryExA', 'MoveFileA', 'MulDiv', 'MultiByteToWideChar', 'ReadFile', 'RemoveDirectoryA', 'SearchPathA', 'SetCurrentDirectoryA', 'SetErrorMode', 'SetFileAttributesA', 'SetFilePointer', 'SetFileTime', 'Sleep', 'WaitForSingleObject', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpynA', 'lstrlenA', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'SHBrowseForFolderA', 'SHFileOperationA', 'SHGetFileInfoA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'AppendMenuA', 'BeginPaint', 'CallWindowProcA', 'CharNextA', 'CharPrevA', 'CheckDlgButton', 'CloseClipboard', 'CreateDialogParamA', 'CreatePopupMenu', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawTextA', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'ExitWindowsEx', 'FillRect', 'FindWindowExA', 'GetClassInfoA', 'GetClientRect', 'GetDC', 'GetDlgItem', 'GetDlgItemTextA', 'GetMessagePos', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowRect', 'InvalidateRect', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'LoadBitmapA', 'LoadCursorA', 'LoadImageA', 'MessageBoxIndirectA', 'OpenClipboard', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassA', 'ScreenToClient', 'SendMessageA', 'SendMessageTimeoutA', 'SetClassLongA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetForegroundWindow', 'SetTimer', 'SetWindowLongA', 'SetWindowPos', 'SetWindowTextA', 'ShowWindow', 'SystemParametersInfoA', 'TrackPopupMenu', 'wsprintfA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'VerQueryValueA'], ['SysStringLen', 'SysAllocStringLen', 'VariantClear', 'DialogBoxParamW', 'SetWindowLongW', 'GetWindowLongW', 'GetDlgItem', 'LoadStringW', 'CharUpperW', 'DestroyWindow', 'EndDialog', 'PostMessageW', 'SetWindowTextW', 'ShowWindow', 'MessageBoxW', 'SendMessageW', 'LoadIconW', 'KillTimer', 'SetTimer', 'ShellExecuteExW', '_controlfp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '?terminate@@YAXXZ', '??1type_info@@UAE@XZ', '_except_handler3', '_beginthreadex', 'memset', 'wcsstr', 'free', 'malloc', 'memcpy', '_CxxThrowException', '_purecall', 'memmove', 'memcmp', 'wcscmp', '__CxxFrameHandler', 'WaitForSingleObject', 'GetStartupInfoA', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'lstrlenW', 'lstrcatW', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'WaitForMultipleObjects', 'GetFileInformationByHandle', 'GetStdHandle', 'GlobalMemoryStatus', 'GetSystemInfo', 'GetCurrentProcess', 'GetProcessAffinityMask', 'SetEndOfFile', 'WriteFile', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'GetFileAttributesW', 'GetModuleHandleA', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'GetCurrentThreadId', 'GetTickCount', 'GetCurrentProcessId', 'GetTempPathW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'SetLastError', 'DeleteFileW', 'CreateDirectoryW', 'GetModuleHandleW', 'GetProcAddress', 'RemoveDirectoryW', 'SetFileAttributesW', 'CreateFileW', 'SetFileTime', 'GetSystemDirectoryW', 'FormatMessageW', 'LocalFree', 'GetModuleFileNameW', 'LoadLibraryExW', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetVersionExW', 'GetCommandLineW', 'CreateProcessW', 'CloseHandle'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', '?_Xlength_error@std@@YAXPBD@Z', 'GetCursorPos', 'memset', '_initialize_onexit_table', '_libm_sse2_sqrt_precise', '__p__commode', '_configthreadlocale', 'malloc', 'VariantChangeTypeEx', 'RaiseException'], ['SetLocaleInfoA', 'EnumCalendarInfoA', 'VirtualQuery', 'GetProfileIntW', 'FindResourceExW', 'DeleteVolumeMountPointA', 'ReadConsoleA', 'UnlockFile', 'SetCommBreak', 'GetModuleHandleW', 'GetTickCount', 'FormatMessageA', 'GetCompressedFileSizeW', 'ClearCommBreak', 'GetDateFormatA', 'TlsSetValue', 'GlobalAlloc', 'CopyFileW', 'GetSystemWindowsDirectoryA', 'GetStringTypeExW', 'FindNextVolumeW', 'ReplaceFileW', 'GetVolumePathNameA', 'GetDevicePowerState', 'ReleaseSemaphore', 'SetCurrentDirectoryA', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'EnumDateFormatsExA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'SetProcessWorkingSetSize', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'CloseHandle', 'CreateFileA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetupComm', 'CreateMutexW', 'GetConsoleAliasesW', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapFree', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetCaretPos', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'GetMenuBarInfo', 'LoadMenuA', 'CharUpperBuffA', 'DdeQueryStringA', 'GetCharABCWidthsI', 'InitializeAcl', 'WinHttpReadData'], ['closesocket', 'gethostbyname', 'select', 'shutdown', 'WSAStartup', 'gethostname', 'WSAGetLastError', 'WSACleanup', 'ntohl', 'GetStdHandle', 'WriteConsoleA', 'WriteFile', 'FillConsoleOutputAttribute', 'GetFileType', 'SetConsoleCursorPosition', 'FormatMessageA', 'GetTickCount64', 'SetConsoleTextAttribute', 'GetModuleHandleA', 'GetCurrentProcess', 'LocalAlloc', 'GetLastError', 'GetCurrentThread', 'LocalFree', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetConsoleScreenBufferInfo', 'FillConsoleOutputCharacterA', 'GetProcessHeap', 'GetProcAddress', 'HeapAlloc', 'CloseHandle', 'LoadLibraryA', 'GetFileSizeEx', 'HeapSize', 'SetEndOfFile', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'IsProcessorFeaturePresent', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'CreateFileW', 'ReadConsoleW', 'GetConsoleMode', 'SetFilePointerEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'DecodePointer', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'ReadFile', 'GetConsoleCP', 'GetModuleFileNameW', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'HeapReAlloc', 'MessageBoxA', 'SetSecurityDescriptorDacl', 'AccessCheck', 'SetSecurityDescriptorOwner', 'AllocateAndInitializeSid', 'IsValidSecurityDescriptor', 'OpenProcessToken', 'FreeSid', 'InitializeSecurityDescriptor', 'InitializeAcl', 'DuplicateToken', 'GetLengthSid', 'AddAccessAllowedAce', 'OpenThreadToken', 'SetSecurityDescriptorGroup'], ['HeapAlloc', 'GetProcessHeap', 'GetCommandLineW', 'HeapFree', 'CloseHandle', 'CreateEventW', 'ExitThread', 'MsgWaitForMultipleObjectsEx', 'CommandLineToArgvW', 'SHGetFolderPathW'], ['GetCurrentThreadId', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'ExitProcess', 'RtlUnwind', 'RaiseException', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'FreeLibrary', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetProcessHeap', 'WriteFile', 'SizeofResource', 'SetFilePointer', 'LockResource', 'LoadResource', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetSystemDirectoryA', 'FreeResource', 'FindResourceA', 'CreateFileA', 'CloseHandle', 'SHGetFolderPathA', 'ShellExecuteA'], ['GetVersionExW', 'RegCloseKey', 'SHFileOperationW', 'inet_ntoa', 'GetAdaptersInfo', 'HttpSendRequestA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['CryptStringToBinaryA', 'GetStartupInfoW', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetTickCount', 'GetProcAddress', 'LoadLibraryW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleW', 'DefWindowProcW', 'LoadCursorW', 'RegisterClassExW', 'CreateWindowExW', 'AdjustWindowRectEx', 'UpdateWindow', 'GetActiveWindow', 'EnableWindow', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetParent', 'IsDialogMessageW', 'SetActiveWindow', 'TrackMouseEvent', 'BeginPaint', 'EndPaint', 'PostQuitMessage', 'GetClassNameW', 'DrawEdge', 'GetWindowTextW', 'DrawTextW', 'DrawFocusRect', 'TranslateAcceleratorW', 'GetWindowRect', 'GetSystemMetrics', 'SetWindowLongW', 'CallWindowProcW', 'SetWindowTextW', 'GetWindowTextLengthW', 'ScreenToClient', 'SetTimer', 'GetSystemMenu', 'EnableMenuItem', 'ShowWindow', 'SetFocus', 'FillRect', 'GetDC', 'ReleaseCapture', 'SetCapture', 'SendMessageW', 'InvalidateRect', 'GetClientRect', 'GetWindowLongW', 'wsprintfW', 'DestroyWindow', 'SetWindowPos', 'KillTimer', 'CreatePen', 'GetTextExtentPointW', 'SetTextColor', 'SelectObject', 'GetStockObject', 'DeleteObject', 'CreateHatchBrush', 'CreateSolidBrush', 'SetBkMode', 'Ellipse', 'MoveToEx', 'LineTo', 'Rectangle', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ', '?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z', '?uncaught_exception@std@@YA_NXZ', '??$?HDU?$char_traits@D@std@@V?$allocator@D@1@@std@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '_purecall', '__CxxFrameHandler3', '_controlfp_s', '_invoke_watson', '_except_handler4_common', '_decode_pointer', '_onexit', '_lock', '__dllonexit', '_unlock', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '?terminate@@YAXXZ', '_crt_debugger_hook', '__set_app_type', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '_wcmdln', 'exit', '_XcptFilter', '_exit', '_cexit', '__wgetmainargs', '_amsg_exit', 'memset', 'wcsstr', 'malloc', 'free', '??_V@YAXPAX@Z', 'isupper', '??3@YAXPAX@Z', '??2@YAPAXI@Z'], ['GetModuleHandleA', 'GetDlgItem', 'GetUserNameA', '_CorExeMain', 'SHGetIconOverlayIndexA', 'ImageList_SetBkColor'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatusEx', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateWaitableTimerExW', 'CreateThread', 'CreateIoCompletionPort', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['InitCommonControlsEx', 'SHAutoComplete', 'DeleteFileW', 'DeleteFileA', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetTickCount', 'WideCharToMultiByte', 'GlobalAlloc', 'GetVersionExW', 'GetFullPathNameA', 'GetFullPathNameW', 'MultiByteToWideChar', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetLocaleInfoW', 'SetFileAttributesW', 'DosDateTimeToFileTime', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'SetEnvironmentVariableW', 'OpenFileMappingW', 'GetProcAddress', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemTime', 'CompareStringW', 'IsDBCSLeadByte', 'GetCPInfo', 'SetCurrentDirectoryW', 'LoadLibraryW', 'FreeLibrary', 'SetFileAttributesA', 'GetFileAttributesW', 'GetFileAttributesA', 'WriteFile', 'GetStdHandle', 'ReadFile', 'CreateFileW', 'GetCurrentDirectoryW', 'CreateFileA', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'MoveFileW', 'SetFileTime', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'GetNumberFormatW', 'wvsprintfA', 'wvsprintfW', 'ReleaseDC', 'GetDC', 'SendMessageW', 'SetDlgItemTextW', 'SetFocus', 'EndDialog', 'DestroyIcon', 'SendDlgItemMessageW', 'GetDlgItemTextW', 'GetClassNameW', 'DialogBoxParamW', 'IsWindowVisible', 'WaitForInputIdle', 'SetForegroundWindow', 'GetSysColor', 'PostMessageW', 'LoadBitmapW', 'LoadIconW', 'CharToOemA', 'OemToCharA', 'GetParent', 'MapWindowPoints', 'CreateWindowExW', 'UpdateWindow', 'LoadCursorW', 'RegisterClassExW', 'SetWindowLongW', 'GetWindowLongW', 'DefWindowProcW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'DestroyWindow', 'CopyRect', 'IsWindow', 'CharToOemBuffW', 'MessageBoxW', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'OemToCharBuffA', 'CharUpperA', 'CharToOemBuffA', 'LoadStringW', 'SetWindowPos', 'GetWindowTextW', 'SetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'CharUpperW', 'FindWindowExW', 'GetWindowRect', 'GetClientRect', 'GetDeviceCaps', 'GetObjectW', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'GetOpenFileNameW', 'CommDlgExtendedError', 'GetSaveFileNameW', 'RegOpenKeyExW', 'LookupPrivilegeValueW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'SetFileSecurityA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'SHChangeNotify', 'ShellExecuteExW', 'SHFileOperationW', 'SHGetFileInfoW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CLSIDFromString', 'VariantInit'], ['GetModuleFileNameW', 'Sleep', 'GetLastError', 'GetFileAttributesA', 'DeleteFileW', 'CloseHandle', 'GetCurrentDirectoryW', 'GetProcAddress', 'CreateProcessW', 'GetModuleHandleW', 'CopyFileW', 'WinExec', 'WriteConsoleW', 'CreateFileW', 'HeapSize', 'ReadConsoleW', 'GetProcessHeap', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'MultiByteToWideChar', 'GetStringTypeW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'RtlUnwind', 'SHCreateItemFromParsingName', 'SHGetKnownFolderPath', 'CoInitializeEx', 'CoUninitialize', 'CoGetObject', 'CoInitializeSecurity', 'CoTaskMemFree', 'SysAllocString', 'SysFreeString'], ['SymSetSearchPathW', 'SymGetSearchPathW', 'SymGetModuleBase64', 'SymFunctionTableAccess64', 'StackWalk64', 'SymSetOptions', 'SymFromAddr', 'SymInitialize', 'SymGetLineFromAddr64', 'SymCleanup', 'UnDecorateSymbolName', 'getservbyname', 'getservbyport', 'gethostbyaddr', 'inet_ntoa', 'inet_addr', 'WSACleanup', 'gethostbyname', 'WSASetLastError', 'ntohs', 'htonl', 'ntohl', 'closesocket', 'getsockopt', 'WSAStartup', 'recv', 'gethostname', '__WSAFDIsSet', 'accept', 'sendto', 'recvfrom', 'send', 'WSAIoctl', 'FreeAddrInfoW', 'GetAddrInfoW', 'GetNameInfoW', 'select', 'WSASocketW', 'WSASend', 'WSAGetOverlappedResult', 'WSADuplicateSocketW', 'shutdown', 'listen', 'htons', 'WSASendTo', 'WSARecvFrom', 'WSARecv', 'setsockopt', 'getsockname', 'getpeername', 'ioctlsocket', 'connect', 'bind', 'WSAGetLastError', 'GetHostNameW', 'socket', 'GetAdaptersAddresses', 'ConvertInterfaceIndexToLuid', 'ConvertInterfaceLuidToNameW', 'GetModuleFileNameExW', 'GetProcessMemoryInfo', 'EnumProcessModules', 'GetUserProfileDirectoryW', 'CryptReleaseContext', 'RegOpenKeyExW', 'GetUserNameW', 'OpenProcessToken', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegEnumKeyExW', 'EventWriteTransfer', 'EventUnregister', 'EventRegister', 'ReportEventW', 'RegisterEventSourceW', 'DeregisterEventSource', 'CryptEnumProvidersW', 'CryptSignHashW', 'CryptDestroyHash', 'CryptCreateHash', 'CryptDecrypt', 'CryptExportKey', 'CryptGetUserKey', 'CryptGetProvParam', 'CryptSetHashParam', 'CryptDestroyKey', 'RegQueryInfoKeyW', 'CryptAcquireContextW', 'SetSecurityInfo', 'GetSecurityInfo', 'SetEntriesInAclA', 'FreeSid', 'AllocateAndInitializeSid', 'SystemFunction036', 'RegGetValueW', 'RegQueryValueExW', 'RegCloseKey', 'GetProcessWindowStation', 'MapVirtualKeyW', 'DispatchMessageA', 'TranslateMessage', 'MessageBoxW', 'GetSystemMetrics', 'GetMessageA', 'GetUserObjectInformationW', 'CertOpenStore', 'CertCloseStore', 'CertEnumCertificatesInStore', 'CertFindCertificateInStore', 'CertDuplicateCertificateContext', 'CertFreeCertificateContext', 'CertGetCertificateContextProperty', 'BCryptGenRandom', 'InitializeCriticalSectionAndSpinCount', 'WaitForSingleObjectEx', 'CreateEventW', 'RtlCaptureContext', 'GetCPInfo', 'GetStringTypeW', 'RtlLookupFunctionEntry', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeSListHead', 'InterlockedPushEntrySList', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'ExitProcess', 'SetStdHandle', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetFileAttributesExW', 'SetFileAttributesW', 'GetConsoleOutputCP', 'GetDriveTypeW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapReAlloc', 'SetEndOfFile', 'OutputDebugStringW', 'HeapSize', 'FindFirstFileExW', 'IsValidCodePage', 'GetOEMCP', 'GetProcessHeap', 'TryEnterCriticalSection', 'VerSetConditionMask', 'VerifyVersionInfoW', 'GetEnvironmentVariableA', 'WideCharToMultiByte', 'GetEnvironmentVariableW', 'GetLastError', 'GetLocalTime', 'SetConsoleCtrlHandler', 'CloseHandle', 'WaitForSingleObject', 'CreateRemoteThread', 'OpenProcess', 'OpenFileMappingW', 'MapViewOfFile', 'UnmapViewOfFile', 'GetFileType', 'RemoveVectoredExceptionHandler', 'RtlCaptureStackBackTrace', 'GetStdHandle', 'GetCurrentProcess', 'GetCurrentProcessId', 'VirtualQuery', 'MultiByteToWideChar', 'WriteConsoleW', 'LocalFree', 'FormatMessageW', 'InitOnceExecuteOnce', 'CreateEventA', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'GetTempPathW', 'SetLastError', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'Sleep', 'GetProcessTimes', 'SetPriorityClass', 'GetPriorityClass', 'GlobalMemoryStatusEx', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetVersionExW', 'GetModuleFileNameW', 'GetProcessIoCounters', 'VerifyVersionInfoA', 'FileTimeToSystemTime', 'GetConsoleTitleW', 'SetConsoleTitleW', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'SetHandleInformation', 'CreateIoCompletionPort', 'SetFileCompletionNotificationModes', 'CreateFileA', 'CreateFileW', 'DuplicateHandle', 'PostQueuedCompletionStatus', 'SetEvent', 'ResetEvent', 'QueueUserWorkItem', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleMode', 'SetConsoleMode', 'GetNumberOfConsoleInputEvents', 'ReadConsoleInputW', 'ReadConsoleW', 'FillConsoleOutputCharacterW', 'FillConsoleOutputAttribute', 'GetConsoleCursorInfo', 'SetConsoleCursorInfo', 'GetConsoleScreenBufferInfo', 'SetConsoleCursorPosition', 'SetConsoleTextAttribute', 'WriteConsoleInputW', 'CancelIoEx', 'CancelIo', 'SwitchToThread', 'GetStartupInfoW', 'GetFileAttributesW', 'TerminateProcess', 'GetExitCodeProcess', 'CreateProcessW', 'UnregisterWaitEx', 'CreateJobObjectW', 'AssignProcessToJobObject', 'SetInformationJobObject', 'LCMapStringW', 'RtlUnwind', 'DeleteCriticalSection', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableCS', 'ReleaseSemaphore', 'CreateSemaphoreW', 'ResumeThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetNativeSystemInfo', 'CreateSemaphoreA', 'FlushFileBuffers', 'ReadFile', 'WriteFile', 'ConnectNamedPipe', 'SetNamedPipeHandleState', 'PeekNamedPipe', 'CreateNamedPipeW', 'WaitNamedPipeW', 'CancelSynchronousIo', 'GetCurrentThread', 'CreateNamedPipeA', 'GetNamedPipeHandleStateA', 'GetLongPathNameW', 'GetShortPathNameW', 'ReadDirectoryChangesW', 'CreateDirectoryW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetDiskFreeSpaceW', 'GetFileInformationByHandle', 'GetFileSizeEx', 'GetFinalPathNameByHandleW', 'GetFullPathNameW', 'RemoveDirectoryW', 'SetFilePointerEx', 'SetFileTime', 'DeviceIoControl', 'FlushViewOfFile', 'CreateFileMappingA', 'ReOpenFile', 'CopyFileW', 'MoveFileExW', 'CreateHardLinkW', 'GetFileInformationByHandleEx', 'CreateSymbolicLinkW', 'DebugBreak', 'FormatMessageA', 'FreeLibrary', 'LoadLibraryExW', 'SetErrorMode', 'GetQueuedCompletionStatus', 'GetCurrentThreadId', 'ReadConsoleA', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'VirtualLock', 'GetACP', 'GetModuleHandleW', 'LoadLibraryW', 'GetSystemTime', 'SystemTimeToFileTime', 'GetSystemDirectoryA', 'SwitchToFiber', 'DeleteFiber', 'CreateFiberEx', 'ConvertFiberToThread', 'ConvertThreadToFiberEx', 'RtlVirtualUnwind', 'GetModuleHandleExW', 'AddVectoredExceptionHandler', 'RtlAddFunctionTable', 'RtlDeleteFunctionTable', 'IsDebuggerPresent', 'OutputDebugStringA', 'OpenThread', 'SuspendThread', 'GetThreadContext', 'GetLocaleInfoEx', 'GetNumberFormatEx', 'GetCurrencyFormatEx', 'ResolveLocaleName', 'SystemTimeToTzSpecificLocalTime', 'GetTimeZoneInformation', 'GetTimeFormatEx', 'GetDateFormatEx', 'GetVersionExA', 'ExpandEnvironmentStringsA', 'GetWindowsDirectoryA', 'GetTickCount', 'GetDynamicTimeZoneInformation', 'GetGeoInfoW', 'GetUserGeoID', 'CreateFileMappingW', 'LocaleNameToLCID', 'LCIDToLocaleName', 'TryAcquireSRWLockExclusive', 'TryAcquireSRWLockShared', 'DeleteFileA', 'GetFileSize', 'GetTempPathA', 'GetTempFileNameA', 'GetThreadTimes', 'SetThreadPriority', 'GetThreadPriority', 'QueryThreadCycleTime', 'SleepConditionVariableSRW', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionEx', 'InitOnceBeginInitialize', 'InitOnceComplete', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'timeGetTime'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'VariantCopy', 'CharNextW', 'InternetOpenW'], ['DeleteFileA', 'VirtualProtect', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'WideCharToMultiByte', 'CloseHandle', 'DeviceIoControl', 'Sleep', 'FlushFileBuffers', 'GetCurrentDirectoryA', 'LoadLibraryA', 'GetLocalTime', 'GetProcAddress', 'WriteFile', 'GetCurrentProcess', 'MultiByteToWideChar', 'CreateFileA', 'GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'GetModuleHandleExW', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapReAlloc', 'SetStdHandle', 'WriteConsoleW', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'CreateFileW', 'GetSystemMetrics', 'MessageBoxA', 'MapVirtualKeyW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegCreateKeyA', 'RegDeleteKeyA', 'RegSetValueExA', 'OpenProcessToken', 'RegCloseKey'], ['IsDebuggerPresent', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['InitAtomTable', 'FindNextVolumeA', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesA', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxW', 'GetConsoleAliasW', '_lwrite', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameW', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'GetStringTypeExA', 'EnumSystemLocalesA', 'CallNamedPipeW', 'FindActCtxSectionStringW', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetConsoleAliasExesLengthW', 'GetTickCount', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'GetSystemDefaultLCID', 'GetACP', 'GetUserDefaultLangID', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLangID', 'LoadLibraryW', 'GetModuleFileNameW', 'GetStringTypeExW', 'GetLocalTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetLastError', 'GetCommandLineW', 'lstrlenW', 'GlobalFree', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStartupInfoW', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetTempPathA', 'GetTempFileNameA', 'QueryPerformanceCounter', 'VirtualProtect', 'GetUserDefaultUILanguage', 'GetCalendarInfoW', 'EnumSystemLocalesW', 'EnumUILanguagesW', 'IsProcessorFeaturePresent', 'ReleaseSemaphore', 'GlobalMemoryStatus', 'GetCurrentThread', 'GetProcessHeap', 'HeapFree', 'HeapSize', 'HeapValidate', 'HeapAlloc', 'HeapReAlloc', 'GetModuleHandleA', 'RaiseException', 'TlsSetValue', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'VirtualFree', 'TlsGetValue', 'TlsFree', 'DeleteCriticalSection', 'GetProcAddress', 'GetFileAttributesW', 'GetVersion', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LoadLibraryA', 'OutputDebugStringA', 'MulDiv', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetVersionExA', 'IsValidLocale', 'FreeLibrary', 'WaitForSingleObject', 'ReleaseMutex', 'CloseHandle', 'GetSystemTimeAsFileTime', 'GetTickCount', 'WriteFile', 'SetFileAttributesW', 'FlushFileBuffers', 'DeleteFileW', 'GetFileType', 'CreateFileW', 'GetLocaleInfoW', 'ExpandEnvironmentStringsW', 'GetProcessTimes', 'GetCurrentProcess', 'CreateMutexA', 'OpenMutexA', 'CreateSemaphoreA', 'GetShortPathNameA', 'GetModuleFileNameA', 'LoadLibraryExW', 'GetSystemDirectoryW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetDiskFreeSpaceExW', 'GetSystemInfo', 'GetUserDefaultLCID', 'LocalFree', 'LocalAlloc', 'CreateProcessA', 'Sleep', 'TerminateProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GlobalAlloc', 'IsDBCSLeadByte', 'IsValidCodePage', 'CompareStringW', 'InitializeCriticalSection', 'CreateDirectoryW', 'CancelIo', 'EnumCalendarInfoExA', 'GetDiskFreeSpaceA', 'lstrcmpiW', 'GetSystemDirectoryA', 'WaitForMultipleObjectsEx', 'WriteConsoleOutputAttribute', 'CreateDirectoryExA', 'GetStdHandle', 'GetConsoleMode', 'ReadConsoleW', 'AllocConsole', 'FreeConsole', 'WriteConsoleW', 'ResumeThread', 'CreateThread', 'TerminateThread', 'GetThreadTimes', 'SearchPathW', 'WaitForMultipleObjects', 'FormatMessageW', 'ConnectNamedPipe', 'CreateNamedPipeW', 'GetOverlappedResult', 'QueryPerformanceFrequency', 'SetStdHandle', 'SetEndOfFile', 'SetFilePointer', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'GetFileAttributesExW', 'MoveFileW', 'RemoveDirectoryW', 'GetComputerNameW', 'SystemTimeToTzSpecificLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'SetHandleInformation', 'GetHandleInformation', 'RtlUnwind', 'ExitProcess', 'GetCommandLineA', 'InterlockedIncrement', 'InterlockedDecrement', 'FatalAppExitA', 'SetConsoleCtrlHandler', 'SetHandleCount', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'GetCPInfo', 'GetOEMCP', 'GetConsoleCP', 'LCMapStringA', 'LCMapStringW', 'CreateFileA', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'EnumSystemLocalesA', 'WriteConsoleA', 'GetConsoleOutputCP', 'CompareStringA', 'SetEnvironmentVariableA', 'MapViewOfFile', 'CreateFileMappingW', 'DuplicateHandle', 'UnmapViewOfFile', 'ReadFile', 'GlobalLock', 'GlobalUnlock', 'OpenProcess', 'ResetEvent', 'CreateEventW', 'SetEvent', 'SetProcessShutdownParameters', 'LoadIconW', 'GetDlgItem', 'LoadCursorW', 'RegisterClassExW', 'GetDC', 'GetWindowTextW', 'SetWindowPos', 'ReleaseDC', 'DialogBoxParamW', 'BeginPaint', 'GetClientRect', 'GetSysColor', 'GetFocus', 'DrawFocusRect', 'EndPaint', 'InvalidateRect', 'DefWindowProcW', 'GetParent', 'SendMessageW', 'GetClassNameA', 'SendMessageA', 'IsWindowUnicode', 'GetWindowLongA', 'GetWindowLongW', 'SetRectEmpty', 'MapWindowPoints', 'GetWindowRect', 'MoveWindow', 'IsWindowVisible', 'SendDlgItemMessageW', 'IsWindow', 'CreateWindowExA', 'CreateDialogIndirectParamA', 'DrawTextA', 'DrawTextW', 'DestroyWindow', 'MapDialogRect', 'GetSystemMetrics', 'SystemParametersInfoA', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMonitorInfoA', 'EnumDisplayMonitors', 'GetKeyboardLayout', 'MessageBoxW', 'LoadStringW', 'SetWindowTextW', 'GetDlgCtrlID', 'GetWindow', 'EndDialog', 'SetFocus', 'CharLowerBuffA', 'SetActiveWindow', 'RegisterClipboardFormatA', 'GetMenuItemRect', 'SetMenuItemInfoA', 'DrawIcon', 'GetScrollInfo', 'DdeCmpStringHandles', 'EnumDesktopsA', 'DefDlgProcW', 'PtInRect', 'WindowFromDC', 'DrawStateA', 'TileChildWindows', 'DdeNameService', 'CreateIconIndirect', 'GetClassInfoA', 'EnumChildWindows', 'LoadImageA', 'RealGetWindowClass', 'MessageBeep', 'IsZoomed', 'LoadCursorFromFileW', 'DefWindowProcA', 'ScrollWindowEx', 'UnregisterClassW', 'RedrawWindow', 'GetWindowTextLengthW', 'CallWindowProcW', 'WindowFromPoint', 'CreateWindowExW', 'GetDesktopWindow', 'GetClipboardData', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'CloseClipboard', 'PostMessageW', 'FindWindowW', 'FillRect', 'SetThreadDesktop', 'CloseDesktop', 'GetThreadDesktop', 'OpenInputDesktop', 'OpenDesktopW', 'GetUserObjectInformationW', 'UnhookWinEvent', 'SetWinEventHook', 'AdjustWindowRect', 'SetRect', 'GetTopWindow', 'SetTimer', 'ShowWindow', 'RegisterClassW', 'CloseWindowStation', 'GetProcessWindowStation', 'ChangeDisplaySettingsW', 'EnumDisplaySettingsW', 'SetScrollInfo', 'EnumDesktopsW', 'GetAsyncKeyState', 'ToAsciiEx', 'ToUnicodeEx', 'VkKeyScanExA', 'VkKeyScanExW', 'GetKeyboardLayoutList', 'GetWindowDC', 'mouse_event', 'GetIconInfo', 'EnumDisplayDevicesA', 'EnumWindows', 'GetClassNameW', 'EnumDisplaySettingsA', 'ChangeDisplaySettingsExA', 'EnumDisplayDevicesW', 'MapVirtualKeyW', 'keybd_event', 'GetKeyState', 'GetKeyboardState', 'SendMessageTimeoutW', 'ExitWindowsEx', 'SystemParametersInfoW', 'GetGUIThreadInfo', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'IsIconic', 'IsRectEmpty', 'EnumDesktopWindows', 'PostQuitMessage', 'SetClipboardViewer', 'ChangeClipboardChain', 'GetAncestor', 'PeekMessageW', 'SetWindowLongW', 'ClientToScreen', 'PostThreadMessageW', 'GetCursorPos', 'GetClipboardOwner', 'TranslateMessage', 'DispatchMessageW', 'CopyImage', 'MsgWaitForMultipleObjects', 'DrawIconEx', 'GetStockObject', 'DeleteDC', 'GetDeviceCaps', 'GetObjectW', 'CreateFontIndirectW', 'GetObjectA', 'CreateFontIndirectA', 'GetTextFaceW', 'GetTextMetricsA', 'GetOutlineTextMetricsA', 'CreateSolidBrush', 'TranslateCharsetInfo', 'SelectObject', 'GetTextExtentPoint32W', 'CreatePen', 'SetBkColor', 'SetTextColor', 'SetTextAlign', 'TextOutW', 'MoveToEx', 'LineTo', 'DeleteObject', 'CreateDCA', 'SetMetaFileBitsEx', 'SetBoundsRect', 'DPtoLP', 'GetObjectType', 'EngLineTo', 'ResizePalette', 'GdiConvertBitmapV5', 'SetPixel', 'SetDIBitsToDevice', 'BitBlt', 'GetSystemPaletteEntries', 'GetBitmapBits', 'GetTextMetricsW', 'SetMapMode', 'CreateCompatibleBitmap', 'GdiFlush', 'SetDIBColorTable', 'SetPixelV', 'CreateBitmap', 'CreateDIBSection', 'StretchBlt', 'SetWindowOrgEx', 'GetClipBox', 'CreateCompatibleDC', 'CreateDCW', 'GetDIBits', 'ExtEscape', 'GdiAlphaBlend', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryInfoKeyW', 'RegEnumKeyW', 'GetLengthSid', 'AddAccessAllowedAce', 'AddAccessDeniedAce', 'InitializeAcl', 'CryptDestroyKey', 'CryptGenKey', 'CryptReleaseContext', 'CryptAcquireContextW', 'RegCloseKey', 'RegEnumValueW', 'RegOpenKeyExW', 'RegQueryValueExW', 'CopySid', 'GetTokenInformation', 'OpenProcessToken', 'FreeSid', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'GetSecurityDescriptorDacl', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ConvertSidToStringSidA', 'CheckTokenMembership', 'IsValidSid', 'AllocateAndInitializeSid', 'OpenThreadToken', 'SetEntriesInAclW', 'GetAclInformation', 'SetSecurityDescriptorSacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'MakeAbsoluteSD', 'GetSecurityDescriptorControl', 'GetSecurityDescriptorLength', 'MakeSelfRelativeSD', 'SetNamedSecurityInfoW', 'CryptGenRandom', 'GetUserNameW', 'RegDeleteKeyW', 'GetSecurityInfo', 'RegDeleteValueW', 'RegEnumKeyExW', 'SetSecurityInfo', 'RegNotifyChangeKeyValue', 'DuplicateTokenEx', 'SetTokenInformation', 'LookupAccountNameW', 'LookupAccountSidW', 'EqualSid', 'GetSidIdentifierAuthority', 'SHFreeNameMappings', 'SHBindToParent', 'ExtractAssociatedIconExW', 'SHBrowseForFolder', 'SHGetIconOverlayIndexA', 'SHGetFileInfoA', 'SHLoadInProc', 'SHFileOperationW', 'CoInitialize', 'CoUninitialize', 'CoCreateGuid', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'CoInitializeEx', 'wnsprintfA', 'StrChrIA', 'StrStrIW', 'StrStrIA', 'StrRChrW', 'StrRChrIA', 'InitCommonControlsEx', '_TrackMouseEvent'], ['GetSysColorBrush', 'TlsSetValue', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['GetModuleHandleA', 'GetMenu', 'RegQueryValueW', 'PropertySheet', 'ShellAboutA', '_CorExeMain'], ['GetFileSize', 'GetCPInfo', 'SetEndOfFile', 'GetProcessHeap', 'GetSystemTimeAsFileTime', 'WriteFile', 'GetSystemDirectoryW', 'Sleep', 'SetSystemPowerState', 'FileTimeToSystemTime', 'CreateFileW', 'CreateEventW', 'VirtualProtect', 'DeleteCriticalSection', 'CloseHandle', 'GetVersion', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CreateFileA', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'HeapSize', 'SetFilePointer', 'ReadFile', 'FlushFileBuffers', 'GetStringTypeW', 'GetStringTypeA', 'GetCurrentProcessId', 'GetTickCount', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapReAlloc', 'GetCurrentThreadId', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'VirtualAlloc', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleHandleA', 'AcquireCredentialsHandleW', 'FreeContextBuffer', 'QueryContextAttributesW', 'FreeCredentialsHandle', 'RevertSecurityContext', 'InitializeSecurityContextW', 'acmGetVersion', 'acmDriverID', 'acmStreamMessage', 'acmFormatSuggest', 'acmFormatDetailsW', 'acmDriverPriority', 'acmStreamOpen', 'acmFilterChooseW', 'acmDriverRemove', 'acmStreamConvert', 'acmStreamPrepareHeader', 'acmFormatEnumW', 'acmDriverOpen', 'acmStreamClose', 'acmFormatTagEnumW', 'acmDriverMessage', 'acmFormatTagDetailsW', 'acmFilterTagDetailsW', 'acmFilterEnumW', 'acmFilterDetailsW', 'acmFilterTagEnumW', 'acmFormatChooseW', 'acmMetrics'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'ChooseColorA', 'SaveDC', 'OleDraw', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['GetModuleHandleA', 'OffsetRect', 'RegOpenKeyExW', 'DllGetVersion', 'ShellAboutW', '_CorExeMain'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'GetCurrentProcessId', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'InterlockedDecrement', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetTimeFormatW', 'GetDateFormatW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'SysAllocString', 'SysFreeString', 'VariantClear', 'GdipAlloc', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'lstrcmpA', 'lstrlenA', 'lstrcatA', 'GetACP', 'GetProcessId', 'GetCurrentThreadId', 'GetCursorPos', 'GetGUIThreadInfo', 'CheckRadioButton', 'CheckDlgButton', 'CheckMenuItem', 'GetCursorInfo', 'GetWindowThreadProcessId', 'CheckMenuRadioItem', 'HBITMAP_UserMarshal', 'DeletePrintProcessorA', 'StrRChrA', 'PerfOpen', 'AdvancedSetupDialog', 'DEVICEMODE'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'InternetGetConnectedState'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'ValidateRect', 'UpdateLayeredWindow', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'TrackMouseEvent', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCaretPos', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExA', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyCaret', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateCaret', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SelectClipPath', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtCreatePen', 'ExcludeClipRect', 'EndPath', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'BeginPath', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadReadPtr', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegFlushKey', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Sleep', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CreateStreamOnHGlobal', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'Shell_NotifyIconA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHChangeNotify', 'sndPlaySoundA', 'ntohs', 'inet_ntoa', 'inet_addr', 'htons', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipDisposeImage', 'GdiplusShutdown', 'GdiplusStartup', 'LresultFromObject', 'MulDiv'], ['HeapLock', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesA', 'EnumResourceNamesA', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'TlsGetValue', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'ReleaseActCtx', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapSize', 'TerminateThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedIncrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'InterlockedPushEntrySList', 'SetConsoleCursorInfo', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapWalk', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'LockFile', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'FindAtomW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetPrivateProfileStringA', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'GetFileInformationByHandle', 'GetLastError', 'SetFirmwareEnvironmentVariableA', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'GetQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'TryEnterCriticalSection', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedDecrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'CreateFileA', 'OemToCharW', 'GetFileSecurityA', 'WinHttpReadData'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'RaiseException', 'CreateThread', 'LocalFree', 'CloseHandle', 'CreateEventW', 'SetEvent', 'CreateProcessW', 'GetVersionExA', 'GetVersionExW', 'GetLastError', 'SetLastError', 'GetModuleFileNameW', 'lstrcmpiW', 'FormatMessageW', 'GetCommandLineW', 'CreateFileW', 'FlushFileBuffers', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'HeapSetInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'RtlUnwind', 'Sleep', 'HeapSize', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryW', 'HeapReAlloc', 'SetStdHandle', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'SetErrorMode', 'VirtualAlloc', 'MessageBoxA', 'SetClassLongW', 'EnumDisplayMonitors', 'GetClipCursor', 'GetProcessWindowStation', 'GetWindowInfo', 'LoadMenuA', 'ShowScrollBar', 'InvalidateRect', 'MonitorFromPoint', 'AdjustWindowRectEx', 'InflateRect', 'GetUserObjectSecurity', 'PostThreadMessageW', 'GetMenuContextHelpId', 'CreateIconFromResourceEx', 'GetTopWindow', 'SetWindowRgn', 'CreateIcon', 'UnpackDDElParam', 'EnumWindowStationsA', 'SendInput', 'TrackPopupMenu', 'MsgWaitForMultipleObjects', 'LoadIconA', 'GetOpenClipboardWindow', 'IsMenu', 'GetMessagePos', 'CharNextA', 'UnrealizeObject', 'TranslateCharsetInfo', 'SetTextAlign', 'GetCharWidthInfo', 'RoundRect', 'CopyEnhMetaFileA', 'EngGetCurrentCodePage', 'SetDIBitsToDevice', 'EngReleaseSemaphore', 'GetDIBits', 'GetBrushOrgEx', 'ExtCreateRegion', 'GetPixelFormat', 'XLATEOBJ_hGetColorTransform', 'GetEnhMetaFileA', 'CreateDiscardableBitmap', 'CreateBitmap', 'TextOutW', 'GetViewportOrgEx', 'SetColorSpace', 'GetHFONT', 'CreateRoundRectRgn', 'PolyPatBlt', 'FONTOBJ_pQueryGlyphAttrs', 'EngBitBlt', 'EnumICMProfilesW', 'CreateRectRgnIndirect', 'OffsetRgn', 'StrokeAndFillPath', 'SetBitmapBits', 'GetRandomRgn', 'CreateColorSpaceW', 'GetStockObject', 'AddFontResourceW', 'GetLayout', 'RealizePalette', 'PrintDlgW', 'RegQueryValueExW', 'SetSecurityDescriptorDacl', 'StartServiceW', 'ControlService', 'RegOpenKeyExW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerExW', 'StartServiceCtrlDispatcherW', 'DeleteService', 'CreateServiceW', 'QueryServiceStatus', 'OpenServiceW', 'OpenSCManagerW', 'CloseServiceHandle', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'ShellExecuteExW', 'SHGetSpecialFolderLocation', 'DuplicateIcon', 'ExtractIconExW', 'DragFinish', 'SHGetSettings', 'Shell_NotifyIconW', 'ShellExecuteEx', 'SHGetDesktopFolder', 'SHLoadInProc', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHGetInstanceExplorer', 'ShellExecuteW', 'ExtractIconW', 'SHGetDataFromIDListA', 'OleUninitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'StrCmpNIA', 'StrCmpNA', 'ImageList_Destroy', 'InitializeFlatSB'], ['GetVersionExW', 'GetVersionExA', 'ReleaseDC', 'BitBlt', 'GetTokenInformation', 'SHFileOperationW', 'CreateStreamOnHGlobal', 'CryptUnprotectData', 'InternetSetOptionA', 'send', 'GetSystemTimeAsFileTime', 'CharUpperBuffW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailW', 'SetupDiDestroyDeviceInfoList', '_snwprintf', 'RtlUnwind', 'memmove', '_allrem', '_strnicmp', '_alloca_probe', 'memset', 'memcpy', 'strlen', 'wcscpy', 'wcslen', 'wcscat', 'swprintf', 'strcpy', 'wcsstr', 'toupper', '_chkstk', 'strstr', 'towupper', '_wcsnicmp', 'mbstowcs', '_stricmp', 'memcmp', 'wcschr', 'tolower', '_wcsicmp', 'wcsncpy', 'strcmp', 'wcsrchr', 'PathFileExistsW', '_wfopen', 'fseek', 'ftell', 'fflush', 'fclose', 'fwrite', '??2@YAPAXI@Z', '??3@YAXPAX@Z', 'mbtowc', '_beginthreadex', 'malloc', 'free', 'calloc', '__CxxFrameHandler', '_CxxThrowException', '_XcptFilter', '_initterm', '_amsg_exit', '_adjust_fdiv', '_unlock', '__dllonexit', '_lock', '_onexit', '??1type_info@@UAE@XZ', 'ReleaseMutex', 'VirtualFree', 'VirtualUnlock', 'VirtualLock', 'MulDiv', 'LoadLibraryW', 'GetVersionExW', 'IsBadReadPtr', 'LoadLibraryExA', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InterlockedCompareExchange', 'InterlockedExchange', 'lstrlenA', 'OpenMutexW', 'CreateMutexW', 'MultiByteToWideChar', 'UnmapViewOfFile', 'SetLastError', 'GetVersionExA', 'GetCurrentThread', 'LocalAlloc', 'LocalFree', 'GetCurrentProcessId', 'FindResourceA', 'LoadResource', 'SizeofResource', 'LockResource', 'CreateDirectoryW', 'ExpandEnvironmentStringsA', 'GetFileSize', 'ReadFile', 'GetFileAttributesW', 'WriteFile', 'DeleteFileW', 'MoveFileExW', 'SetFileAttributesW', 'SetFileTime', 'GetFileTime', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'InterlockedDecrement', 'SetErrorMode', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDiskFreeSpaceExW', 'GetVolumeNameForVolumeMountPointW', 'GetVolumeInformationW', 'CreateFileW', 'DeviceIoControl', 'GetModuleFileNameA', 'LoadLibraryA', 'FreeLibrary', 'CreateThread', 'CreateProcessA', 'WaitForSingleObject', 'CopyFileA', 'HeapFree', 'GetProcessHeap', 'VirtualAlloc', 'GetProcAddress', 'VirtualQuery', 'GetVersion', 'GetCurrentProcess', 'GetModuleHandleA', 'GetLastError', 'Sleep', 'SetFileAttributesA', 'GetSystemTimeAsFileTime', 'CloseHandle', 'CreateMutexA', 'GetFileAttributesA', 'GetVolumeInformationA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueExA', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumValueW', 'RegEnumKeyExW', 'InitializeAcl', 'AddAccessAllowedAce', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'AccessCheck', 'OpenThreadToken', 'DuplicateTokenEx', 'OpenProcessToken', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetUserNameW', 'AllocateAndInitializeSid', 'LookupAccountSidW', 'FreeSid', 'RegCloseKey', 'CoSetProxyBlanket', 'CoCreateInstance', 'CoInitializeEx', 'CoInitializeSecurity', 'CoUninitialize', 'VariantClear', 'SysFreeString', 'SysAllocString', 'DestroyWindow', 'CreateWindowExW', 'GetSystemMetrics'], ['GetWindowsDirectoryA', 'GetTempPathA', 'GetCurrentProcessId', 'LocalFree', 'LocalAlloc', 'GetLastError', 'GetCurrentProcess', 'GetCurrentThread', 'GetVersionExA', 'GetProcAddress', 'GetVersion', 'GetModuleHandleA', 'CreateMutexW', 'OpenMutexW', 'LoadLibraryExA', 'WaitForSingleObject', 'SetLastError', 'GetSystemDirectoryA', 'GetVersionExW', 'LoadLibraryW', 'DeleteFileW', 'CreateFileW', 'GetTempFileNameW', 'GetTempPathW', 'VirtualFree', 'VirtualUnlock', 'VirtualLock', 'VirtualAlloc', 'ReleaseMutex', 'GetEnvironmentVariableW', 'IsBadReadPtr', 'UnmapViewOfFile', 'CreateFileMappingW', 'MapViewOfFile', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'GetSystemTimeAsFileTime', 'CompareFileTime', 'LoadLibraryA', 'Sleep', 'FreeLibrary', 'GetStartupInfoA', 'CreateProcessA', 'WriteFile', 'GetFileSize', 'CloseHandle', 'MulDiv', 'SetPropA', 'UnregisterClassW', 'CreateWindowExW', 'DestroyWindow', 'CreateAcceleratorTableW', 'OpenProcessToken', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'AccessCheck', 'OpenThreadToken', 'DuplicateTokenEx', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetUserNameW', 'AllocateAndInitializeSid', 'LookupAccountSidW', 'FreeSid', 'RegOpenKeyExA', 'RegCloseKey', 'AddAccessAllowedAce', 'InitializeAcl', 'InitializeSecurityDescriptor', '_initterm', 'fseek', '__CxxFrameHandler', 'strlen', '??2@YAPAXI@Z', '??3@YAXPAX@Z', '_purecall', 'strcat', 'wcscmp', 'memset', '_local_unwind2', 'memcpy', 'memcmp', 'wcslen', '_wcsicmp', '_snwprintf', 'wcsncpy', 'strcpy', 'fclose', '_wfopen', 'wcsncat', 'wcscpy', 'strcmp', 'strncmp', '_exit', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', 'fread', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', 'malloc', 'calloc', 'memmove', 'free', '_controlfp', '_stricmp', '_get_osfhandle'], ['VirtualUnlock', 'OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'MoveFileW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'ExitThread', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'FindFirstFileW', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'GetModuleFileNameW', 'TerminateProcess', 'VirtualAlloc', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'CloseHandle', 'lstrlenW', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'LockFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'HttpQueryInfoA', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['WinHttpReceiveResponse', 'WinHttpOpen', 'WinHttpReadData', 'WinHttpOpenRequest', 'WinHttpSetOption', 'WinHttpCloseHandle', 'WinHttpSendRequest', 'WinHttpConnect', 'WinHttpQueryDataAvailable', 'WriteConsoleW', 'FlushFileBuffers', 'WriteFile', 'GetTempPathW', 'CreateFileW', 'Sleep', 'HeapReAlloc', 'CloseHandle', 'LoadLibraryW', 'HeapAlloc', 'GetProcessHeap', 'CreateProcessW', 'FreeLibrary', 'lstrcpyW', 'GetTempFileNameW', 'GetProcAddress', 'GetModuleHandleW', 'GetEnvironmentStringsW', 'SetLastError', 'GetCurrentProcessId', 'LocalFree', 'GetModuleFileNameW', 'DeleteFileW', 'GetLastError', 'MultiByteToWideChar', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'FreeEnvironmentStringsW', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'WideCharToMultiByte', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'FindClose', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlPcToFileHeader', 'EncodePointer', 'RaiseException', 'RtlUnwindEx', 'InterlockedFlushSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'HeapFree', 'GetStringTypeW', 'GetACP', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'RealGetWindowClassW', 'GetWindowThreadProcessId', 'VariantClear'], ['AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetCurrentHwProfileA', 'GetUserNameA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetComputerNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'OutputDebugStringA', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_fmode', '_initterm', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_write', 'abort', 'calloc', 'exit', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'SysFreeString', 'RegQueryValueExW', 'CharNextW', 'UnrealizeObject', 'VerQueryValueW', 'SHGetFolderPathW', 'NetApiBufferFree', 'CreateStreamOnHGlobal', 'InitializeFlatSB', 'memset', 'SHGetFileInfoW', 'InternetGetConnectedState', 'OpenPrinterW', 'WSACleanup', 'timeGetTime', 'GdipGetPenFillType', 'LresultFromObject'], ['WaitForSingleObject', 'GetFileAttributesW', 'GetModuleFileNameW', 'GetLastError', 'SetLastError', 'GetModuleFileNameA', 'CreateFileA', 'SetFileTime', 'InitializeCriticalSection', 'LeaveCriticalSection', 'GetSystemDirectoryA', 'EnterCriticalSection', 'GetFileTime', 'DeleteCriticalSection', 'CloseHandle', 'HeapAlloc', 'WideCharToMultiByte', 'HeapFree', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'GetTimeZoneInformation', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'HeapSize', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'VirtualQuery', 'GetProcAddress', 'LoadLibraryW', 'GetCPInfo', 'GetModuleHandleA', 'RaiseException', 'DefWindowProcA', 'EndDialog', 'CreateWindowExA', 'GetWindowLongA', 'MessageBoxA', 'TranslateMessage', 'SendMessageA', 'SetFocus', 'LoadIconA', 'LoadMenuA', 'KillTimer', 'PostQuitMessage', 'RegisterClassExA', 'SetTimer', 'GetMessageA', 'wsprintfW', 'wsprintfA', 'SetMenu', 'DispatchMessageA', 'SetWindowTextA', 'LoadCursorA', 'DialogBoxParamA', 'ShowWindow', 'GetStockObject', 'GetUserNameA'], ['WriteProfileSectionA', 'SetLocaleInfoA', 'FindFirstVolumeA', 'GetNamedPipeHandleStateW', 'CompareFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateThread', 'SignalObjectAndWait', 'GetVersionExW', 'VerifyVersionInfoA', 'QueryDepthSList', 'SetEvent', 'FindNextFileA', 'BuildCommDCBAndTimeoutsA', 'GetCompressedFileSizeA', 'CopyFileExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructA', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'FindAtomA', 'LoadResource', 'GetThreadPriority', 'CallNamedPipeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LocalAlloc', 'GetProfileSectionA', 'GetCommandLineA', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'GetCalendarInfoA', 'ReleaseActCtx', 'OutputDebugStringW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'TerminateProcess', 'GlobalFix', 'HeapValidate', 'InterlockedCompareExchange', 'GetStartupInfoW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleTextAttribute', 'GetLastError', 'CopyFileA', 'DisconnectNamedPipe', 'GetCPInfoExW', 'GetComputerNameExW', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetSystemWindowsDirectoryW', 'GetACP', 'GetPrivateProfileStringA', 'CreateActCtxA', 'GetConsoleAliasW', 'lstrlenA', 'WriteConsoleA', 'GlobalWire', 'FormatMessageW', 'GetPrivateProfileSectionNamesA', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'VerSetConditionMask', 'CreateConsoleScreenBuffer', 'GetSystemWindowsDirectoryA', 'GetProfileStringW', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'SetThreadContext', 'GetSystemTimeAdjustment', '_lwrite', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthW', 'MoveFileA', 'GetWriteWatch', 'GetPrivateProfileStringW', 'GetModuleHandleA', 'EnumDateFormatsA', 'DeleteAtom', 'LoadLibraryW', 'TlsFree', 'SetFirmwareEnvironmentVariableW', 'CommConfigDialogW', 'GetConsoleAliasesLengthA', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'ReadConsoleW', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'GetNumberFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'EnterCriticalSection', 'InitializeCriticalSection', 'GetSystemWow64DirectoryW', 'LoadLibraryA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'SetStdHandle', 'GetFileType', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'SetLastError', 'SetHandleCount', 'GetStdHandle', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'MultiByteToWideChar', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'GetBoundsRect', 'WinHttpConnect', 'AlphaBlend'], ['GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'QueryDepthSList', 'GetVersionExW', 'VerifyVersionInfoW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExW', 'FindAtomA', 'GlobalDeleteAtom', 'SetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'VirtualProtect', 'LoadLibraryW', 'LocalAlloc', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'CopyFileA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoA', 'SetConsoleCursorPosition', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'FindFirstVolumeW', 'CreateActCtxA', 'GetConsoleAliasA', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'GetPrivateProfileSectionNamesA', 'GlobalWire', 'FreeEnvironmentStringsW', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'SetConsoleCP', 'GetSystemWindowsDirectoryA', 'GetProfileStringA', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'GetSystemWindowsDirectoryW', 'EnumDateFormatsW', 'GetModuleHandleA', 'DeleteAtom', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'FindFirstVolumeA', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'ReadConsoleW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatW', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'GetCurrentActCtx', 'InitializeCriticalSection', 'WriteProfileSectionA', 'SetLocaleInfoA', 'GetPrivateProfileStringA', 'LoadLibraryA', 'DeleteFileA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'GetCharWidth32A', 'ImpersonateSelf', 'WinHttpWriteData', 'AlphaBlend'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntW', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['ntohl', 'htonl', '_beginthreadex', '_adjust_fdiv', 'malloc', '_vsnprintf', 'fopen', 'vfprintf', 'fclose', 'free', 'memcpy', '_initterm', 'GetProcAddress', 'SetErrorMode', 'DisableThreadLibraryCalls', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'SetEvent', 'CloseHandle', 'CreateEventA', 'GetLastError'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetGraphicsMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ADsGetLastError', 'ADsGetObject'], ['OpenProcessToken', 'GetTokenInformation', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'getaddrinfo', 'WSAGetLastError', 'WSACleanup', 'WSAStartup', 'freeaddrinfo', 'closesocket', 'send', 'select', 'recv', 'getsockopt', 'ioctlsocket', 'connect', 'socket', 'EnumDisplayDevicesA', 'SetEndOfFile', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'SetStdHandle', 'GetProcessHeap', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'CloseHandle', 'SetLastError', 'WaitForSingleObject', 'GetCurrentProcess', 'ResumeThread', 'CreateProcessA', 'SetPriorityClass', 'GetThreadContext', 'SetThreadContext', 'VirtualAlloc', 'VirtualAllocEx', 'WriteProcessMemory', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'lstrlenA', 'FreeConsole', 'LocalFree', 'FormatMessageA', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RtlPcToFileHeader', 'RaiseException', 'RtlUnwindEx', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'RtlUnwind', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetACP', 'GetExitCodeProcess', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'HeapDestroy', 'ReadFile', 'CreateProcessW', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LoadLibraryA', 'ResetEvent', 'GetVersion', 'RaiseException', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'GetSystemDirectoryW', 'DeleteFileW', 'GetLocalTime', 'GetEnvironmentVariableW', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'GetUserDefaultLangID', 'RemoveDirectoryW', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'InitCommonControls', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CreateWindowExW', 'TranslateMessage', 'CharLowerBuffW', 'CallWindowProcW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'SetWindowLongW', 'MessageBoxW', 'DestroyWindow', 'CharNextW', 'MsgWaitForMultipleObjects', 'LoadStringW', 'ExitWindowsEx', 'DispatchMessageW', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegCloseKey', 'OpenProcessToken', 'RegOpenKeyExW'], ['HeapAlloc', 'SetConsoleTextAttribute', 'ConnectNamedPipe', 'GetPrivateProfileStringW', 'CreateIoCompletionPort', 'PurgeComm', 'EnumDateFormatsExW', 'GetSystemWindowsDirectoryW', 'GetCurrentProcess', 'LocalAlloc', 'GetFullPathNameW', 'GetWriteWatch', 'GetProcAddress', 'ClearCommError', 'ReadConsoleA', 'lstrcpyA', 'SetThreadExecutionState', 'GetDefaultCommConfigA', 'GetEnvironmentVariableW', 'BuildCommDCBAndTimeoutsA', 'GetAtomNameW', 'ProcessIdToSessionId', 'FindNextVolumeW', 'GetLastError', 'GetTickCount', 'lstrlenA', 'GetVolumeNameForVolumeMountPointW', 'MapViewOfFile', 'LoadResource', 'LoadLibraryA', 'CompareStringA', 'CreateFileA', 'GetCommandLineA', 'GetStartupInfoA', 'GetModuleHandleA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'VirtualAlloc', 'HeapReAlloc', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CloseHandle', 'IsValidSid', 'RegisterEventSourceW', 'InitializeAcl', 'EnumServicesStatusA', 'TransparentBlt'], ['GetCurrentHwProfileA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateProcessA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fwrite', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'wcslen', 'WSACleanup', 'WSAConnect', 'WSASocketA', 'WSAStartup', 'closesocket', 'connect', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'recv', 'send', 'socket'], ['DeactivateActCtx', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetLastError', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'ReleaseActCtx', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_commode', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'fputc', 'free', 'fwrite', 'localeconv', 'malloc', 'memcpy', 'memset', 'signal', 'strerror', 'strlen', 'strncmp', 'vfprintf', 'wcslen'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameW', '_register_onexit_function', 'DSA_Create', 'SHGetDiskFreeSpaceExW', 'accept', '__stdio_common_vfprintf', '_configthreadlocale', 'srand', '__setusermatherr', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '_time64', '__current_exception_context', 'free', '_lock_file'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateMailslotA', 'EnumDateFormatsW', 'GetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceW', 'VirtualAlloc', 'GetBinaryTypeW', 'InitAtomTable', 'LeaveCriticalSection', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IntersectRect', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'SetScrollPos', 'GetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'DdeFreeDataHandle', 'SetCursor', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetProcessAffinityMask', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'CreatePolygonRgn', 'BeginPath', 'GetEnhMetaFileHeader', 'CloseEnhMetaFile', 'RectVisible', 'AngleArc', 'CloseFigure', 'StrokeAndFillPath', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'PathToRegion', 'SetArcDirection', 'ExtSelectClipRgn', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'FillPath', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'CreateDCW', 'CreateICW', 'PolyBezierTo', 'GetStockObject', 'CreateSolidBrush', 'GetBkMode', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'SetTextCharacterExtra', 'GetTextCharacterExtra', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'CreatePenIndirect', 'GetEnhMetaFilePaletteEntries', 'SetMapMode', 'GetMapMode', 'CreateFontIndirectW', 'PolyBezier', 'ExtCreatePen', 'LPtoDP', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'PtVisible', 'GetEnhMetaFileDescriptionW', 'CreateEllipticRgnIndirect', 'ArcTo', 'CreateEnhMetaFileW', 'Arc', 'PolylineTo', 'TextOutW', 'SelectPalette', 'SetGraphicsMode', 'ExcludeClipRect', 'SetWindowOrgEx', 'MaskBlt', 'EndPage', 'EndPath', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'StrokePath', 'PatBlt', 'SelectClipPath', 'SetEnhMetaFileBits', 'Rectangle', 'DeleteDC', 'SaveDC', 'BitBlt', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'GetClipRgn', 'Polyline', 'IntersectClipRect', 'CreateBitmap', 'SetWinMetaFileBits', 'CreateDIBitmap', 'GetStretchBltMode', 'CreateDIBSection', 'SetStretchBltMode', 'GetDIBits', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'SetWindowExtEx', 'CreateHalftonePalette', 'DeleteObject', 'SelectObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'GetBkColor', 'CreateCompatibleDC', 'GetObjectA', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'SetTextAlign', 'GetTextAlign', 'CreateRoundRectRgn', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetViewportExtEx', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'WidenPath', 'GetPaletteEntries'], ['GetCursorPos', 'OpenSCManagerW', 'GetUserNameA', 'CloseServiceHandle', 'EnumServicesStatusExW', 'StrCmpIW', 'SetStdHandle', 'HeapAlloc', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'VerSetConditionMask', 'CreateFileA', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'GetFileAttributesA', 'ReadFile', 'WriteFile', 'IsDebuggerPresent', 'CheckRemoteDebuggerPresent', 'CloseHandle', 'GetLastError', 'ConnectNamedPipe', 'Sleep', 'GetCurrentProcess', 'CreateThread', 'GlobalMemoryStatusEx', 'GetTickCount', 'VirtualAlloc', 'VirtualProtect', 'CreateNamedPipeA', 'VerifyVersionInfoW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'FormatMessageA', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'LocalFree', 'GetLocaleInfoEx', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'LCMapStringEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'GetCurrentThreadId', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'RaiseException', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetModuleHandleW', 'CreateFileW', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'GetProcAddress', 'GetEnvironmentStringsW', 'RtlPcToFileHeader', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RtlUnwind', 'HeapSize', 'HeapValidate', 'GetSystemInfo', 'GetModuleHandleExW', 'GetStdHandle', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapReAlloc', 'HeapQueryInformation', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'GetTimeZoneInformation', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP'], ['IpRenewAddress', 'IpReleaseAddress', 'GetInterfaceInfo', 'GetTickCount', 'GetProcessHeap', 'GetModuleHandleA', 'ExitProcess', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'IsBadReadPtr', 'Sleep', 'GetModuleFileNameA', 'CloseHandle', 'WriteFile', 'CreateFileA', 'WaitForSingleObject', 'CreateProcessA', 'GetStartupInfoA', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GetCommandLineA', 'GetVersionExA', 'GetLastError', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'FlushFileBuffers', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'RaiseException', 'InitializeCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'RtlUnwind', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'wsprintfA', 'MessageBoxA'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'OleInitialize', 'strlen'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'WriteFile', 'VirtualQuery', 'SetDefaultCommConfigW', 'ReleaseMutex', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'LoadLibraryA', 'HeapWalk', 'HeapDestroy', 'GlobalAlloc', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetNumberOfConsoleMouseButtons', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCPInfo', 'GetACP', 'EnumResourceTypesA', 'EnumCalendarInfoA', 'DefineDosDeviceW', 'BackupWrite', 'UnregisterClassA', 'SetClassWord', 'PeekMessageA', 'MessageBoxA', 'LoadStringA', 'LoadAcceleratorsW', 'GetSystemMetrics', 'GetClipboardViewer', 'GetClipboardFormatNameW', 'CheckRadioButton', 'CharNextA', 'CharToOemA'], ['GetProcAddress', 'GetModuleHandleA', 'FreeConsole', 'ResetEvent', 'SetEvent', 'UnlockFile', 'CreateFiberEx', 'LockFile', 'ConvertThreadToFiber', 'SetFilePointer', 'EncodePointer', 'GlobalUnfix', 'GetCurrentProcessId', 'AssignProcessToJobObject', 'GetFileInformationByHandle', 'CreateEventW', 'GetLastError', 'CreateFileW', 'GetCurrentProcess', 'GetCommandLineA', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TerminateProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['PathIsNetworkPathA', 'CloseHandle', 'DuplicateHandle', 'UnmapViewOfFile', 'CreateFileMappingA', 'MapViewOfFileEx', 'CreateFileA', 'GetSystemInfo', 'FormatMessageA', 'LocalFree', 'GetProcAddress', 'GetModuleHandleA', 'GetExitCodeProcess', 'CreateProcessW', 'TerminateProcess', 'WaitForSingleObjectEx', 'WaitForSingleObject', 'CreateEventA', 'SetEvent', 'CreateSemaphoreA', 'ReleaseSemaphore', 'AreFileApisANSI', 'ReadFile', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetSystemDirectoryW', 'CreatePipe', 'SetHandleInformation', 'GetProcessHeap', 'HeapAlloc', 'GetCurrentProcess', 'GetLogicalDriveStringsW', 'GetCommandLineW', 'GetDriveTypeW', 'GetWindowsDirectoryW', 'Wow64DisableWow64FsRedirection', 'Wow64RevertWow64FsRedirection', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ResetEvent', 'WaitForMultipleObjectsEx', 'OpenEventA', 'SetWaitableTimer', 'GetCurrentProcessId', 'GetCurrentThreadId', 'ResumeThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CreateWaitableTimerA', 'SetLastError', 'GetCurrentThread', 'GetThreadTimes', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'HeapSize', 'ReadConsoleW', 'GetLastError', 'SwitchToThread', 'Sleep', 'WriteConsoleW', 'HeapFree', 'GetStringTypeW', 'FormatMessageW', 'GetExitCodeThread', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'CreateFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetDiskFreeSpaceExW', 'GetFileAttributesExW', 'GetFileInformationByHandle', 'SetEndOfFile', 'SetFileAttributesW', 'SetFilePointerEx', 'GetTempPathW', 'DeleteFileW', 'GetFileAttributesW', 'RemoveDirectoryW', 'GetModuleHandleW', 'MoveFileExW', 'GetCPInfo', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetSystemTimeAsFileTime', 'GetTickCount', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'InitializeSListHead', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'CreateTimerQueue', 'SignalObjectAndWait', 'CreateThread', 'SetThreadPriority', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'RegisterWaitForSingleObject', 'UnregisterWait', 'FreeLibrary', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'LoadLibraryExW', 'GetVersionExW', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'UnregisterWaitEx', 'LoadLibraryW', 'RaiseException', 'RtlUnwind', 'GetCommandLineA', 'ExitThread', 'GetModuleHandleExW', 'SetEnvironmentVariableA', 'ExitProcess', 'GetModuleFileNameA', 'GetStdHandle', 'GetACP', 'HeapReAlloc', 'GetDateFormatW', 'GetTimeFormatW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'IsValidCodePage', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SHGetFolderPathW', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CryptReleaseContext', 'CryptAcquireContextA', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'CryptGenRandom'], ['SetupIterateCabinetW', 'CoInitializeEx', 'CoUninitialize', 'ShellExecuteW', 'ShellExecuteExW', 'wsprintfW', 'MessageBoxW', 'DeleteFileW', 'FindResourceW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetTempPathW', 'WriteFile', 'CreateDirectoryW', 'LoadLibraryA', 'GetStartupInfoW', 'SetEnvironmentVariableW', 'lstrcpyW', 'FreeLibrary', 'LoadResource', 'LockResource', 'GetModuleFileNameW', 'GetLastError', 'CloseHandle', 'CreateFileW', 'GetModuleHandleW', 'GetProcAddress', 'VerSetConditionMask', 'RemoveDirectoryW', 'ExitProcess', 'GetCommandLineW', 'SizeofResource'], ['OpenProcessToken', 'GetTokenInformation', 'LookupAccountNameW', 'ConvertSidToStringSidW', 'EventUnregister', 'EventRegister', 'EventWriteTransfer', 'CreateEventExW', 'Sleep', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetModuleFileNameW', 'OpenEventW', 'CreateMutexW', 'LocalFree', 'WaitForSingleObjectEx', 'GetTickCount64', 'SetLastError', 'CreateWaitableTimerW', 'GetCurrentThreadId', 'QueryDepthSList', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'InitializeSListHead', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'FindClose', 'FindFirstFileExW', 'SetFilePointerEx', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetEvent', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'HeapSize', 'GetStdHandle', 'GetModuleFileNameA', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetCurrentThread', 'GetFileType', 'GetStringTypeW', 'HeapReAlloc', 'GetProcessHeap', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'DecodePointer', 'WriteConsoleW', 'CreateFileW', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'GetLastError', 'CloseHandle', 'GetStartupInfoW', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'FileTimeToSystemTime', 'GetShortPathNameA', 'CreateEventW', 'GetThreadTimes', 'CoTaskMemFree', 'StringFromIID'], ['GdipDrawImageI', 'GdipDrawLineI', 'GdipDeletePen', 'GdipCreatePen1', 'GdipDrawString', 'GdipDeleteFont', 'GdipCreateFont', 'GdipDeleteFontFamily', 'GdipCreateFontFamilyFromName', 'GdipFillRectangleI', 'GdipCreateSolidFill', 'GdipCloneBrush', 'GdipDeleteBrush', 'GdipCreateLineBrushFromRectI', 'GdipGetImageGraphicsContext', 'GdipCreateBitmapFromScan0', 'GdipGetVisibleClipBoundsI', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdiplusStartup', 'GdipCloneImage', 'GdipAlloc', 'GdipDisposeImage', 'GdipFree', 'LCMapStringW', 'CompareStringW', 'HeapSize', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetFileType', 'GetConsoleCP', 'ReadConsoleW', 'GetConsoleMode', 'RtlUnwind', 'GetProcessHeap', 'CreateThread', 'GetCommandLineW', 'GetVersionExA', 'CreateToolhelp32Snapshot', 'GetLastError', 'GetCurrentProcessId', 'Process32First', 'Process32Next', 'CloseHandle', 'ExitProcess', 'CreateMutexA', 'WaitForSingleObject', 'ReleaseMutex', 'SetThreadExecutionState', 'DeviceIoControl', 'FormatMessageW', 'Sleep', 'CreateFileW', 'GetFileInformationByHandle', 'FlushFileBuffers', 'GetSystemTime', 'SystemTimeToFileTime', 'FindNextFileW', 'FindClose', 'GetSystemTimeAsFileTime', 'GetFileAttributesExW', 'GetCurrentProcess', 'GetVolumePathNameW', 'GetVolumeNameForVolumeMountPointW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetVolumeInformationW', 'FindFirstVolumeMountPointW', 'FindNextVolumeMountPointW', 'FindVolumeMountPointClose', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetShortPathNameW', 'GetLongPathNameW', 'DosDateTimeToFileTime', 'LocalFileTimeToFileTime', 'ReadFile', 'WriteFile', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'SetFilePointerEx', 'SetStdHandle', 'WriteConsoleW', 'SetEndOfFile', 'FindFirstFileW', 'SetEnvironmentVariableA', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapAlloc', 'HeapFree', 'GetTimeZoneInformation', 'HeapReAlloc', 'DeleteFileW', 'GetCommandLineA', 'GetCurrentThreadId', 'RaiseException', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetStringTypeW', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DefWindowProcA', 'EndPaint', 'BeginPaint', 'InvalidateRect', 'PostQuitMessage', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'SetTimer', 'UpdateWindow', 'ShowWindow', 'CreateWindowExW', 'MessageBoxW', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'RegisterClassExA', 'GetStockObject', 'RegQueryValueExW', 'RegCreateKeyExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCloseKey', 'CommandLineToArgvW'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'PathFindFileNameA', 'malloc'], ['GetEnvironmentStringsW', 'AddConsoleAliasW', 'GetEnvironmentStrings', 'GlobalAlloc', 'WideCharToMultiByte', 'LoadLibraryW', 'SetVolumeMountPointA', 'LeaveCriticalSection', 'HeapValidate', 'WriteConsoleW', 'GetAtomNameW', 'ReplaceFileA', 'SetLastError', 'AttachConsole', 'VirtualAlloc', 'ZombifyActCtx', 'WriteProfileSectionA', 'SetStdHandle', 'LoadLibraryA', 'SetCalendarInfoW', 'AddVectoredExceptionHandler', 'GetModuleFileNameA', 'SetConsoleTitleW', 'FindFirstChangeNotificationA', 'EnumResourceNamesA', 'GetConsoleTitleW', 'LocalFree', 'BeginUpdateResourceW', 'GetDefaultCommConfigW', 'HeapAlloc', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegQueryValueA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'CLSIDFromString', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['FindClose', 'CreateFileW', 'MultiByteToWideChar', 'GetLastError', 'lstrcatW', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'HeapAlloc', 'GetProcessHeap', 'GetModuleHandleW', 'lstrcpyW', 'GetTickCount', 'lstrcmpW', 'lstrlenA', 'VirtualFree', 'lstrcpynW', 'VirtualAlloc', 'TerminateProcess', 'WaitForMultipleObjects', 'GetEnvironmentVariableW', 'GetComputerNameExW', 'lstrcatA', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'CreateThread', 'SetFilePointerEx', 'ExitProcess', 'GlobalMemoryStatusEx', 'CreateProcessW', 'WideCharToMultiByte', 'WinExec', 'lstrcmpiW', 'MoveFileW', 'GetModuleFileNameW', 'RemoveDirectoryW', 'WriteFile', 'lstrlenW', 'FindNextFileW', 'HeapFree', 'FindFirstFileW', 'GetTempPathW', 'ResetEvent', 'GetLogicalDrives', 'ReadFile', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'GetVersionExW', 'GetModuleHandleA', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SignalObjectAndWait', 'SetEvent', 'CreateTimerQueue', 'WriteConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'DecodePointer', 'HeapSize', 'GetStringTypeW', 'SetStdHandle', 'InitializeSListHead', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'WaitForSingleObjectEx', 'Sleep', 'SwitchToThread', 'GetExitCodeThread', 'GetNativeSystemInfo', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'QueryPerformanceFrequency', 'GetCurrentThread', 'GetThreadTimes', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RaiseException', 'EncodePointer', 'FreeLibrary', 'LoadLibraryExW', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetStdHandle', 'LCMapStringW', 'GetFileType', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'CryptAcquireContextA', 'CryptDestroyKey', 'CloseServiceHandle', 'CryptEncrypt', 'OpenSCManagerW', 'ControlService', 'CryptImportKey', 'OpenServiceW', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptGenRandom', 'SHGetFolderPathW', 'ShellExecuteW', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'SysAllocString', 'VariantClear', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'PathCombineW', 'wnsprintfW', 'wnsprintfA', 'StrCmpNA', 'StrStrA', 'StrStrW', 'InternetCrackUrlA', 'HttpOpenRequestW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'InternetOpenW', 'InternetCrackUrlW', 'HttpSendRequestW', 'InternetCloseHandle', 'InternetConnectW', 'InternetSetOptionW', 'InternetReadFile', 'recv', 'connect', 'closesocket', 'inet_addr', 'send', 'socket', 'htons'], ['GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'GetStartupInfoW', 'FreeLibrary', 'LoadLibraryExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'SetEndOfFile', 'GetProcAddress', 'GetModuleFileNameW', 'SetDllDirectoryW', 'CreateProcessW', 'GetLastError', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwindEx', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCommandLineA', 'ReadFile', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'SetStdHandle', 'SetConsoleCtrlHandler', 'DeleteFileW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'GetFileAttributesExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'ConvertSidToStringSidW', 'GetTokenInformation', 'OpenProcessToken', 'ConvertStringSecurityDescriptorToSecurityDescriptorW'], ['RaiseException', 'GetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'Sleep', 'LoadResource', 'SizeofResource', 'FindClose', 'CloseHandle', 'CreateMutexA', 'OpenMutexA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CreateProcessA', 'FindResourceW', 'FindResourceExW', 'GetTempPathA', 'CreateDirectoryA', 'RemoveDirectoryA', 'GetFullPathNameW', 'QueryDosDeviceW', 'SetFileAttributesA', 'DeleteFileA', 'FindFirstFileW', 'FindNextFileW', 'CopyFileA', 'GetPriorityClass', 'GetVersionExA', 'FindFirstVolumeW', 'TerminateProcess', 'FindVolumeClose', 'GetVolumePathNamesForVolumeNameW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'VirtualFree', 'GetVersionExW', 'GetThreadTimes', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'GetCurrentProcessId', 'OpenProcess', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'LockResource', 'HeapDestroy', 'InterlockedDecrement', 'FindNextVolumeW', 'DecodePointer', 'SetEndOfFile', 'CreateFileW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileAttributesExW', 'GetExitCodeProcess', 'WaitForSingleObject', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'GetACP', 'WriteFile', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'VirtualQuery', 'FreeLibrary', 'DuplicateHandle', 'GetCurrentThread', 'GetExitCodeThread', 'TryEnterCriticalSection', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'GetCPInfo', 'EncodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'OutputDebugStringW', 'LocalFree', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'ReadFile', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'PostQuitMessage', 'DefWindowProcA', 'SendMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'RegisterWindowMessageA', 'wsprintfA', 'GetCursorPos', 'IsWindowVisible', 'GetSystemMetrics', 'GetDesktopWindow', 'TrackPopupMenu', 'SetForegroundWindow', 'GetDC', 'LoadCursorA', 'LoadIconA', 'ReleaseDC', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'GetObjectA', 'SetKernelObjectSecurity', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'Shell_NotifyIconA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoInitializeEx', 'CoUninitialize', 'CoSetProxyBlanket', 'CoInitialize', 'CoCreateInstance', 'CoInitializeSecurity', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysAllocString', 'PathFindExtensionA', 'PathFindExtensionW', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipCreateBitmapFromHBITMAP', 'GdipCreateBitmapFromScan0', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCloneImage', 'GdipDisposeImage', 'GdipSaveImageToFile', 'InternetConnectA', 'InternetCloseHandle', 'HttpSendRequestA', 'InternetOpenA', 'HttpOpenRequestA', 'InternetReadFile', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['GetConsoleAliasesLengthW', 'SetConsoleTextAttribute', 'MoveFileExW', 'SetMailslotInfo', 'CreateDirectoryExA', 'GetModuleHandleW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'InitializeCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'GetBinaryTypeW', 'GetStdHandle', 'GetCPInfoExW', 'lstrlenA', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'LocalAlloc', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'UnregisterWaitEx', 'InterlockedPushEntrySList', 'GetLastError', 'SetFilePointer', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetModuleHandleA', 'HeapSize'], ['RtlUnwind', 'NtCancelIoFileEx', 'RtlCaptureContext', 'NtCreateFile', 'NtDeviceIoControlFile', 'RtlNtStatusToDosError', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'BCryptGenRandom', 'CertDuplicateCertificateChain', 'CertFreeCertificateChain', 'CertEnumCertificatesInStore', 'CertGetCertificateChain', 'CertVerifyCertificateChainPolicy', 'CertFreeCertificateContext', 'CertDuplicateCertificateContext', 'CertDuplicateStore', 'CertCloseStore', 'CertOpenStore', 'CertAddCertificateContextToStore', 'CompareStringW', 'LCMapStringW', 'HeapSize', 'GetConsoleOutputCP', 'CreateFileW', 'CloseHandle', 'GetConsoleWindow', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'SetHandleInformation', 'GetCurrentProcessId', 'TryAcquireSRWLockExclusive', 'ReleaseSRWLockShared', 'SleepConditionVariableSRW', 'GetSystemInfo', 'SetFileCompletionNotificationModes', 'WriteFile', 'ReadFile', 'GetOverlappedResult', 'CreateIoCompletionPort', 'GetQueuedCompletionStatusEx', 'PostQueuedCompletionStatus', 'CreateEventW', 'FlushFileBuffers', 'CreateNamedPipeW', 'GetLastError', 'SwitchToThread', 'GetCurrentProcess', 'GetCurrentThread', 'GetProcAddress', 'ReleaseMutex', 'SetLastError', 'GetCurrentDirectoryW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GetCommandLineW', 'CompareStringOrdinal', 'DuplicateHandle', 'SetFilePointerEx', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'WaitForSingleObject', 'GetExitCodeProcess', 'TerminateProcess', 'WaitForMultipleObjects', 'WakeAllConditionVariable', 'WakeConditionVariable', 'TryEnterCriticalSection', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'AddVectoredExceptionHandler', 'SetThreadStackGuarantee', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'TlsAlloc', 'HeapReAlloc', 'AcquireSRWLockShared', 'WaitForSingleObjectEx', 'LoadLibraryA', 'CreateMutexA', 'FindNextFileW', 'FindClose', 'DecodePointer', 'GetFinalPathNameByHandleW', 'CancelIo', 'DeleteCriticalSection', 'GetModuleHandleW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetModuleFileNameW', 'ExitProcess', 'GetFullPathNameW', 'GetSystemDirectoryW', 'GetWindowsDirectoryW', 'CreateProcessW', 'CreateThread', 'TlsGetValue', 'TlsSetValue', 'QueryPerformanceFrequency', 'GetModuleHandleA', 'GetConsoleMode', 'WriteConsoleW', 'GetStringTypeW', 'GetFileType', 'SetStdHandle', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindFirstFileExW', 'GetCommandLineA', 'GetModuleHandleExW', 'LoadLibraryExW', 'FreeLibrary', 'TlsFree', 'InitializeCriticalSectionAndSpinCount', 'EncodePointer', 'RaiseException', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeSListHead', 'GetCurrentThreadId', 'FreeContextBuffer', 'DecryptMessage', 'EncryptMessage', 'DeleteSecurityContext', 'QueryContextAttributesW', 'AcquireCredentialsHandleA', 'FreeCredentialsHandle', 'InitializeSecurityContextW', 'ApplyControlToken', 'AcceptSecurityContext', 'ShowWindow', 'WSACleanup', 'send', 'recv', 'shutdown', 'WSAStartup', 'getaddrinfo', 'ioctlsocket', 'connect', 'bind', 'WSASocketW', 'getpeername', 'closesocket', 'freeaddrinfo', 'WSAGetLastError', 'WSAIoctl', 'setsockopt', 'getsockopt', 'WSASend'], ['GetACP', 'GetExitCodeProcess', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'GetStdHandle', 'GetModuleHandleW', 'FreeLibrary', 'HeapDestroy', 'ReadFile', 'CreateProcessW', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LoadLibraryA', 'ResetEvent', 'GetVersion', 'RaiseException', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetSystemWindowsDirectoryW', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'GetSystemDirectoryW', 'DeleteFileW', 'GetLocalTime', 'GetEnvironmentVariableW', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'GetUserDefaultLangID', 'RemoveDirectoryW', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'InitCommonControls', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CreateWindowExW', 'TranslateMessage', 'CharLowerBuffW', 'CallWindowProcW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'SetWindowLongW', 'MessageBoxW', 'DestroyWindow', 'CharUpperBuffW', 'CharNextW', 'MsgWaitForMultipleObjects', 'LoadStringW', 'ExitWindowsEx', 'DispatchMessageW', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'GetTokenInformation', 'ConvertSidToStringSidW', 'LookupPrivilegeValueW', 'RegCloseKey', 'OpenProcessToken', 'RegOpenKeyExW'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'CopyFileA', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryW', 'FindCloseChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreA', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'GetConsoleAliasExesLengthA', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'WriteConsoleInputW', 'GetFileInformationByHandle', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'InitAtomTable', 'GetBinaryTypeA', 'LeaveCriticalSection', 'VirtualAlloc', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['GetCommandLineW', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetLastError', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LoadLibraryExW', 'RtlUnwind', 'OutputDebugStringW', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['GetModuleHandleA', 'MessageBoxA', 'RegOpenKeyExA', 'SHGetDiskFreeSpaceA', 'InitMUILanguage', '_CorExeMain'], ['Sleep', 'lstrlenA', 'CreateThread', 'VirtualFree', 'GetModuleFileNameW', 'GetTickCount', 'ExitProcess', 'GetFileSize', 'VirtualAlloc', 'ReadFile', 'CloseHandle', 'CreateFileW', 'lstrlenW', 'MultiByteToWideChar', 'memset', '_wtoi', 'memcpy', 'CreateStreamOnHGlobal', 'StrStrA', 'wsprintfA', 'wsprintfW', 'WinHttpCrackUrl', 'WinHttpOpen', 'WinHttpConnect', 'WinHttpOpenRequest', 'WinHttpSendRequest', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpCloseHandle', 'WinHttpReceiveResponse'], ['SetEnvironmentVariableA', 'CompareStringW', 'GetConsoleWindow', 'GetComputerNameA', 'GetSystemTime', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'CloseHandle', 'CreateProcessA', 'DuplicateHandle', 'GetCurrentProcess', 'RtlUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetFileAttributesA', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'CreatePipe', 'GetExitCodeProcess', 'WaitForSingleObject', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetModuleHandleA', 'HeapAlloc', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LoadLibraryA', 'GetLocaleInfoW', 'CompareStringA', 'CreateFileA', 'ShowWindow', 'GetUserNameA'], ['WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeA', 'EnumResourceTypesA', 'EnumResourceNamesA', 'TerminateProcess', 'ReleaseActCtx', 'GetConsoleAliasesLengthA', 'GetVersionExA', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'GetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeW', 'LeaveCriticalSection', 'ReadConsoleInputA', 'TlsGetValue', 'SetComputerNameExA', 'FindAtomA', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineW', 'InterlockedIncrement', 'CopyFileA', 'ZombifyActCtx', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapValidate', 'ExitThread', 'GlobalUnfix', 'GetProcessHeap', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'SetLastError', 'ExitProcess', 'GetSystemTime', 'SetLocalTime', 'EnumCalendarInfoExW', 'OpenSemaphoreW', 'DebugActiveProcess', 'lstrcmpA', 'GetPrivateProfileSectionNamesA', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'HeapLock', 'FindCloseChangeNotification', 'CreateActCtxA', 'GetMailslotInfo', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceA', 'WriteConsoleA', 'VirtualProtect', 'FreeEnvironmentStringsW', 'SetMailslotInfo', 'lstrcpyA', 'VerLanguageNameW', 'UnlockFile', 'SetSystemTime', 'GetFileType', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'GetOverlappedResult', 'FindAtomW', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputA', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lclose', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'HeapSize', 'MoveFileW', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringW', 'AddAtomA', 'WriteConsoleOutputCharacterW', 'QueryInformationJobObject', 'QueryDosDeviceA', 'EnterCriticalSection', 'InitAtomTable', 'VirtualAlloc', 'GetBinaryTypeA', 'GetSystemWindowsDirectoryA', 'GetLastError', 'CreateFileA', 'DeleteFileA', 'RaiseException', 'IsBadReadPtr', 'DeleteCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'WriteFile', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'GetFileSecurityW', 'WinHttpReadData'], ['EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetProcessHeap', 'CreateFileA', 'CloseHandle', 'HeapWalk', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'SetFileTime', 'CreateNamedPipeA', 'ConnectNamedPipe', 'DisconnectNamedPipe', 'VirtualAlloc', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW', 'RaiseException'], ['CopyFileA', 'SetFileAttributesA', 'FindClose', 'GetPrivateProfileStringA', 'LocalAlloc', 'WritePrivateProfileStringA', 'GetSystemInfo', 'GetModuleFileNameA', 'GetPrivateProfileSectionA', 'CompareStringA', 'GetUserDefaultUILanguage', 'GetVersionExA', 'CloseHandle', 'GetVersion', 'LocalFree', 'DeleteFileA', 'FreeResource', 'MapViewOfFile', 'UnmapViewOfFile', '_llseek', 'FreeLibrary', 'LoadResource', '_lwrite', 'GetProcAddress', '_lclose', 'GetTickCount', 'EnumResourceTypesA', 'FindResourceExA', 'GlobalAlloc', 'SizeofResource', 'EnumResourceLanguagesA', 'GlobalUnlock', 'SetLastError', 'GlobalFree', 'GetTempFileNameA', 'CreateFileMappingA', 'MoveFileA', 'LockResource', '_lread', 'LoadLibraryExA', 'EnumResourceNamesA', 'ReadFile', 'GetTempPathA', 'GetCurrentDirectoryA', 'GetModuleHandleW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrcmpiA', 'GetLastError', 'FindFirstFileA', 'CreateDirectoryA', 'GlobalLock', 'GetShortPathNameA', 'CreateFileW', 'GetLocaleInfoW', 'WriteConsoleW', 'SetStdHandle', 'VirtualQuery', 'SetThreadStackGuarantee', 'VirtualAlloc', 'VirtualProtect', 'GetStringTypeW', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'Sleep', 'FlushFileBuffers', 'LoadLibraryExW', 'InitializeCriticalSectionAndSpinCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'LCMapStringW', 'OpenEventA', 'WaitForSingleObject', 'GetModuleHandleA', 'LoadLibraryA', 'CreateFileMappingW', 'CreateProcessA', 'GetExitCodeProcess', 'GetFileAttributesA', 'GetPrivateProfileIntA', 'WriteFile', 'GetFileInformationByHandle', 'FormatMessageA', 'FindResourceExW', 'GetSystemDefaultUILanguage', 'SearchPathW', 'IsDBCSLeadByte', 'WritePrivateProfileSectionA', 'lstrlenA', 'lstrcmpA', 'CreateFileA', 'GetSystemTime', 'GetFullPathNameA', 'GetCommandLineA', 'GetVersionExW', 'GetStartupInfoW', 'HeapFree', 'HeapAlloc', 'SetUnhandledExceptionFilter', 'ExitProcess', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'GetCurrentThreadId', 'FlsAlloc', 'HeapSetInformation', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'OutputDebugStringA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'CreateFontIndirectA', 'DeleteObject', 'GetObjectA', 'GetStockObject', 'GetDeviceCaps', 'GetWindowRect', 'CheckDlgButton', 'ShowWindow', 'IsDlgButtonChecked', 'CheckRadioButton', 'GetDlgItemTextA', 'GetWindowLongPtrA', 'SendDlgItemMessageA', 'MsgWaitForMultipleObjects', 'LoadStringA', 'GetParent', 'MessageBeep', 'CharNextA', 'SetFocus', 'SendMessageA', 'GetDC', 'MessageBoxA', 'PeekMessageA', 'ReleaseDC', 'GetDlgItem', 'SetWindowLongPtrA', 'PostMessageA', 'DispatchMessageA', 'GetSystemMetrics', 'EnableWindow', 'CallWindowProcA', 'SetDlgItemTextA', 'CharPrevA', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'RtlUnwindEx', 'DestroyPropertySheetPage', 'CreatePropertySheetPageA', 'PropertySheetA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'VerQueryValueA', 'CheckSumMappedFile', 'RegQueryValueExW', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyExW'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetSystemWindowsDirectoryA', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['GetProcAddress', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'ReadFile', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'CloseHandle', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'GetACP', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'WriteConsoleW', 'HeapSize', 'SetEndOfFile', 'DecodePointer'], ['memset', 'wcsncmp', 'memmove', 'wcsncpy', 'wcsstr', '_wcsnicmp', '_wcsdup', 'free', '_wcsicmp', 'wcslen', 'wcscpy', 'wcscmp', 'memcpy', 'tolower', 'wcscat', 'malloc', 'GetModuleHandleW', 'HeapCreate', 'GetStdHandle', 'HeapDestroy', 'ExitProcess', 'WriteFile', 'GetTempFileNameW', 'LoadLibraryExW', 'EnumResourceTypesW', 'FreeLibrary', 'RemoveDirectoryW', 'GetExitCodeProcess', 'EnumResourceNamesW', 'GetCommandLineW', 'LoadResource', 'SizeofResource', 'FreeResource', 'FindResourceW', 'GetNativeSystemInfo', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'EnterCriticalSection', 'CloseHandle', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'TerminateThread', 'CreateThread', 'Sleep', 'GetProcAddress', 'GetVersionExW', 'WideCharToMultiByte', 'HeapAlloc', 'HeapFree', 'LoadLibraryW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetModuleFileNameW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GetCurrentProcess', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'HeapSize', 'MultiByteToWideChar', 'CreateDirectoryW', 'SetFileAttributesW', 'GetTempPathW', 'DeleteFileW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'CreateFileW', 'SetFilePointer', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TlsAlloc', 'HeapReAlloc', 'DeleteCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'GetLastError', 'SetLastError', 'UnregisterWait', 'GetCurrentThread', 'DuplicateHandle', 'RegisterWaitForSingleObject', 'CharUpperW', 'CharLowerW', 'MessageBoxW', 'DefWindowProcW', 'DestroyWindow', 'GetWindowLongW', 'GetWindowTextLengthW', 'GetWindowTextW', 'UnregisterClassW', 'LoadIconW', 'LoadCursorW', 'RegisterClassExW', 'IsWindowEnabled', 'EnableWindow', 'GetSystemMetrics', 'CreateWindowExW', 'SetWindowLongW', 'SendMessageW', 'SetFocus', 'CreateAcceleratorTableW', 'SetForegroundWindow', 'BringWindowToTop', 'GetMessageW', 'TranslateAcceleratorW', 'TranslateMessage', 'DispatchMessageW', 'DestroyAcceleratorTable', 'PostMessageW', 'GetForegroundWindow', 'GetWindowThreadProcessId', 'IsWindowVisible', 'EnumWindows', 'SetWindowPos', 'GetStockObject', 'InitCommonControlsEx', 'ShellExecuteExW', 'SHGetFolderLocation', 'SHGetPathFromIDListW', 'timeBeginPeriod', 'CoInitialize', 'CoTaskMemFree', 'PathAddBackslashW', 'PathRenameExtensionW', 'PathQuoteSpacesW', 'PathRemoveArgsW', 'PathRemoveBackslashW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegSaveKeyW', 'ImageList_Add', 'Pie', 'AlphaBlend', 'IsEqualGUID', 'VariantCopy', 'ExtractIconW', 'GetDC', 'VerQueryValueW', 'OpenPrinterW'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'GetProcessIoCounters', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'WriteConsoleOutputCharacterW', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'GlobalFree', 'LoadLibraryA', 'WriteConsoleA', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'SetCalendarInfoA', 'InterlockedPushEntrySList', 'UnregisterWait', 'VirtualAlloc', 'FillConsoleOutputCharacterA', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize', 'CloseEventLog'], ['FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'FillConsoleOutputCharacterA', 'CreateMailslotA', 'TerminateProcess', 'GetLastError', 'GetVersionExA', 'FreeResource', 'EnumResourceNamesA', 'FindNextFileA', 'CopyFileExW', 'BuildCommDCBA', 'SetDefaultCommConfigA', 'SetCommConfig', 'WritePrivateProfileStructW', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'SearchPathA', 'GetThreadTimes', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'GlobalAlloc', 'SetThreadIdealProcessor', 'GetProfileSectionW', 'DeleteFileW', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'ContinueDebugEvent', 'EndUpdateResourceW', 'SetLastError', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'FatalAppExitA', 'SetSystemTime', 'OpenFileMappingW', 'lstrcmpW', 'WriteFileGather', 'SetLocaleInfoW', 'DisableThreadLibraryCalls', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetACP', 'GlobalFindAtomW', 'lstrcatW', 'GetPrivateProfileStringW', 'SetMailslotInfo', 'CreateActCtxW', 'GetPrivateProfileIntW', '_lwrite', 'OutputDebugStringW', 'CreateNamedPipeW', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'DebugActiveProcess', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringA', 'GetDriveTypeA', 'GetFileAttributesExA', 'LocalFileTimeToFileTime', 'MoveFileW', 'GetVolumePathNameW', 'EnumDateFormatsA', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'GetStringTypeExW', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'GetCompressedFileSizeW', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'QueryInformationJobObject', 'GetConsoleAliasExesW', 'FlushConsoleInputBuffer', 'OpenMutexA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'DebugBreak', 'OutputDebugStringA', 'LoadLibraryW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'InitiateSystemShutdownW'], ['WSACleanup', 'gethostname', 'gethostbyname', 'closesocket', 'sendto', 'recv', 'recvfrom', 'WSAStartup', 'ioctlsocket', 'setsockopt', 'select', '__WSAFDIsSet', 'getsockopt', 'WSAGetLastError', 'socket', 'bind', 'getsockname', 'SetThreadPriority', 'GetCurrentThread', 'CloseHandle', 'DeviceIoControl', 'SleepEx', 'ResumeThread', 'TerminateThread', 'WaitForMultipleObjects', 'GetVersion', 'ReleaseSemaphore', 'InterlockedDecrement', 'InterlockedIncrement', 'CreateFileA', 'GetVersionExA', 'SetErrorMode', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'CreateMutexA', 'GetSystemTimeAsFileTime', 'lstrcatA', 'GetComputerNameA', 'CreateSemaphoreA', 'GetCurrentProcess', 'MultiByteToWideChar', 'WaitForSingleObject', 'GetSystemTime', 'CreateMailslotA', 'WriteFile', 'ReadFile', 'GetMailslotInfo', 'UnmapViewOfFile', 'lstrcmpiA', 'MapViewOfFile', 'CreateFileMappingA', 'HeapAlloc', 'GetProcessHeap', 'lstrcpynA', 'GetFileSize', 'HeapFree', 'SetEvent', 'CreateEventA', 'FreeLibraryAndExitThread', 'GetLastError', 'GetWindowsDirectoryA', 'FindClose', 'FileTimeToDosDateTime', 'FileTimeToLocalFileTime', 'FindFirstFileA', 'FindNextFileA', 'GetSystemDirectoryA', 'CopyFileA', 'DeleteFileA', 'SetFileTime', 'LocalFree', 'LocalAlloc', 'SetFileAttributesA', 'GetFileTime', 'GetFileAttributesA', 'FindCloseChangeNotification', 'FindNextChangeNotification', 'RemoveDirectoryA', 'FindFirstChangeNotificationA', 'CreateDirectoryA', 'GetModuleHandleA', 'WideCharToMultiByte', 'GetLocalTime', 'GetDriveTypeA', 'GetVolumeInformationA', 'ResetEvent', 'WaitForSingleObjectEx', 'SetFilePointer', 'LocalReAlloc', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InterlockedExchange', 'lstrcpyW', 'lstrlenW', 'lstrcmpW', 'LoadLibraryW', 'GetDiskFreeSpaceA', 'GetLogicalDriveStringsA', 'OpenProcess', 'GetTempPathA', 'LocalFileTimeToFileTime', 'lstrcmpA', 'FindFirstFileW', 'CopyFileW', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'RemoveDirectoryW', 'CreateProcessA', 'CreateProcessW', 'GetStartupInfoA', 'GetStartupInfoW', 'MoveFileA', 'MoveFileW', 'WritePrivateProfileStringA', 'MoveFileExA', 'MoveFileExW', 'GetFileAttributesW', 'SetFileAttributesW', 'FindNextFileW', 'CompareFileTime', 'GetCurrentDirectoryA', 'GetCurrentDirectoryW', 'SetCurrentDirectoryA', 'SetCurrentDirectoryW', 'Sleep', 'lstrlenA', 'lstrcpyA', 'GetTickCount', 'GlobalAlloc', 'DosDateTimeToFileTime', 'CharUpperW', 'CharUpperA', 'MessageBoxA', 'SetWindowsHookExA', 'UnhookWindowsHookEx', 'ExitWindowsEx', 'wsprintfA', 'EnumWindows', 'GetWindowTextA', 'GetProcessWindowStation', 'GetThreadDesktop', 'OpenWindowStationA', 'SetProcessWindowStation', 'OpenDesktopA', 'SetThreadDesktop', 'CloseWindowStation', 'CloseDesktop', 'CallNextHookEx', 'GetWindowThreadProcessId', 'RegQueryInfoKeyA', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RevertToSelf', 'LogonUserA', 'OpenProcessToken', 'ImpersonateLoggedOnUser', 'GetUserNameA', 'RegNotifyChangeKeyValue', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'OpenSCManagerA', 'CloseServiceHandle', 'RegEnumValueW', 'RegEnumValueA', 'RegEnumKeyExW', 'RegEnumKeyExA', 'RegQueryInfoKeyW', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'rand', '_endthreadex', '_beginthreadex', '_except_handler3', 'memset', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'memcpy', 'time', '_ftol', 'memcmp', 'memmove', 'qsort', '_stricmp', 'wcscmp', 'free', 'strstr', 'malloc', 'strcat', 'realloc', 'strlen', 'atol', 'strcpy', 'isdigit', 'sprintf', 'strcmp', '_strupr', 'exit', 'wcslen', 'wcsstr', '__dllonexit', '_onexit', '_initterm', '_adjust_fdiv', 'srand'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'mouse_event', 'keybd_event', 'WindowFromPoint', 'WaitMessage', 'VkKeyScanA', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'ToAscii', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWorkStation', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsClipboardFormatAvailable', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastInputInfo', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumDisplayDevicesA', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteProcessMemory', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQuery', 'VirtualProtectEx', 'VirtualProtect', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'VerLanguageNameA', 'UnmapViewOfFile', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetThreadContext', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'PeekNamedPipe', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'MoveFileA', 'MapViewOfFile', 'LockResource', 'LocalFileTimeToFileTime', 'LocalAlloc', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadReadPtr', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GlobalUnlock', 'GlobalMemoryStatus', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLangID', 'GetTickCount', 'GetThreadLocale', 'GetThreadContext', 'GetTempPathA', 'GetSystemPowerStatus', 'GetSystemDirectoryA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitThread', 'ExitProcess', 'EnumResourceNamesA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateRemoteThread', 'CreateProcessA', 'CreatePipe', 'CreateMutexA', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'Beep', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegFlushKey', 'RegEnumValueA', 'RegEnumKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueA', 'LookupPrivilegeNameA', 'LookupPrivilegeDisplayNameA', 'LookupAccountSidA', 'IsValidSid', 'GetUserNameA', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'GetCurrentHwProfileA', 'AdjustTokenPrivileges', '__WSAFDIsSet', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'gethostname', 'getservbyname', 'gethostbyname', 'gethostbyaddr', 'socket', 'shutdown', 'sendto', 'send', 'select', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'getsockname', 'connect', 'closesocket', 'bind', 'accept', 'Sleep', 'CoTaskMemFree', 'StringFromCLSID', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHFileOperationA', 'DragQueryFileA', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CoTaskMemFree', 'CLSIDFromProgID', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'URLDownloadToFileA', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA', 'InternetConnectA', 'InternetCloseHandle', 'HttpQueryInfoA', 'FtpPutFileA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'waveInUnprepareHeader', 'waveInStart', 'waveInReset', 'waveInPrepareHeader', 'waveInOpen', 'waveInClose', 'waveInAddBuffer', 'PlaySoundA', 'mciSendStringA', 'Netbios', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipDeleteGraphics', 'GdipCreateBitmapFromHBITMAP', 'GdipCreateBitmapFromScan0', 'GdipGetImagePixelFormat', 'GdipGetImageGraphicsContext', 'GdipSaveImageToStream', 'GdipDisposeImage', 'GdiplusShutdown', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'StartServiceA', 'QueryServiceStatus', 'OpenServiceA', 'OpenSCManagerA', 'EnumServicesStatusA', 'DeleteService', 'CreateServiceA', 'ControlService', 'CloseServiceHandle', 'acmStreamUnprepareHeader', 'acmStreamPrepareHeader', 'acmStreamConvert', 'acmStreamReset', 'acmStreamSize', 'acmStreamClose', 'acmStreamOpen', 'NtQuerySystemInformation', 'NetApiBufferFree', 'NetShareGetInfo', 'NetShareEnum', 'WSAIoctl', 'SHGetFolderPathA', 'NtUnmapViewOfSection', 'EnumDisplayMonitors', 'GetMonitorInfoA', 'SHEmptyRecycleBinA', 'capGetDriverDescriptionA'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'SysFreeString', 'CharNextW'], ['OpenProcess', 'VirtualAlloc', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpiW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'OpenThread', 'GlobalAlloc', 'CreateFileW', 'SetFilePointerEx', 'GetFileSizeEx', 'ReadConsoleW', 'ReadFile', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapQueryInformation', 'GetCurrentThreadId', 'GetCurrentProcessId', 'Process32NextW', 'CloseHandle', 'HeapReAlloc', 'GetStringTypeW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'SetConsoleCtrlHandler', 'WriteConsoleW', 'OutputDebugStringW', 'GetCurrentThread', 'GetFileType', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsDebuggerPresent', 'RaiseException', 'MultiByteToWideChar', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RtlPcToFileHeader', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'HeapSize', 'HeapValidate', 'GetSystemInfo', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'RtlUnwind', 'DefWindowProcW', 'CreateWindowExW', 'DestroyWindow', 'SetWindowLongW', 'SetWindowLongPtrW', 'GetMenuBarInfo', 'RegisterClassW', 'DuplicateTokenEx', 'OpenProcessToken', 'CreateProcessWithTokenW', 'NtSuspendThread', 'NtOpenThread', 'NtFreeVirtualMemory', 'NtQueryVirtualMemory', 'NtGetContextThread', 'NtAllocateVirtualMemory', 'RtlInitUnicodeString', 'RtlInitAnsiString', 'NtQuerySystemInformation', 'NtClose', 'NtResumeThread', 'NtSetContextThread', 'NtFlushInstructionCache', 'LdrGetDllHandle', 'LdrGetProcedureAddress', 'RtlCaptureContext', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'NtProtectVirtualMemory'], ['Rectangle', 'CoGetApartmentType', 'OleFlushClipboard', 'OleInitialize', 'CoGetObjectContext', 'CreateFileW', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'GetModuleHandleA', 'FreeConsole', 'GetModuleHandleW', 'RaiseException', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetLastError', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'GetModuleHandleExW', 'MultiByteToWideChar', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableSRW', 'InitOnceComplete', 'InitOnceBeginInitialize', 'GetStringTypeW', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'TryAcquireSRWLockExclusive', 'WideCharToMultiByte', 'CloseHandle', 'WaitForSingleObjectEx', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetSystemTimeAsFileTime', 'GetProcAddress', 'GetCPInfo', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'InitializeSListHead', 'SetEnvironmentVariableW', 'RtlUnwind', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'WriteConsoleW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'LookupAccountNameA', 'GetUserNameA', 'WritePrivateProfileStringA', 'WriteFile', 'WinExec', 'VirtualQuery', 'TerminateProcess', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesA', 'SetErrorMode', 'SetCurrentDirectoryA', 'RemoveDirectoryA', 'ReadFile', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'OpenProcess', 'MulDiv', 'MoveFileA', 'LocalFileTimeToFileTime', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemDirectoryA', 'GetStringTypeExA', 'GetStdHandle', 'GetShortPathNameA', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeviceIoControl', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CopyFileA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'SelectObject', 'MoveToEx', 'LineTo', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'DeleteObject', 'CreateSolidBrush', 'CreatePen', 'CreateFontA', 'CreateWindowExA', 'UnregisterClassA', 'TranslateMessage', 'SystemParametersInfoA', 'ShowWindow', 'SetWindowPos', 'SetWindowLongA', 'SetTimer', 'SetFocus', 'SetActiveWindow', 'SendMessageA', 'ReleaseDC', 'RegisterWindowMessageA', 'RegisterClassA', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'MessageBoxA', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'KillTimer', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowLongA', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetWindow', 'GetMessageA', 'GetFocus', 'GetDesktopWindow', 'GetDC', 'GetClientRect', 'GetActiveWindow', 'FindWindowA', 'FillRect', 'EnumWindows', 'EndPaint', 'EnableWindow', 'EnableMenuItem', 'DrawIcon', 'DispatchMessageA', 'DefWindowProcA', 'BeginPaint', 'CharNextA', 'CharToOemA', 'Sleep', 'ShellExecuteA', 'InternetSetOptionA', 'InternetGetLastResponseInfoA', 'InternetConnectA', 'HttpSendRequestA', 'HttpOpenRequestA', 'InitCommonControls'], ['HeapAlloc', 'GetProcessHeap', 'CreateFileA', 'GetFileSize', 'WriteFile', 'ReadFile', 'MultiByteToWideChar', 'CloseHandle', 'GetFullPathNameW', 'FindFirstFileExW', 'FindClose', 'FindNextFileW', 'LocalAlloc', 'GetVersionExA', 'LocalFree', 'Sleep', 'GlobalMemoryStatus', 'GetFileAttributesA', 'SetFilePointer', 'MapViewOfFile', 'UnmapViewOfFile', 'SystemTimeToFileTime', 'GetTickCount', 'FileTimeToSystemTime', 'GetLocalTime', 'CreateFileMappingA', 'GetFileInformationByHandle', 'WriteConsoleW', 'SetEndOfFile', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'FileTimeToLocalFileTime', 'GetLastError', 'FindFirstFileExA', 'FindNextFileA', 'EncodePointer', 'DecodePointer', 'HeapFree', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'GetProcAddress', 'HeapSize', 'ExitProcess', 'HeapCreate', 'GetStdHandle', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'GetTimeZoneInformation', 'LCMapStringW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetStringTypeW', 'HeapReAlloc', 'LoadLibraryW', 'CompareStringW', 'CreateFileW', 'GetDesktopWindow', 'NetWkstaGetInfo', 'NetApiBufferFree', 'DsRoleGetPrimaryDomainInformation'], ['SetupDefaultQueueCallbackW', 'VarI2FromDate', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleW'], ['GetDefaultCommConfigW', 'InterlockedIncrement', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'GetStringTypeExW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'RaiseException', 'EnumSystemLocalesA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'EnterCriticalSection', 'GetStringTypeA', 'DnsHostnameToComputerNameA', 'GetFileType', 'GetModuleFileNameA', 'LoadLibraryExA', 'UpdateResourceW', 'CreateMailslotA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'SetThreadContext', 'GetLocaleInfoA', 'GetComputerNameA', 'LoadLibraryA', 'GetVolumeNameForVolumeMountPointA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'CloseEventLog'], ['SHGetFolderPathA', 'wsprintfA', 'wsprintfW', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpSetOption', 'WinHttpQueryHeaders', 'WinHttpReadData', 'WinHttpConnect', 'WinHttpQueryOption', 'WinHttpOpen', 'WinHttpSetStatusCallback', 'WinHttpReceiveResponse', 'WinHttpQueryDataAvailable', 'WinHttpCloseHandle', 'GetProcessHeap', 'CloseHandle', 'GetComputerNameExA', 'VirtualProtect', 'VirtualAlloc', 'lstrcatA', 'lstrcpyA', 'GetTempPathA', 'CreateDirectoryA', 'LoadLibraryA', 'GetProcAddress', 'GetComputerNameExW', 'GetTickCount64', 'SwitchToThread', 'GetLastError', 'Sleep', 'ExitProcess', 'CreateThread', 'HeapAlloc', 'HeapFree', 'WriteFile', 'CreateFileA', 'HeapReAlloc', 'GetUserNameA', 'LookupAccountNameW', 'memset'], ['HeapFree', 'RegCloseKey', 'SHGetFolderPathW', 'WinHttpQueryHeaders', 'CryptUnprotectData', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'ShellExecuteA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'wsprintfA', 'LoadUserProfileA', 'UnloadUserProfile', 'InternetCrackUrlA', 'InternetCreateUrlA', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup'], ['FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'FillConsoleOutputCharacterA', 'CreateMailslotA', 'TerminateProcess', 'GetLastError', 'GetVersionExA', 'FreeResource', 'EnumResourceNamesA', 'FindNextFileA', 'CopyFileExW', 'BuildCommDCBA', 'SetDefaultCommConfigA', 'SetCommConfig', 'WritePrivateProfileStructW', 'LocalCompact', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputA', 'LoadResource', 'AddAtomW', 'SearchPathA', 'GetThreadTimes', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'GlobalAlloc', 'SetThreadIdealProcessor', 'GetProfileSectionW', 'DeleteFileW', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedDecrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'ContinueDebugEvent', 'EndUpdateResourceW', 'SetLastError', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'FatalAppExitA', 'SetSystemTime', 'OpenFileMappingA', 'lstrcmpW', 'WriteFileGather', 'SetLocaleInfoW', 'VirtualAllocEx', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetACP', 'GlobalFindAtomW', 'lstrcatW', 'GetPrivateProfileStringW', 'SetMailslotInfo', 'CreateActCtxW', 'GetPrivateProfileIntW', '_lwrite', 'OutputDebugStringW', 'CreateNamedPipeW', 'GetAtomNameA', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'DebugActiveProcess', 'WriteConsoleW', 'lstrcpyA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringA', 'GetDriveTypeA', 'GetFileAttributesExA', 'LocalFileTimeToFileTime', 'MoveFileW', 'GetVolumePathNameW', 'EnumDateFormatsA', 'ProcessIdToSessionId', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'WriteConsoleInputW', 'CreateMailslotW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'GetStringTypeExW', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthW', 'PeekNamedPipe', 'GetCompressedFileSizeW', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'QueryInformationJobObject', 'GetConsoleAliasExesW', 'FlushConsoleInputBuffer', 'OpenMutexA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'DebugBreak', 'OutputDebugStringA', 'LoadLibraryW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'InitiateSystemShutdownW'], ['GetModuleFileNameW', 'lstrcpyW', 'CreateFileW', 'VirtualAlloc', 'ReadFile', 'Sleep', 'GetSystemTime', 'GetModuleHandleA', 'VirtualProtect', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'WriteFile', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'RtlUnwind', 'HeapSize', 'MultiByteToWideChar', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW'], ['AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount64', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringA', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'Sleep', 'SuspendThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'LoadStringW', 'RegQueryValueExW', 'ShellExecuteW', 'socket', 'GetAdaptersInfo', 'WTSUnRegisterSessionNotification'], ['GetLastError', 'HeapAlloc', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleHandleA', 'ExitProcess', 'CreateEventA', 'CloseHandle', 'GetTickCount', 'VirtualFree', 'VirtualAlloc', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'WaitForSingleObject', 'SetEvent', 'memcpy', 'memset', 'RtlUnwind', 'NtQueryVirtualMemory'], ['CreateProcessA', 'CreateRemoteThread', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentVariableA', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetVersionExA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'WriteProcessMemory', '__iob_func', '_amsg_exit', '_initterm', '_lock', '_snprintf', '_unlock', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleA', 'MessageBoxW', 'GetUserNameA', 'SHGetDiskFreeSpaceA', 'DSA_Create', '_CorExeMain'], ['MoveFileExA', 'AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'lstrlenW', 'GetConsoleAliasesLengthW', 'GetCPInfoExW', 'GetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'SetCalendarInfoW', 'MoveFileA', 'GetModuleHandleA', 'VirtualProtect', 'SetFilePointer', 'GetStdHandle', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['FreeSid', 'CryptUnprotectData', 'PatBlt', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'acmStreamSize', '_gcvt', 'NetShareEnum', 'RtlSetProcessIsCritical', 'CoInitialize', 'VariantCopy', 'IsPwrShutdownAllowed', 'SHGetMalloc', 'SHGetFolderPathA', 'GetDC', 'InternetOpenA', 'waveInOpen', 'send'], ['SetEnvironmentVariableA', 'WriteConsoleW', 'GetTimeZoneInformation', 'LCMapStringW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetConsoleMode', 'GetConsoleCP', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'CloseHandle', 'UnhandledExceptionFilter', 'GetStringTypeW', 'QueryPerformanceCounter', 'HeapCreate', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'SetUnhandledExceptionFilter', 'GetFileType', 'SetStdHandle', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapReAlloc', 'RaiseException', 'ExitThread', 'ExitProcess', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'HeapFree', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'FindResourceExW', 'VirtualProtect', 'GetNumberFormatW', 'SearchPathW', 'GetProfileIntW', 'GetTickCount', 'InitializeCriticalSectionAndSpinCount', 'GetTempFileNameW', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'SetErrorMode', 'FileTimeToSystemTime', 'lstrlenA', 'GlobalGetAtomNameW', 'GetFullPathNameW', 'GetVolumeInformationW', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'GlobalFindAtomW', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'GetExitCodeThread', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'CompareStringW', 'GlobalFlags', 'InterlockedDecrement', 'ReleaseActCtx', 'CreateActCtxW', 'GetCurrentDirectoryW', 'GlobalFree', 'CopyFileW', 'GlobalSize', 'GlobalUnlock', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GlobalAddAtomW', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'ResumeThread', 'SetThreadPriority', 'lstrcmpA', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'ActivateActCtx', 'DeactivateActCtx', 'SetLastError', 'WideCharToMultiByte', 'GlobalLock', 'GlobalAlloc', 'InterlockedExchange', 'ReadFile', 'GetVersionExW', 'GetCurrentProcess', 'MultiByteToWideChar', 'CreateThread', 'LoadLibraryW', 'FreeLibrary', 'GetProcAddress', 'SetFilePointer', 'FlushFileBuffers', 'SetFileAttributesW', 'FindNextFileW', 'GetModuleHandleW', 'GetFileSize', 'GetLastError', 'GetPrivateProfileStringW', 'GetWindowsDirectoryW', 'lstrcatW', 'GetVersion', 'GetTempPathW', 'Sleep', 'GetModuleFileNameW', 'lstrcpyW', 'lstrcmpW', 'lstrcpynW', 'GetCurrentProcessId', 'DeleteFileW', 'RemoveDirectoryW', 'FindFirstFileW', 'FindClose', 'lstrlenW', 'CreateFileW', 'WriteFile', 'FreeResource', 'lstrcmpiW', 'OpenProcess', 'OutputDebugStringW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WaitForSingleObject', 'TerminateProcess', 'LocalReAlloc', 'IsClipboardFormatAvailable', 'SetMenuDefaultItem', 'PostThreadMessageW', 'CreateMenu', 'IsMenu', 'UpdateLayeredWindow', 'EnableScrollBar', 'UnionRect', 'MonitorFromPoint', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcW', 'DefFrameProcW', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadImageW', 'InsertMenuItemW', 'TranslateAcceleratorW', 'LockWindowUpdate', 'BringWindowToTop', 'SetCursorPos', 'SetRect', 'CreateAcceleratorTableW', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'MapVirtualKeyW', 'ToUnicodeEx', 'CopyAcceleratorTableW', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'DrawStateW', 'MessageBeep', 'GetSystemMenu', 'LoadMenuW', 'SetClassLongW', 'GetAsyncKeyState', 'NotifyWinEvent', 'CreatePopupMenu', 'DestroyAcceleratorTable', 'SetParent', 'RedrawWindow', 'SetWindowRgn', 'IsZoomed', 'OffsetRect', 'IsRectEmpty', 'IntersectRect', 'UnregisterClassW', 'DestroyMenu', 'GetMenuItemInfoW', 'InflateRect', 'CharUpperW', 'DestroyIcon', 'IsIconic', 'ShowWindow', 'MoveWindow', 'IsDialogMessageW', 'CheckDlgButton', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetClassLongW', 'SetPropW', 'GetPropW', 'CopyIcon', 'IsWindow', 'SetFocus', 'GetWindowTextLengthW', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'TranslateMessage', 'DispatchMessageW', 'PeekMessageW', 'PostMessageW', 'GetWindowThreadProcessId', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'CreateWindowExW', 'GetClassInfoExW', 'RegisterClassW', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetWindowPlacement', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'SetWindowPos', 'WaitMessage', 'ReleaseCapture', 'GetCapture', 'WindowFromPoint', 'SetCapture', 'GetSysColorBrush', 'GetClassInfoW', 'DefWindowProcW', 'MapWindowPoints', 'GetClientRect', 'LoadCursorW', 'SetLayeredWindowAttributes', 'GetSystemMetrics', 'EnumDisplayMonitors', 'SystemParametersInfoW', 'GetMonitorInfoW', 'SetRectEmpty', 'CopyRect', 'KillTimer', 'SetTimer', 'InvalidateRect', 'UpdateWindow', 'CharUpperBuffW', 'GetDoubleClickTime', 'GetIconInfo', 'IsCharLowerW', 'GetKeyNameTextW', 'MapVirtualKeyExW', 'SubtractRect', 'HideCaret', 'GetNextDlgGroupItem', 'MapDialogRect', 'DrawIcon', 'DestroyCursor', 'GetWindowRgn', 'GetDesktopWindow', 'RealChildWindowFromPoint', 'GetWindow', 'GetDlgCtrlID', 'GetWindowRect', 'GetClassNameW', 'PtInRect', 'SetWindowTextW', 'GetSysColor', 'EndPaint', 'FrameRect', 'GetUpdateRect', 'GetMenuDefaultItem', 'OpenClipboard', 'CopyImage', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'GetForegroundWindow', 'RegisterClipboardFormatW', 'GetWindowTextW', 'EnumWindows', 'wsprintfW', 'PostQuitMessage', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'RemovePropW', 'ModifyMenuW', 'SendMessageW', 'GetParent', 'GetFocus', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'GetMessageW', 'CallNextHookEx', 'SetWindowsHookExW', 'SetCursor', 'ShowOwnedPopups', 'MessageBoxW', 'EnableWindow', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongW', 'RemoveMenu', 'GetSubMenu', 'GetMenuItemCount', 'InsertMenuW', 'GetMenuItemID', 'AppendMenuW', 'GetMenuStringW', 'DeleteMenu', 'UnhookWindowsHookEx', 'FillRect', 'TabbedTextOutW', 'DrawTextW', 'DrawTextExW', 'GrayStringW', 'ScreenToClient', 'ClientToScreen', 'GetDC', 'ReleaseDC', 'GetWindowDC', 'BeginPaint', 'InvertRect', 'SetDIBColorTable', 'RealizePalette', 'StretchBlt', 'SetPixel', 'Rectangle', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'GetSystemPaletteEntries', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'EnumFontFamiliesExW', 'GetTextFaceW', 'SetPixelV', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'GetRgnBox', 'OffsetRgn', 'Polygon', 'Ellipse', 'Polyline', 'CreateEllipticRgn', 'GetTextColor', 'GetBkColor', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'CreateDIBSection', 'DPtoLP', 'PatBlt', 'CombineRgn', 'SetRectRgn', 'GetTextExtentPoint32W', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'GetTextMetricsW', 'CreateRectRgnIndirect', 'CreateCompatibleBitmap', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateHatchBrush', 'CreateSolidBrush', 'CreatePen', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreateCompatibleDC', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectW', 'CreateRectRgn', 'SelectClipRgn', 'DeleteObject', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'CreateBitmap', 'GetDeviceCaps', 'CopyMetaFileW', 'CreateDCW', 'SaveDC', 'RestoreDC', 'SetBkColor', 'SetTextColor', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetWindowOrgEx', 'TransparentBlt', 'AlphaBlend', 'GetFileTitleW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'RegSetValueExW', 'RegQueryValueExW', 'RegFlushKey', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryValueW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegDeleteValueW', 'LookupAccountNameW', 'GetLengthSid', 'InitializeAcl', 'AddAccessAllowedAce', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'OpenProcessToken', 'GetTokenInformation', 'SetSecurityDescriptorOwner', 'SetFileSecurityW', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'LookupAccountSidW', 'FreeSid', 'RegCloseKey', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHAppBarMessage', 'DragQueryFileW', 'DragFinish', 'SHGetFileInfoW', 'ShellExecuteW', 'SHGetSpecialFolderPathW', 'ShellExecuteExW', 'SHBrowseForFolderW', 'ImageList_GetIconSize', 'PathIsUNCW', 'PathStripToRootW', 'PathFindFileNameW', 'PathFindExtensionW', 'PathFileExistsW', 'SHDeleteValueW', 'SHDeleteKeyW', 'PathRemoveFileSpecW', 'DoDragDrop', 'CreateStreamOnHGlobal', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'RegisterDragDrop', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'OleGetClipboard', 'RevokeDragDrop', 'CoLockObjectExternal', 'CoTaskMemFree', 'CoCreateGuid', 'CoInitializeEx', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitializeSecurity', 'SysStringLen', 'SysAllocStringLen', 'VariantChangeType', 'SysAllocString', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'VarBstrFromDate', 'SysFreeString', 'VariantInit', 'VariantClear', 'GetErrorInfo', 'EnumProcessModules', 'EnumProcesses', 'GetModuleBaseNameW', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipDrawImageI', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ImmReleaseContext', 'ImmGetContext', 'ImmGetOpenStatus', 'PlaySoundW'], ['SetWindowLongW', 'GetCursorPos', 'DestroyWindow', 'RegisterClassW', 'ReleaseDC', 'SendMessageW', 'PostMessageW', 'MoveWindow', 'SetWindowTextW', 'UnregisterClassA', 'GetMenuStringW', 'SetCapture', 'CreateWindowExW', 'LoadStringW', 'InflateRect', 'DefWindowProcW', 'DestroyMenu', 'CreateWindowExA', 'SetWindowPos', 'GetCurrentProcess', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringA', 'IsBadWritePtr', 'HeapReAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'UnhandledExceptionFilter', 'FatalAppExitA', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'WriteFile', 'HeapFree', 'VirtualFree', 'HeapDestroy', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'VirtualAlloc', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'LocalSize', 'LocalAlloc', 'FindResourceA', 'GetModuleHandleW', 'MultiByteToWideChar', 'FreeLibrary', 'HeapCreate', 'LCMapStringW', 'HeapAlloc', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'TerminateProcess', 'RtlUnwind', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'GetLastError', 'GetCurrentThread', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte'], ['Sleep', 'GetSystemDirectoryA', 'GetEnvironmentVariableA', 'VirtualProtect', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetCurrentThreadId', 'RaiseException', 'RtlUnwind', 'GetModuleFileNameW', 'GetModuleHandleExW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapValidate', 'GetSystemInfo', 'GetLastError', 'ExitProcess', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetTimeZoneInformation', 'GetProcessHeap', 'GetFileType', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'CreateThread', 'LoadLibraryExW', 'OutputDebugStringA', 'WriteConsoleW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapAlloc', 'FreeLibrary', 'CompareStringW', 'LCMapStringW', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'FlushFileBuffers', 'SetEnvironmentVariableA', 'SetStdHandle', 'CloseHandle', 'CreateFileW', 'LoadLibraryExA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetAce', 'ImageList_Remove', 'GetSaveFileNameW', 'LineTo', 'IcmpSendEcho', 'WNetGetConnectionW', 'CoGetObject', 'OleLoadPicture', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'connect'], ['GetModuleHandleA', 'DefWindowProcA', 'RegQueryValueA', 'SHGetDiskFreeSpaceExW', 'CreateStatusWindowA', '_CorExeMain'], ['InterlockedIncrement', 'OpenJobObjectA', 'ZombifyActCtx', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'LoadLibraryW', 'GetCalendarInfoW', 'CreateEventA', 'WriteConsoleW', 'GetModuleFileNameW', 'GetOverlappedResult', 'FreeLibraryAndExitThread', 'SetLastError', 'GetProcAddress', 'lstrcpynA', 'CreateConsoleScreenBuffer', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'LocalAlloc', 'MoveFileA', 'GetModuleFileNameA', 'EnumDateFormatsW', 'GetShortPathNameW', 'GetLongPathNameA', 'HeapSize', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapAlloc', 'HeapCreate', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'RtlUnwind', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'IsProcessorFeaturePresent', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'GetCurrentThreadId', 'CloseHandle', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'RaiseException', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'HeapReAlloc', 'SetFilePointer', 'CreateFileW', 'OleInitialize', 'WinHttpCheckPlatform'], ['CreateEnvironmentBlock', 'DestroyEnvironmentBlock', '?sampleSize@QAudioFormat@@QEBAHXZ', '?setCodec@QAudioFormat@@QEAAXAEBVQString@@@Z', '?codec@QAudioFormat@@QEBA?AVQString@@XZ', '?setByteOrder@QAudioFormat@@QEAAXW4Endian@1@@Z', '?byteOrder@QAudioFormat@@QEBA?AW4Endian@1@XZ', '?setSampleType@QAudioFormat@@QEAAXW4SampleType@1@@Z', '?sampleType@QAudioFormat@@QEBA?AW4SampleType@1@XZ', '??0QAudioDeviceInfo@@QEAA@AEBV0@@Z', '??0QAudioDeviceInfo@@QEAA@XZ', '??1QAudioDeviceInfo@@QEAA@XZ', '??4QAudioDeviceInfo@@QEAAAEAV0@AEBV0@@Z', '?isNull@QAudioDeviceInfo@@QEBA_NXZ', '?deviceName@QAudioDeviceInfo@@QEBA?AVQString@@XZ', '?isFormatSupported@QAudioDeviceInfo@@QEBA_NAEBVQAudioFormat@@@Z', '?nearestFormat@QAudioDeviceInfo@@QEBA?AVQAudioFormat@@AEBV2@@Z', '?supportedCodecs@QAudioDeviceInfo@@QEBA?AVQStringList@@XZ', '?supportedSampleRates@QAudioDeviceInfo@@QEBA?AV?$QList@H@@XZ', '?supportedChannelCounts@QAudioDeviceInfo@@QEBA?AV?$QList@H@@XZ', '?supportedSampleSizes@QAudioDeviceInfo@@QEBA?AV?$QList@H@@XZ', '?supportedByteOrders@QAudioDeviceInfo@@QEBA?AV?$QList@W4Endian@QAudioFormat@@@@XZ', '?supportedSampleTypes@QAudioDeviceInfo@@QEBA?AV?$QList@W4SampleType@QAudioFormat@@@@XZ', '??0QAudioFormat@@QEAA@XZ', '??1QAudioFormat@@QEAA@XZ', '?setSampleRate@QAudioFormat@@QEAAXH@Z', '?sampleRate@QAudioFormat@@QEBAHXZ', '?setSampleSize@QAudioFormat@@QEAAXH@Z', '?channelCount@QAudioFormat@@QEBAHXZ', '?availableDevices@QAudioDeviceInfo@@SA?AV?$QList@VQAudioDeviceInfo@@@@W4Mode@QAudio@@@Z', '?setChannelCount@QAudioFormat@@QEAAXH@Z', '?rowsAboutToBeRemoved@QAbstractItemView@@MEAAXAEBVQModelIndex@@HH@Z', '?rowsInserted@QAbstractItemView@@MEAAXAEBVQModelIndex@@HH@Z', '?dataChanged@QAbstractItemView@@MEAAXAEBVQModelIndex@@0AEBV?$QVector@H@@@Z', '?edit@QAbstractItemView@@MEAA_NAEBVQModelIndex@@W4EditTrigger@1@PEAVQEvent@@@Z', '?selectAll@QAbstractItemView@@UEAAXXZ', '?reset@QAbstractItemView@@UEAAXXZ', '?inputMethodQuery@QAbstractItemView@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?keyboardSearch@QAbstractItemView@@UEAAXAEBVQString@@@Z', '?setTextElideMode@QAbstractItemView@@QEAAXW4TextElideMode@Qt@@@Z', '?setDragDropOverwriteMode@QAbstractItemView@@QEAAX_N@Z', '?setEditTriggers@QAbstractItemView@@QEAAXV?$QFlags@W4EditTrigger@QAbstractItemView@@@@@Z', '?setSelectionBehavior@QAbstractItemView@@QEAAXW4SelectionBehavior@1@@Z', '?setSelectionMode@QAbstractItemView@@QEAAXW4SelectionMode@1@@Z', '?keyPressEvent@QAbstractScrollArea@@MEAAXPEAVQKeyEvent@@@Z', '?dropEvent@QAbstractScrollArea@@MEAAXPEAVQDropEvent@@@Z', '?dragLeaveEvent@QAbstractScrollArea@@MEAAXPEAVQDragLeaveEvent@@@Z', '?dragMoveEvent@QAbstractScrollArea@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragEnterEvent@QAbstractScrollArea@@MEAAXPEAVQDragEnterEvent@@@Z', '?contextMenuEvent@QAbstractScrollArea@@MEAAXPEAVQContextMenuEvent@@@Z', '?wheelEvent@QAbstractScrollArea@@MEAAXPEAVQWheelEvent@@@Z', '?mouseMoveEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QAbstractScrollArea@@MEAAXPEAVQMouseEvent@@@Z', '?paintEvent@QAbstractScrollArea@@MEAAXPEAVQPaintEvent@@@Z', '?viewportEvent@QAbstractScrollArea@@MEAA_NPEAVQEvent@@@Z', '?setupViewport@QAbstractScrollArea@@UEAAXPEAVQWidget@@@Z', '?sizeHint@QAbstractScrollArea@@UEBA?AVQSize@@XZ', '?minimumSizeHint@QAbstractScrollArea@@UEBA?AVQSize@@XZ', '?spacerItem@QLayoutItem@@UEAAPEAVQSpacerItem@@XZ', '?widget@QLayoutItem@@UEAAPEAVQWidget@@XZ', '?hitButton@QPushButton@@MEBA_NAEBVQPoint@@@Z', '?focusOutEvent@QPushButton@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QPushButton@@MEAAXPEAVQFocusEvent@@@Z', '?keyPressEvent@QPushButton@@MEAAXPEAVQKeyEvent@@@Z', '?paintEvent@QPushButton@@MEAAXPEAVQPaintEvent@@@Z', '?event@QPushButton@@MEAA_NPEAVQEvent@@@Z', '?minimumSizeHint@QPushButton@@UEBA?AVQSize@@XZ', '?sizeHint@QPushButton@@UEBA?AVQSize@@XZ', '??1QPushButton@@UEAA@XZ', '??0QPushButton@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QPushButton@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QPushButton@@UEAAPEAXPEBD@Z', '?metaObject@QPushButton@@UEBAPEBUQMetaObject@@XZ', '?childEvent@QLayout@@MEAAXPEAVQChildEvent@@@Z', '?layout@QLayout@@UEAAPEAV1@XZ', '?controlTypes@QLayout@@UEBA?AV?$QFlags@W4ControlType@QSizePolicy@@@@XZ', '?isEmpty@QLayout@@UEBA_NXZ', '?indexOf@QLayout@@UEBAHPEAVQWidget@@@Z', '?geometry@QLayout@@UEBA?AVQRect@@XZ', '?changeEvent@QFrame@@MEAAXPEAVQEvent@@@Z', '?setFrameShadow@QFrame@@QEAAXW4Shadow@1@@Z', '?setFrameShape@QFrame@@QEAAXW4Shape@1@@Z', '?viewportSizeHint@QScrollArea@@MEBA?AVQSize@@XZ', '?scrollContentsBy@QScrollArea@@MEAAXHH@Z', '?resizeEvent@QScrollArea@@MEAAXPEAVQResizeEvent@@@Z', '?eventFilter@QScrollArea@@MEAA_NPEAVQObject@@PEAVQEvent@@@Z', '?event@QScrollArea@@MEAA_NPEAVQEvent@@@Z', '?focusNextPrevChild@QScrollArea@@UEAA_N_N@Z', '?sizeHint@QScrollArea@@UEBA?AVQSize@@XZ', '?setWidgetResizable@QScrollArea@@QEAAX_N@Z', '?setWidget@QScrollArea@@QEAAXPEAVQWidget@@@Z', '??1QScrollArea@@UEAA@XZ', '??0QScrollArea@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QScrollArea@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QScrollArea@@UEAAPEAXPEBD@Z', '?metaObject@QScrollArea@@UEBAPEBUQMetaObject@@XZ', '?event@QStatusBar@@MEAA_NPEAVQEvent@@@Z', '?resizeEvent@QStatusBar@@MEAAXPEAVQResizeEvent@@@Z', '?paintEvent@QStatusBar@@MEAAXPEAVQPaintEvent@@@Z', '?showEvent@QStatusBar@@MEAAXPEAVQShowEvent@@@Z', '??1QStatusBar@@UEAA@XZ', '??0QStatusBar@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QStatusBar@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QStatusBar@@UEAAPEAXPEBD@Z', '?metaObject@QStatusBar@@UEBAPEBUQMetaObject@@XZ', '?staticMetaObject@QAbstractButton@@2UQMetaObject@@B', '?timerEvent@QAbstractButton@@MEAAXPEAVQTimerEvent@@@Z', '?changeEvent@QAbstractButton@@MEAAXPEAVQEvent@@@Z', '?mouseMoveEvent@QAbstractButton@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QAbstractButton@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QAbstractButton@@MEAAXPEAVQMouseEvent@@@Z', '?keyReleaseEvent@QAbstractButton@@MEAAXPEAVQKeyEvent@@@Z', '?nextCheckState@QAbstractButton@@MEAAXXZ', '?checkStateSet@QAbstractButton@@MEAAXXZ', '?clicked@QAbstractButton@@QEAAX_N@Z', '?setText@QAbstractButton@@QEAAXAEBVQString@@@Z', '?event@QMainWindow@@MEAA_NPEAVQEvent@@@Z', '?contextMenuEvent@QMainWindow@@MEAAXPEAVQContextMenuEvent@@@Z', '?createPopupMenu@QMainWindow@@UEAAPEAVQMenu@@XZ', '?setCentralWidget@QMainWindow@@QEAAXPEAVQWidget@@@Z', '?setStatusBar@QMainWindow@@QEAAXPEAVQStatusBar@@@Z', '??1QMainWindow@@UEAA@XZ', '??0QMainWindow@@QEAA@PEAVQWidget@@V?$QFlags@W4WindowType@Qt@@@@@Z', '?qt_metacall@QMainWindow@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QMainWindow@@UEAAPEAXPEBD@Z', '?metaObject@QMainWindow@@UEBAPEBUQMetaObject@@XZ', '?currentChanged@QTableView@@MEAAXAEBVQModelIndex@@0@Z', '?selectionChanged@QTableView@@MEAAXAEBVQItemSelection@@0@Z', '?isIndexHidden@QTableView@@MEBA_NAEBVQModelIndex@@@Z', '?horizontalScrollbarAction@QTableView@@MEAAXH@Z', '?verticalScrollbarAction@QTableView@@MEAAXH@Z', '?sizeHintForColumn@QTableView@@MEBAHH@Z', '?sizeHintForRow@QTableView@@MEBAHH@Z', '?viewportSizeHint@QTableView@@MEBA?AVQSize@@XZ', '?updateGeometries@QTableView@@MEAAXXZ', '?selectedIndexes@QTableView@@MEBA?AV?$QList@VQModelIndex@@@@XZ', '?visualRegionForSelection@QTableView@@MEBA?AVQRegion@@AEBVQItemSelection@@@Z', '?setSelection@QTableView@@MEAAXAEBVQRect@@V?$QFlags@W4SelectionFlag@QItemSelectionModel@@@@@Z', '?moveCursor@QTableView@@MEAA?AVQModelIndex@@W4CursorAction@QAbstractItemView@@V?$QFlags@W4KeyboardModifier@Qt@@@@@Z', '?verticalOffset@QTableView@@MEBAHXZ', '?horizontalOffset@QTableView@@MEBAHXZ', '?timerEvent@QTableView@@MEAAXPEAVQTimerEvent@@@Z', '?paintEvent@QTableView@@MEAAXPEAVQPaintEvent@@@Z', '?viewOptions@QTableView@@MEBA?AVQStyleOptionViewItem@@XZ', '?scrollContentsBy@QTableView@@MEAAXHH@Z', '?indexAt@QTableView@@UEBA?AVQModelIndex@@AEBVQPoint@@@Z', '?scrollTo@QTableView@@UEAAXAEBVQModelIndex@@W4ScrollHint@QAbstractItemView@@@Z', '?visualRect@QTableView@@UEBA?AVQRect@@AEBVQModelIndex@@@Z', '?setCornerButtonEnabled@QTableView@@QEAAX_N@Z', '?setWordWrap@QTableView@@QEAAX_N@Z', '?verticalHeader@QTableView@@QEBAPEAVQHeaderView@@XZ', '?updateEditorGeometries@QAbstractItemView@@MEAAXXZ', '?doItemsLayout@QTableView@@UEAAXXZ', '?setSelectionModel@QTableView@@UEAAXPEAVQItemSelectionModel@@@Z', '?setRootIndex@QTableView@@UEAAXAEBVQModelIndex@@@Z', '?setModel@QTableWidget@@EEAAXPEAVQAbstractItemModel@@@Z', '?dropEvent@QTableWidget@@MEAAXPEAVQDropEvent@@@Z', '?supportedDropActions@QTableWidget@@MEBA?AV?$QFlags@W4DropAction@Qt@@@@XZ', '?dropMimeData@QTableWidget@@MEAA_NHHPEBVQMimeData@@W4DropAction@Qt@@@Z', '?mimeData@QTableWidget@@MEBAPEAVQMimeData@@V?$QList@PEAVQTableWidgetItem@@@@@Z', '?mimeTypes@QTableWidget@@MEBA?AVQStringList@@XZ', '?event@QTableWidget@@MEAA_NPEAVQEvent@@@Z', '?clearContents@QTableWidget@@QEAAXXZ', '?setSortingEnabled@QTableWidget@@QEAAX_N@Z', '?verticalScrollbarValueChanged@QAbstractItemView@@MEAAXH@Z', '?horizontalHeaderItem@QTableWidget@@QEBAPEAVQTableWidgetItem@@H@Z', '?setItem@QTableWidget@@QEAAXHHPEAVQTableWidgetItem@@@Z', '?columnCount@QTableWidget@@QEBAHXZ', '?setColumnCount@QTableWidget@@QEAAXH@Z', '?setRowCount@QTableWidget@@QEAAXH@Z', '??1QTableWidget@@UEAA@XZ', '??0QTableWidget@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QTableWidget@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QTableWidget@@UEAAPEAXPEBD@Z', '?metaObject@QTableWidget@@UEBAPEBUQMetaObject@@XZ', '?focusNextPrevChild@QWidget@@MEAA_N_N@Z', '?inputMethodQuery@QWidget@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?inputMethodEvent@QWidget@@MEAAXPEAVQInputMethodEvent@@@Z', '?sharedPainter@QWidget@@MEBAPEAVQPainter@@XZ', '?horizontalScrollbarValueChanged@QAbstractItemView@@MEAAXH@Z', '?initPainter@QWidget@@MEBAXPEAVQPainter@@@Z', '?metric@QWidget@@MEBAHW4PaintDeviceMetric@QPaintDevice@@@Z', '?changeEvent@QWidget@@MEAAXPEAVQEvent@@@Z', '?nativeEvent@QWidget@@MEAA_NAEBVQByteArray@@PEAXPEAJ@Z', '?hideEvent@QWidget@@MEAAXPEAVQHideEvent@@@Z', '?showEvent@QWidget@@MEAAXPEAVQShowEvent@@@Z', '?dropEvent@QWidget@@MEAAXPEAVQDropEvent@@@Z', '?dragLeaveEvent@QWidget@@MEAAXPEAVQDragLeaveEvent@@@Z', '?dragMoveEvent@QWidget@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragEnterEvent@QWidget@@MEAAXPEAVQDragEnterEvent@@@Z', '?actionEvent@QWidget@@MEAAXPEAVQActionEvent@@@Z', '?tabletEvent@QWidget@@MEAAXPEAVQTabletEvent@@@Z', '?contextMenuEvent@QWidget@@MEAAXPEAVQContextMenuEvent@@@Z', '?closeEvent@QWidget@@MEAAXPEAVQCloseEvent@@@Z', '?resizeEvent@QWidget@@MEAAXPEAVQResizeEvent@@@Z', '?moveEvent@QWidget@@MEAAXPEAVQMoveEvent@@@Z', '?paintEvent@QWidget@@MEAAXPEAVQPaintEvent@@@Z', '?leaveEvent@QWidget@@MEAAXPEAVQEvent@@@Z', '?enterEvent@QWidget@@MEAAXPEAVQEvent@@@Z', '?focusOutEvent@QWidget@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QWidget@@MEAAXPEAVQFocusEvent@@@Z', '?keyReleaseEvent@QWidget@@MEAAXPEAVQKeyEvent@@@Z', '?keyPressEvent@QWidget@@MEAAXPEAVQKeyEvent@@@Z', '?wheelEvent@QWidget@@MEAAXPEAVQWheelEvent@@@Z', '?mouseMoveEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QWidget@@MEAAXPEAVQMouseEvent@@@Z', '?event@QWidget@@MEAA_NPEAVQEvent@@@Z', '?paintEngine@QWidget@@UEBAPEAVQPaintEngine@@XZ', '?hasHeightForWidth@QWidget@@UEBA_NXZ', '?heightForWidth@QWidget@@UEBAHH@Z', '?setSizePolicy@QWidget@@QEAAXVQSizePolicy@@@Z', '?sizePolicy@QWidget@@QEBA?AVQSizePolicy@@XZ', '?minimumSizeHint@QWidget@@UEBA?AVQSize@@XZ', '?sizeHint@QWidget@@UEBA?AVQSize@@XZ', '?setGeometry@QWidget@@QEAAXAEBVQRect@@@Z', '?setVisible@QWidget@@UEAAX_N@Z', '?setWindowTitle@QWidget@@QEAAXAEBVQString@@@Z', '?setEnabled@QWidget@@QEAAX_N@Z', '?devType@QWidget@@UEBAHXZ', '??1QWidget@@UEAA@XZ', '??0QWidget@@QEAA@PEAV0@V?$QFlags@W4WindowType@Qt@@@@@Z', '?qt_metacall@QWidget@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QWidget@@UEAAPEAXPEBD@Z', '?metaObject@QWidget@@UEBAPEBUQMetaObject@@XZ', '?staticMetaObject@QComboBox@@2UQMetaObject@@B', '?setHighlightSections@QHeaderView@@QEAAX_N@Z', '?write@QTableWidgetItem@@UEBAXAEAVQDataStream@@@Z', '?read@QTableWidgetItem@@UEAAXAEAVQDataStream@@@Z', '??MQTableWidgetItem@@UEBA_NAEBV0@@Z', '?setData@QTableWidgetItem@@UEAAXHAEBVQVariant@@@Z', '?data@QTableWidgetItem@@UEBA?AVQVariant@@H@Z', '?clone@QTableWidgetItem@@UEBAPEAV1@XZ', '??1QTableWidgetItem@@UEAA@XZ', '??0QTableWidgetItem@@QEAA@H@Z', '??0QTableWidgetItem@@QEAA@AEBVQString@@H@Z', '?inputMethodEvent@QComboBox@@MEAAXPEAVQInputMethodEvent@@@Z', '?contextMenuEvent@QComboBox@@MEAAXPEAVQContextMenuEvent@@@Z', '?wheelEvent@QComboBox@@MEAAXPEAVQWheelEvent@@@Z', '?keyReleaseEvent@QComboBox@@MEAAXPEAVQKeyEvent@@@Z', '?keyPressEvent@QComboBox@@MEAAXPEAVQKeyEvent@@@Z', '?mouseReleaseEvent@QComboBox@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QComboBox@@MEAAXPEAVQMouseEvent@@@Z', '?hideEvent@QComboBox@@MEAAXPEAVQHideEvent@@@Z', '?showEvent@QComboBox@@MEAAXPEAVQShowEvent@@@Z', '?paintEvent@QComboBox@@MEAAXPEAVQPaintEvent@@@Z', '?resizeEvent@QComboBox@@MEAAXPEAVQResizeEvent@@@Z', '?changeEvent@QComboBox@@MEAAXPEAVQEvent@@@Z', '?focusOutEvent@QComboBox@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QComboBox@@MEAAXPEAVQFocusEvent@@@Z', '?activated@QComboBox@@QEAAXH@Z', '?setCurrentIndex@QComboBox@@QEAAXH@Z', '?clear@QComboBox@@QEAAXXZ', '?inputMethodQuery@QComboBox@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?event@QComboBox@@UEAA_NPEAVQEvent@@@Z', '?hidePopup@QComboBox@@UEAAXXZ', '?showPopup@QComboBox@@UEAAXXZ', '?minimumSizeHint@QComboBox@@UEBA?AVQSize@@XZ', '?sizeHint@QComboBox@@UEBA?AVQSize@@XZ', '?setItemText@QComboBox@@QEAAXHAEBVQString@@@Z', '?itemData@QComboBox@@QEBA?AVQVariant@@HH@Z', '?itemText@QComboBox@@QEBA?AVQString@@H@Z', '?count@QComboBox@@QEBAHXZ', '??1QComboBox@@UEAA@XZ', '??0QComboBox@@QEAA@PEAVQWidget@@@Z', '?qt_metacall@QComboBox@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QComboBox@@UEAAPEAXPEBD@Z', '?metaObject@QComboBox@@UEBAPEBUQMetaObject@@XZ', '?focusNextPrevChild@QLabel@@MEAA_N_N@Z', '?focusOutEvent@QLabel@@MEAAXPEAVQFocusEvent@@@Z', '?focusInEvent@QLabel@@MEAAXPEAVQFocusEvent@@@Z', '?contextMenuEvent@QLabel@@MEAAXPEAVQContextMenuEvent@@@Z', '?mouseReleaseEvent@QLabel@@MEAAXPEAVQMouseEvent@@@Z', '?mouseMoveEvent@QLabel@@MEAAXPEAVQMouseEvent@@@Z', '?mousePressEvent@QLabel@@MEAAXPEAVQMouseEvent@@@Z', '?changeEvent@QLabel@@MEAAXPEAVQEvent@@@Z', '?paintEvent@QLabel@@MEAAXPEAVQPaintEvent@@@Z', '?keyPressEvent@QLabel@@MEAAXPEAVQKeyEvent@@@Z', '?event@QLabel@@MEAA_NPEAVQEvent@@@Z', '?clear@QLabel@@QEAAXXZ', '?setText@QLabel@@QEAAXAEBVQString@@@Z', '?heightForWidth@QLabel@@UEBAHH@Z', '?minimumSizeHint@QLabel@@UEBA?AVQSize@@XZ', '?sizeHint@QLabel@@UEBA?AVQSize@@XZ', '?setWordWrap@QLabel@@QEAAX_N@Z', '?setAlignment@QLabel@@QEAAXV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?setTextFormat@QLabel@@QEAAXW4TextFormat@Qt@@@Z', '??1QLabel@@UEAA@XZ', '??0QLabel@@QEAA@PEAVQWidget@@V?$QFlags@W4WindowType@Qt@@@@@Z', '?qt_metacall@QLabel@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '?qt_metacast@QLabel@@UEAAPEAXPEBD@Z', '?metaObject@QLabel@@UEBAPEBUQMetaObject@@XZ', '?setText@QTableWidgetItem@@QEAAXAEBVQString@@@Z', '?setTextAlignment@QTableWidgetItem@@QEAAXH@Z', '?addItem@QComboBox@@QEAAXAEBVQString@@AEBVQVariant@@@Z', '?resize@QWidget@@QEAAXHH@Z', '?setVerticalStretch@QSizePolicy@@QEAAXH@Z', '?setHorizontalStretch@QSizePolicy@@QEAAXH@Z', '??0QSizePolicy@@QEAA@W4Policy@0@0W4ControlType@0@@Z', '?exec@QApplication@@SAHXZ', '??1QApplication@@UEAA@XZ', '??0QApplication@@QEAA@AEAHPEAPEADH@Z', '?show@QWidget@@QEAAXXZ', '?staticMetaObject@QMainWindow@@2UQMetaObject@@B', '?closeEditor@QAbstractItemView@@MEAAXPEAVQWidget@@W4EndEditHint@QAbstractItemDelegate@@@Z', '?commitData@QAbstractItemView@@MEAAXPEAVQWidget@@@Z', '?editorDestroyed@QAbstractItemView@@MEAAXPEAVQObject@@@Z', '?selectionCommand@QAbstractItemView@@MEBA?AV?$QFlags@W4SelectionFlag@QItemSelectionModel@@@@AEBVQModelIndex@@PEBVQEvent@@@Z', '?startDrag@QAbstractItemView@@MEAAXV?$QFlags@W4DropAction@Qt@@@@@Z', '?focusNextPrevChild@QAbstractItemView@@MEAA_N_N@Z', '?viewportEvent@QAbstractItemView@@MEAA_NPEAVQEvent@@@Z', '?mousePressEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?mouseMoveEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QAbstractItemView@@MEAAXPEAVQMouseEvent@@@Z', '?dragEnterEvent@QAbstractItemView@@MEAAXPEAVQDragEnterEvent@@@Z', '?dragMoveEvent@QAbstractItemView@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragLeaveEvent@QAbstractItemView@@MEAAXPEAVQDragLeaveEvent@@@Z', '?focusInEvent@QAbstractItemView@@MEAAXPEAVQFocusEvent@@@Z', '?focusOutEvent@QAbstractItemView@@MEAAXPEAVQFocusEvent@@@Z', '?keyPressEvent@QAbstractItemView@@MEAAXPEAVQKeyEvent@@@Z', '?resizeEvent@QAbstractItemView@@MEAAXPEAVQResizeEvent@@@Z', '?inputMethodEvent@QAbstractItemView@@MEAAXPEAVQInputMethodEvent@@@Z', '?eventFilter@QAbstractItemView@@MEAA_NPEAVQObject@@PEAVQEvent@@@Z', '?metaObject@QGridLayout@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QGridLayout@@UEAAPEAXPEBD@Z', '?qt_metacall@QGridLayout@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QGridLayout@@QEAA@XZ', '??0QGridLayout@@QEAA@PEAVQWidget@@@Z', '??1QGridLayout@@UEAA@XZ', '?sizeHint@QGridLayout@@UEBA?AVQSize@@XZ', '?minimumSize@QGridLayout@@UEBA?AVQSize@@XZ', '?maximumSize@QGridLayout@@UEBA?AVQSize@@XZ', '?hasHeightForWidth@QGridLayout@@UEBA_NXZ', '?heightForWidth@QGridLayout@@UEBAHH@Z', '?minimumHeightForWidth@QGridLayout@@UEBAHH@Z', '?expandingDirections@QGridLayout@@UEBA?AV?$QFlags@W4Orientation@Qt@@@@XZ', '?invalidate@QGridLayout@@UEAAXXZ', '?addWidget@QGridLayout@@QEAAXPEAVQWidget@@HHHHV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?addLayout@QGridLayout@@QEAAXPEAVQLayout@@HHHHV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?itemAt@QGridLayout@@UEBAPEAVQLayoutItem@@H@Z', '?takeAt@QGridLayout@@UEAAPEAVQLayoutItem@@H@Z', '?count@QGridLayout@@UEBAHXZ', '?setGeometry@QGridLayout@@UEAAXAEBVQRect@@@Z', '?addItem@QGridLayout@@MEAAXPEAVQLayoutItem@@@Z', '?metaObject@QLineEdit@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QLineEdit@@UEAAPEAXPEBD@Z', '?qt_metacall@QLineEdit@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QLineEdit@@QEAA@PEAVQWidget@@@Z', '??1QLineEdit@@UEAA@XZ', '?sizeHint@QLineEdit@@UEBA?AVQSize@@XZ', '?minimumSizeHint@QLineEdit@@UEBA?AVQSize@@XZ', '?setText@QLineEdit@@QEAAXAEBVQString@@@Z', '?mousePressEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?mouseMoveEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?mouseReleaseEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?mouseDoubleClickEvent@QLineEdit@@MEAAXPEAVQMouseEvent@@@Z', '?keyPressEvent@QLineEdit@@MEAAXPEAVQKeyEvent@@@Z', '?focusInEvent@QLineEdit@@MEAAXPEAVQFocusEvent@@@Z', '?focusOutEvent@QLineEdit@@MEAAXPEAVQFocusEvent@@@Z', '?paintEvent@QLineEdit@@MEAAXPEAVQPaintEvent@@@Z', '?dragEnterEvent@QLineEdit@@MEAAXPEAVQDragEnterEvent@@@Z', '?dragMoveEvent@QLineEdit@@MEAAXPEAVQDragMoveEvent@@@Z', '?dragLeaveEvent@QLineEdit@@MEAAXPEAVQDragLeaveEvent@@@Z', '?dropEvent@QLineEdit@@MEAAXPEAVQDropEvent@@@Z', '?changeEvent@QLineEdit@@MEAAXPEAVQEvent@@@Z', '?contextMenuEvent@QLineEdit@@MEAAXPEAVQContextMenuEvent@@@Z', '?inputMethodEvent@QLineEdit@@MEAAXPEAVQInputMethodEvent@@@Z', '?inputMethodQuery@QLineEdit@@UEBA?AVQVariant@@W4InputMethodQuery@Qt@@@Z', '?event@QLineEdit@@UEAA_NPEAVQEvent@@@Z', '?addWidget@QBoxLayout@@QEAAXPEAVQWidget@@HV?$QFlags@W4AlignmentFlag@Qt@@@@@Z', '?addItem@QBoxLayout@@UEAAXPEAVQLayoutItem@@@Z', '?sizeHint@QBoxLayout@@UEBA?AVQSize@@XZ', '?minimumSize@QBoxLayout@@UEBA?AVQSize@@XZ', '?maximumSize@QBoxLayout@@UEBA?AVQSize@@XZ', '?hasHeightForWidth@QBoxLayout@@UEBA_NXZ', '?heightForWidth@QBoxLayout@@UEBAHH@Z', '?minimumHeightForWidth@QBoxLayout@@UEBAHH@Z', '?expandingDirections@QBoxLayout@@UEBA?AV?$QFlags@W4Orientation@Qt@@@@XZ', '?invalidate@QBoxLayout@@UEAAXXZ', '?itemAt@QBoxLayout@@UEBAPEAVQLayoutItem@@H@Z', '?takeAt@QBoxLayout@@UEAAPEAVQLayoutItem@@H@Z', '?count@QBoxLayout@@UEBAHXZ', '?setGeometry@QBoxLayout@@UEAAXAEBVQRect@@@Z', '?metaObject@QVBoxLayout@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QVBoxLayout@@UEAAPEAXPEBD@Z', '?qt_metacall@QVBoxLayout@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QVBoxLayout@@QEAA@PEAVQWidget@@@Z', '??1QVBoxLayout@@UEAA@XZ', '?metaObject@QTabWidget@@UEBAPEBUQMetaObject@@XZ', '?qt_metacast@QTabWidget@@UEAAPEAXPEBD@Z', '?qt_metacall@QTabWidget@@UEAAHW4Call@QMetaObject@@HPEAPEAX@Z', '??0QTabWidget@@QEAA@PEAVQWidget@@@Z', '??1QTabWidget@@UEAA@XZ', '?addTab@QTabWidget@@QEAAHPEAVQWidget@@AEBVQString@@@Z', '?setTabText@QTabWidget@@QEAAXHAEBVQString@@@Z', '?indexOf@QTabWidget@@QEBAHPEAVQWidget@@@Z', '?sizeHint@QTabWidget@@UEBA?AVQSize@@XZ', '?minimumSizeHint@QTabWidget@@UEBA?AVQSize@@XZ', '?heightForWidth@QTabWidget@@UEBAHH@Z', '?hasHeightForWidth@QTabWidget@@UEBA_NXZ', '?setCurrentIndex@QTabWidget@@QEAAXH@Z', '?tabInserted@QTabWidget@@MEAAXH@Z', '?tabRemoved@QTabWidget@@MEAAXH@Z', '?showEvent@QTabWidget@@MEAAXPEAVQShowEvent@@@Z', '?resizeEvent@QTabWidget@@MEAAXPEAVQResizeEvent@@@Z', '?keyPressEvent@QTabWidget@@MEAAXPEAVQKeyEvent@@@Z', '?paintEvent@QTabWidget@@MEAAXPEAVQPaintEvent@@@Z', '?changeEvent@QTabWidget@@MEAAXPEAVQEvent@@@Z', '?event@QTabWidget@@MEAA_NPEAVQEvent@@@Z', '?updateEditorData@QAbstractItemView@@MEAAXXZ', '?setHorizontalHeaderItem@QTableWidget@@QEAAXHPEAVQTableWidgetItem@@@Z', '?horizontalHeader@QTableView@@QEBAPEAVQHeaderView@@XZ', '?redirected@QWidget@@MEBAPEAVQPaintDevice@@PEAVQPoint@@@Z', '?disconnectNotify@QObject@@MEAAXAEBVQMetaMethod@@@Z', '?connectNotify@QObject@@MEAAXAEBVQMetaMethod@@@Z', '?customEvent@QObject@@MEAAXPEAVQEvent@@@Z', '?childEvent@QObject@@MEAAXPEAVQChildEvent@@@Z', '?timerEvent@QObject@@MEAAXPEAVQTimerEvent@@@Z', '?setObjectName@QObject@@QEAAXAEBVQString@@@Z', '?objectName@QObject@@QEBA?AVQString@@XZ', '?eventFilter@QObject@@UEAA_NPEAV1@PEAVQEvent@@@Z', '?event@QObject@@UEAA_NPEAVQEvent@@@Z', '?number@QByteArray@@SA?AV1@_JH@Z', '?mid@QByteArray@@QEBA?AV1@HH@Z', '?clear@QByteArray@@QEAAXXZ', '?writableLocation@QStandardPaths@@SA?AVQString@@W4StandardLocation@1@@Z', '?mid@QContainerImplHelper@QtPrivate@@SA?AW4CutResult@12@HPEAH0@Z', '?open@QFile@@UEAA_NV?$QFlags@W4OpenModeFlag@QIODevice@@@@@Z', '?setFileName@QFile@@QEAAXAEBVQString@@@Z', '??1QFile@@UEAA@XZ', '??0QFile@@QEAA@XZ', '?shared_null@QListData@@2UData@1@B', '?toInt@QString@@QEBAHPEA_NH@Z', '?utf16@QString@@QEBAPEBGXZ', '?arg@QString@@QEBA?AV1@AEBV1@HVQChar@@@Z', '?registerNormalizedType@QMetaType@@SAHAEBVQByteArray@@P6AXPEAX@ZP6APEAX1PEBX@ZHV?$QFlags@W4TypeFlag@QMetaType@@@@PEBUQMetaObject@@@Z', '?dynamicMetaObject@QObjectData@@QEBAPEAUQMetaObject@@XZ', '?setApplicationName@QCoreApplication@@SAXAEBVQString@@@Z', '??0QChar@@QEAA@UQLatin1Char@@@Z', '??1QByteArray@@QEAA@XZ', '?size@QByteArray@@QEBAHXZ', '?data@QByteArray@@QEAAPEADXZ', '?constData@QByteArray@@QEBAPEBDXZ', '??0QByteArray@@QEAA@AEBV0@@Z', '??YQByteArray@@QEAAAEAV0@AEBV0@@Z', '??4QString@@QEAAAEAV0@$$QEAV0@@Z', '??YQString@@QEAAAEAV0@VQChar@@@Z', '??YQString@@QEAAAEAV0@AEBV0@@Z', '?toLocal8Bit@QString@@QEGBA?AVQByteArray@@XZ', '?toLocal8Bit@QString@@QEHAA?AVQByteArray@@XZ', '?fromUtf8@QString@@SA?AV1@PEBDH@Z', '??0QString@@QEAA@PEBD@Z', '??4QString@@QEAAAEAV0@PEBD@Z', '??0QString@@QEAA@AEBV0@@Z', '?arg@QString@@QEBA?AV1@HHHVQChar@@@Z', '??0QString@@QEAA@XZ', '??1QString@@QEAA@XZ', '??8QString@@QEBA_NPEBD@Z', '?dispose@QListData@@QEAAXXZ', '?connectImpl@QObject@@CA?AVConnection@QMetaObject@@PEBV1@PEAPEAX01PEAVQSlotObjectBase@QtPrivate@@W4ConnectionType@Qt@@PEBHPEBU3@@Z', '?write@QIODevice@@QEAA_JAEBVQByteArray@@@Z', '??0QVariant@@QEAA@XZ', '?instance@QCoreApplication@@SAPEAV1@XZ', '?detach@QListData@@QEAAPEAUData@1@H@Z', '?realloc@QListData@@QEAAXH@Z', '?dispose@QListData@@SAXPEAUData@1@@Z', '?arguments@QCoreApplication@@SA?AVQStringList@@XZ', '?applicationDirPath@QCoreApplication@@SA?AVQString@@XZ', '?translate@QCoreApplication@@SA?AVQString@@PEBD00H@Z', '??0QVariant@@QEAA@HPEBXI@Z', '??1QVariant@@QEAA@XZ', '?userType@QVariant@@QEBAHXZ', '?convert@QVariant@@QEBA_NHPEAX@Z', '?constData@QVariant@@QEBAPEBXXZ', '??1QDateTime@@QEAA@XZ', '?toString@QDateTime@@QEBA?AVQString@@AEBV2@@Z', '?currentDateTime@QDateTime@@SA?AV1@XZ', '?hash@QCryptographicHash@@SA?AVQByteArray@@AEBV2@W4Algorithm@1@@Z', '?tr@QMetaObject@@QEBA?AVQString@@PEBD0H@Z', '?normalizedType@QMetaObject@@SA?AVQByteArray@@PEBD@Z', '?connectSlotsByName@QMetaObject@@SAXPEAVQObject@@@Z', '??1Connection@QMetaObject@@QEAA@XZ', '?toNativeSeparators@QDir@@SA?AVQString@@AEBV2@@Z', '?separator@QDir@@SA?AVQChar@@XZ', '?tempPath@QDir@@SA?AVQString@@XZ', '?readAll@QIODevice@@QEAA?AVQByteArray@@XZ', '?close@QFileDevice@@UEAAXXZ', 'WideCharToMultiByte', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'RtlCaptureContext', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetCommandLineW', 'LocalFree', 'GetSystemTimeAsFileTime', 'UnhandledExceptionFilter', 'CreateProcessW', 'GetProcAddress', 'CloseHandle', 'LoadLibraryA', 'Sleep', 'WaitForSingleObject', 'WriteFile', 'GetCurrentProcess', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'SetUnhandledExceptionFilter', 'OpenProcessToken', '__CxxFrameHandler4', '__current_exception_context', 'memset', '_CxxThrowException', '__std_exception_destroy', '__std_exception_copy', '__C_specific_handler', 'memcpy', '__std_terminate', '__current_exception', '_exit', '_set_app_type', '_c_exit', '_cexit', 'terminate', '_initterm_e', '_crt_atexit', '_seh_filter_exe', '_register_onexit_function', '_initterm', '_get_narrow_winmain_command_line', '_initialize_narrow_environment', 'exit', '_initialize_onexit_table', '_configure_narrow_argv', '_register_thread_local_exe_atexit_callback', 'srand', 'rand', '_time64', 'free', '_callnewh', '_set_new_mode', 'malloc', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', 'CommandLineToArgvW'], ['RegCloseKey', 'GetAdaptersInfo', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'NetShareEnum', 'NtQueryObject', 'EnumProcesses', 'RmGetList', 'ShowWindow', 'select'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'memset'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PolyPolyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtCreatePen', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'MulDiv'], ['LoadLibraryA', 'lstrcatA', 'GetComputerNameExA', 'WriteProfileSectionW', 'GetNumaProcessorNode', 'FindFirstVolumeW', 'SetConsoleCursorInfo', 'HeapUnlock', 'FindFirstChangeNotificationA', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'FileTimeToDosDateTime', 'EnumResourceTypesA', 'EnumResourceNamesW', 'ExitProcess', 'TerminateProcess', 'ActivateActCtx', 'GetVersionExW', 'VerifyVersionInfoA', 'SetConsoleOutputCP', 'ResetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExA', 'ReadConsoleOutputCharacterW', 'GetDefaultCommConfigW', 'VerLanguageNameA', '_hread', 'GetCommConfig', 'WritePrivateProfileStructA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindVolumeClose', 'LeaveCriticalSection', 'WriteConsoleInputW', 'CancelWaitableTimer', 'SetComputerNameExA', 'FindAtomW', 'ReleaseMutex', 'LocalUnlock', 'CallNamedPipeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LocalAlloc', 'TlsSetValue', 'GetCommandLineW', 'InterlockedIncrement', 'CopyFileA', 'AddRefActCtx', 'OutputDebugStringW', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetVersionExA', 'HeapValidate', '_hwrite', 'GetWindowsDirectoryA', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExW', 'GetSystemWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'GetLastError', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'GetTickCount', 'OpenFileMappingW', 'ContinueDebugEvent', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'SetMailslotInfo', 'AddConsoleAliasA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringA', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointW', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'SetProcessAffinityMask', 'EnumResourceNamesA', 'GetThreadContext', 'GetLongPathNameA', 'SetConsoleTextAttribute', 'LoadLibraryW', 'EndUpdateResourceW', 'MoveFileW', 'ReadConsoleW', 'WriteConsoleA', 'InterlockedFlushSList', 'WritePrivateProfileSectionA', 'GetPrivateProfileStructA', 'DeleteCriticalSection', 'GetPrivateProfileSectionNamesA', 'GetDriveTypeW', 'GetFileAttributesExW', 'LocalFileTimeToFileTime', 'GetVolumePathNameW', 'GetConsoleMode', 'HeapSetInformation', 'GetComputerNameA', 'ProcessIdToSessionId', 'ReadProcessMemory', 'MoveFileExW', 'DisableThreadLibraryCalls', 'GlobalFix', 'GlobalDeleteAtom', 'FormatMessageA', 'GetEnvironmentStrings', 'InterlockedExchangeAdd', 'WaitNamedPipeW', 'GetPrivateProfileStructW', 'GetExitCodeProcess', 'GetSystemTimeAsFileTime', 'GetLocalTime', 'EnumCalendarInfoExA', 'FreeEnvironmentStringsA', 'CreateIoCompletionPort', 'OpenSemaphoreA', 'GetMailslotInfo', 'GetCommProperties', 'lstrcpyA', 'HeapWalk', 'LockFile', 'EndUpdateResourceA', 'GetConsoleCP', 'GetConsoleAliasW', 'GetNumberOfConsoleInputEvents', 'GetQueuedCompletionStatus', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputA', 'CreateMailslotW', 'SetCommState', 'FileTimeToLocalFileTime', 'IsDebuggerPresent', 'GetSystemTimeAdjustment', '_lread', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetModuleHandleW', 'GetPrivateProfileStringA', 'WriteConsoleOutputCharacterA', 'GetFileInformationByHandle', 'GetProfileStringW', 'MoveFileA', 'CreateActCtxW', 'GetSystemDefaultUILanguage', 'LocalLock', 'SetCommMask', 'SetMessageWaitingIndicator', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetProcessShutdownParameters', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'DeleteAtom', 'AddAtomW', 'WriteConsoleOutputCharacterW', 'QueryDosDeviceA', 'GetConsoleAliasExesW', 'GetBinaryTypeA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'Sleep', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'WriteFile', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'SetStdHandle', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'OemToCharW'], ['RpcServerUnregisterIf', 'RpcServerListen', 'RpcServerRegisterIfEx', 'NdrServerCall2', 'RpcMgmtStopServerListening', 'RpcServerUseProtseqEpA', 'CryptDecodeObjectEx', 'CryptStringToBinaryA', 'CryptBinaryToStringA', 'CryptEncodeObjectEx', 'GetCurrentProcess', 'TerminateProcess', 'LocalFree', 'LocalAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlUnwind', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'PostMessageA', 'wsprintfW', 'wsprintfA', 'ShowWindow', 'UpdateWindow', 'CredReadA', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegEnumKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'CredFree', 'CredDeleteA', 'CredWriteA', 'LsaNtStatusToWinError', 'LsaQueryInformationPolicy', 'LsaOpenPolicy', 'LsaClose', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'IsValidSid', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptDecrypt', 'CryptEncrypt', 'CryptImportKey', 'CryptGenRandom', 'CryptGetHashParam', 'CryptDestroyKey', 'CryptAcquireContextA', 'CryptReleaseContext', 'SHGetFolderPathA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'SafeArrayAccessData', 'SafeArrayCreateVector', 'VariantClear', 'SafeArrayUnaccessData', 'SysFreeString', 'SysAllocString', 'VariantInit'], ['QueryPerformanceCounter', 'SetCursor', 'SHGetFolderPathA', '?uncaught_exception@std@@YA_NXZ', 'ImmSetCompositionWindow', 'memchr', '_except1', '_seh_filter_dll', 'fread', 'atoi', '_stricmp', 'rand', 'free', '_lock_file', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetProcAddress', 'FreeLibrary', 'ReadFile', 'WriteFile', 'DeviceIoControl', 'CreateFileA', 'Sleep', 'CreateDirectoryW', 'OpenEventA', 'GetProcessWorkingSetSize', 'Process32First', 'OutputDebugStringA', 'FindResourceA', 'LocalAlloc', 'Module32First', 'GetModuleHandleA', 'CreateToolhelp32Snapshot', 'GlobalAlloc', 'GlobalFree', 'GetPriorityClass', 'LocalFree', 'GlobalUnlock', 'SetEndOfFile', 'ReadConsoleW', 'HeapSize', 'SetFilePointerEx', 'CreateFileW', 'FlushFileBuffers', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'GetTimeZoneInformation', 'SetStdHandle', 'GetConsoleMode', 'ResetEvent', 'SetEnvironmentVariableA', 'WaitForSingleObjectEx', 'OutputDebugStringW', 'GetStringTypeW', 'HeapReAlloc', 'LCMapStringW', 'CompareStringW', 'HeapAlloc', 'HeapFree', 'GetACP', 'ExitProcess', 'WideCharToMultiByte', 'MultiByteToWideChar', 'WriteConsoleW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetFileType', 'GetStdHandle', 'LoadLibraryExW', 'IsWow64Process', 'QueryPerformanceCounter', 'FormatMessageA', 'GetCurrentProcessId', 'VerSetConditionMask', 'GetOverlappedResult', 'CancelIoEx', 'QueryPerformanceFrequency', 'GetVersionExA', 'ReleaseMutex', 'CreateMutexA', 'GetCurrentProcess', 'VerifyVersionInfoA', 'CreateEventA', 'InterlockedIncrement', 'CreateThread', 'CloseHandle', 'InterlockedExchange', 'SetEvent', 'GetLastError', 'WaitForSingleObject', 'WaitForMultipleObjects', 'InterlockedDecrement', 'SetLastError', 'TlsFree', 'TlsAlloc', 'InitializeConditionVariable', 'WakeAllConditionVariable', 'TlsSetValue', 'TryEnterCriticalSection', 'SleepConditionVariableCS', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'RaiseException', 'EncodePointer', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TlsGetValue', 'SleepEx', 'DeleteCriticalSection', 'GetCurrentThreadId', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetConsoleCP', 'DecodePointer', 'GetCursorPos', 'BeginPaint', 'ReleaseDC', 'RegisterClipboardFormatA', 'GetDCEx', 'EndPaint', 'ReleaseCapture', 'EnableMenuItem', 'SetScrollPos', 'GetSysColorBrush', 'PostQuitMessage', 'SetRect', 'GetDlgItem', 'GetClientRect', 'SystemParametersInfoA', 'InvalidateRect', 'GetMenuCheckMarkDimensions', 'GetKeyState', 'LoadImageA', 'GetWindowRect', 'CreateDialogParamA', 'DestroyWindow', 'GetDC', 'SetWindowPos', 'PostMessageA', 'GetCursor', 'GetSystemMetrics', 'wsprintfA', 'OpenClipboard', 'OffsetRect', 'RedrawWindow', 'LoadCursorA', 'DrawTextA', 'CloseClipboard', 'EmptyClipboard', 'DefMDIChildProcA', 'MapWindowPoints', 'FrameRect', 'DrawFocusRect', 'MessageBoxA', 'GetSysColor', 'MoveWindow', 'IsDlgButtonChecked', 'DefWindowProcA', 'LockWindowUpdate', 'SetFocus', 'SetDlgItemTextA', 'SendMessageA', 'SetCapture', 'SetClipboardData', 'SetCursor', 'CreateDIBSection', 'GdiAlphaBlend', 'PatBlt', 'EnumFontsA', 'GetStockObject', 'GetDeviceGammaRamp', 'GetDIBits', 'GetDeviceCaps', 'CreateRectRgn', 'SetTextColor', 'DeleteObject', 'GdiComment', 'CombineRgn', 'GetObjectA', 'SelectObject', 'AddAccessAllowedAce', 'MakeSelfRelativeSD', 'GetSecurityDescriptorLength', 'GetLengthSid', 'SetFileSecurityA', 'InitializeAcl', 'InitializeSecurityDescriptor', 'CheckTokenMembership', 'SetSecurityDescriptorDacl', 'GetAce', 'AllocateAndInitializeSid', 'SetEntriesInAclW', 'IsValidSecurityDescriptor', 'FreeSid', 'GetTokenInformation', 'ShellExecuteA', 'CreateILockBytesOnHGlobal', 'CreateStreamOnHGlobal', 'StgCreateDocfileOnILockBytes', 'OleCreateStaticFromData', 'CoUninitialize', 'OleDuplicateData', 'OleSetContainedObject', 'CoInitialize', 'ReleaseStgMedium', 'OleGetClipboard', 'glClearColor', 'glHint', 'glLoadIdentity', 'glColor3f', 'glDepthFunc', 'glClear', 'glGetIntegerv', 'glGetString', 'glFlush', 'wglGetCurrentDC', 'wglGetProcAddress', 'glClearDepth', 'glShadeModel', 'glScalef', 'glEnable', 'FlatSB_GetScrollInfo', 'ImageList_DragShowNolock', 'FlatSB_GetScrollRange', 'FlatSB_GetScrollProp', 'FlatSB_EnableScrollBar', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'SetupBackupErrorA', 'IsThemePartDefined', 'IsThemeBackgroundPartiallyTransparent', 'acmDriverClose', 'NetWkstaUserGetInfo', 'TcEnumerateInterfaces'], ['SetLastError', 'GetCurrentProcess', 'SwitchToFiber', 'Sleep', 'GetLastError', 'lstrcpyA', 'LoadLibraryW', 'HeapAlloc', 'GetProcAddress', 'ExitProcess', 'GetProcessHeap', 'ConvertThreadToFiber', 'GetDllDirectoryW', 'GetProcessHandleCount', 'CreateFiber', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'LCMapStringW', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'DecodePointer', 'MessageBoxW', 'GetForegroundWindow', 'CoInitialize', 'CoUninitialize'], ['_chmod', '_close', '_fstat', '_isatty', '_mkdir', '_open', '_read', '_stat', '_strdup', '_strrev', '_unlink', '_utime', '_write', '__getmainargs', '__lc_codepage', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_filbuf', '_flsbuf', '_iob', '_isctype', '_onexit', '_pctype', '_setjmp', '_setmode', '_stricmp', '_vsnprintf', '_winmajor', 'abort', 'atexit', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetc', 'fgets', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'localeconv', 'localtime', 'longjmp', 'malloc', 'mbstowcs', 'memcmp', 'memcpy', 'memmove', 'memset', 'perror', 'printf', 'realloc', 'remove', 'setlocale', 'signal', 'sprintf', 'sqrt', 'sscanf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strcspn', 'strftime', 'strlen', 'strncmp', 'strncpy', 'strrchr', 'strspn', 'strstr', 'strtol', 'strtoul', 'time', 'vfprintf', 'wcslen', 'wcstombs', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptReleaseContext', 'GetUserNameA', 'InitializeSecurityDescriptor', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteValueA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'RegQueryInfoKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorSacl', 'CryptUnprotectData', 'FindCloseUrlCache', 'FindFirstUrlCacheEntryA', 'FindNextUrlCacheEntryA', 'WSAStartup', 'closesocket', 'connect', 'htons', 'inet_addr', 'recv', 'send', 'socket', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'GetDeviceCaps', 'GetObjectA', 'SelectObject', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateMutexA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDriveTypeA', 'GetEnvironmentVariableA', 'GetFileAttributesA', 'GetFileSize', 'GetFileTime', 'GetLastError', 'GetLocalTime', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessTimes', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAdjustment', 'GetTempPathA', 'GetThreadTimes', 'GetTickCount', 'GetVersionExA', 'GetVolumeInformationA', 'GetWindowsDirectoryA', 'GlobalMemoryStatus', 'InitializeCriticalSection', 'InterlockedExchange', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'MapViewOfFile', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReadFile', 'SetConsoleMode', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetFileTime', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'UnmapViewOfFile', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'lstrcpyA', 'lstrlenA', 'lstrlenW', 'ShellExecuteA', 'ShellExecuteExA', 'FindWindowA', 'GetAsyncKeyState', 'GetCapture', 'GetClipboardOwner', 'GetCursorPos', 'GetDC', 'GetForegroundWindow', 'GetMessageA', 'GetQueueStatus', 'GetWindowTextA', 'GetWindowTextLengthA', 'ReleaseDC', 'SendMessageA', 'wsprintfA'], ['GetModuleFileNameW', 'lstrcmpiW', 'MultiByteToWideChar', 'GetLastError', 'FormatMessageA', 'LocalFree', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'CreateProcessW', 'SetEndOfFile', 'WriteConsoleW', 'CreateFileW', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'InitializeCriticalSectionEx', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'InterlockedFlushSList', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'HeapAlloc', 'GetStdHandle', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'WriteFile', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'ReadConsoleW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'HeapReAlloc', 'SetStdHandle', 'HeapSize', 'PathRemoveFileSpecW'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'lstrcmpW', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxW', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameW', 'MoveFileW', 'GetCommMask', 'CloseHandle', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'GetStringTypeExA', 'EnumSystemLocalesA', 'CallNamedPipeW', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetConsoleAliasExesLengthW', 'GetTickCount', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'GetCaretBlinkTime'], ['GetLastError', 'CreateFileA', 'WriteFile', 'CloseHandle', 'GetModuleFileNameA', 'SetFileAttributesA', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryA', 'Sleep', 'GetProcessHeap', 'SetEndOfFile', 'WriteConsoleW', 'LoadLibraryW', 'SetStdHandle', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'GetStringTypeW', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'HeapSize', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'GetCPInfo', 'RaiseException', 'LCMapStringW', 'IsProcessorFeaturePresent', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'ExitProcess', 'ReadFile', 'FreeEnvironmentStringsW', 'CreateFileW', 'LoadStringA', 'LoadAcceleratorsA', 'GetMessageA', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'EndDialog', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcA', 'DestroyWindow', 'DialogBoxParamA', 'UpdateWindow', 'ShowWindow', 'CreateWindowExA', 'RegisterClassExA', 'LoadCursorA', 'LoadIconA', 'InternetOpenUrlA', 'InternetCloseHandle', 'InternetReadFile', 'InternetOpenA', 'URLDownloadToFileA'], ['?_Getcat@?$codecvt@DDU_Mbstatet@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?unshift@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PAD1AAPAD@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QBE?AVlocale@2@XZ', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '?in@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?out@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '?good@ios_base@std@@QBE_NXZ', '?always_noconv@codecvt_base@std@@QBE_NXZ', '??Bid@locale@std@@QAEIXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?_Xlength_error@std@@YAXPBD@Z', '?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z', '?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A', '?uncaught_exception@std@@YA_NXZ', '?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ', '??0_Lockit@std@@QAE@H@Z', '??1_Lockit@std@@QAE@XZ', '_except_handler4_common', 'memset', '__current_exception_context', 'memmove', '_CxxThrowException', '__std_terminate', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', '__current_exception', 'memcpy', '_fseeki64', 'fread', 'fsetpos', 'ungetc', '__p__commode', 'fgetpos', 'fwrite', '_get_stream_buffer_pointers', '_set_fmode', 'setvbuf', 'fgetc', 'fflush', 'fputc', 'fclose', '_set_app_type', '_seh_filter_exe', '_get_initial_narrow_environment', '_initterm', '_initterm_e', '_cexit', '_exit', '__p___argc', '__p___argv', '_c_exit', '_register_thread_local_exe_atexit_callback', '_crt_atexit', '_invalid_parameter_noinfo_noreturn', 'terminate', '_register_onexit_function', '_controlfp_s', '_initialize_onexit_table', '_initialize_narrow_environment', '_configure_narrow_argv', 'exit', 'system', '_unlock_file', '_lock_file', 'malloc', '_callnewh', '_set_new_mode', 'free', '__setusermatherr', '_configthreadlocale', 'UnhandledExceptionFilter', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleHandleW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter'], ['HeapReAlloc', 'RtlUnwind', 'GetStringTypeW', 'LoadLibraryW', 'OutputDebugStringW', 'WriteConsoleW', 'OutputDebugStringA', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'DeleteCriticalSection', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetModuleFileNameA', 'ExitProcess', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'RaiseException', 'HeapSize', 'EnterCriticalSection', 'LCMapStringW', 'IsProcessorFeaturePresent', 'IsBadReadPtr', 'HeapValidate', 'SetLastError', 'GetModuleHandleW', 'GetProcAddress', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'IsValidCodePage', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetModuleFileNameW', 'EncodePointer', 'DecodePointer', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineA', 'MultiByteToWideChar', 'HeapQueryInformation', 'HeapFree', 'SetStdHandle', 'FlushFileBuffers', 'lstrcpyA', 'LocalFree', 'GetCurrentProcessId', 'CloseHandle', 'GetCurrentThreadId', 'CreateMutexA', 'LocalAlloc', 'OpenMutexA', 'CreateFileA', 'GetLastError', 'GlobalUnlock', 'ReadFile', 'HeapCreate', 'CreateEventA', 'WideCharToMultiByte', 'GlobalAlloc', 'InitializeCriticalSection', 'WriteFile', 'GetProcessHeap', 'SetEvent', 'WaitForSingleObject', 'GlobalLock', 'GetQueuedCompletionStatus', 'HeapAlloc', 'GetFileSize', 'LeaveCriticalSection', 'CreateFileW', 'GetWindowThreadProcessId', 'RegisterClassA', 'GetWindow', 'MoveWindow', 'SetCursor', 'GetMessageA', 'UpdateLayeredWindow', 'DestroyWindow', 'ActivateKeyboardLayout', 'TranslateMDISysAccel', 'SetDlgItemTextA', 'DestroyIcon', 'DialogBoxParamA', 'GetDlgItemTextA', 'LoadCursorA', 'DestroyMenu', 'EnableWindow', 'UpdateWindow', 'LoadImageA', 'EndPaint', 'GetWindowRect', 'InsertMenuItemA', 'DdeCreateStringHandleA', 'PostQuitMessage', 'SendDlgItemMessageA', 'DrawTextW', 'DrawTextA', 'GetSubMenu', 'LoadBitmapA', 'GetParent', 'LoadMenuA', 'LoadIconA', 'DefFrameProcA', 'wsprintfA', 'GetClientRect', 'GetWindowTextLengthA', 'SendMessageA', 'BeginPaint', 'GetDC', 'TranslateMessage', 'GetWindowTextA', 'TrackPopupMenuEx', 'SetRect', 'SetWindowLongA', 'MessageBoxA', 'UnionRect', 'InvalidateRect', 'DdeCreateDataHandle', 'GetWindowLongA', 'CreateWindowExA', 'ReleaseDC', 'TranslateAcceleratorA', 'GetDlgItem', 'EndDialog', 'DefWindowProcA', 'GetCursorPos', 'LoadAcceleratorsA', 'ShowWindow', 'CreatePopupMenu', 'IsDlgButtonChecked', 'IsWindow', 'CreateWindowExW', 'DispatchMessageA', 'CheckRadioButton', 'MessageBoxW', 'ReleaseCapture', 'GetSystemMetrics', 'DdeNameService', 'SetWindowTextA', 'GetDeviceCaps', 'CreateFontIndirectA', 'CreateBitmap', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Rectangle', 'GdiSetBatchLimit', 'CreateFontA', 'SaveDC', 'CreateFontW', 'CreateRectRgn', 'GetObjectA', 'GetStockObject', 'RestoreDC', 'CreateSolidBrush', 'EnumFontsA', 'TextOutA', 'CreateDIBSection', 'DeleteDC', 'SetTextColor', 'BitBlt', 'GetTextExtentPoint32A', 'Ellipse', 'FillRgn', 'GetOpenFileNameA', 'CoTaskMemFree', 'CreateStreamOnHGlobal', 'CoTaskMemAlloc', 'OleSavePictureFile', 'OleLoadPicture', 'CertGetNameStringA', 'ImageList_ReplaceIcon', 'GdiplusStartup', 'GdipCreateFromHDC', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromFile', 'GdipDisposeImage', 'GdipDeleteGraphics', 'EnumerateSecurityPackagesA'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['CoCreateInstance', 'CLSIDFromString', 'CoInitialize', 'CoUninitialize', 'SysAllocString', 'DeleteUrlCacheEntry', 'FindFirstUrlCacheEntryA', 'FindNextUrlCacheEntryA', 'ExitProcess', 'ExpandEnvironmentStringsA', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetExitCodeThread', 'GetFileSize', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'GetProcAddress', 'GetSystemDirectoryA', 'GetTempPathA', 'GetTickCount', 'GetVersion', 'GetVersionExA', 'GetWindowsDirectoryA', 'GlobalMemoryStatus', 'CopyFileA', 'InterlockedIncrement', 'IsBadReadPtr', 'IsBadWritePtr', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'OpenMutexA', 'CreateFileA', 'ReadFile', 'RtlUnwind', 'SetFilePointer', 'CreateMutexA', 'Sleep', 'TerminateProcess', 'VirtualQuery', 'CreateProcessA', 'WaitForSingleObject', 'WideCharToMultiByte', 'WinExec', 'WriteFile', 'lstrlenA', 'lstrlenW', 'CreateThread', 'DeleteFileA', 'GetWindowTextA', 'GetWindowRect', 'FindWindowA', 'GetWindow', 'GetClassNameA', 'SetFocus', 'GetForegroundWindow', 'LoadCursorA', 'LoadIconA', 'SetTimer', 'RegisterClassA', 'MessageBoxA', 'GetMessageA', 'GetWindowLongA', 'SetWindowLongA', 'CreateDesktopA', 'SetThreadDesktop', 'GetThreadDesktop', 'TranslateMessage', 'DispatchMessageA', 'SendMessageA', 'PostQuitMessage', 'ShowWindow', 'CreateWindowExA', 'DestroyWindow', 'MoveWindow', 'DefWindowProcA', 'CallWindowProcA', 'GetStockObject', 'SetBkColor', 'SetTextColor', 'CreateBrushIndirect', 'CreateFontA', 'GetUserNameA', 'RegCreateKeyExA', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'GetSecurityInfo', 'SetSecurityInfo', 'SetEntriesInAclA', '__GetMainArgs', '_sleep', '_stricmp', 'atoi', 'exit', 'memcpy', 'memset', 'printf', 'raise', 'rand', 'signal', 'sprintf', 'srand', 'sscanf', 'strcat', 'strchr', 'strncmp', 'vsprintf'], ['SetFileAttributesA', 'FindClose', 'FindNextFileA', 'RemoveDirectoryA', 'FindFirstFileA', 'Sleep', 'LocalAlloc', 'GetLocalTime', 'WaitForSingleObject', 'CreateThread', 'CloseHandle', 'GlobalFree', 'GlobalAlloc', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'OutputDebugStringA', 'LeaveCriticalSection', 'EnterCriticalSection', 'WaitForMultipleObjects', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetLocaleInfoA', 'GetVersionExA', 'GetModuleFileNameA', 'GetSystemDirectoryA', 'GetTickCount', 'ShowWindow', 'DialogBoxParamA', 'SetServiceStatus', 'SystemTimeToVariantTime', '_stricmp', '_adjust_fdiv', 'strncpy', 'strstr', 'sprintf', 'rand', 'srand', '__CxxFrameHandler', 'strncmp', '??2@YAPAXI@Z', '_endthreadex', 'fclose', 'fread', 'fopen', 'fwrite', '_strupr', 'free', 'malloc', '??0exception@@QAE@ABV0@@Z', '??1exception@@UAE@XZ', '??0exception@@QAE@ABQBD@Z', '_CxxThrowException', '_except_handler3', '_EH_prolog', 'memset', 'memcpy', '??1type_info@@UAE@XZ', '_initterm'], ['VirtualProtect', 'VirtualAlloc', 'GetModuleHandleA', 'Sleep', 'GetProcAddress', 'GetConsoleWindow', 'HeapReAlloc', 'HeapSize', 'FlushFileBuffers', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'EncodePointer', 'RaiseException', 'GetLastError', 'SetLastError', 'RtlUnwind', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateFileW', 'GetFileType', 'CloseHandle', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetStdHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'GetCommandLineA', 'GetCommandLineW', 'GetACP', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'SetStdHandle', 'SetEndOfFile', 'ReadFile', 'ReadConsoleW', 'SetFilePointerEx', 'WriteConsoleW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'GetStringTypeW', 'GetProcessHeap', 'DecodePointer', 'ShowWindow', 'MessageBoxA'], ['SysFreeString', 'RegQueryValueExW', 'CharNextW', 'GetVersion', 'GetProcAddress', 'SetClassLongW', 'UnrealizeObject', 'VerQueryValueW', 'GetVersionExW', 'GetVersion', 'RegUnLoadKeyW', 'Sleep', 'NetApiBufferFree', 'SafeArrayPtrOfIndex', 'GetErrorInfo', 'OleUninitialize', 'WSACleanup', 'Shell_NotifyIconW', 'InitializeFlatSB', 'EnumDisplayMonitors', 'memset', 'InternetGetConnectedState', 'HlinkNavigateString', 'SHGetFolderPathW', 'OpenPrinterW', 'GetDefaultPrinterW', 'MagSetImageScalingCallback', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetConsoleAliasA', 'GetLogicalDriveStringsW', 'InterlockedCompareExchange', 'SetComputerNameW', 'AddConsoleAliasW', 'SetTapeParameters', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'ReadConsoleW', 'TlsSetValue', 'GlobalAlloc', 'LoadLibraryW', 'GetCalendarInfoW', 'HeapDestroy', 'DnsHostnameToComputerNameW', 'FindNextVolumeW', 'LocalReAlloc', 'ReplaceFileW', 'GetModuleFileNameW', 'CreateActCtxA', 'lstrlenW', 'GlobalUnlock', 'GetStringTypeExA', 'ReadConsoleA', 'EnumSystemLocalesA', 'GetLastError', 'IsDBCSLeadByteEx', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'ReadFileEx', 'ResetEvent', 'InterlockedExchangeAdd', 'DnsHostnameToComputerNameA', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'OpenEventA', 'GetDefaultCommConfigA', 'GetModuleHandleA', 'QueryMemoryResourceNotification', 'GetProcessAffinityMask', 'RequestWakeupLatency', 'FatalAppExitA', 'SetProcessShutdownParameters', 'FindAtomW', 'GetWindowsDirectoryW', 'GetTempPathA', 'WriteConsoleOutputW', 'GetConsoleAliasesLengthW', 'SetThreadContext', 'GetLargestConsoleWindowSize', 'GetTempFileNameW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCharABCWidthsFloatW', 'GetCharWidthW', 'EnumFontsW', 'GetCharABCWidthsI'], ['LoadLibraryA', 'CreateMutexW', 'SetLocaleInfoW', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'LocalFileTimeToFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalFree', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'InterlockedExchange', 'FindFirstChangeNotificationW', 'SearchPathW', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleW', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'TryEnterCriticalSection', 'QueryDepthSList', 'ConvertFiberToThread', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsA', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'GetPrivateProfileIntW', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'GetModuleHandleA', 'GetLastError', 'WriteProfileStringA', 'OpenMutexA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharUpperW'], ['WaitNamedPipeA', 'SetFirmwareEnvironmentVariableA', 'GetUserDefaultLCID', 'InterlockedCompareExchange', 'AddConsoleAliasW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'ReadConsoleW', 'TlsSetValue', 'FindResourceExA', 'LoadLibraryW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'GetFileAttributesA', 'SetConsoleMode', 'GetConsoleAliasW', 'SetConsoleCursorPosition', 'GetMailslotInfo', 'WritePrivateProfileStringW', 'GetStringTypeExA', 'CreateJobObjectA', 'GetProfileIntA', 'GetCPInfoExW', 'GetLastError', 'InterlockedFlushSList', 'GetCommState', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'BackupWrite', 'WriteProfileSectionA', 'RemoveDirectoryA', 'SetStdHandle', 'LocalAlloc', 'MoveFileA', 'AddAtomW', 'BeginUpdateResourceA', 'FoldStringA', 'EnumResourceTypesW', 'GetModuleHandleA', 'VirtualProtect', 'OpenEventW', 'QueryPerformanceFrequency', 'GetShortPathNameW', 'GetVersionExA', 'GetWindowsDirectoryW', 'DeleteFileW', 'GetConsoleProcessList', 'DebugBreak', 'EnumCalendarInfoExA', 'VerSetConditionMask', 'InterlockedIncrement', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'GetCPInfo', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'RaiseException', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CharLowerBuffW', 'SelectPalette', 'GetCharWidthI'], ['LoadLibraryW', 'GetProcAddress', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'RtlCaptureContext', '__std_type_info_destroy_list', 'memcmp', '__C_specific_handler', 'memset', 'malloc', 'free', '_execute_onexit_table', '_cexit', '_configure_narrow_argv', '_seh_filter_dll', '_initterm_e', '_initterm', '_initialize_onexit_table', '_initialize_narrow_environment'], ['QueryPerformanceCounter', 'GetLastError', 'lstrcatW', 'lstrcmpiW', 'lstrcpyW', 'CreateThread', 'WaitForSingleObject', 'lstrlenW', 'lstrcmpiA', 'LoadLibraryA', 'GetProcAddress', 'HeapReAlloc', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'HeapAlloc', 'GetCurrentThreadId', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'HeapFree', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'Sleep', 'HeapSize', 'GetModuleHandleW', 'ExitProcess', 'RtlUnwindEx', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'GetTickCount', 'GetCurrentProcessId', 'LeaveCriticalSection', 'EnterCriticalSection', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'LoadLibraryW', 'wsprintfW', 'wsprintfA', 'StrTrimW'], ['CreateSemaphoreW', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetLastError', 'GetModuleFileNameW', 'GetStartupInfoW', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'ReleaseSemaphore', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__iob_func', '__set_app_type', '__setusermatherr', '__wgetmainargs', '__winitenv', '_amsg_exit', '_assert', '_cexit', '_commode', '_errno', '_fmode', '_initterm', '_onexit', '_wcmdln', '_wcsicmp', '_wgetenv', 'abort', 'calloc', 'exit', 'fprintf', 'fputwc', 'free', 'fwprintf', 'fwrite', 'localeconv', 'malloc', 'memcpy', 'memset', 'realloc', 'signal', 'strcat', 'strerror', 'strlen', 'strncmp', 'strstr', 'vfprintf', 'wcscat', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsstr'], ['CreateThread', 'Sleep', 'lstrlenA', 'lstrcpynA', 'WinExec', 'LoadLibraryA', 'CloseHandle', 'WaitForSingleObject', 'GlobalMemoryStatusEx', 'GetSystemInfo', 'lstrcpyA', 'GetSystemDefaultUILanguage', 'CreateProcessA', 'TerminateProcess', 'GetTickCount', 'GetProcAddress', 'ExitThread', 'GetStartupInfoA', 'GetModuleHandleA', 'wsprintfA', 'RegOpenKeyExA', 'send', 'select', '__WSAFDIsSet', 'WSAStartup', 'setsockopt', 'WSAIoctl', 'socket', 'htons', 'inet_ntoa', 'closesocket', 'recv', 'connect', 'inet_addr', 'sendto', 'WSACleanup', 'htonl', 'GetAdaptersInfo', 'GetIfTable', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'realloc', 'malloc', 'strlen', 'atoi', 'strncpy', 'strcspn', 'memset', 'strstr', 'strcpy', 'memcpy', 'sprintf', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'strcmp', 'free', '_exit', '_XcptFilter', 'exit'], ['Sleep', 'WinExec', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'GetCurrentThreadId', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'GetLastError', 'LoadLibraryW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapFree', 'SetHandleCount', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'IsProcessorFeaturePresent', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW'], ['CreateFileA', 'WriteFile', 'CloseHandle', 'GetModuleFileNameA', 'CreateMutexA', 'GetLastError', 'LoadLibraryA', 'GetProcAddress', 'Sleep', 'FlushFileBuffers', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetLocaleInfoA', 'GetFileAttributesA', 'GetModuleHandleW', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'RtlUnwindEx', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapSize', 'HeapValidate', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsSetValue', 'GetCurrentThreadId', 'FlsAlloc', 'FlsFree', 'SetLastError', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'RtlPcToFileHeader', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapSetInformation', 'HeapCreate', 'HeapAlloc', 'HeapReAlloc', 'HeapQueryInformation', 'HeapFree', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'LoadLibraryW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSection'], ['CreateFileA', 'FindFirstFileA', 'FindNextFileA', 'LockFile', 'UnlockFile', 'CloseHandle', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'CreateThread', 'GetCurrentThreadId', 'FreeLibrary', 'GetModuleFileNameA', 'GetModuleHandleExA', 'GetProcAddress', 'CreateFileMappingA', 'LoadLibraryA', 'CreateActCtxA', 'ReleaseActCtx', 'ActivateActCtx', 'DeactivateActCtx'], ['GetCurrentHwProfileA', 'CryptStringToBinaryA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_putenv', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strcpy', 'strerror', 'strlen', 'strncmp', 'strstr', 'strtoul', 'vfprintf', 'wcslen', 'SHGetFolderPathA', 'SHGetValueA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExW', '__current_exception_context', 'accept', '_lock_file', '_configthreadlocale', '_time64', '_register_onexit_function', '__setusermatherr', 'srand', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', 'SHGetDiskFreeSpaceA', '__stdio_common_vfprintf', 'free', 'PropertySheet'], ['GetModuleHandleA', 'MessageBoxW', 'RegOpenKeyA', 'CreateFontW', 'FindTextW', 'PathMakeUniqueName'], ['ImageList_LoadImageA', 'ImageList_Destroy', 'CreateThread', 'CreateEventA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'IsDBCSLeadByte', 'lstrcmpA', 'MulDiv', 'GlobalUnlock', 'GlobalLock', 'SetLastError', 'FreeLibrary', 'SizeofResource', 'LoadResource', 'LoadLibraryExA', 'GetModuleHandleA', 'Sleep', 'GetCommandLineA', 'GlobalFree', 'GlobalHandle', 'LockResource', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'LocalFree', 'LocalAlloc', 'FormatMessageA', 'GetExitCodeThread', 'CallNamedPipeA', 'WaitNamedPipeA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'IsValidCodePage', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'ReadFile', 'SetEndOfFile', 'GetLocaleInfoW', 'SetEvent', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetTimeZoneInformation', 'GetOEMCP', 'GetCPInfo', 'SetFilePointer', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CreateFileW', 'CreateFileA', 'SetHandleCount', 'SetStdHandle', 'HeapSize', 'GetCurrentThread', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetStdHandle', 'ExitProcess', 'FatalAppExitA', 'HeapCreate', 'HeapDestroy', 'GetStartupInfoA', 'GetDateFormatA', 'GetTimeFormatA', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'GetFileType', 'PeekNamedPipe', 'GetFileInformationByHandle', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetSystemTimeAsFileTime', 'FindResourceA', 'GlobalAlloc', 'FlushInstructionCache', 'lstrcmpiA', 'lstrlenA', 'InterlockedDecrement', 'InterlockedIncrement', 'WaitForSingleObject', 'CloseHandle', 'SetConsoleCtrlHandler', 'LoadLibraryW', 'HeapReAlloc', 'RtlUnwind', 'GetCurrentProcess', 'GetLastError', 'DeleteCriticalSection', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'RaiseException', 'lstrlenW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'VirtualQuery', 'GetSystemInfo', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'IsProcessorFeaturePresent', 'LoadLibraryA', 'GetProcAddress', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'InterlockedCompareExchange', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'UnregisterClassA', 'SendMessageA', 'PostThreadMessageA', 'CharNextA', 'DestroyWindow', 'SetWindowLongA', 'GetWindowLongA', 'ShowWindow', 'DefWindowProcA', 'GetSysColor', 'MoveWindow', 'SetWindowPos', 'GetClientRect', 'ClientToScreen', 'ScreenToClient', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'CheckDlgButton', 'PeekMessageA', 'GetActiveWindow', 'DialogBoxIndirectParamA', 'LoadMenuA', 'GetSubMenu', 'GetCursorPos', 'TrackPopupMenu', 'DestroyMenu', 'MessageBoxA', 'SetWindowContextHelpId', 'MapDialogRect', 'EndDialog', 'CreateDialogIndirectParamA', 'RegisterWindowMessageA', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetWindowTextA', 'GetMessageA', 'DispatchMessageA', 'CreateAcceleratorTableA', 'CreateWindowExA', 'RegisterClassExA', 'LoadCursorA', 'GetClassInfoExA', 'IsWindow', 'GetDesktopWindow', 'GetFocus', 'GetWindow', 'SetFocus', 'DestroyAcceleratorTable', 'BeginPaint', 'EndPaint', 'CallWindowProcA', 'FillRect', 'ReleaseCapture', 'GetClassNameA', 'GetDlgItem', 'GetParent', 'IsChild', 'SetCapture', 'RedrawWindow', 'InvalidateRgn', 'GetObjectA', 'CreateSolidBrush', 'GetDeviceCaps', 'BitBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'DeleteObject', 'DeleteDC', 'GetStockObject', 'GetOpenFileNameA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCloseKey', 'RegEnumKeyExA', 'RegQueryInfoKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegOpenKeyExW', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'CoSuspendClassObjects', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoTaskMemFree', 'CoCreateInstance', 'StringFromGUID2', 'OleLockRunning', 'CoGetClassObject', 'CLSIDFromProgID', 'CLSIDFromString', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoResumeClassObjects', 'CoInitializeEx', 'OleInitialize', 'OleRun', 'OleUninitialize', 'CreateErrorInfo', 'SetErrorInfo', 'VariantChangeType', 'SysStringLen', 'SysFreeString', 'SysAllocStringLen', 'SysAllocString', 'LoadTypeLib', 'UnRegisterTypeLib', 'RegisterTypeLib', 'VarUI4FromStr', 'LoadRegTypeLib', 'SysStringByteLen', 'VariantInit', 'VariantClear', 'OleCreateFontIndirect', 'VariantCopy', 'SysAllocStringByteLen', 'DosDateTimeToVariantTime', 'VarAdd', 'GetErrorInfo'], ['GetPrivateProfileStringW', 'WriteFile', 'GetProcessTimes', 'LoadLibraryW', 'SizeofResource', 'GetStringTypeExW', 'FileTimeToSystemTime', 'IsBadStringPtrA', 'LCMapStringA', 'GetLastError', 'BackupWrite', 'GlobalFree', 'GetAtomNameA', 'WriteConsoleA', 'GetProcessId', 'LocalAlloc', 'CreateHardLinkW', 'GetCurrentConsoleFont', 'SetConsoleTitleW', 'OpenFileMappingW', 'BuildCommDCBA', 'VirtualProtect', 'OpenFileMappingA', 'EnumSystemLocalesW', 'GetTickCount', 'GetNamedPipeHandleStateA', 'GetCurrentProcess', 'lstrlenA', 'CreateFileA', 'DosDateTimeToFileTime', 'GetCommandLineW', 'DebugActiveProcess', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'MultiByteToWideChar', 'InterlockedCompareExchange', 'InterlockedExchange', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'DebugBreak', 'GetStdHandle', 'OutputDebugStringA', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetStringTypeA', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoW', 'SetStdHandle', 'GetConsoleOutputCP', 'SetFilePointer', 'GetModuleHandleA', 'CloseHandle'], ['ZombifyActCtx', 'HeapFree', 'AddConsoleAliasW', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'GetPrivateProfileIntA', 'GetSystemDirectoryW', 'WideCharToMultiByte', 'LoadLibraryW', 'LocalShrink', 'FreeConsole', 'GetVersionExW', 'LeaveCriticalSection', 'WriteConsoleW', 'ReplaceFileW', 'lstrlenW', 'ReadConsoleA', 'SetLastError', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'SetConsoleCtrlHandler', 'GetModuleFileNameA', 'FindFirstChangeNotificationA', 'GetConsoleTitleW', 'VirtualProtect', 'SetCalendarInfoA', 'GetDefaultCommConfigW', 'CloseHandle', 'CreateFileA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetLastError', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'DeleteCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'SetFilePointer', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'WriteConsoleA', 'GetConsoleOutputCP', 'ChildWindowFromPoint', 'AlphaBlend'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'SendMessageW', 'RegisterClassW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'IsWindowVisible', 'GetWindowThreadProcessId', 'GetSystemMetrics', 'GetWindow', 'FindWindowW', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UnmapViewOfFile', 'TerminateProcess', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetThreadPriority', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetEvent', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseSemaphore', 'ReadFile', 'RaiseException', 'QueryDosDeviceW', 'IsDebuggerPresent', 'MapViewOfFile', 'LocalFree', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDrives', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateSemaphoreA', 'CreateProcessW', 'CreateFileMappingW', 'CreateFileW', 'CreateEventA', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'IsValidSid', 'Sleep', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'memset', 'memmove', 'memcpy', '_beginthreadex'], ['GetCommandLineA', 'CreateFileA', 'FindFirstFileA', 'FindNextFileA', 'GetFileAttributesA', 'GetFileInformationByHandle', 'WriteFile', 'CloseHandle', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetCurrentThreadId', 'GetModuleFileNameA', 'GetModuleHandleExA', 'GetProcAddress', 'SwitchToFiber', 'DeleteFiber', 'CreateFiber', 'LoadLibraryA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'AddAce', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['OpenMutexW', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'GetTickCount', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'MoveFileExW', 'FindFirstFileExW', 'WideCharToMultiByte', 'lstrcmpW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'VirtualUnlock', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SetLastError', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'GlobalAlloc', 'MulDiv', 'GetTempPathW', 'GlobalFree', 'ConnectNamedPipe', 'CreateNamedPipeW', 'CreateEventW', 'GetCurrentProcessId', 'GetFullPathNameW', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'ExitThread', 'GetModuleFileNameW', 'VirtualAlloc', 'TerminateProcess', 'OpenProcess', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'ExitProcess', 'lstrcpyW', 'lstrcatW', 'GetProcAddress', 'GetLastError', 'LoadLibraryW', 'GetSystemDirectoryW', 'GetModuleHandleW', 'GetCurrentProcess', 'LoadLibraryExW', 'VirtualQuery', 'MultiByteToWideChar', 'VirtualFree', 'lstrlenA', 'lstrlenW', 'CloseHandle', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'UnlockFile', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsDebuggerPresent', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStringTypeW', 'HeapFree', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'WriteConsoleW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'wsprintfA', 'wsprintfW', 'CreateWindowStationW', 'SetProcessWindowStation', 'DrawTextA', 'DrawTextW', 'FillRect', 'GetForegroundWindow', 'SetTextColor', 'DeleteDC', 'GetDeviceCaps', 'GetDIBits', 'SetBkColor', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'GetObjectW', 'GetPixel', 'GetStockObject', 'SetBitmapBits', 'CreateBitmap', 'GetBitmapBits', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptGetKeyParam', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'ShellExecuteW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'WNetEnumResourceW', 'WNetCloseEnum', 'WNetOpenEnumW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'InternetCloseHandle', 'InternetConnectW', 'NdrClientCall2'], ['GetFullPathNameW', 'GetEnvironmentVariableW', 'SetVolumeLabelA', 'SetupComm', 'lstrlenA', 'EnumDateFormatsExW', 'GetProcessIoCounters', 'WriteConsoleOutputCharacterA', 'HeapAlloc', 'GetQueuedCompletionStatus', 'FindFirstFileExW', 'GetTickCount', 'WideCharToMultiByte', 'SizeofResource', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'GetWriteWatch', 'SetConsoleCursorPosition', 'GetAtomNameW', 'GetModuleFileNameW', 'IsBadStringPtrA', 'GetLastError', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'SetConsoleCtrlHandler', 'SetProcessWorkingSetSize', 'GetDefaultCommConfigA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'VirtualProtect', 'CompareStringA', 'GetWindowsDirectoryW', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'OpenFileMappingA', 'AreFileApisANSI', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCaretPos'], ['LocalFlags', 'GlobalAlloc', 'LoadLibraryW', 'InterlockedPopEntrySList', 'LeaveCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'GetVolumePathNameA', 'GetConsoleAliasesW', 'FillConsoleOutputCharacterW', 'GetLongPathNameW', 'SetLastError', 'SetStdHandle', 'LoadLibraryA', 'SetCalendarInfoW', 'IsWow64Process', 'MoveFileA', 'WriteProfileSectionW', 'GetModuleFileNameA', 'GetConsoleTitleW', 'VirtualProtect', 'GetFileAttributesExW', 'GetCPInfoExA', 'GetFileInformationByHandle', 'CreateFileW', 'HeapSize', 'SetConsoleTextAttribute', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasesLengthW', 'FreeResource', 'FlushFileBuffers', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'RaiseException', 'RtlUnwind', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'HeapReAlloc', 'CloseHandle', 'ClientToScreen', 'GetTextExtentExPointA', 'IsTokenRestricted', 'ClearEventLogW', 'OleInitialize'], ['VirtualAlloc', 'GetModuleHandleA', 'GetSubMenu', 'GetMenu', 'IsWindowEnabled', 'GetLastActivePopup', 'GetForegroundWindow', 'RegisterClassA', 'CreateWindowExW', 'GetClassInfoA', 'GetClassInfoW', 'GetDlgCtrlID', 'GetTopWindow', 'AdjustWindowRectEx', 'CharPrevA', 'DestroyWindow', 'IsCharAlphaNumericA', 'CharNextA', 'GetDC', 'ReleaseDC', 'MapDialogRect', 'MessageBoxW', 'ShowWindow', 'LoadMenuW', 'GetCursorPos', 'GetKeyState', 'EnableMenuItem', 'SetMenuDefaultItem', 'CheckMenuItem', 'TranslateAcceleratorW', 'BringWindowToTop', 'UpdateWindow', 'RegisterWindowMessageW', 'UnregisterClassW', 'SetWindowPos', 'GetWindowPlacement', 'IsIconic', 'DialogBoxIndirectParamW', 'EndDialog', 'GetDlgItem', 'CheckDlgButton', 'IsDlgButtonChecked', 'CharNextW', 'SetFocus', 'GetActiveWindow', 'SetForegroundWindow', 'GetWindowTextW', 'GetWindowTextLengthW', 'MapWindowPoints', 'FindWindowW', 'GetShellWindow', 'GetWindowThreadProcessId', 'GetWindow', 'MonitorFromWindow', 'GetMonitorInfoW', 'DrawIconEx', 'SetCursor', 'FindWindowExW', 'GetWindowDC', 'DispatchMessageW', 'PeekMessageW', 'IntersectRect', 'MonitorFromRect', 'SetClipboardViewer', 'ChangeClipboardChain', 'OpenClipboard', 'CloseClipboard', 'SetClipboardData', 'GetClipboardData', 'EmptyClipboard', 'TranslateMessage', 'GetMenuStringW', 'InflateRect', 'ModifyMenuW', 'GetMenuItemID', 'GetMenuItemCount', 'InsertMenuW', 'AppendMenuW', 'RemoveMenu', 'GetMenuItemInfoW', 'GetMenuDefaultItem', 'DrawStateW', 'DestroyIcon', 'DestroyMenu', 'OpenInputDesktop', 'CloseDesktop', 'GetUserObjectInformationW', 'ExitWindowsEx', 'wsprintfW', 'CreatePopupMenu', 'DrawTextW', 'DefWindowProcW', 'DrawMenuBar', 'CharLowerW', 'SetWindowRgn', 'GetWindowRgn', 'MoveWindow', 'SetRectEmpty', 'LoadBitmapW', 'AttachThreadInput', 'GetClassNameW', 'EnumChildWindows', 'PostThreadMessageW', 'SetClassLongW', 'CharToOemW', 'CharUpperW', 'IsCharAlphaNumericW', 'DrawIcon', 'RegisterClassW', 'SetCapture', 'ReleaseCapture', 'BeginPaint', 'EndPaint', 'WindowFromPoint', 'GetIconInfo', 'wvsprintfW', 'GetQueueStatus', 'MsgWaitForMultipleObjects', 'GetProcessWindowStation', 'MessageBoxA', 'CopyRect', 'SystemParametersInfoW', 'SetWindowLongW', 'SetWindowTextW', 'KillTimer', 'SetTimer', 'GetDesktopWindow', 'IsWindowVisible', 'GetParent', 'GetWindowLongW', 'CreateMenu', 'IsRectEmpty', 'SetRect', 'FillRect', 'DrawFocusRect', 'GetSysColor', 'ScreenToClient', 'ClientToScreen', 'GetScrollPos', 'RedrawWindow', 'IsWindow', 'DrawEdge', 'LoadCursorW', 'InvalidateRect', 'PostMessageW', 'GetClientRect', 'GetSystemMetrics', 'LoadIconW', 'PtInRect', 'GetWindowRect', 'EnableWindow', 'GetMenuState', 'SendMessageW', 'LoadImageW', 'CloseWindow', 'LoadCursorFromFileA', 'GetWindowContextHelpId', 'GetSysColorBrush', 'GetMenuCheckMarkDimensions', 'CountClipboardFormats', 'LoadCursorFromFileW', 'PaintDesktop', 'IsGUIThread', 'CopyIcon', 'EndMenu', 'GetKeyboardLayout', 'GetFocus', 'SetBkMode', 'SetViewportOrgEx', 'CreateFontIndirectW', 'SetBkColor', 'ExtTextOutW', 'GetStockObject', 'GetObjectW', 'CreateSolidBrush', 'GetDeviceCaps', 'BitBlt', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'CreateCompatibleBitmap', 'SelectObject', 'CreateMetaFileA', 'BeginPath', 'GetDCBrushColor', 'GetTextAlign', 'GetLayout', 'SwapBuffers', 'GetMapMode', 'RealizePalette', 'GetPixelFormat', 'CreatePatternBrush', 'SetMetaRgn', 'RegOpenKeyExA', 'RegQueryValueExW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WritePrivateProfileStringA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'LresultFromObject', 'sndPlaySoundA'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegCloseKey', 'CharNextA'], ['GetModuleHandleA', 'CreateWindowExA', 'RegOpenKeyExW', 'InitMUILanguage', '_CorExeMain', 'SHGetIconOverlayIndexA'], ['GetLocalTime', 'GetProcAddress', 'GetThreadLocale', 'DeleteCriticalSection', 'RaiseException', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'LoadLibraryExW', 'RtlUnwind', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'GetLastError', 'LCMapStringW', 'GetCPInfo', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'HeapReAlloc', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'SetConsoleCtrlHandler', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'FlushFileBuffers', 'CloseHandle', 'SetUnhandledExceptionFilter', 'IsBadCodePtr', 'GetStringTypeA', 'GetStringTypeW', 'IsValidLocale', 'IsValidCodePage', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'VirtualProtect', 'GetSystemInfo', 'VirtualQuery', 'GetProcessHeap', 'FreeLibrary', 'GetOEMCP', 'ReadFile', 'SetStdHandle', 'GetTimeFormatA', 'GetDateFormatA', 'GetLocaleInfoW', 'GetTimeZoneInformation', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'WaitForSingleObject', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetEvent', 'OpenEventA', 'lstrlenA', 'lstrcpyA', 'lstrcpyW', 'OutputDebugStringW', 'lstrcpynW', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateFileMappingA', 'GetCurrentThread', 'GetVersion', 'OpenFileMappingA', 'GetModuleFileNameW', 'GetVersionExA', 'DispatchMessageW', 'TranslateMessage', 'GetMessageA', 'GetMessageW', 'IsWindowUnicode', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'DispatchMessageA', 'UnregisterClassA', 'SetThreadToken', 'AllocateLocallyUniqueId', 'RevertToSelf', 'OpenThreadToken', 'CoMarshalInterface', 'CreateStreamOnHGlobal', 'CoUnmarshalInterface', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoReleaseMarshalData'], ['DisconnectNamedPipe', 'EnterCriticalSection', 'ExitProcess', 'FlushFileBuffers', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetFileSize', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetVersionExA', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InterlockedDecrement', 'DeviceIoControl', 'IsDBCSLeadByte', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringA', 'QueryPerformanceCounter', 'ReadFile', 'RtlUnwind', 'SetEnvironmentVariableA', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VirtualFree', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcmpiA', 'DeleteCriticalSection', 'CreateThread', 'CreateNamedPipeA', 'CreateFileMappingA', 'CreateFileA', 'CreateEventA', 'ConnectNamedPipe', 'CompareStringW', 'CompareStringA', 'GetModuleHandleA', 'CloseHandle', 'SetErrorMode', 'InterlockedIncrement', 'VirtualAlloc', 'InitializeCriticalSectionAndSpinCount', 'GetModuleHandleW', 'CharUpperW', 'GetClipboardSequenceNumber', 'LoadIconA', 'Rectangle', 'RectInRegion', 'PATHOBJ_vGetBounds', 'HT_Get8BPPMaskPalette', 'GetCharacterPlacementW', 'GdiSetPixelFormat', 'GdiDllInitialize', 'EngTextOut', 'GetStockObject', 'SetDIBitsToDevice', 'RegQueryValueExA', 'RegOpenKeyExA', 'SHGetDesktopFolder', 'SHGetPathFromIDListW', 'SHPathPrepareForWriteA', 'SHPathPrepareForWriteW'], ['HeapFree', 'GetTickCount', 'Sleep', 'GetModuleHandleA', 'GetProcAddress', 'AddVectoredExceptionHandler', 'SetThreadStackGuarantee', 'GetLastError', 'GetCurrentThread', 'GetProcessHeap', 'HeapAlloc', 'HeapReAlloc', 'CloseHandle', 'TryAcquireSRWLockExclusive', 'ReleaseSRWLockExclusive', 'GetStdHandle', 'GetConsoleMode', 'WaitForSingleObject', 'MultiByteToWideChar', 'WriteConsoleW', 'SetLastError', 'WaitForSingleObjectEx', 'LoadLibraryA', 'CreateMutexA', 'GetCurrentProcess', 'ReleaseMutex', 'RtlLookupFunctionEntry', 'GetModuleHandleW', 'FormatMessageW', 'AcquireSRWLockExclusive', 'GetCurrentDirectoryW', 'RtlCaptureContext', 'AcquireSRWLockShared', 'ReleaseSRWLockShared', 'GetEnvironmentVariableW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'GetLastInputInfo', 'NtWriteFile', 'RtlNtStatusToDosError', '__current_exception_context', '__current_exception', 'memmove', '__C_specific_handler', 'memset', 'memcpy', '__CxxFrameHandler3', 'memcmp', '_register_thread_local_exe_atexit_callback', '__p___argv', '__p___argc', '_seh_filter_exe', '_exit', '_initialize_onexit_table', '_c_exit', '_crt_atexit', 'terminate', 'exit', '_set_app_type', '_register_onexit_function', '_cexit', '_initterm', '_initterm_e', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale', '_set_new_mode', 'free'], ['SetupDiDestroyDeviceInfoList', 'SetupDiOpenDevRegKey', 'SetupDiGetDeviceRegistryPropertyW', 'SetupDiEnumDeviceInfo', 'SetupDiGetClassDevsW', 'GetTickCount', 'FileTimeToLocalFileTime', 'GetFileAttributesW', 'GetFileTime', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'GetProcessHeap', 'RtlUnwind', 'ExitProcess', 'ExitThread', 'CreateThread', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'FileTimeToSystemTime', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetThreadLocale', 'lstrlenA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'FormatMessageW', 'LocalFree', 'InterlockedDecrement', 'MulDiv', 'GetModuleHandleA', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalAddAtomW', 'CreateEventW', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'GlobalUnlock', 'lstrlenW', 'WritePrivateProfileStringW', 'FreeResource', 'GlobalFree', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleW', 'GetProcAddress', 'MultiByteToWideChar', 'ReadFile', 'WriteFile', 'WideCharToMultiByte', 'SetCommState', 'GetCommState', 'SetCommTimeouts', 'GetCommTimeouts', 'CreateFileW', 'CloseHandle', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'Sleep', 'HeapCreate', 'CharUpperW', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetWindowThreadProcessId', 'GetLastActivePopup', 'MessageBoxW', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'GetSysColorBrush', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableW', 'SetFocus', 'CharNextW', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GetWindow', 'SetWindowContextHelpId', 'GetParent', 'MapDialogRect', 'SetWindowPos', 'PostQuitMessage', 'PostMessageW', 'EnableWindow', 'SendMessageW', 'LoadBitmapW', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'SetWindowLongW', 'GetWindowLongW', 'AppendMenuW', 'GetSystemMenu', 'LoadIconW', 'UnregisterClassA', 'ExtSelectClipRgn', 'DeleteDC', 'Escape', 'GetStockObject', 'GetDeviceCaps', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetMapMode', 'TextOutW', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'GetClipBox', 'CreateRectRgnIndirect', 'CreateBitmap', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'GetObjectW', 'SetBkColor', 'SelectObject', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegDeleteKeyW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegCloseKey', 'InitCommonControlsEx', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysFreeString', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen'], ['WSAStartup', 'inet_addr', 'gethostbyaddr', 'WSAGetLastError', 'recv', 'socket', 'connect', 'closesocket', 'send', 'LoadLibraryA', 'TerminateThread', 'GetSystemTime', 'ExitProcess', 'lstrlenA', 'MultiByteToWideChar', 'Sleep', 'GetProcAddress', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'SysAllocStringLen', 'SysFreeString'], ['VirtualProtect', 'Sleep', 'GetTempPathA', 'VirtualQuery', 'GetSystemInfo', 'RaiseException', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InterlockedFlushSList', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'CreateFileW', 'GetFileType', 'CloseHandle', 'DuplicateHandle', 'ExitProcess', 'GetModuleHandleExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetEndOfFile', 'ReadFile', 'ReadConsoleW', 'SetFilePointerEx', 'GetStdHandle', 'LCMapStringW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetCommandLineA', 'GetCommandLineW', 'GetStringTypeW', 'WriteConsoleW', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'LoadLibraryExA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA'], ['UnmapViewOfFile', 'lstrcatA', 'OpenProcess', 'HeapSize', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'GetFileInformationByHandle', 'CopyFileA', 'GetLastError', 'QueryFullProcessImageNameA', 'CreateFileA', 'FileTimeToSystemTime', 'LoadLibraryA', 'LockResource', 'Process32Next', 'lstrcpyA', 'HeapReAlloc', 'CloseHandle', 'RaiseException', 'FindResourceExW', 'LoadResource', 'WaitForSingleObject', 'HeapAlloc', 'GetLocalTime', 'DecodePointer', 'HeapDestroy', 'GetProcAddress', 'CreateFileMappingA', 'GetFileSize', 'DeleteCriticalSection', 'GetProcessHeap', 'SystemTimeToFileTime', 'FreeLibrary', 'MapViewOfFile', 'HeapFree', 'FlushFileBuffers', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'CreateMutexA', 'GetEnvironmentVariableA', 'InitializeCriticalSectionEx', 'SetFilePointer', 'LeaveCriticalSection', 'WriteFile', 'FindResourceW', 'EnterCriticalSection', 'SizeofResource', 'GetModuleFileNameA', 'ReadFile', 'GetStringTypeW', 'ReadConsoleW', 'GetTimeZoneInformation', 'GetFileType', 'GetFileSizeEx', 'GetConsoleMode', 'GetConsoleCP', 'LCMapStringW', 'CompareStringW', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'GetModuleFileNameW', 'GetCPInfo', 'GetModuleHandleExW', 'ExitProcess', 'VirtualQuery', 'VirtualProtect', 'GetTickCount', 'GetShortPathNameA', 'WriteConsoleW', 'VirtualAlloc', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'RemoveDirectoryW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'SetLastError', 'GetModuleHandleW', 'WideCharToMultiByte', 'FormatMessageW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'OutputDebugStringW', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RtlUnwind', 'EncodePointer', 'LoadLibraryExW', 'GetSystemInfo', 'GetDC', 'GetSystemMetrics', 'ReleaseDC', 'ShowWindow', 'FindWindowA', 'GetDesktopWindow', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'BitBlt', 'RegGetValueA', 'RegOpenKeyExA', 'ShellExecuteA', 'PathFindExtensionW', 'PathFindExtensionA', 'GdiplusStartup', 'GdipSaveImageToFile', 'GdipCreateBitmapFromScan0', 'GdiplusShutdown', 'GdipGetImageEncoders', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipGetImageEncodersSize', 'InternetCloseHandle', 'InternetOpenA', 'InternetConnectA', 'HttpSendRequestExA', 'HttpEndRequestA', 'InternetWriteFile', 'HttpOpenRequestA', 'CryptUnprotectData', 'URLDownloadToFileA'], ['GetFullPathNameW', 'GetEnvironmentVariableW', 'HeapReAlloc', 'SetVolumeLabelA', 'IsBadStringPtrW', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'GetDefaultCommConfigW', 'GetProcessIoCounters', 'ClearCommError', 'GetQueuedCompletionStatus', 'GetNumaAvailableMemoryNode', 'GetTickCount', 'GetWindowsDirectoryA', 'GetPriorityClass', 'GlobalAlloc', 'GetThreadSelectorEntry', 'SizeofResource', 'GetWriteWatch', 'SetConsoleCursorPosition', 'MultiByteToWideChar', 'FindFirstFileExA', 'GetLastError', 'EnumDateFormatsExA', 'EnumSystemCodePagesW', 'SetFileApisToOEM', 'GetAtomNameA', 'LoadLibraryA', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'VirtualProtect', 'CompareStringA', 'SetCalendarInfoA', 'GetVolumeNameForVolumeMountPointW', 'GetCurrentProcessId', 'FindNextVolumeA', 'CreateFileA', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RtlUnwind', 'HeapAlloc', 'VirtualAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CloseHandle', 'GetCaretPos'], ['LoadLibraryA', 'GetModuleHandleA', 'InterlockedCompareExchange', 'OpenWaitableTimerW', 'CreateEventA', 'ReadConsoleInputW', 'WaitNamedPipeA', 'SetVolumeMountPointA', 'SetSystemTimeAdjustment', 'FindNextFileW', 'EnumResourceTypesA', 'GetModuleFileNameW', 'IsBadCodePtr', 'LoadLibraryW', 'DeleteFileW', 'SearchPathA', 'VirtualAlloc', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasA', 'GetShortPathNameA', 'GetPrivateProfileStringW', 'PeekConsoleInputA', 'GlobalGetAtomNameA', 'GetProcAddress', 'GetUserDefaultLangID', 'GetConsoleAliasW', 'FindFirstChangeNotificationW', 'GetFileType', 'SetFileShortNameA', 'lstrcpynA', 'AddAtomA', 'SetConsoleCtrlHandler', 'CreateMutexA', 'GetLongPathNameA', 'FoldStringW', 'OpenWaitableTimerA', 'ResetEvent', 'GlobalWire', 'GetComputerNameA', 'GetVersionExW', 'GetSystemDefaultLCID', 'GetProcessHandleCount', 'GetLastError', 'VirtualProtect', 'GlobalAlloc', 'GetFileAttributesExW', 'SetComputerNameA', 'GetFileAttributesA', 'ReadConsoleA', 'GetVolumePathNameW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile', 'GetProcessHeap'], ['DecodePointer', 'CreateThread', 'SetEvent', 'WaitForSingleObject', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'Sleep', 'CreateTimerQueue', 'CreateEventW', 'CreateTimerQueueTimer', 'DeleteTimerQueueTimer', 'DeleteTimerQueue', 'GetCurrentProcessId', 'CreateToolhelp32Snapshot', 'Process32NextW', 'SetConsoleCtrlHandler', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'CreateFileA', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'GetFileAttributesW', 'CreateDirectoryW', 'CreateFileW', 'WriteFile', 'SetFileTime', 'CloseHandle', 'FindFirstFileW', 'GetModuleFileNameW', 'CreateProcessW', 'GetConsoleWindow', 'FindNextFileW', 'FindClose', 'OpenProcess', 'TerminateProcess', 'GetFileAttributesA', 'GetWindowsDirectoryW', 'GetCurrentProcess', 'GetSystemInfo', 'FileTimeToSystemTime', 'GetFileInformationByHandle', 'GetFileSize', 'UnmapViewOfFile', 'GetLocalTime', 'GetTickCount', 'SetEndOfFile', 'LoadLibraryW', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'GetTimeZoneInformation', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'RaiseException', 'DeleteFileW', 'WideCharToMultiByte', 'InitializeSListHead', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetVersionExW', 'GetModuleHandleA', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileType', 'MoveFileExW', 'LoadLibraryExW', 'FreeLibrary', 'GetStdHandle', 'GetCurrentThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetConsoleMode', 'SetEnvironmentVariableA', 'GetConsoleCP', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'CreateSemaphoreW', 'GetStartupInfoW', 'SetLastError', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetCurrentThreadId', 'GetStringTypeW', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'GetCPInfo', 'GetCommandLineA', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetLogicalProcessorInformation', 'ChangeTimerQueueTimer', 'GetModuleHandleW', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'TranslateMessage', 'GetSystemMetrics', 'GetDC', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'wsprintfW', 'ReleaseDC', 'DispatchMessageW', 'GetDesktopWindow', 'GetMessageW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'DeleteObject', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoCreateGuid', 'StringFromGUID2', 'GdipDisposeImage', 'GdipSaveImageToFile', 'GdiplusShutdown', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipFree', 'recv', 'inet_addr', 'htons', 'socket', 'WSAStartup', 'WSACleanup', 'closesocket', 'select', 'sendto', 'GetProcessMemoryInfo', 'QueryWorkingSet'], ['DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'HeapAlloc', 'HeapFree', 'InitializeCriticalSection', 'IsBadReadPtr', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'TlsGetValue', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', '_winmajor', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'malloc', 'memcpy', 'memmove', 'memset', 'signal', 'strcmp', 'vfprintf'], ['HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'Sleep', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'FatalAppExitA', 'VirtualFree', 'HeapCreate', 'RaiseException', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetTimeZoneInformation', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'RtlUnwind', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetStringTypeExA', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetModuleHandleW', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentProcessId', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'MulDiv', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'CompareStringA', 'LoadLibraryA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'lstrlenA', 'LoadLibraryW', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'HeapDestroy', 'SizeofResource', 'SetTimer', 'KillTimer', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'GetSystemMenu', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'UnregisterClassA', 'GetDialogBaseUnits', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'DeleteMenu', 'LoadCursorA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'InsertMenuA', 'RemoveMenu', 'SetRect', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetSysColor', 'GetSysColorBrush', 'GetFocus', 'EnableWindow', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'PtInRect', 'SetWindowPlacement', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'GetMenuBarInfo', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'BringWindowToTop', 'TranslateAcceleratorA', 'InvalidateRect', 'RegisterWindowMessageA', 'SetRectEmpty', 'SendMessageA', 'ShowWindow', 'DrawIcon', 'IsIconic', 'GetClientRect', 'LoadIconA', 'GetSystemMetrics', 'GetWindow', 'CheckDlgButton', 'CheckRadioButton', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextA', 'SendDlgItemMessageA', 'SetDlgItemInt', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'IsDialogMessageA', 'GetWindowLongA', 'SetWindowTextA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetParent', 'SetWindowPos', 'ScrollWindowEx', 'SetFocus', 'IsWindowEnabled', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'IsWindow', 'IsChild', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'PolyDraw', 'CreateHatchBrush', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetBkColor', 'GetCurrentPositionEx', 'ArcTo', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'RectVisible', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'CreateSolidBrush', 'GetDCOrgEx', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'TextOutA', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueA', 'RegCloseKey', 'RegOpenKeyExW', 'RegDeleteValueA', 'ExtractIconA', 'DragFinish', 'DragQueryFileA', 'SHGetFileInfoA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveExtensionA', 'PathRemoveFileSpecW', 'StringFromGUID2', 'CoDisconnectObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'CoCreateInstance', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CLSIDFromString', 'CoUninitialize', 'CoInitializeEx', 'StringFromCLSID', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['HeapSize', 'GetProcessHeap', 'OpenProcess', 'GetCurrentProcessId', 'RaiseException', 'GetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'Sleep', 'FindClose', 'CloseHandle', 'CreateMutexA', 'OpenMutexA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CreateProcessA', 'GetTempPathA', 'CreateDirectoryA', 'RemoveDirectoryA', 'GetFullPathNameW', 'SetFileAttributesA', 'DeleteFileA', 'HeapFree', 'FindNextFileW', 'CopyFileA', 'GetVersionExA', 'WideCharToMultiByte', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'GetVersionExW', 'GetThreadTimes', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'HeapReAlloc', 'HeapAlloc', 'InterlockedDecrement', 'FindFirstFileW', 'DecodePointer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'SetEndOfFile', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'SetFilePointerEx', 'ReadFile', 'GetConsoleMode', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'SetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'InitializeSListHead', 'IsDebuggerPresent', 'MultiByteToWideChar', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'VirtualQuery', 'FreeLibrary', 'DuplicateHandle', 'GetCurrentThread', 'GetExitCodeThread', 'TryEnterCriticalSection', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'GetCPInfo', 'EncodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'OutputDebugStringW', 'LocalFree', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'GetFileType', 'WriteConsoleW', 'WriteFile', 'GetACP', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetDateFormatW', 'GetTimeFormatW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'WaitForSingleObject', 'GetExitCodeProcess', 'GetFileAttributesExW', 'FlushFileBuffers', 'GetConsoleCP', 'SendMessageA', 'DefWindowProcA', 'PostQuitMessage', 'wsprintfA', 'RegisterWindowMessageA', 'GetMessageA', 'TranslateMessage', 'IsWindowVisible', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'TrackPopupMenu', 'LoadIconA', 'LoadCursorA', 'GetCursorPos', 'SetForegroundWindow', 'DispatchMessageA', 'CreateSolidBrush', 'SetKernelObjectSecurity', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'ShellExecuteA', 'Shell_NotifyIconA', 'SHGetSpecialFolderPathA', 'CoInitializeSecurity', 'CoSetProxyBlanket', 'CoCreateInstance', 'CoInitializeEx', 'CoUninitialize', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysAllocString', 'InternetConnectA', 'InternetCloseHandle', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetOpenA', 'InternetReadFile', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['ReadConsoleInputW', 'VerifyVersionInfoW', 'GetCPInfoExA', 'CreateEventW', 'GetSystemDirectoryW', 'GetProcAddress', 'GlobalAlloc', 'DeleteTimerQueueTimer', 'OpenWaitableTimerA', 'GetFileAttributesW', 'EnumResourceTypesW', 'GetLongPathNameW', 'GetModuleHandleW', 'CreateTimerQueue', 'InterlockedCompareExchange', 'FindNextFileA', 'LocalFlags', 'WaitCommEvent', 'SleepEx', 'GetConsoleAliasW', 'MapUserPhysicalPagesScatter', 'PulseEvent', 'GetConsoleMode', 'AddAtomA', 'lstrcmpA', 'SetCalendarInfoA', 'GetSystemWindowsDirectoryA', 'GetComputerNameW', 'EnumTimeFormatsA', 'FileTimeToSystemTime', 'SetSystemTime', '_llseek', 'GetShortPathNameW', 'EnumCalendarInfoA', 'EnumCalendarInfoExW', 'FindNextFileW', 'CreateActCtxW', 'SetStdHandle', 'GetWindowsDirectoryW', 'FindFirstVolumeMountPointW', 'SetLastError', 'LoadLibraryA', 'WriteConsoleW', 'CloseHandle', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'MoveFileA', 'DeleteFileA', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'DecodePointer', 'HeapCreate', 'HeapFree', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'GetConsoleCP', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'LCMapStringW', 'GetStringTypeW', 'ReadFile', 'SetFilePointer', 'CreateFileW', 'LoadMenuW', 'GetComboBoxInfo', 'DefDlgProcA', 'GetListBoxInfo', 'GetCharWidth32A', 'LookupAccountSidW', 'FindExecutableA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'FreeSid', 'GetAdaptersAddresses', 'atof', 'GetProcessMemoryInfo', 'SHGetSpecialFolderPathA', 'ShowWindow', 'GetUserProfileDirectoryW', 'bind'], ['LoadLibraryW', 'ExitProcess', 'LockResource', 'GetProcAddress', 'WaitForSingleObject', 'FindResourceW', 'GetDateFormatW', 'GetModuleHandleW', 'GetVersionExW', 'OpenProcess', 'GetSystemTime', 'GetWindowsDirectoryW', 'CreateFileW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'SetStdHandle', 'WriteConsoleW', 'CloseHandle', 'SetFilePointer', 'GetStringTypeW', 'MultiByteToWideChar', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'WideCharToMultiByte', 'RtlUnwind', 'RaiseException', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'IsProcessorFeaturePresent', 'HeapFree', 'HeapAlloc', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'ImageList_Create', 'ImageList_GetIcon', 'ImageList_GetImageCount', 'ImageList_GetDragImage', 'ImageList_EndDrag', 'GetSaveFileNameW', 'FindTextW', 'GetOpenFileNameW', 'OleInitialize', 'OleUninitialize', 'GetThemeBackgroundRegion', 'DrawThemeText', 'CloseThemeData', 'OpenThemeData', 'OleTranslateColor', 'OleCreateFontIndirect', 'OleCreatePictureIndirect', 'OleLoadPicture', 'OleCreatePropertyFrameIndirect', 'OleCreatePropertyFrame', 'OleUIEditLinksW', 'OleUIBusyW', 'OleUIPromptUserW', 'OleUIAddVerbMenuW'], ['GetModuleFileNameW', 'WaitForSingleObject', 'Sleep', 'MoveFileExW', 'GetProcessHeap', 'SetEndOfFile', 'GetProcAddress', 'HeapAlloc', 'CloseHandle', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetModuleHandleA', 'GetCurrentProcess', 'HeapFree', 'GetWindowsDirectoryW', 'Wow64RevertWow64FsRedirection', 'GetFileAttributesW', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'SetStdHandle', 'WinExec', 'Wow64DisableWow64FsRedirection', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'RtlUnwind', 'CryptDeriveKey', 'CryptDestroyKey', 'CryptAcquireContextW', 'CryptDecrypt', 'CryptCreateHash', 'CryptHashData', 'CryptDestroyHash', 'CryptReleaseContext', 'SHGetKnownFolderPath', 'CoTaskMemFree', 'GetAdaptersInfo', 'PathGetDriveNumberW', 'PathCombineW', 'PathFindFileNameW', 'StrCmpIW'], ['GetModuleHandleA', 'DefWindowProcW', 'RegOpenKeyExW', 'ShellAboutW', 'PropertySheet', '_CorExeMain'], ['lstrcmpA', 'LocalFileTimeToFileTime', 'DosDateTimeToFileTime', 'CreateFileA', 'FreeResource', 'GlobalUnlock', 'LockResource', 'lstrcmpiA', 'SetFileTime', 'GetDiskFreeSpaceA', 'GetDriveTypeA', 'GetWindowsDirectoryA', 'GetTimeZoneInformation', 'GetFileAttributesA', 'SetFileAttributesA', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetLastError', 'IsDBCSLeadByte', 'lstrcpynA', 'lstrcatA', 'GetTickCount', 'lstrlenA', 'FindResourceA', 'LoadResource', 'lstrcpyA', 'GetFullPathNameA', 'GetFileType', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindFirstFileA', 'LoadLibraryA', 'GetProcAddress', 'FindClose', 'CompareStringA', 'FlushFileBuffers', 'CompareStringW', 'GetStringTypeW', 'GetStringTypeA', 'VirtualAlloc', 'HeapReAlloc', 'VirtualFree', 'HeapSize', 'HeapDestroy', 'GetOEMCP', 'HeapCreate', 'GetCPInfo', 'GetEnvironmentStringsW', 'GetACP', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetModuleHandleA', 'RtlUnwind', 'SetEndOfFile', 'UnhandledExceptionFilter', 'GetStdHandle', 'SetHandleCount', 'SetFilePointer', 'WriteFile', 'LCMapStringW', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'DeleteFileA', 'CreateDirectoryA', 'RemoveDirectoryA', 'SetEnvironmentVariableA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'SetStdHandle', 'MoveFileA', 'ReadFile', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'LCMapStringA', 'HeapAlloc', 'HeapFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'MessageBoxA', 'ShowWindow', 'InvalidateRect', 'GetSysColor', 'UpdateWindow', 'DispatchMessageA', 'SetWindowTextA', 'PeekMessageA', 'LoadStringA', 'TranslateMessage', 'DestroyWindow', 'SendMessageA', 'GetDlgItem', 'SendDlgItemMessageA', 'wsprintfA', 'DialogBoxParamA', 'CharNextA', 'EndDialog', 'FindWindowA', 'GetSystemMetrics', 'CharPrevA', 'GetWindowRect', 'SetCursor', 'MoveWindow', 'PostQuitMessage', 'CopyRect', 'DefWindowProcA', 'GetClientRect', 'LoadIconA', 'GetWindowTextA', 'FillRect', 'CreateDialogParamA', 'LoadCursorA', 'RegisterClassA', 'CreateSolidBrush', 'CreatePen', 'DeleteObject', 'MoveToEx', 'SelectObject', 'LineTo', 'ExtTextOutA', 'SetTextColor', 'SetBkColor', 'GetTextExtentPoint32A', 'RestoreDC', 'SaveDC'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'GetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'SetCalendarInfoW', 'MoveFileA', 'CreateEventW', 'GetModuleHandleA', 'VirtualProtect', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['HeapAlloc', 'HeapFree', 'GetProcessHeap', 'InitializeCriticalSection', 'HeapDestroy', 'LeaveCriticalSection', 'HeapCreate', 'EnterCriticalSection', 'DeleteCriticalSection', 'GetCurrentProcessId', 'SetFileTime', 'WriteFile', 'GetFileAttributesW', 'CreateFileW', 'GetFileTime', 'SetFilePointer', 'HeapSize', 'CreateThread', 'OpenProcess', 'Sleep', 'ReadProcessMemory', 'Process32FirstW', 'GetSystemInfo', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetProcAddress', 'GetTickCount', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CloseHandle', 'GetShortPathNameW', 'SetLastError', 'GetLastError', 'OpenMutexW', 'GetModuleFileNameW', 'CopyFileW', 'TerminateThread', 'OutputDebugStringW', 'ExitProcess', 'WaitForSingleObject', 'CreateDirectoryW', 'GetCurrentProcess', 'CreateProcessW', 'CreateMutexW', 'FlushFileBuffers', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleW', 'SetStdHandle', 'RtlUnwind', 'LoadLibraryW', 'HeapReAlloc', 'IsValidCodePage', 'GetEnvironmentVariableW', 'VirtualQueryEx', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetConsoleMode', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'wsprintfW', 'wsprintfA', 'RegCreateKeyExW', 'LookupPrivilegeValueW', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'ShellExecuteW', 'SHGetFolderPathW', 'HttpSendRequestA', 'InternetCrackUrlA', 'InternetConnectA', 'InternetReadFile', 'InternetOpenA', 'InternetCloseHandle', 'InternetSetOptionA', 'HttpQueryInfoA', 'HttpOpenRequestA', 'wvnsprintfW'], ['WriteProfileSectionA', 'GetNumaHighestNodeNumber', 'FindFirstVolumeA', 'FlushConsoleInputBuffer', 'HeapLock', 'FindFirstChangeNotificationA', 'PulseEvent', 'GetNamedPipeHandleStateW', 'CompareFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateThread', 'SignalObjectAndWait', 'GetVersionExW', 'VerifyVersionInfoW', 'SetEvent', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBAndTimeoutsA', 'GetConsoleOutputCP', 'GetCompressedFileSizeA', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', '_hread', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetWaitableTimer', 'SetComputerNameExW', 'FindAtomA', 'LoadResource', 'GetThreadTimes', 'CallNamedPipeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'GetModuleHandleA', 'LocalAlloc', 'VerifyVersionInfoA', 'GlobalWire', 'GetProfileSectionW', 'GetCommandLineA', 'InterlockedDecrement', 'FindFirstChangeNotificationW', 'GetCalendarInfoA', 'ReleaseActCtx', 'OutputDebugStringW', 'FormatMessageA', 'SetDllDirectoryW', 'SetPriorityClass', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalFix', 'GetVersionExA', 'HeapValidate', 'InterlockedCompareExchange', 'CopyFileA', 'GetLastError', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleTextAttribute', 'GetComputerNameExW', 'GetSystemWow64DirectoryW', 'GetStartupInfoW', 'ConnectNamedPipe', 'GetCPInfoExW', 'GetPrivateProfileSectionNamesA', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'CopyFileW', 'GetOEMCP', 'GetConsoleAliasW', 'lstrlenA', 'ReadConsoleA', 'WriteConsoleA', 'GetPrivateProfileSectionNamesW', 'FormatMessageW', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoA', 'SetThreadIdealProcessor', 'EnumDateFormatsExW', 'VerSetConditionMask', 'CreateConsoleScreenBuffer', 'GetSystemWindowsDirectoryW', 'GetProfileStringW', 'CreateIoCompletionPort', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', 'SetThreadContext', 'GetSystemTimeAdjustment', '_lwrite', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'GetWriteWatch', 'OpenSemaphoreW', 'GetModuleHandleW', 'DeleteAtom', 'LoadLibraryW', 'GetPrivateProfileStringW', 'TlsFree', 'GetProfileSectionA', 'CreateActCtxW', 'CreateJobSet', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingW', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'PeekNamedPipe', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'SetThreadPriority', 'InitAtomTable', 'GetNumberFormatW', 'EnterCriticalSection', 'InitializeCriticalSection', 'AddAtomW', 'WriteConsoleOutputCharacterW', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'SetLastError', 'LoadLibraryA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'CreateFileA', 'GetBitmapBits'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SafeArrayUnaccessData', 'RegSetValueExA', 'WNetOpenEnumA', 'UnrealizeObject', 'WindowFromPoint', 'CreateStreamOnHGlobal', 'GetErrorInfo', 'ImageList_GetImageInfo', 'GetSaveFileNameA', 'CreateUrlCacheEntryA', 'ShellExecuteA', 'WSACleanup', 'SHGetSpecialFolderLocation'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CLSIDFromProgID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'GetOpenFileNameA'], ['GetSystemInfo', 'VirtualAlloc', 'VirtualFree', 'VirtualQuery', 'CloseHandle', 'HeapCreate', 'HeapDestroy', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'Sleep', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'FlushInstructionCache', 'VirtualProtect', 'GetModuleHandleW', 'GetProcAddress', 'CreateToolhelp32Snapshot', 'Thread32First', 'Thread32Next', 'lstrcatA', 'lstrlenA', 'OpenMutexA', 'EnterCriticalSection', 'LeaveCriticalSection', 'CreateThread', 'StrStrA'], ['ScriptItemizeOpenType', 'ScriptString_pSize', 'ScriptGetFontProperties', 'ScriptGetGlyphABCWidth', 'ScriptXtoCP', 'ScriptShapeOpenType', 'ScriptStringCPtoX', 'ScriptCPtoX', 'RasHangUpA', 'RasGetErrorStringW', 'RasDialA', 'RasClearLinkStatistics', 'RasGetProjectionInfoA'], ['CryptUnprotectData', 'OutputDebugStringA', 'LockFile', 'LeaveCriticalSection', 'InitializeCriticalSection', 'SetFilePointer', 'GetFullPathNameA', 'SetEndOfFile', 'UnlockFileEx', 'GetTempPathW', 'CreateMutexW', 'WaitForSingleObject', 'CreateFileW', 'GetFileAttributesW', 'GetCurrentThreadId', 'UnmapViewOfFile', 'HeapValidate', 'HeapSize', 'MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'FormatMessageW', 'GetDiskFreeSpaceA', 'GetLastError', 'GetFileAttributesA', 'GetFileAttributesExW', 'OutputDebugStringW', 'CreateFileA', 'LoadLibraryA', 'WaitForSingleObjectEx', 'DeleteFileA', 'DeleteFileW', 'HeapReAlloc', 'CloseHandle', 'GetSystemInfo', 'LoadLibraryW', 'HeapAlloc', 'HeapCompact', 'HeapDestroy', 'UnlockFile', 'GetProcAddress', 'CreateFileMappingA', 'LocalFree', 'LockFileEx', 'GetFileSize', 'DeleteCriticalSection', 'GetCurrentProcessId', 'GetProcessHeap', 'SystemTimeToFileTime', 'FreeLibrary', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'QueryPerformanceCounter', 'GetTickCount', 'FlushFileBuffers', 'SetHandleInformation', 'FindFirstFileA', 'Wow64DisableWow64FsRedirection', 'K32GetModuleFileNameExW', 'FindNextFileA', 'CreatePipe', 'PeekNamedPipe', 'lstrlenA', 'FindClose', 'GetCurrentDirectoryA', 'lstrcatA', 'OpenProcess', 'SetCurrentDirectoryA', 'CreateToolhelp32Snapshot', 'ProcessIdToSessionId', 'CopyFileA', 'Wow64RevertWow64FsRedirection', 'Process32NextW', 'Process32FirstW', 'CreateThread', 'CreateProcessA', 'CreateDirectoryA', 'WriteConsoleW', 'WriteFile', 'GetFullPathNameW', 'EnterCriticalSection', 'HeapFree', 'HeapCreate', 'TryEnterCriticalSection', 'ReadFile', 'AreFileApisANSI', 'GetDiskFreeSpaceW', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'SetStdHandle', 'GetCurrentDirectoryW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'InitializeSListHead', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'DecodePointer', 'GetCPInfo', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'InterlockedFlushSList', 'LoadLibraryExW', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetCurrentProcess', 'TerminateProcess', 'ExitProcess', 'GetModuleFileNameW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetTimeZoneInformation', 'GetStdHandle', 'RegQueryValueExA', 'RegEnumValueW', 'RegCloseKey', 'RegQueryInfoKeyW', 'GetUserNameW', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'LookupAccountNameW', 'SHGetFolderPathA', 'SHFileOperationA', 'HttpOpenRequestA', 'InternetWriteFile', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetOpenA', 'HttpAddRequestHeadersA', 'HttpSendRequestExW', 'HttpEndRequestA', 'InternetOpenW', 'BCryptOpenAlgorithmProvider', 'BCryptSetProperty', 'BCryptGenerateSymmetricKey', 'BCryptDecrypt'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegOpenKeyA', 'WriteProcessMemory', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtectEx', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'SystemTimeToFileTime', 'SizeofResource', 'SetThreadContext', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryW', 'SetCurrentDirectoryA', 'ResetEvent', 'RemoveDirectoryW', 'RemoveDirectoryA', 'ReadProcessMemory', 'ReadFile', 'QueryDosDeviceW', 'PostQueuedCompletionStatus', 'MultiByteToWideChar', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadWritePtr', 'IsBadStringPtrW', 'IsBadReadPtr', 'InitializeCriticalSection', 'GetWindowsDirectoryW', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetVersion', 'GetThreadLocale', 'GetThreadContext', 'GetTempPathW', 'GetTempPathA', 'GetTempFileNameW', 'GetTempFileNameA', 'GetSystemDirectoryW', 'GetSystemDirectoryA', 'GetStringTypeExW', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesW', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceW', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'CreateRemoteThread', 'CreateFileW', 'CreateFileA', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'CharLowerW', 'CharNextA', 'CharLowerA', 'CharUpperA', 'CharToOemA', 'Sleep', 'ActivateActCtx', 'CreateActCtxW', 'QueryDosDeviceW', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'RtlInitUnicodeString', 'RtlFreeUnicodeString', 'RtlFormatCurrentUserKeyPath', 'RtlDosPathNameToNtPathName_U', 'SHGetFolderPathW', 'SHGetFolderPathA', 'ZwProtectVirtualMemory', 'PathMatchSpecW', 'LdrGetProcedureAddress', 'RtlFreeUnicodeString', 'RtlInitAnsiString', 'RtlAnsiStringToUnicodeString', 'LdrLoadDll'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'GetExitCodeProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsA', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointA', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExW', 'GetTimeZoneInformation', 'GetSystemDirectoryA', 'GetDriveTypeW', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'ReleaseActCtx', 'InterlockedExchangeAdd', 'FormatMessageW', 'SetDllDirectoryA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeaps', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'WaitForDebugEvent', 'EndUpdateResourceW', 'GetLastError', 'GetSystemTime', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'TerminateThread', 'GetACP', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'EnterCriticalSection', 'GetConsoleAliasW', '_lwrite', 'GetOverlappedResult', 'CreateNamedPipeA', 'InterlockedDecrement', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenW', 'LoadLibraryW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputA', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'GetStringTypeW', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileA', 'GetCommMask', 'CloseHandle', 'EndUpdateResourceA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesA', 'WriteConsoleInputW', 'CreateMailslotW', 'TzSpecificLocalTimeToSystemTime', 'SetLocalTime', 'GetStringTypeA', 'EnumSystemLocalesW', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'CopyFileExA', 'GetPrivateProfileIntA', 'GetModuleHandleExW', 'FindActCtxSectionStringA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'FillConsoleOutputCharacterA', 'GetCompressedFileSizeW', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'CreateActCtxA', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ImpersonateSelf'], ['LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleHandleW', 'StrokePath', 'PathToRegion', 'GetStockObject'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetACP', 'lstrlenA', 'GetLastError', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'lstrcmpA', 'GetProcessId', 'GetCurrentThread', 'OleUIConvertA', 'OleUIConvertW', 'OleUIBusyA', 'OleUIBusyW', 'InitCommonControls', 'GetRelAbs', 'SHGetFolderLocation', 'midiInGetErrorTextW', 'DllRegisterServer', 'VerFindFileW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'DecodePointer', 'Sleep', 'GetCurrentThreadId', 'GetSystemInfo', 'VirtualProtect', 'GetSystemMetrics', 'GetConsoleWindow', 'GetCursorPos', 'QueryPerformanceCounter', 'InitializeSListHead', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetProcAddress', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'GetCommandLineW', 'FindNextFileW', 'HeapFree', 'GetCPInfo', 'CompareStringW', 'GetConsoleMode', 'CloseHandle', 'VariantChangeTypeEx', 'RaiseException'], ['ExitProcess', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'GetSystemDirectoryW', 'DeleteCriticalSection', 'InitializeCriticalSectionEx', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'FormatMessageW', 'CreateFileW', 'SetLastError', 'CloseHandle', 'DeviceIoControl', 'GetProcAddress', 'GetModuleHandleW', 'FreeLibrary', 'MultiByteToWideChar', 'WriteFile', 'FindNextFileW', 'GetCurrentProcess', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwindEx', 'RtlPcToFileHeader', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'FindClose', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'RaiseException'], ['GetProcAddress', 'LoadLibraryA', 'CloseHandle', 'WriteFile', 'CreateDirectoryA', 'GetTempPathA', 'ReadFile', 'SetFilePointer', 'CreateFileA', 'GetModuleFileNameA', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'HeapAlloc', 'HeapFree', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'MultiByteToWideChar', 'GetStringTypeW', 'MessageBoxA', 'wsprintfA'], ['midiStreamOut', 'WSACleanup', 'CreateMutexA', 'IsZoomed', 'ExcludeClipRect', 'OpenPrinterA', 'RegQueryValueExA', 'ShellExecuteA', 'CLSIDFromProgID', 'UnRegisterTypeLib', 'ImageList_GetIcon', 'ChooseColorA', 'strncpy', 'GetInterfaceInfo', 'GetMappedFileNameW'], ['UpdateWindow', 'ShowWindow', 'SetWindowRgn', 'SetWindowLongA', 'SetLayeredWindowAttributes', 'SetDlgItemTextA', 'SetCursor', 'SendMessageA', 'MessageBoxA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'GetWindowLongA', 'GetDlgItemTextA', 'GetDlgItem', 'EndDialog', 'DialogBoxParamA', 'CallWindowProcA', 'FindResourceA', 'GetModuleHandleA', 'lstrlenA', 'WriteFile', 'UnmapViewOfFile', 'Sleep', 'SizeofResource', 'RtlZeroMemory', 'RtlMoveMemory', 'MapViewOfFile', 'LockResource', 'CloseHandle', 'CreateFileA', 'CreateFileMappingA', 'ExitProcess', 'FlushViewOfFile', 'LoadResource', 'GetSaveFileNameA', 'InitCommonControlsEx', 'CreatePatternBrush', 'ExtCreateRegion', 'ShellExecuteA', 'strncpy', 'GetInterfaceInfo', 'GetMappedFileNameW', 'RegQueryValueExA'], ['__WSAFDIsSet', 'setsockopt', 'ntohs', 'recvfrom', 'sendto', 'htons', 'WSACleanup', 'listen', 'WSAStartup', 'bind', 'closesocket', 'connect', 'socket', 'send', 'ioctlsocket', 'WSAGetLastError', 'accept', 'select', 'inet_addr', 'gethostbyname', 'gethostname', 'recv', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'ImageList_ReplaceIcon', 'ImageList_Create', 'InitCommonControlsEx', 'ImageList_Destroy', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'WNetUseConnectionW', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'EnumProcesses', 'GetModuleBaseNameW', 'GetProcessMemoryInfo', 'EnumProcessModules', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'HeapAlloc', 'Sleep', 'GetCurrentThreadId', 'RaiseException', 'MulDiv', 'GetVersionExW', 'GetSystemInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'lstrlenW', 'lstrcpyW', 'lstrcmpiW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'FindClose', 'DeleteFileW', 'FindNextFileW', 'MoveFileW', 'CopyFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'GetProcessHeap', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetLocalTime', 'CompareStringW', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'GetTempPathW', 'GetTempFileNameW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'SetErrorMode', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'DeviceIoControl', 'SetFileAttributesW', 'GetShortPathNameW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetCurrentThread', 'GetProcessIoCounters', 'CreateProcessW', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'LoadLibraryExW', 'HeapFree', 'WaitForSingleObject', 'CreateThread', 'DuplicateHandle', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetProcAddress', 'LoadLibraryA', 'FreeLibrary', 'GetModuleFileNameW', 'GetFullPathNameW', 'SetCurrentDirectoryW', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'ExitProcess', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetTimeFormatW', 'GetDateFormatW', 'GetCommandLineW', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'HeapCreate', 'SetHandleCount', 'GetFileType', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'RtlUnwind', 'SetFilePointer', 'GetTimeZoneInformation', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'SetSystemPowerState', 'SetEnvironmentVariableA', 'SetRect', 'AdjustWindowRectEx', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'ReleaseCapture', 'SetCapture', 'WindowFromPoint', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'CheckMenuRadioItem', 'GetMenuItemID', 'GetMenuItemCount', 'SetClipboardData', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'SystemParametersInfoW', 'MonitorFromRect', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetClassNameW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'GetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'MessageBoxW', 'DefWindowProcW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'UnregisterHotKey', 'SetMenuItemInfoW', 'CharLowerBuffW', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'LoadImageW', 'CreateIconFromResourceEx', 'mouse_event', 'keybd_event', 'ExitWindowsEx', 'GetFocus', 'DeleteObject', 'BeginPath', 'GetTextExtentPoint32W', 'ExtCreatePen', 'StrokeAndFillPath', 'StrokePath', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'LineTo', 'AngleArc', 'DeleteDC', 'GetPixel', 'CreateDCW', 'MoveToEx', 'Ellipse', 'GetDeviceCaps', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'SetTextColor', 'CreateFontW', 'GetTextFaceW', 'GetStockObject', 'PolyDraw', 'GetSaveFileNameW', 'GetOpenFileNameW', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'GetUserNameW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'CloseServiceHandle', 'UnlockServiceDatabase', 'LockServiceDatabase', 'OpenSCManagerW', 'InitiateSystemShutdownExW', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetLengthSid', 'RegCloseKey', 'CopySid', 'LogonUserW', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'GetAce', 'SetSecurityDescriptorDacl', 'RegOpenKeyExW', 'RegQueryValueExW', 'AddAce', 'DragQueryPoint', 'ShellExecuteExW', 'SHGetFolderPathW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHBrowseForFolderW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHGetDesktopFolder', 'SHGetMalloc', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CoTaskMemAlloc', 'StringFromGUID2', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'IIDFromString', 'OleInitialize', 'CreateBindCtx', 'CLSIDFromProgID', 'OleUninitialize', 'CoSetProxyBlanket', 'CoCreateInstanceEx', 'CoInitializeSecurity', 'SysAllocString', 'OleLoadPicture', 'SafeArrayGetVartype', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'VarR8FromDec', 'VariantTimeToSystemTime', 'QueryPathOfRegTypeLib', 'VariantCopy', 'VariantInit', 'VariantClear', 'CreateStdDispatch', 'CreateDispTypeInfo', 'SafeArrayAllocDescriptorEx', 'SafeArrayAllocData', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'GetActiveObject', 'SysFreeString'], ['OpenServiceW', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'NtClose'], ['SHGetDiskFreeSpaceA', '_CorExeMain', 'RegQueryValueA', 'WaitMessage', 'GetModuleHandleA'], ['GetVersionExA', 'GlobalMemoryStatus', 'CreateProcessA', 'Sleep', 'FlushFileBuffers', 'LCMapStringW', 'LCMapStringA', 'SetStdHandle', 'LoadLibraryA', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'SetFilePointer', 'GetLastError', 'WriteFile', 'RtlUnwind', 'HeapAlloc', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'VirtualAlloc', 'HeapReAlloc', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'CloseHandle', 'URLDownloadToFileA', 'IcmpSendEcho2', 'IcmpCloseHandle', 'IcmpCreateFile', 'inet_addr', 'HttpAddRequestHeadersA', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenA', 'InternetConnectA', 'HttpOpenRequestA', 'HttpSendRequestA'], ['MoveFileExW', 'CreateDirectoryExA', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'GetMailslotInfo', 'lstrlenW', 'GetConsoleAliasesW', 'GetStdHandle', 'GetLastError', 'SetConsoleTextAttribute', 'VirtualAlloc', 'MoveFileW', 'WriteProfileSectionA', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'FindFirstChangeNotificationA', 'QueueUserWorkItem', 'VirtualProtect', 'GetCPInfoExA', 'InterlockedPushEntrySList', 'AllocConsole', 'GetProcAddress', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'RtlUnwind', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'HeapSize', 'CreateFileA', 'CloseHandle', 'ClientToScreen', 'ClearEventLogW'], ['GetCurrentProcess', 'Sleep', 'GetFileAttributesA', 'FreeConsole', 'VirtualProtectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'WriteConsoleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'CreateFileW', 'DecodePointer'], ['FreeConsole', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoW', 'CreateFileA', 'SelectObject', 'SetBkMode', 'DeleteObject', 'GetStockObject', 'GetObjectA', 'SetTextColor', 'CreateFontIndirectA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'ChooseFontW', 'RegDeleteKeyA'], ['GetDeviceGammaRamp', 'RectVisible', 'SelectFontLocal', 'CombineTransform', 'ExitProcess', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetCommandLineA', 'GetCurrentProcess', 'GetEnvironmentStringsW', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStringTypeA', 'GetStringTypeW', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'LoadLibraryA', 'MultiByteToWideChar', 'Sleep', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'lstrcpyA'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileW', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeW', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['AllocConsole', 'SetConsoleTextAttribute', 'ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleTitleA', 'CreateDirectoryExW', 'LoadLibraryW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetConsoleAliasesLengthW', 'SetLastError', 'BindIoCompletionCallback', 'GetProcAddress', 'VirtualAlloc', 'WriteProfileSectionA', 'LoadLibraryA', 'MoveFileA', 'CreateEventW', 'GetModuleHandleA', 'VirtualProtect', 'SetCalendarInfoA', 'SetFilePointer', 'GetCPInfoExW', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'InitializeCriticalSectionAndSpinCount', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ScreenToClient', 'ClearEventLogW'], ['GetProcAddress', 'GetModuleHandleA', 'MultiByteToWideChar', 'GetEnvironmentStringsW', 'QueryPerformanceFrequency', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapFree', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA'], ['HeapFree', 'AddConsoleAliasW', 'LocalFlags', 'GetProcessHeap', 'ReadConsoleW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'GetSystemDirectoryW', 'WideCharToMultiByte', 'LoadLibraryW', 'FreeConsole', 'SetVolumeMountPointA', 'GetVersionExW', 'WriteConsoleW', 'lstrlenW', 'ReplaceFileA', 'ReadConsoleA', 'GetStdHandle', 'SetLastError', 'VirtualAlloc', 'GetAtomNameA', 'LoadLibraryA', 'SetConsoleCtrlHandler', 'GetModuleFileNameA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'GetConsoleTitleW', 'VirtualProtect', 'GetCPInfoExA', 'SetCalendarInfoA', 'ReleaseActCtx', 'GetDefaultCommConfigW', 'CloseHandle', 'CreateFileA', 'GetConsoleOutputCP', 'WriteConsoleA', 'HeapSize', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapAlloc', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetLastError', 'WriteFile', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'FlushFileBuffers', 'ChildWindowFromPoint', 'CoRevokeMallocSpy', 'WinHttpCloseHandle', 'AlphaBlend'], ['AdjustTokenPrivileges', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameA', 'LookupPrivilegeValueA', 'RegCloseKey', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegFlushKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegSetValueExW', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'SelectObject', 'SetStretchBltMode', 'StretchBlt', 'CloseHandle', 'CreateFileW', 'CreateMutexA', 'CreateProcessA', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DeleteFileW', 'EnterCriticalSection', 'ExitProcess', 'ExpandEnvironmentStringsA', 'ExpandEnvironmentStringsW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FreeLibrary', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentProcess', 'GetFileAttributesA', 'GetFileAttributesW', 'GetFileTime', 'GetLastError', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetSystemInfo', 'GetSystemPowerStatus', 'GetSystemTimeAsFileTime', 'GetThreadLocale', 'GetTickCount', 'GetVersionExA', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapFree', 'InitializeCriticalSection', 'InterlockedExchange', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'MultiByteToWideChar', 'OpenMutexA', 'OpenProcess', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'SetFileAttributesW', 'SetFileTime', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TerminateThread', 'TlsGetValue', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'lstrcmpA', 'lstrcpyA', 'lstrlenA', '_stricmp', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'bsearch', 'calloc', 'clock', 'fclose', 'fgetc', 'fopen', 'fputc', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'gmtime', 'localeconv', 'malloc', 'memcpy', 'qsort', 'raise', 'rand', 'realloc', 'setlocale', 'signal', 'srand', 'strlen', 'strtok', 'vfprintf', '_wcsnicmp', '_wtol', 'atoi', 'isalnum', 'mbstowcs', 'memchr', 'memcmp', 'memmove', 'sprintf', 'strcat', 'strchr', 'strcmp', 'strcpy', 'strncmp', 'strncpy', 'strstr', 'strtol', 'swprintf', 'toupper', 'wcscmp', 'wcscpy', 'wcslen', 'wcsncpy', 'wcsstr', 'wcstombs', 'ShellExecuteExW', 'ChildWindowFromPoint', 'CloseDesktop', 'CreateDesktopA', 'EnumDesktopWindows', 'FindWindowA', 'GetClassNameA', 'GetDC', 'GetDesktopWindow', 'GetLastInputInfo', 'GetMenuItemID', 'GetTopWindow', 'GetWindow', 'GetWindowLongA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowTextLengthA', 'GetWindowThreadProcessId', 'IsWindowVisible', 'MenuItemFromPoint', 'MoveWindow', 'OpenDesktopA', 'PostMessageA', 'PtInRect', 'RealGetWindowClassA', 'ReleaseDC', 'ScreenToClient', 'SendMessageA', 'SetThreadDesktop', 'SetWindowLongA', 'WindowFromPoint'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtectEx', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['WriteProfileSectionW', 'GetNumaHighestNodeNumber', 'FindFirstVolumeW', 'SetConsoleCursorInfo', 'HeapLock', 'FindFirstChangeNotificationA', 'WaitForMultipleObjects', 'GetNamedPipeHandleStateW', 'FileTimeToDosDateTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'GetTimeZoneInformation', 'TerminateThread', 'WaitForMultipleObjectsEx', 'GetVersionExW', 'VerifyVersionInfoA', 'GetConsoleOutputCP', 'SetEvent', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasesLengthA', 'GetCompressedFileSizeW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', '_hread', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindVolumeClose', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetWaitableTimer', 'SetComputerNameExA', 'FindAtomA', 'ReleaseSemaphore', 'LocalUnlock', 'CallNamedPipeW', 'VirtualProtect', 'GlobalAlloc', 'TlsGetValue', 'GetCommandLineW', 'InterlockedDecrement', 'CopyFileA', 'AddRefActCtx', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalWire', 'GetVersionExA', 'HeapValidate', 'GetWindowsDirectoryA', 'GetStartupInfoW', 'ConnectNamedPipe', 'GetLastError', 'GetCalendarInfoA', 'GetComputerNameExW', 'SetLastError', 'GetSystemWow64DirectoryW', 'CopyFileExW', 'GetCPInfoExA', 'GetSystemWindowsDirectoryA', 'ContinueDebugEvent', 'InterlockedIncrement', 'CopyFileW', 'GetOEMCP', 'GetConsoleAliasA', 'EnumResourceNamesA', 'lstrlenA', 'LoadLibraryW', 'ReadConsoleA', 'WriteConsoleA', 'GetPrivateProfileSectionNamesA', 'FileTimeToSystemTime', 'GetSystemTimeAsFileTime', 'EnumCalendarInfoExW', 'SetThreadIdealProcessor', 'GetConsoleAliasW', 'GetWindowsDirectoryW', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GetNumaNodeProcessorMask', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'LocalFileTimeToFileTime', 'CheckRemoteDebuggerPresent', 'GetSystemTimeAdjustment', '_lwrite', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'GetWriteWatch', 'GetModuleHandleW', 'GetPrivateProfileStringA', 'GetProfileStringW', 'CreateActCtxA', 'GetUserDefaultLangID', 'IsProcessInJob', 'GetDevicePowerState', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingW', 'GetProcessHandleCount', 'SetUnhandledExceptionFilter', 'SetProcessShutdownParameters', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'SetThreadPriority', 'InitAtomTable', 'AddAtomA', 'CreateFileA', 'WriteConsoleOutputCharacterW', 'InitializeCriticalSection', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'DebugBreak', 'LoadLibraryA', 'UnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'GetProcAddress', 'GetModuleHandleA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'Sleep', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'CloseHandle', 'SetStdHandle', 'GetBitmapBits'], ['GetVolumeNameForVolumeMountPointA', 'GetFullPathNameA', 'GetEnvironmentVariableW', 'HeapReAlloc', 'WriteConsoleOutputCharacterW', 'lstrlenA', 'EnumDateFormatsExW', 'ClearCommError', 'GetQueuedCompletionStatus', 'SetConsoleTextAttribute', 'FindFirstFileExW', 'GetTickCount', 'GetProcessTimes', 'GlobalAlloc', 'SizeofResource', 'EnumSystemCodePagesA', 'GetWriteWatch', 'SetConsoleCursorPosition', 'GetAtomNameW', 'GetModuleFileNameW', 'MultiByteToWideChar', 'IsBadStringPtrA', 'GetLastError', 'SetVolumeLabelW', 'LoadLibraryA', 'GetProcessWorkingSetSize', 'SetFileApisToANSI', 'GetDefaultCommConfigA', 'FindFirstVolumeMountPointA', 'WTSGetActiveConsoleSessionId', 'VirtualProtect', 'CompareStringA', 'SetCalendarInfoA', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'FindNextVolumeA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'HeapFree', 'SetFilePointer', 'CloseHandle', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'WideCharToMultiByte', 'CreateFileA', 'InitializeCriticalSectionAndSpinCount', 'HeapAlloc', 'VirtualAlloc', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetModuleHandleA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'GetCaretPos'], ['WaitNamedPipeW', 'InitializeCriticalSection', 'GlobalAlloc', 'DnsHostnameToComputerNameW', 'WriteConsoleW', 'GetAtomNameW', 'GetMailslotInfo', 'CreateMailslotW', 'RaiseException', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'GetComputerNameW', 'LoadLibraryA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'LoadLibraryExA', 'GetConsoleTitleW', 'WaitForDebugEvent', 'SetCalendarInfoA', 'GetVersionExA', 'ReadConsoleInputW', 'LocalFree', 'SetFileAttributesW', 'LCMapStringW', 'CreateThread', 'UpdateResourceA', 'InterlockedIncrement', 'GetStringTypeA', 'GetLocaleInfoA', 'GetConsoleAliasesLengthW', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'GetCharWidthFloatW', 'RegQueryValueExA', 'CloseEventLog'], ['GetModuleHandleA', 'DefWindowProcW', 'RegOpenKeyExW', '_CorExeMain', 'SHGetDiskFreeSpaceExW', 'ImageList_Create'], ['GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'DisableThreadLibraryCalls', 'QueryPerformanceCounter', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetVersion', 'GetTickCount', 'InterlockedExchange', 'Sleep', 'InterlockedCompareExchange', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'SetUnhandledExceptionFilter', 'DdeQueryStringA', 'DdeGetLastError', 'DdeReconnect', 'DdeAbandonTransaction', 'DdeFreeDataHandle', 'DdeClientTransaction', 'DdeUninitialize', 'DdeDisconnect', 'DdeUnaccessData', 'DdeAccessData', 'DdeFreeStringHandle', 'DdeDisconnectList', 'DdeQueryNextServer', 'DdeCmpStringHandles', 'DdePostAdvise', 'DdeCreateDataHandle', 'DdeNameService', 'DdeCreateStringHandleA', 'DdeInitializeA'], ['MessageBoxW', 'GetSystemMetrics', 'GetSysColorBrush', 'FindWindowA', 'FreeLibrary', 'CreateFileW', 'HeapSize', 'GetProcessHeap', 'SetStdHandle', 'VirtualAlloc', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetLastError', 'GetCurrentProcessId', 'GetConsoleWindow', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'SetEnvironmentVariableW', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'WriteConsoleW', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW'], ['SetFileAttributesW', 'GetFileTime', 'QueryDosDeviceW', 'GetACP', 'LocalFree', 'CloseHandle', 'SizeofResource', 'VirtualProtect', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'VirtualFree', 'GetFullPathNameW', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'SetFilePointerEx', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'FileTimeToLocalFileTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'FindResourceW', 'CreateThread', 'CompareStringW', 'GetFileSizeEx', 'LoadLibraryA', 'ResetEvent', 'GetVolumeInformationW', 'FreeResource', 'GetVersion', 'GetDriveTypeW', 'RaiseException', 'MoveFileW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'LoadLibraryExW', 'LockResource', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'GetThreadPriority', 'SetThreadPriority', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'GetTempPathW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'LCMapStringW', 'VerSetConditionMask', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'CreateMutexA', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'ExitThread', 'DeleteCriticalSection', 'TlsGetValue', 'GetDateFormatW', 'SetErrorMode', 'GetComputerNameW', 'IsValidLocale', 'TlsSetValue', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'CreateEventW', 'SetThreadLocale', 'GetThreadLocale', 'gethostbyaddr', 'WSAStartup', 'closesocket', 'socket', 'WSAIoctl', 'ShellExecuteW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'CharUpperBuffA', 'CharUpperBuffW', 'CharNextW', 'MsgWaitForMultipleObjects', 'CharLowerBuffW', 'LoadStringW', 'CharUpperW', 'PeekMessageW', 'GetSystemMetrics', 'GetKeyboardLayoutList', 'MessageBoxW', 'GetIpNetTable', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'SafeArrayCreate', 'NetWkstaGetInfo', 'NetApiBufferFree', 'NetShareEnum', 'RegSetValueExW', 'RegOpenKeyW', 'RegQueryValueExW', 'GetUserNameW', 'RegCloseKey', 'RegOpenKeyExW'], ['GetModuleHandleA', 'RegisterClassExW', 'RegCloseKey', 'PathMakeUniqueName', 'ImageList_Create', '_CorExeMain'], ['LCMapStringW', 'MessageBoxW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['WTSEnumerateSessionsA', 'WTSFreeMemory', 'CloseHandle', 'GetVersionExA', 'GetModuleFileNameA', 'GetLastError', 'CreateProcessA', 'CreateEventA', 'Sleep', 'SetEvent', 'WaitForSingleObject', 'GetCurrentProcess', 'SetLastError', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'GetCommandLineA', 'HeapFree', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'HeapSize', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'CloseServiceHandle', 'RegCloseKey', 'ControlService', 'GetLengthSid', 'OpenSCManagerA', 'SetServiceStatus', 'QueryServiceStatus', 'DuplicateTokenEx', 'RegOpenKeyExA', 'ReportEventA', 'RegisterServiceCtrlHandlerExA', 'SetTokenInformation', 'DeregisterEventSource', 'CreateServiceA', 'RegQueryValueExA', 'DeleteService', 'StartServiceCtrlDispatcherA', 'CreateProcessAsUserA', 'OpenServiceA', 'RegisterEventSourceA', 'OpenProcessToken'], ['ExitProcess', 'GetCommandLineA', 'GetModuleHandleA', 'GetStartupInfoA', 'SetUnhandledExceptionFilter', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'atexit', 'malloc', 'signal', 'strcmp'], ['SizeofResource', 'LoadResource', 'FindResourceA', 'lstrlenA', 'CreateThread', 'Sleep', 'VirtualAlloc', 'SetStdHandle', 'WriteConsoleW', 'CloseHandle', 'HeapSize', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'GetLastError', 'MultiByteToWideChar', 'GetCurrentThreadId', 'FlsSetValue', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'EncodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'GetCurrentThread', 'FlsAlloc', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'DecodePointer', 'TerminateProcess', 'GetCurrentProcess', 'WideCharToMultiByte', 'LCMapStringW', 'RtlUnwindEx', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'FatalAppExitA', 'GetUserDefaultLCID', 'GetLocaleInfoW', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'HeapAlloc', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'FreeLibrary', 'LoadLibraryW', 'WriteFile', 'GetModuleFileNameW', 'GetConsoleCP', 'CreateFileW', 'PropVariantClear', 'CLSIDFromString', 'SetErrorInfo', 'SafeArrayAccessData', 'CreateErrorInfo'], ['GetModuleHandleA', 'CreateCursor', 'GetUserNameW', 'PathMakeUniqueName', 'PropertySheet', '_CorExeMain'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBoxW', 'VariantChangeTypeEx', 'RaiseException'], ['LoadLibraryA', 'GetPrivateProfileIntA', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'LocalFileTimeToFileTime', 'EnumResourceTypesA', 'EnumResourceNamesW', 'FillConsoleOutputCharacterA', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoA', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigW', 'VerLanguageNameA', 'GetCommConfig', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'ResetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'VerifyVersionInfoW', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'SearchPathW', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'TerminateThread', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'SetCalendarInfoW', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'GetConsoleAliasExesLengthA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetPrivateProfileIntW', 'ReadConsoleInputW', 'OutputDebugStringW', 'EnumResourceTypesW', 'lstrlenA', 'WriteConsoleW', 'OpenMutexW', 'GetThreadContext', 'DeleteCriticalSection', 'ConvertFiberToThread', 'FreeEnvironmentStringsW', 'SetProcessPriorityBoost', 'LockFile', 'GetConsoleCP', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', 'EnumSystemLocalesA', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetFileSizeEx', 'GetConsoleAliasesLengthW', 'GetProcessShutdownParameters', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetNumberFormatA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffW'], ['FreeLibrary', 'GetCurrentProcess', 'SetDefaultCommConfigW', 'CreateJobObjectW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GlobalAlloc', 'LoadLibraryW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetSystemDirectoryA', 'GetBinaryTypeW', 'FindResourceW', 'InterlockedExchange', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'LoadLibraryA', 'MoveFileA', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'SetFileAttributesW', 'SetConsoleTitleA', 'GetConsoleAliasesLengthW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'CreateFileW', 'CloseHandle', 'GetStringTypeW', 'LCMapStringW', 'ImpersonateAnonymousToken'], ['wnsprintfW', 'StrStrW', 'StrStrIW', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum', 'ReadFile', 'GetLogicalDrives', 'FindFirstFileW', 'GetFileSizeEx', 'FindNextFileW', 'lstrlenW', 'WriteFile', 'ExpandEnvironmentStringsW', 'TerminateProcess', 'GetUserDefaultLangID', 'GetModuleFileNameW', 'WaitForMultipleObjects', 'GetTempPathW', 'FindClose', 'CreateFileW', 'HeapAlloc', 'CreateToolhelp32Snapshot', 'GetLastError', 'Process32NextW', 'lstrcatW', 'Process32FirstW', 'CloseHandle', 'GetWindowsDirectoryW', 'SetFilePointerEx', 'GetFileSize', 'ExitProcess', 'CreateProcessW', 'lstrcpyW', 'GetTempFileNameW', 'lstrcmpiW', 'lstrcmpW', 'MoveFileW', 'HeapFree', 'lstrlenA', 'GetProcessHeap', 'OpenProcess', 'CreateThread', 'SystemParametersInfoW', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'CryptGenRandom', 'CryptReleaseContext', 'GetTokenInformation', 'CryptDestroyKey', 'CryptAcquireContextA', 'CryptEncrypt', 'CryptImportKey', 'CryptExportKey', 'CryptGenKey', 'SHGetFolderPathW', 'ShellExecuteW'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'HeapFree', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetFileAttributesW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'SetComputerNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'SetCalendarInfoW', 'AddAtomW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'WriteConsoleW', 'CloseHandle', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'DefDlgProcW'], ['FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'ReadConsoleW', 'CreateDirectoryExW', 'GetSystemDirectoryW', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'CreateEventA', 'LeaveCriticalSection', 'LocalHandle', 'GetBinaryTypeW', 'CompareStringW', 'lstrlenW', 'ReplaceFileA', 'FreeLibraryAndExitThread', 'SetLastError', 'MapViewOfFile', 'AttachConsole', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'VirtualProtect', 'GetCPInfoExA', 'CloseHandle', 'BindIoCompletionCallback', 'SetFilePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'WriteFile', 'GetStdHandle', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapFree', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'LoadLibraryA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'ClientToScreen'], ['InterlockedIncrement', 'InterlockedDecrement', 'SetMailslotInfo', 'SetEvent', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'CreateRemoteThread', 'GlobalAlloc', 'LoadLibraryW', 'GetLocaleInfoW', 'SwitchToFiber', 'Sleep', 'GetCalendarInfoW', 'GetVersionExW', 'IsBadStringPtrA', 'GetStringTypeExA', 'LCMapStringA', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'GetAtomNameA', 'LoadLibraryA', 'UnhandledExceptionFilter', 'DnsHostnameToComputerNameA', 'FoldStringA', 'GetModuleFileNameA', 'SetConsoleTitleW', 'UpdateResourceW', 'GetFileTime', 'DeleteFileW', 'SetFileAttributesW', 'VirtualQuery', 'GetDefaultCommConfigW', 'GetComputerNameA', 'CreateFileA', 'GetLastError', 'HeapFree', 'GetModuleHandleW', 'ExitProcess', 'GetStartupInfoW', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'CloseHandle', 'WriteFile', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleHandleA', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'FlushFileBuffers', 'HeapSize', 'GetLocaleInfoA', 'RaiseException', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration', 'AlphaBlend'], ['lstrcpyA', 'WaitForMultipleObjectsEx', 'CreateEventA', 'CreateWaitableTimerA', 'SetWaitableTimer', 'CancelWaitableTimer', 'GetModuleHandleW', 'FindResourceA', 'GetVersionExA', 'VerifyVersionInfoW', 'MultiByteToWideChar', 'WriteConsoleW', 'SetFilePointerEx', 'HeapReAlloc', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'CreatePipe', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'DecodePointer', 'GetFileType', 'LCMapStringW', 'HeapFree', 'GetACP', 'ExitProcess', 'WideCharToMultiByte', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'FreeLibrary', 'TlsFree', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemInfo', 'GetLocalTime', 'GetSystemTime', 'MulDiv', 'Beep', 'SetHandleInformation', 'CloseHandle', 'LoadResource', 'Sleep', 'WaitForSingleObject', 'SetEvent', 'GetLastError', 'HeapAlloc', 'HeapCreate', 'LocalFree', 'GetProcAddress', 'LocalAlloc', 'VerSetConditionMask', 'TlsSetValue', 'CreateFileW', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualQuery', 'EncodePointer', 'SetLastError', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'wsprintfA', 'ExitWindowsEx', 'DefWindowProcA', 'DefWindowProcW', 'SendMessageA', 'PostQuitMessage', 'CallWindowProcA', 'EnumDisplaySettingsA', 'LoadIconA', 'LoadCursorA', 'FindWindowExA', 'FindWindowA', 'GetParent', 'SetClassLongA', 'SetWindowLongA', 'FillRect', 'GetSysColorBrush', 'GetSysColor', 'HideCaret', 'GetCursorPos', 'SetCursor', 'MessageBoxA', 'GetWindowRect', 'GetClientRect', 'GetWindowTextW', 'SetScrollRange', 'SetScrollPos', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'SetForegroundWindow', 'SwitchToThisWindow', 'SetMenuDefaultItem', 'GetMenuItemInfoA', 'InsertMenuItemA', 'TrackPopupMenu', 'AppendMenuA', 'GetSubMenu', 'CreatePopupMenu', 'LoadMenuA', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItem', 'CreateDialogIndirectParamA', 'BringWindowToTop', 'SetWindowPos', 'MoveWindow', 'ShowWindow', 'DestroyWindow', 'CreateWindowExA', 'GetClassInfoA', 'UnregisterClassA', 'RegisterClassW', 'TextOutW', 'TextOutA', 'CreateDIBSection', 'GetTextMetricsA', 'SetTextAlign', 'SetTextColor', 'SetBkColor', 'SelectObject', 'GetTextExtentPoint32A', 'GetTextExtentPointA', 'GetStockObject', 'GetDeviceCaps', 'DeleteObject', 'DeleteDC', 'CreateICA', 'CreateFontIndirectA', 'CreateCompatibleDC', 'ExtTextOutW', 'ChooseFontA', 'CoCreateInstance', 'CoInitialize', 'SafeArrayCreateVector', 'SafeArrayAccessData', 'SafeArrayDestroy', 'SysAllocString', 'OleLoadPicturePath', 'gethostname', 'NetApiBufferFree', 'NetWkstaTransportEnum', 'NetWkstaUserEnum', 'NetWkstaUserGetInfo', 'NetWkstaSetInfo', 'NetWkstaGetInfo', 'UnregisterGPNotification', 'UnloadUserProfile', 'glGetIntegerv', 'glTexImage2D', 'glBindTexture', 'glGenTextures', 'glTexParameteri', 'SetupDiDestroyDeviceInfoList', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInfo'], ['GetProcAddress', 'GetModuleHandleW', 'Sleep', 'RtlUnwindEx', 'GetCurrentThreadId', 'FlsSetValue', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'SetLastError', 'GetLastError', 'FlsAlloc', 'HeapFree', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'HeapReAlloc', 'WriteFile', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'HeapSize'], ['SetConsoleTextAttribute', 'CreateDirectoryExA', 'CallNamedPipeW', 'GetTickCount', 'CreateDirectoryExW', 'GlobalAlloc', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputA', 'FreeConsole', 'GetFileAttributesA', 'SetSystemPowerState', 'DisconnectNamedPipe', 'VirtualQuery', 'MoveFileW', 'DisableThreadLibraryCalls', 'GetConsoleScreenBufferInfo', 'GetFileType', 'GetNumberFormatW', 'GetPrivateProfileSectionNamesA', 'ContinueDebugEvent', 'FreeEnvironmentStringsW', 'FindNextFileW', 'BuildCommDCBA', 'VirtualProtect', 'GetFileTime', 'DeleteFileW', 'GetFileInformationByHandle', 'EnumResourceNamesW', 'GetPrivateProfileIntW', 'ExitProcess', 'CreateFileW', 'FlushFileBuffers', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'IsDebuggerPresent', 'GetLastError', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetStdHandle', 'DeleteCriticalSection', 'GetStartupInfoW', 'HeapAlloc', 'SetLastError', 'GetCurrentThreadId', 'GetProcessHeap', 'GetModuleFileNameA', 'WriteFile', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetConsoleCP', 'SetFilePointerEx', 'HeapReAlloc', 'LCMapStringW', 'ReadFile', 'ReadConsoleW', 'OutputDebugStringW', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleW', 'CloseHandle', 'GetEnhMetaFileHeader', 'SetICMProfileA', 'TransparentBlt'], ['DeleteFileA', 'CloseHandle', 'VirtualProtect', 'LoadLibraryA', 'ResetEvent', 'VirtualAlloc', 'GetStartupInfoA', 'CreateDirectoryA', 'GetEnvironmentVariableA', 'CreateProcessA', 'CreateSemaphoreA', 'Sleep', 'VirtualFree', 'GetTickCount', 'GetCurrentProcess', 'GetLastError', 'GetCurrentThreadId', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetFileType', 'CreateFileA', 'SetHandleCount', 'GetStdHandle', 'DeleteCriticalSection', 'SetStdHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProcAddress', 'GetModuleHandleA', 'ExitProcess', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'SetEndOfFile', 'MultiByteToWideChar', 'ReadFile', 'InitializeCriticalSection', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'WinVerifyTrust', 'SetClusterGroupNodeList', 'SetClusterNetworkName', 'SetClusterNetworkPriorityOrder', 'RemoveClusterResourceDependency', 'SetClusterGroupName', 'SetClusterResourceName', 'SetClusterQuorumResource', 'PauseClusterNode', 'RemoveClusterResourceNode', 'OpenClusterNode', 'RestoreClusterDatabase', 'RegisterClusterNotify', 'ResumeClusterNode', 'OpenClusterResource', 'OpenClusterNetwork', 'SetClusterName', 'OpenClusterNetInterface'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'VariantClear', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['FileTimeToDosDateTime', 'TerminateProcess', 'ReleaseActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigW', 'SetCommConfig', 'GetDriveTypeA', 'FreeEnvironmentStringsW', 'CreateTimerQueue', 'FindNextVolumeW', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsGetValue', 'SetComputerNameExA', 'FindAtomW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'InitializeCriticalSection', 'GetCommandLineA', 'InterlockedIncrement', 'CopyFileA', 'ZombifyActCtx', 'OutputDebugStringW', 'FormatMessageA', 'GetPriorityClass', 'WritePrivateProfileStringA', 'ExitThread', 'GlobalUnfix', 'HeapCompact', 'GetStartupInfoW', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'SetLastError', 'WriteProfileSectionW', 'GetCalendarInfoW', 'ResumeThread', 'SetConsoleCursorInfo', 'GetLastError', 'DebugActiveProcess', 'lstrcmpA', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntW', '_lread', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'VirtualProtect', 'InterlockedPushEntrySList', 'DeleteCriticalSection', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'GetVolumePathNameA', 'GetConsoleMode', 'HeapSetInformation', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'FindResourceExA', 'EnumDateFormatsA', 'GetSystemTime', 'GetSystemInfo', 'EnumCalendarInfoExW', 'GetPrivateProfileStructA', 'OpenSemaphoreW', 'GetMailslotInfo', 'lstrcpyA', 'VerLanguageNameA', 'SetThreadExecutionState', 'SetSystemTime', 'GetFileType', 'GetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'GetConsoleAliasExesLengthA', 'CreateMailslotA', 'EnumDateFormatsW', 'SetCommState', 'LockFile', '_lopen', 'GetConsoleAliasExesLengthW', 'ResetWriteWatch', 'CreateConsoleScreenBuffer', 'ClearCommBreak', 'GetOverlappedResult', 'WriteConsoleInputW', 'ChangeTimerQueueTimer', 'HeapSize', 'GetConsoleDisplayMode', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToOEM', 'OpenWaitableTimerW', 'GetProcessId', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringA', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'QueryDosDeviceA', 'InitAtomTable', 'GetBinaryTypeA', 'LeaveCriticalSection', 'VirtualAlloc', 'CreateFileA', 'MoveFileA', 'RaiseException', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'GetModuleFileNameW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'CloseHandle', 'OemToCharA', 'WinHttpReadData'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'WriteProfileSectionA', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetConsoleAliasA', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'ReadConsoleW', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthA', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'GetSystemWindowsDirectoryW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetCharWidth32A'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoExW', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'PtInRect', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'GetComboBoxInfo', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DrawTextExW', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'GetClassNameW', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'IsRectEmpty', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'GetMenuItemRect', 'CreateIconIndirect', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'MapVirtualKeyW', 'OffsetRect', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'SetScrollPos', 'GetScrollPos', 'InflateRect', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'ScrollWindow', 'GetLastActivePopup', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'GetDlgItem', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'CreateIcon', 'RemoveMenu', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SysFreeString', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysReAllocStringLen', 'SafeArrayCreate', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'VirtualQuery', 'GlobalFindAtomW', 'VirtualQueryEx', 'GlobalFree', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GetStartupInfoW', 'GlobalDeleteAtom', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'ResizePalette', 'SetAbortProc', 'SetTextColor', 'GetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'GetBkMode', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetCurrentObject', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'SetGraphicsMode', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'GetViewportOrgEx', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'BitBlt', 'SetWorldTransform', 'FrameRgn', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'CombineRgn', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'ExtCreateRegion', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetNearestPaletteIndex', 'CreateRoundRectRgn', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetTickCount', 'RegDeleteKeyA', 'ImageList_GetIconSize', 'GetFileTitleA', 'GetTextExtentPoint32A', 'GdipGetImageHeight', 'ImmGetOpenStatus', 'TransparentBlt', 'OleCreateMenuDescriptor', 'LresultFromObject', 'SysStringLen', 'SHGetPathFromIDListA', 'PathIsUNCA', 'EndDeferWindowPos', 'PlaySoundA', 'OpenPrinterA', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GetCurrentHwProfileA', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteObject', 'SelectObject', 'GdipAlloc', 'GdipCloneImage', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipFree', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipSaveImageToFile', 'GdiplusShutdown', 'GdiplusStartup', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DeleteFileA', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '___mb_cur_max_func', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_lock', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'feof', 'ferror', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'getc', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strerror', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'wcscmp', 'wcslen', 'GetDC', 'GetSystemMetrics', 'ReleaseDC', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetConnectA', 'InternetOpenA', 'InternetReadFile'], ['GetDefaultCommConfigW', 'InterlockedIncrement', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'ReadConsoleW', 'SetFileTime', 'LoadLibraryW', 'GetLocaleInfoW', 'SwitchToFiber', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'WriteConsoleW', 'CreateActCtxA', 'GetTempPathW', 'VerifyVersionInfoW', 'GetStdHandle', 'GetLongPathNameW', 'GetProcAddress', 'VirtualAlloc', 'HeapSize', 'GetStringTypeA', 'WriteProfileSectionA', 'EnterCriticalSection', 'SetFileAttributesA', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'MoveFileA', 'GlobalGetAtomNameW', 'GetModuleFileNameA', 'LoadLibraryExA', 'GetConsoleTitleW', 'GetFileTime', 'SetCalendarInfoA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'LCMapStringW', 'GetLocaleInfoA', 'GetSystemDefaultLangID', 'GetVolumeNameForVolumeMountPointA', 'PeekConsoleInputW', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'HeapFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'MultiByteToWideChar', 'GetStringTypeW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'GetCharWidthFloatA', 'WinHttpSetDefaultProxyConfiguration'], ['Sleep', 'GetSystemDirectoryA', 'GetModuleFileNameA', 'VirtualProtect', 'GetTempPathA', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCurrentThreadId', 'GetCommandLineA', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'LCMapStringW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'HeapDestroy', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'GetLocaleInfoW', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'HeapReAlloc', 'LoadLibraryW', 'WriteConsoleW', 'SetStdHandle', 'CreateFileW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'OpenProcess', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetFolderPathA'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetLastError', 'lstrcmpA', 'lstrlenA', 'lstrcatA', 'GetCurrentThread', 'GetVersion', 'GetCurrentThreadId', 'GetProcessId', 'GetACP', 'InitCommonControls', 'OleUninitialize', 'OleInitialize', 'AddPrintProcessorW', 'GetOleaccVersionInfo', 'SHGetDiskFreeSpaceA'], ['SetDefaultCommConfigA', 'SearchPathW', 'EnumCalendarInfoA', 'GetDriveTypeW', 'AllocConsole', 'GetProfileIntW', 'GetConsoleAliasExesLengthA', 'InterlockedDecrement', 'GetProfileSectionA', 'SetVolumeMountPointW', 'FreeEnvironmentStringsA', 'MoveFileWithProgressA', 'GetTickCount', 'GetSystemTimeAsFileTime', 'EnumTimeFormatsA', 'GetUserDefaultLangID', 'ActivateActCtx', 'GetPrivateProfileIntA', 'AddRefActCtx', 'WideCharToMultiByte', 'LoadLibraryW', 'IsProcessInJob', 'GetCalendarInfoA', 'GetStringTypeExW', 'GetFileAttributesW', 'GetModuleFileNameW', 'CreateFileW', 'GetOverlappedResult', 'CompareStringW', 'GetVolumePathNameA', 'EnumSystemLocalesA', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'HeapSize', 'SetComputerNameA', 'GetTempFileNameA', 'SetFileApisToOEM', 'WriteConsoleA', 'LocalAlloc', 'SetCalendarInfoW', 'RemoveDirectoryW', 'BeginUpdateResourceA', 'AddAtomA', 'FindFirstVolumeMountPointA', 'GetModuleHandleA', 'lstrcatW', 'FreeEnvironmentStringsW', 'FindNextFileW', 'SetThreadAffinityMask', 'FileTimeToLocalFileTime', 'GetVolumeNameForVolumeMountPointW', 'DeleteFileW', 'DeleteAtom', 'DeleteFileA', 'InterlockedIncrement', 'EncodePointer', 'DecodePointer', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'IsProcessorFeaturePresent', 'HeapCreate', 'GetModuleHandleW', 'ExitProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'IsValidLocale', 'GetStringTypeW', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle'], ['CloseHandle', 'WriteFile', 'CreateFileA', 'GetProcAddress', 'LoadLibraryA', 'GetModuleFileNameA', 'MultiByteToWideChar', 'CreateDirectoryW', 'CreateProcessA', 'CopyFileA', 'Sleep', 'CreateDirectoryA', 'GetTempPathA', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryA', 'LocalFileTimeToFileTime', 'GetFileAttributesA', 'SetFileTime', 'SetStdHandle', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetVersion', 'ExitProcess', 'SetUnhandledExceptionFilter', 'HeapSize', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'GetModuleHandleA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'DisableThreadLibraryCalls', 'GetLastError', 'FlushFileBuffers', 'IsBadReadPtr', 'IsBadCodePtr', 'wsprintfA', 'ShellExecuteA', 'PathStripPathA'], ['CreateFileA', 'AddAtomW', 'GetConsoleWindow', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetProcAddress', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'GetCPInfo', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'ExitProcess', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LoadLibraryA', 'GetLocaleInfoW', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetDesktopWindow', 'GetWindowThreadProcessId', 'ShowWindow', 'GetObjectA', 'GetStockObject', 'DeleteObject', 'SetBkMode', 'SetTextColor', 'CreateFontIndirectA', 'SelectObject', 'RegDeleteKeyA'], ['DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WideCharToMultiByte', '__dllonexit', '__mb_cur_max', '_amsg_exit', '_errno', '_initterm', '_iob', '_lock', '_onexit', '_strnicmp', 'fputc', 'free', 'fwrite', 'getenv', 'isspace', 'localeconv', 'malloc', 'memcpy', 'memset', 'setlocale', 'strchr', 'strerror', 'strlen', 'strncmp', '_unlock', 'abort', 'atoi', 'vfprintf', 'wcslen', 'calloc'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegEnumKeyW', 'ImageList_Add', 'PrintDlgW', 'Direct3DCreate9', 'Pie', 'memchr', 'NetWkstaGetInfo', 'OleDraw', 'VariantInit', 'SetupDiGetClassDevsA', 'ShellExecuteW', 'URLDownloadToFileW', 'GetDC', 'VerQueryValueW', 'timeGetTime', 'GetPrinterW'], ['PathMakeUniqueName', '_CorExeMain', 'GetUserNameA', 'GetDlgItem', 'GetModuleHandleA'], ['Process32First', 'Sleep', 'CreateProcessA', 'GetSystemDirectoryA', 'Process32Next', 'GetModuleFileNameA', 'GetModuleHandleA', 'VirtualProtect', 'CreateToolhelp32Snapshot', 'CloseHandle', 'GetCurrentProcessId', 'GetSystemTime', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'HeapCreate', 'HeapDestroy', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'MultiByteToWideChar', 'ReadFile', 'SetHandleCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'SetFilePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryW', 'CreateFileA', 'SetStdHandle', 'IsProcessorFeaturePresent', 'FlushFileBuffers', 'HeapReAlloc', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeW', 'HeapSize', 'SetEndOfFile', 'GetProcessHeap', 'CreateFileW', 'GetFileAttributesA'], ['GetModuleHandleA', 'UpdateWindow', 'RegCloseKey', '_CorExeMain', 'SHGetIconOverlayIndexA', 'ImageList_SetBkColor'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVolumeInformationA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLogicalDrives', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'WNetGetConnectionA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder', 'ChooseColorA', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['RegCloseKey', 'ImageList_Add', 'SaveDC', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'VariantCopy', 'SHGetSpecialFolderPathA', 'GetDC', 'VerQueryValueA'], ['EndDialog', 'GetSystemMetrics', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcW', 'DestroyWindow', 'DialogBoxParamW', 'UpdateWindow', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'LoadIconW', 'DispatchMessageW', 'TranslateMessage', 'TranslateAcceleratorW', 'GetMessageW', 'LoadAcceleratorsW', 'LoadStringW', 'GetProcAddress', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'MultiByteToWideChar', 'LCMapStringW', 'WideCharToMultiByte', 'HeapReAlloc', 'RtlUnwind', 'LoadLibraryW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'DecodePointer', 'HeapAlloc', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapFree', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'HeapSize', 'LeaveCriticalSection', 'EnterCriticalSection'], ['GetModuleHandleA', 'GetCursor', 'RegQueryValueA', 'SHGetIconOverlayIndexA', '_CorExeMain', 'InitMUILanguage'], ['ClearEventLogW', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'ScreenToClient'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'InitCommonControls'], ['memset', 'memcpy', '_aullrem', '_aulldvrm', '_snwprintf', 'RtlNtStatusToDosError', '_snprintf', 'memmove', 'strncmp', 'memcmp', 'strcmp', 'mbstowcs', '_allshl', '_allrem', '_allmul', '_alldiv', '_aullshr', '_alldvrm', '_aulldiv', 'StrChrA', 'StrCmpNA', 'StrStrIA', 'PathCombineW', 'StrStrA', 'PathFindFileNameW', 'StrChrW', 'StrRChrA', 'StrStrW', 'CryptUnprotectData', 'CryptStringToBinaryA', 'LocalFree', 'HeapAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'HeapFree', 'SetEvent', 'Sleep', 'CreateEventA', 'HeapDestroy', 'HeapCreate', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'CloseHandle', 'CreateThread', 'SwitchToThread', 'FindFirstFileW', 'lstrlenA', 'GetCurrentDirectoryW', 'FindClose', 'SetCurrentDirectoryW', 'FindNextFileW', 'lstrcpyW', 'WaitForSingleObject', 'GetVersion', 'WideCharToMultiByte', 'GetCurrentProcessId', 'ExpandEnvironmentStringsW', 'OpenProcess', 'TerminateProcess', 'SetLastError', 'Process32FirstW', 'Process32NextW', 'lstrcmpiW', 'CreateToolhelp32Snapshot', 'GetFileSize', 'FreeLibrary', 'LoadLibraryW', 'LeaveCriticalSection', 'GetFileAttributesA', 'GetFileAttributesW', 'ReadFile', 'CreateFileW', 'GetProcAddress', 'EnterCriticalSection', 'LoadLibraryA', 'AreFileApisANSI', 'GetSystemTime', 'GetTempPathA', 'lstrlenW', 'OutputDebugStringA', 'GetCurrentThreadId', 'MultiByteToWideChar', 'DeleteFileW', 'GetVersionExA', 'DeleteCriticalSection', 'GetFileAttributesExW', 'GetSystemInfo', 'GetDiskFreeSpaceA', 'DeleteFileA', 'CreateFileMappingW', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'LockFileEx', 'HeapSize', 'GetTempPathW', 'FlushFileBuffers', 'HeapValidate', 'GetVersionExW', 'FormatMessageW', 'InitializeCriticalSection', 'WriteFile', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'GetProcessHeap', 'UnlockFileEx', 'GetTickCount', 'OutputDebugStringW', 'LockFile', 'UnlockFile', 'InterlockedCompareExchange', 'QueryPerformanceCounter', 'SystemTimeToFileTime', 'SetEndOfFile', 'LocalAlloc', 'GetFullPathNameW', 'GetFullPathNameA', 'HeapReAlloc', 'CreateFileA', 'CreateMutexW', 'HeapCompact', 'SetFilePointer', 'TryEnterCriticalSection', 'MapViewOfFile', 'UnmapViewOfFile', 'RegQueryValueExW', 'CryptHashData', 'RegCloseKey', 'CryptDestroyHash', 'RegOpenKeyA', 'CryptCreateHash', 'CryptAcquireContextA', 'CryptReleaseContext', 'CryptGetHashParam', 'CreateStreamOnHGlobal'], ['GetModuleHandleA', 'DeleteFileA', 'CreateThread', 'LCMapStringW', 'GetStringTypeW', 'FindNextFileA', 'ReadFile', 'GetProcessHeap', 'SetEndOfFile', 'HeapReAlloc', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LoadLibraryW', 'LockResource', 'LoadLibraryA', 'FindClose', 'RemoveDirectoryA', 'GetProcAddress', 'FindFirstFileA', 'GetSystemDirectoryA', 'SizeofResource', 'LoadResource', 'Sleep', 'FindResourceA', 'CreateFileW', 'ExitProcess', 'HeapSize', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'EncodePointer', 'DecodePointer', 'RtlUnwind', 'WriteFile', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'CloseHandle', 'GetModuleHandleW', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'CreateFileA', 'SetFilePointer', 'WriteConsoleW', 'MultiByteToWideChar', 'SetStdHandle', 'FlushFileBuffers', 'MoveWindow', 'GetMessageA', 'PostQuitMessage', 'LoadBitmapA', 'LoadIconA', 'GetDC', 'TranslateMessage', 'CreateWindowExA', 'DefWindowProcA', 'ShowWindow', 'DispatchMessageA', 'SystemParametersInfoA', 'GetSystemMetrics', 'LoadCursorA', 'RegisterClassA', 'SetPixel', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Ellipse', 'CreatePatternBrush', 'GetPixel', 'CreateSolidBrush', 'StretchBlt', 'CryptAcquireContextA', 'CryptGenRandom', 'SHDeleteKeyA', 'PlaySoundA'], ['GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'QueryDepthSList', 'GetVersionExW', 'VerifyVersionInfoW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExW', 'FindAtomA', 'GlobalDeleteAtom', 'SetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'LocalAlloc', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetSystemWindowsDirectoryW', 'GetACP', 'FindNextVolumeW', 'CreateActCtxA', 'GetConsoleAliasW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'ReadConsoleW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'GetCurrentActCtx', 'WriteProfileSectionA', 'SetLocaleInfoA', 'GetPrivateProfileStringW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetListBoxInfo', 'GetCharWidth32A', 'ImpersonateSelf'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'GetCurrentProcessId', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetTimeFormatW', 'GetDateFormatW', 'LocalFree', 'GetCurrentProcess', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'GetOEMCP', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetCommandLineA', 'VariantClear', 'GdipCreateBitmapFromStream', 'GdipAlloc', 'GdipCloneImage', 'GdipDisposeImage', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'QueryDepthSList', 'GetVersionExW', 'VerifyVersionInfoW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExW', 'FindAtomA', 'GlobalDeleteAtom', 'SetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'LoadLibraryW', 'LocalAlloc', 'InterlockedDecrement', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLangID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoA', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'GetSystemWindowsDirectoryW', 'GetACP', 'FindNextVolumeW', 'CreateActCtxA', 'GetConsoleAliasW', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'RaiseException', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'ReadConsoleW', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeA', 'GetCurrentActCtx', 'InitializeCriticalSection', 'WriteProfileSectionA', 'SetLocaleInfoA', 'GetPrivateProfileStringW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetListBoxInfo', 'GetCharWidth32A', 'ImpersonateSelf'], ['ReadFile', 'FindNextVolumeMountPointA', 'SetEndOfFile', 'FindAtomA', 'GetEnvironmentVariableA', 'CreateFileA', 'ExitProcess', 'VirtualAlloc', 'MapViewOfFile', 'lstrcatA', 'CreateFileMappingA', 'acmFormatTagEnumA', 'acmDriverClose', 'acmDriverAddA', 'acmFilterEnumA', 'acmFilterTagDetailsW', 'acmFilterDetailsA', 'acmFilterChooseW', 'DeferWindowPos', 'LoadCursorFromFileA', 'MapVirtualKeyExA', 'DdeKeepStringHandle', 'wvsprintfW', 'GetWindowTextW', 'ResUtilSetExpandSzValue', 'ResUtilDupString', 'ResUtilStopService', 'ResUtilEnumProperties', 'ResUtilGetBinaryProperty', 'ResUtilGetSzProperty', 'ResUtilStopResourceService', 'ResUtilVerifyPrivatePropertyList', 'GopherGetLocatorTypeW', 'InternetCheckConnectionW', 'SetUrlCacheConfigInfoA', 'HttpQueryInfoA', 'GopherGetLocatorTypeA', 'InternetHangUp', 'RetrieveUrlCacheEntryFileW', 'HttpSendRequestExW', 'WNetGetLastErrorW', 'WNetConnectionDialog', 'WNetGetUniversalNameW', 'WNetCancelConnection2W', 'WNetGetUserA', 'RtmBlockConvertRoutesToStatic', 'RtmDeleteRouteTable', 'RtmGetRouteAge', 'RtmDeleteRoute', 'RtmCreateEnumerationHandle', 'RtmRegisterClient', 'MgmReleaseInterfaceOwnership'], ['VirtualAlloc', 'GetCurrentProcess', 'GetProcAddress', 'FreeLibrary', 'VirtualQuery', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetLastError', 'GetModuleHandleW', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RaiseException', 'IsDebuggerPresent', 'GetCurrentThreadId', 'TerminateProcess', '__std_type_info_destroy_list', '__current_exception', '__current_exception_context', 'memset', '_except_handler4_common', '__vcrt_GetModuleFileNameW', '__vcrt_GetModuleHandleW', '__vcrt_LoadLibraryExW', 'memcpy', '_exit', '_seh_filter_dll', '_initialize_onexit_table', '_register_onexit_function', '_execute_onexit_table', '_crt_atexit', '_crt_at_quick_exit', '_controlfp_s', 'terminate', '_wmakepath_s', '_wsplitpath_s', 'strcpy_s', '__stdio_common_vsprintf_s', 'exit', '_initterm_e', '_initterm', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '_set_app_type', '_seh_filter_exe', '_CrtDbgReportW', '_CrtDbgReport', 'strcat_s', '__p__commode', '_set_new_mode', '_configthreadlocale', '_register_thread_local_exe_atexit_callback', '_c_exit', '_cexit', '__p___argv', '__p___argc', 'wcscpy_s', '_set_fmode'], ['CheckSumMappedFile', 'GetProcessHeap', 'VirtualAlloc', 'SetFilePointer', 'FindClose', 'DeleteFileA', 'CloseHandle', 'VirtualFree', 'LoadLibraryA', 'GetModuleHandleA', 'GetSystemTimeAsFileTime', 'CreateFileA', 'FindFirstFileA', 'GetFileSize', 'MapViewOfFile', 'UnmapViewOfFile', 'GetLastError', 'CreateFileMappingA', 'WriteFile', 'ReadFile', 'lstrcatA', 'GetCurrentDirectoryW', 'FindNextFileA', 'GetSystemDirectoryA', 'FindFirstFileW', 'FindNextFileW', 'SetLastError', 'EnterCriticalSection', 'InitializeCriticalSection', 'Sleep', 'LeaveCriticalSection', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'InterlockedExchange', 'DeleteCriticalSection', 'MultiByteToWideChar', 'HeapAlloc', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetVersionExA', 'HeapReAlloc', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'LCMapStringW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapDestroy', 'HeapCreate', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEndOfFile'], ['GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'MoveFileA'], ['memset', 'strncmp', 'memmove', 'strncpy', 'strstr', '_strnicmp', '_stricmp', 'strlen', 'strcmp', 'sprintf', 'fabs', 'ceil', 'malloc', 'floor', 'free', 'fclose', 'memcpy', 'strcpy', 'tolower', 'GetModuleHandleA', 'HeapCreate', 'RemoveDirectoryA', 'GetTempFileNameA', 'GetShortPathNameA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'HeapDestroy', 'ExitProcess', 'GetExitCodeProcess', 'GetNativeSystemInfo', 'FindResourceA', 'LoadResource', 'SizeofResource', 'HeapAlloc', 'HeapFree', 'Sleep', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'GetCurrentThreadId', 'GetCurrentProcessId', 'CloseHandle', 'InitializeCriticalSection', 'GetCommandLineA', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'SetEnvironmentVariableA', 'GetCurrentProcess', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetVersionExA', 'HeapReAlloc', 'SetLastError', 'TlsAlloc', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'SetFileAttributesA', 'DeleteFileA', 'GetTempPathA', 'CreateDirectoryA', 'WriteFile', 'CreateFileA', 'SetFilePointer', 'ReadFile', 'DeleteCriticalSection', 'CharLowerA', 'MessageBoxA', 'SendMessageA', 'PostMessageA', 'GetWindowThreadProcessId', 'IsWindowVisible', 'GetWindowLongA', 'GetForegroundWindow', 'IsWindowEnabled', 'EnableWindow', 'EnumWindows', 'SetWindowPos', 'DestroyWindow', 'GetDC', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetRect', 'DrawTextA', 'GetSystemMetrics', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'CreateWindowExA', 'CallWindowProcA', 'SetWindowLongA', 'SetFocus', 'RedrawWindow', 'RemovePropA', 'DefWindowProcA', 'SetPropA', 'GetParent', 'GetPropA', 'GetWindow', 'SetActiveWindow', 'UnregisterClassA', 'DestroyAcceleratorTable', 'LoadIconA', 'LoadCursorA', 'RegisterClassA', 'AdjustWindowRectEx', 'ShowWindow', 'CreateAcceleratorTableA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'GetMessageA', 'GetActiveWindow', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'GetFocus', 'GetClientRect', 'FillRect', 'EnumChildWindows', 'DefFrameProcA', 'GetWindowRect', 'IsChild', 'GetClassNameA', 'GetKeyState', 'DestroyIcon', 'RegisterWindowMessageA', 'GetStockObject', 'SelectObject', 'SetBkColor', 'SetTextColor', 'GetTextExtentPoint32A', 'CreateSolidBrush', 'DeleteObject', 'GetObjectA', 'CreateCompatibleDC', 'GetDIBits', 'DeleteDC', 'GetObjectType', 'CreateDIBSection', 'BitBlt', 'CreateBitmap', 'SetPixel', 'InitCommonControlsEx', 'CoInitialize', 'CoTaskMemFree', 'RevokeDragDrop', 'ShellExecuteExA', 'timeBeginPeriod', 'PathQuoteSpacesA', 'PathRenameExtensionA', 'PathAddBackslashA', 'PathUnquoteSpacesA'], ['RegOpenKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'RegCloseKey', 'RegQueryValueExA', 'CloseHandle', 'ExitProcess', 'CreateFileA', 'GetModuleHandleA', 'ExitThread', 'GetLastError', 'CreateMutexA', 'CompareStringW', 'CompareStringA', 'WriteFile', 'LCMapStringW', 'LCMapStringA', 'SetStdHandle', 'LoadLibraryA', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'GetOEMCP', 'GetACP', 'SetFilePointer', 'ReadFile', 'GetDiskFreeSpaceA', 'GlobalMemoryStatus', 'FlushFileBuffers', 'Sleep', 'GetCPInfo', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'GetProcAddress', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'LockResource', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'MultiByteToWideChar', 'GetStringTypeA', 'SetEnvironmentVariableA', 'MessageBoxA', 'GetDlgItemTextA', 'IsDlgButtonChecked', 'DialogBoxParamA', 'SetDlgItemTextA', 'EndDialog', 'CheckDlgButton', 'EnableWindow', 'GetDlgItem', 'GetWindowTextLengthA', 'inet_addr', 'GetOpenFileNameA'], ['sprintf', 'memcpy', 'memset', 'ExitProcess', 'CloseHandle', 'VirtualAlloc', 'CreateFileA', 'SetFilePointer', 'SetEndOfFile', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'WriteFile', 'GetLastError', 'EndDialog', 'MessageBoxA', 'GetDlgItemTextA', 'DialogBoxParamA'], ['GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'WinExec', 'GetCurrentProcessId', 'GetProcAddress', 'DeviceIoControl', 'CreateThread', 'FreeConsole', 'CloseHandle', 'LoadLibraryA', 'TerminateThread', 'CreateFileA', 'Sleep', 'OpenProcess', 'GetSystemTimeAsFileTime', 'GetWindow', 'GetWindowRect', 'GetDC', 'SetWindowPos', 'InvalidateRect', 'SetProcessDPIAware', 'GetDesktopWindow', 'LoadIconA', 'GetWindowDC', 'GetForegroundWindow', 'GetCursorPos', 'GetWindowLongA', 'DrawIcon', 'GetSystemMetrics', 'ReleaseDC', 'CreateCompatibleDC', 'PlgBlt', 'DeleteDC', 'TextOutW', 'SetTextColor', 'SetBkColor', 'DeleteObject', 'CreateSolidBrush', 'SelectObject', 'CreateCompatibleBitmap', 'BitBlt', 'StretchBlt', 'PlaySoundA', '__current_exception_context', '__CxxFrameHandler3', '__current_exception', '_except_handler4_common', 'memset', '_itoa_s', 'srand', 'rand', '_time64', 'strcat_s', 'free', 'malloc', '_set_new_mode', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_controlfp_s', 'terminate', '_register_thread_local_exe_atexit_callback', '_c_exit', '_seh_filter_exe', '_set_app_type', '_initialize_narrow_environment', '_cexit', '_get_initial_narrow_environment', '_configure_narrow_argv', '_initterm', '__p___argv', '__p___argc', '_initterm_e', '_exit', 'exit', '_libm_sse2_cos_precise', '_libm_sse2_acos_precise', '_libm_sse2_sin_precise', '__setusermatherr', '__p__commode', '_set_fmode', '_configthreadlocale'], ['InterlockedDecrement', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'LoadLibraryA', 'RaiseException', 'DecodePointer', 'GetProcAddress', 'DeleteCriticalSection', 'CreateFileW', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LocalFree', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'CompareStringW', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'GetFileType', 'CloseHandle', 'VariantInit', 'SysFreeString', 'SysAllocString', 'VariantCopy', 'VariantClear', 'GetErrorInfo'], ['DeleteVolumeMountPointA', 'InterlockedIncrement', 'VerSetConditionMask', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'SetDefaultCommConfigW', 'EnumCalendarInfoExW', 'SetHandleCount', 'TlsSetValue', 'LoadLibraryW', 'SetConsoleMode', 'SetConsoleCursorPosition', 'EnumResourceLanguagesA', 'GetStringTypeExA', 'GetCPInfoExW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'SearchPathA', 'GetConsoleAliasExesLengthA', 'InterlockedExchangeAdd', 'LocalAlloc', 'WritePrivateProfileStringA', 'AddAtomW', 'OpenEventA', 'BeginUpdateResourceA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'QueryPerformanceFrequency', 'DeleteFileW', 'AddConsoleAliasA', 'GetConsoleProcessList', 'DebugBreak', 'InterlockedPushEntrySList', 'FindResourceExW', 'LoadLibraryA', 'GetSystemDefaultLangID', 'CloseHandle', 'CreateFileA', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InterlockedExchange', 'MultiByteToWideChar', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetFileType', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'GetCaretBlinkTime', 'SelectPalette', 'MapGenericMask', 'WinHttpWriteData'], ['htons', 'WSAGetLastError', 'setsockopt', 'sendto', 'bind', 'socket', 'WSACleanup', 'WSAStartup', 'htonl', 'closesocket', 'ntohl', 'inet_ntoa', 'inet_addr', 'ntohs', 'recvfrom', 'select', '__WSAFDIsSet', 'SendARP', 'FlushIpNetTable', 'GetAdaptersInfo', 'SHCopyKeyW', 'SHDeleteKeyW', 'SetEvent', 'WaitForMultipleObjects', 'CreateWaitableTimerW', 'InitializeCriticalSection', 'OpenEventW', 'DeleteCriticalSection', 'LoadLibraryW', 'ReleaseMutex', 'LeaveCriticalSection', 'ResumeThread', 'ReleaseSemaphore', 'InterlockedExchange', 'ResetEvent', 'OpenWaitableTimerW', 'GetComputerNameA', 'SetWaitableTimer', 'DuplicateHandle', 'OpenSemaphoreW', 'SleepEx', 'GetVersion', 'GetTickCount', 'WaitForMultipleObjectsEx', 'TryEnterCriticalSection', 'Process32FirstW', 'ProcessIdToSessionId', 'HeapAlloc', 'Process32NextW', 'CompareFileTime', 'CreateToolhelp32Snapshot', 'HeapFree', 'WaitForSingleObject', 'GetProcessTimes', 'OpenProcess', 'ReadFile', 'CreateFileW', 'GetFileSizeEx', 'GetEnvironmentVariableW', 'FindFirstChangeNotificationW', 'WaitNamedPipeW', 'WriteFile', 'OpenMutexW', 'FindNextChangeNotification', 'GetCurrentDirectoryW', 'OpenFileMappingW', 'FindCloseChangeNotification', 'GetWindowsDirectoryW', 'GetOverlappedResult', 'SetProcessWorkingSetSize', 'GetTimeFormatW', 'FlushFileBuffers', 'GetLocalTime', 'CancelIo', 'GetDateFormatW', 'GetFileSize', 'SetFilePointer', 'SetEndOfFile', 'CopyFileW', 'QueryPerformanceCounter', 'GetStartupInfoA', 'GetFileType', 'CreateEventW', 'CreateFileMappingW', 'FreeLibrary', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateSemaphoreW', 'CreateMutexW', 'EnterCriticalSection', 'GetProcAddress', 'SetConsoleCtrlHandler', 'GetModuleFileNameW', 'Sleep', 'LocalAlloc', 'SetLastError', 'GetLastError', 'GetCurrentThread', 'OutputDebugStringW', 'LocalFree', 'CloseHandle', 'GetCurrentProcess', 'GetVersionExW', 'GetCurrentProcessId', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'HeapSize', 'CreateFileA', 'GetProcessHeap', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCPInfo', 'GetModuleFileNameA', 'GetStdHandle', 'ExitProcess', 'GetModuleHandleA', 'HeapReAlloc', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetVersionExA', 'GetCommandLineA', 'WideCharToMultiByte', 'GetSystemTimeAsFileTime', 'MultiByteToWideChar', 'ExitThread', 'GetCurrentThreadId', 'CreateThread', 'LoadLibraryA', 'WaitForInputIdle', 'OpenServiceW', 'CryptAcquireContextW', 'CryptGenRandom', 'CryptReleaseContext', 'RegDeleteValueW', 'RegNotifyChangeKeyValue', 'StartServiceW', 'CreateProcessAsUserW', 'RevertToSelf', 'RegEnumKeyW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'LookupAccountSidW', 'ImpersonateLoggedOnUser', 'RegQueryValueExW', 'RegOpenKeyExW', 'StartServiceCtrlDispatcherW', 'OpenSCManagerW', 'DeleteService', 'CloseServiceHandle', 'RegSetValueExW', 'CreateServiceW', 'RegCloseKey', 'ControlService', 'RegisterServiceCtrlHandlerW', 'SetServiceStatus', 'QueryServiceStatus', 'RegCreateKeyExW', 'FreeSid', 'GetSidSubAuthority', 'IsValidSid', 'AddAccessAllowedAce', 'GetSidIdentifierAuthority', 'AllocateAndInitializeSid', 'InitializeAcl', 'GetSecurityInfo', 'SetSecurityDescriptorDacl', 'AddAccessDeniedAce', 'InitializeSecurityDescriptor', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetLengthSid', 'IsValidSecurityDescriptor', 'CoFreeUnusedLibraries', 'WgxSetOid', 'WgxGetDot11SSID', 'WgxQueryOid', 'WgxGetDot11AssociationStatus', 'WgxGetDot11BSSID', 'WgxGetDot11AssociationParameters', 'WgxSendPacket', 'WgxInitialize', 'WgxCleanup', 'WgxSetLocalFilter', 'WgxDestroyLocalFilter', 'WgxSetOidDot11', 'WgxCreateLocalFilter', 'WgxSetLocalTrafficMode', 'WgxLocalFilterSetEthernetProtocol', 'WgxRenewIpAddress', 'WgxRenewIpAddressByBroadcase', 'WgxReleaseIpAddress', 'WgxOpenAdapterEx', 'WgxCloseAdapter', 'InstallWgx', 'StartWgxService', 'IsWgxInstalled', 'GetWgxServiceStatus', 'PdhGetFormattedCounterValue', 'PdhOpenQueryW', 'PdhAddCounterW', 'PdhCloseQuery', 'PdhCollectQueryData'], ['AddConsoleAliasW', 'GetComputerNameW', 'GetModuleHandleW', 'GetNumberFormatA', 'ReadConsoleW', 'EnumTimeFormatsA', 'EnumResourceTypesA', 'SetProcessPriorityBoost', 'ActivateActCtx', 'GetCalendarInfoA', 'GetSystemWindowsDirectoryA', 'HeapCreate', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'GetConsoleAliasW', 'Beep', 'GetModuleFileNameW', 'GetConsoleFontSize', 'CreateActCtxA', 'GetACP', 'lstrlenW', 'GlobalUnlock', 'EnumSystemLocalesA', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'VirtualAlloc', 'HeapSize', 'IsBadHugeWritePtr', 'SetComputerNameW', 'WriteProfileSectionA', 'RemoveDirectoryA', 'LoadLibraryA', 'WriteConsoleA', 'InterlockedExchangeAdd', 'LocalAlloc', 'QueryDosDeviceW', 'WriteProfileSectionW', 'AddAtomA', 'GetDefaultCommConfigA', 'SetConsoleCursorInfo', 'GetConsoleTitleW', 'GetShortPathNameW', 'GetCPInfoExA', 'GetDiskFreeSpaceExW', 'FindAtomW', 'GetWindowsDirectoryW', 'DeleteTimerQueueTimer', 'GetTempPathA', 'EnumCalendarInfoExA', 'SuspendThread', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'WaitForSingleObject', 'GetCurrentActCtx', 'ReadConsoleA', 'lstrlenA', 'FindResourceExW', 'BeginUpdateResourceW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'ExitProcess', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'ToAsciiEx', 'ChangeMenuA', 'CharLowerBuffW', 'SetParent', 'CreateAcceleratorTableW', 'GetWindowLongA', 'GetSysColorBrush', 'GetKeyNameTextW', 'GetMenuInfo', 'GetCharWidthA', 'GetColorAdjustment', 'GetCharABCWidthsW', 'BackupEventLogW'], ['GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetBinaryTypeW', 'SetConsoleTitleA', 'CreateJobObjectA', 'InterlockedExchange', 'GetCPInfoExW', 'SetDefaultCommConfigW', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'LoadLibraryA', 'LocalAlloc', 'SetCalendarInfoW', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'GetFileAttributesExW', 'SetFileAttributesW', 'FreeLibrary', 'GetCurrentProcess', 'GetLastError', 'GetConsoleAliasesLengthW', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['HeapFree', 'AddConsoleAliasW', 'LocalFlags', 'GetProcessHeap', 'ReadConsoleW', 'GlobalAlloc', 'GetSystemDirectoryW', 'LoadLibraryW', 'SetVolumeMountPointA', 'GetVersionExW', 'ReplaceFileA', 'GetPrivateProfileIntW', 'ReleaseActCtx', 'GetStdHandle', 'SetLastError', 'VirtualAlloc', 'ReadConsoleA', 'GetAtomNameA', 'LoadLibraryA', 'WriteConsoleA', 'SetCalendarInfoW', 'SetConsoleCtrlHandler', 'SetEnvironmentVariableA', 'GetModuleFileNameA', 'GetDefaultCommConfigA', 'FreeEnvironmentStringsW', 'GetConsoleTitleW', 'VirtualProtect', 'CompareStringA', 'GetCPInfoExA', 'CloseHandle', 'CreateFileA', 'GetConsoleAliasesLengthW', 'AllocConsole', 'lstrlenA', 'FindFirstChangeNotificationW', 'GetLocaleInfoA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'HeapSize', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'WriteFile', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'MultiByteToWideChar', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'WindowFromPoint', 'GetFontUnicodeRanges', 'GetOldestEventLogRecord', 'CoRevokeMallocSpy', 'WinHttpCloseHandle', 'AlphaBlend'], ['SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'FileTimeToSystemTime', 'EnumResourceTypesW', 'EnumResourceNamesW', 'FillConsoleOutputCharacterW', 'GetTimeZoneInformation', 'TerminateProcess', 'SetEvent', 'FindNextFileA', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBW', 'VerifyVersionInfoW', 'FreeResource', 'SetLastError', 'GetVersionExW', 'ReadConsoleOutputCharacterA', 'SetDefaultCommConfigA', 'VerLanguageNameA', 'EscapeCommFunction', 'WritePrivateProfileStructW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeMountPointW', 'GetWriteWatch', 'WriteConsoleInputA', 'SetComputerNameExA', 'AddAtomW', 'InitAtomTable', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryW', 'GlobalAlloc', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetUserDefaultLCID', 'GlobalUnfix', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetLastError', 'DebugBreak', 'SetConsoleCursorInfo', 'SetCalendarInfoW', 'SetConsoleScreenBufferSize', 'ContinueDebugEvent', 'InterlockedExchangeAdd', 'WriteProfileSectionA', 'GetACP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'GetConsoleAliasA', 'OutputDebugStringW', 'EnumResourceTypesA', 'lstrlenA', 'ReadConsoleW', 'WriteConsoleW', 'DeleteCriticalSection', 'GlobalWire', 'FreeEnvironmentStringsW', 'ConvertFiberToThread', 'lstrcatA', 'EnumCalendarInfoA', 'SetThreadAffinityMask', 'LockFile', 'VerSetConditionMask', 'GetConsoleCP', 'GetProfileStringA', 'CreateIoCompletionPort', 'AllocConsole', 'GlobalGetAtomNameA', 'SetComputerNameA', 'GetConsoleAliasExesLengthW', 'WriteConsoleInputW', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressW', 'GetSystemTimeAdjustment', '_hread', '_lopen', 'EnumSystemLocalesW', 'GetConsoleAliasExesLengthA', 'MoveFileA', 'ResetWriteWatch', 'EnumDateFormatsW', 'DeleteAtom', 'GetSystemWindowsDirectoryA', 'GetComputerNameA', 'FindFirstVolumeW', 'CancelDeviceWakeupRequest', 'AreFileApisANSI', 'OpenWaitableTimerA', 'OpenFileMappingA', 'SetProcessAffinityMask', 'GetConsoleAliasesLengthA', 'GetProcessShutdownParameters', 'FindNextVolumeMountPointA', 'WriteConsoleOutputCharacterA', 'GetNumberFormatA', 'GetConsoleAliasExesA', 'GetBinaryTypeW', 'GetCurrentActCtx', 'BuildCommDCBAndTimeoutsA', 'GetSystemWindowsDirectoryW', 'LoadLibraryA', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CloseHandle', 'CreateFileA', 'CharToOemBuffA', 'GetCharWidth32A'], ['CreateFileA', 'GetFileSize', 'FindResourceA', 'SetFilePointer', 'FreeLibrary', 'LoadResource', 'UpdateResourceA', 'SetFileTime', 'WriteFile', 'GetDriveTypeA', 'SizeofResource', 'GetFileAttributesA', 'ReadFile', 'MultiByteToWideChar', 'FindFirstFileA', 'GetLastError', 'CopyFileA', 'SetFileAttributesA', 'FindClose', 'LockResource', 'BeginUpdateResourceA', 'GetModuleFileNameA', 'FindNextFileA', 'LoadLibraryExA', 'EnumResourceNamesA', 'GetFileTime', 'EndUpdateResourceA', 'WinExec', 'CloseHandle', 'DeleteFileA', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'GetTimeFormatA', 'GetDateFormatA', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapFree', 'GetVersionExA', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'Sleep', 'WideCharToMultiByte', 'GetTimeZoneInformation', 'RaiseException', 'ExitProcess', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'LoadLibraryA', 'InitializeCriticalSection', 'RtlUnwind', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'RpcMgmtEpUnregister'], ['UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'CloseHandle', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessA', 'GetFileAttributesExW', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'WriteConsoleW', 'DecodePointer', 'RaiseException'], ['GetModuleHandleA', 'HeapCreate', 'HeapDestroy', 'ExitProcess', 'CloseHandle', 'InitializeCriticalSection', 'GetModuleFileNameA', 'HeapAlloc', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'GetTickCount', 'TlsGetValue', 'CopyFileA', 'WriteFile', 'HeapFree', 'CreateFileA', 'SetFilePointer', 'GetFileSize', 'ReadFile', 'EnterCriticalSection', 'HeapReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GetLastError', 'SetLastError', 'WaitForMultipleObjects', 'GetCurrentProcess', 'GetCurrentThread', 'DuplicateHandle', 'CreateSemaphoreA', 'CreateThread', 'ReleaseSemaphore', 'memset', 'strcmp', 'memmove', 'memcpy', 'strncpy', 'strlen'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_fmode', '_ftime', '_initterm', '_iob', '_lock', '_onexit', '_setjmp3', '_unlock', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'free', 'fseek', 'fwrite', 'longjmp', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'realloc', 'signal', 'sprintf', 'strcmp', 'strlen', 'strncmp', 'vfprintf'], ['lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'CreateThread', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'WaitForSingleObject', 'GetLastError', 'Sleep', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'ShowWindow', 'MoveToEx', 'GetBitmapDimensionEx'], ['AllocateAndInitializeSid', 'FreeSid', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CloseHandle', 'CompareStringOrdinal', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'GetLastError', 'GetLogicalDriveStringsW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LocalFree', 'LockFile', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadFile', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'SetFileAttributesW', 'SetFilePointerEx', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnmapViewOfFile', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WriteConsoleW', 'WriteFile', 'NetApiBufferFree', 'NetServerEnum', 'NetShareEnum', 'NetUseEnum', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'BCryptGenRandom', 'DeleteCriticalSection', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'RtlAddFunctionTable', 'RtlVirtualUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetModuleHandleA', 'CharLowerW', 'RegCloseKey', 'DrawStatusTextW', '_CorExeMain', 'SHGetIconOverlayIndexA'], ['SetEndOfFile', 'RegisterClassA', 'CreateDIBitmap', 'midiStreamRestart', 'ClosePrinter', 'RegCloseKey', 'ShellExecuteA', 'OleInitialize', 'UnRegisterTypeLib', 'ImageList_Destroy', 'recvfrom', 'GetFileTitleA', 'LoadLibraryA', 'VirtualProtect', 'GetModuleFileNameA', 'ExitProcess', 'MessageBoxA'], ['GetModuleHandleA', 'WaitMessage', 'RegCloseKey', 'InitCommonControls', '_CorExeMain', 'ShellAboutW'], ['GetModuleHandleA', 'GetDesktopWindow', 'RegOpenKeyExA', 'ImageList_Create'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'sndPlaySoundA', 'LresultFromObject'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'WriteFile', 'VirtualQuery', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetConsoleActiveScreenBuffer', 'MoveFileExW', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsBadHugeReadPtr', 'GetVersionExA', 'GetThreadLocale', 'GetTempFileNameA', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCurrentDirectoryA', 'GetConsoleCursorInfo', 'GetCompressedFileSizeW', 'GetCPInfo', 'GetACP', 'FreeConsole', 'EnumCalendarInfoA', 'DisconnectNamedPipe', 'CompareStringA', 'VkKeyScanExW', 'RegisterClipboardFormatW', 'MessageBoxA', 'LoadStringA', 'LoadIconW', 'GetTabbedTextExtentA', 'GetSystemMetrics', 'GetSysColorBrush', 'GetMessageW', 'GetMenuItemCount', 'EmptyClipboard', 'CharNextA', 'CharToOemA'], ['CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleFileNameA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'HeapAlloc', 'HeapCreate', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '_amsg_exit', '_initterm', '_iob', '_lock', '_unlock', 'abort', 'calloc', 'fclose', 'fopen', 'fread', 'free', 'fsetpos', 'fwrite', 'malloc', 'realloc', 'strlen', 'strncmp', 'vfprintf'], ['SetFileSecurityW', 'BitBlt', 'CreateBrushIndirect', 'CreateCompatibleDC', 'CreatePen', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'Ellipse', 'GetObjectA', 'GetStockObject', 'Polyline', 'Rectangle', 'SelectObject', 'SetBkMode', 'SetTextColor', 'CloseHandle', 'CreateSemaphoreA', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'LeaveCriticalSection', 'ReleaseSemaphore', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', '_getcwd', '_write', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'atof', 'calloc', 'fputc', 'fputs', 'free', 'fwrite', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'rand', 'realloc', 'signal', 'sprintf', 'sqrt', 'srand', 'strcat', 'strcmp', 'strerror', 'vfprintf', 'wcslen', 'ClientToScreen', 'CreateWindowExA', 'DefWindowProcA', 'DispatchMessageA', 'DrawTextA', 'FillRect', 'GetClientRect', 'GetDC', 'GetMessageA', 'GetSystemMetrics', 'GetWindowLongA', 'IntersectRect', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'MessageBoxA', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassA', 'ReleaseDC', 'SendMessageA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow', 'DirectDrawCreateEx', 'timeGetTime'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'DdeSetUserHandle', 'CopyImage', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'DefFrameProcW', 'GetDlgCtrlID', 'FrameRect', 'RegisterWindowMessageW', 'GetMenuStringW', 'FillRect', 'SendMessageA', 'DdeCmpStringHandles', 'IsClipboardFormatAvailable', 'EnumWindows', 'ShowOwnedPopups', 'GetClassInfoW', 'GetScrollRange', 'SetActiveWindow', 'GetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'EnumChildWindows', 'UnhookWindowsHookEx', 'SetCapture', 'GetCapture', 'ShowCaret', 'CreatePopupMenu', 'GetMenuItemID', 'CharLowerBuffW', 'PostMessageW', 'SetWindowLongW', 'IsZoomed', 'SetParent', 'DrawMenuBar', 'GetClientRect', 'IsChild', 'IsIconic', 'CallNextHookEx', 'DdeDisconnect', 'ShowWindow', 'GetWindowTextW', 'SetForegroundWindow', 'IsDialogMessageW', 'DestroyWindow', 'RegisterClassW', 'EndMenu', 'CharNextW', 'GetFocus', 'GetDC', 'SetFocus', 'ReleaseDC', 'GetClassLongW', 'SetScrollRange', 'DrawTextW', 'PeekMessageA', 'MessageBeep', 'SetClassLongW', 'RemovePropW', 'GetSubMenu', 'DestroyIcon', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'DdeNameService', 'DdeAccessData', 'LoadStringW', 'CreateMenu', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'GetSysColorBrush', 'GetWindowDC', 'DdeQueryConvInfo', 'DrawTextExW', 'EnumClipboardFormats', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'GetSysColor', 'EnableScrollBar', 'TrackPopupMenu', 'DrawIconEx', 'DdePostAdvise', 'GetClassNameW', 'DdeCreateDataHandle', 'GetMessagePos', 'GetIconInfo', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'SetCursorPos', 'GetCursorPos', 'SetMenu', 'GetMenuState', 'GetMenu', 'SetRect', 'GetKeyState', 'GetCursor', 'KillTimer', 'WaitMessage', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateWindowExW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'DdeUnaccessData', 'MapVirtualKeyW', 'IsWindowUnicode', 'DispatchMessageW', 'CreateAcceleratorTableW', 'DefMDIChildProcW', 'GetSystemMenu', 'GetScrollPos', 'SetScrollPos', 'DdeClientTransaction', 'DrawFocusRect', 'ReleaseCapture', 'LoadCursorW', 'DdeConnect', 'ScrollWindow', 'GetLastActivePopup', 'DdeUninitialize', 'GetSystemMetrics', 'CharUpperBuffW', 'SetClipboardData', 'GetClipboardData', 'ClientToScreen', 'SetWindowPlacement', 'DdeFreeStringHandle', 'GetMonitorInfoW', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'EnableWindow', 'GetWindowThreadProcessId', 'RedrawWindow', 'EndPaint', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'InsertMenuItemW', 'MonitorFromRect', 'DdeQueryStringA', 'GetPropW', 'MessageBoxW', 'SetPropW', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'SetWindowsHookExW', 'EmptyClipboard', 'AdjustWindowRectEx', 'IsWindow', 'DrawIcon', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'ScreenToClient', 'DrawFrameControl', 'SetCursor', 'DdeFreeDataHandle', 'CreateIcon', 'DdeInitializeA', 'RemoveMenu', 'DdeCreateStringHandleA', 'GetKeyboardLayoutNameW', 'OpenClipboard', 'TranslateMessage', 'MapWindowPoints', 'EnumDisplayMonitors', 'CountClipboardFormats', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'CopyIcon', 'PostQuitMessage', 'DdeGetLastError', 'ShowScrollBar', 'EnableMenuItem', 'HideCaret', 'FindWindowExW', 'LoadIconW', 'SystemParametersInfoW', 'MonitorFromPoint', 'GetWindow', 'GetWindowRect', 'GetWindowLongW', 'InsertMenuW', 'IsWindowEnabled', 'IsDialogMessageA', 'FindWindowW', 'GetKeyboardLayout', 'DeleteMenu', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'URLDownloadToFileW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'memcpy', 'memset', 'WinHttpGetIEProxyConfigForCurrentUser', 'WinHttpSetTimeouts', 'WinHttpSetStatusCallback', 'WinHttpConnect', 'WinHttpReceiveResponse', 'WinHttpQueryAuthSchemes', 'WinHttpGetProxyForUrl', 'WinHttpReadData', 'WinHttpCloseHandle', 'WinHttpQueryHeaders', 'WinHttpOpenRequest', 'WinHttpAddRequestHeaders', 'WinHttpOpen', 'WinHttpWriteData', 'WinHttpSetCredentials', 'WinHttpQueryDataAvailable', 'WinHttpSetOption', 'WinHttpSendRequest', 'WinHttpQueryOption', 'SetFileAttributesW', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'TlsAlloc', 'TerminateThread', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GlobalSize', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'OutputDebugStringW', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'WinExec', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'LCMapStringW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'UnmapViewOfFile', 'lstrlenW', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetLastError', 'ExpandEnvironmentStringsW', 'ExitProcess', 'Sleep', 'CreateProcessW', 'CloseHandle', 'GetProcAddress', 'LoadLibraryA', 'RasEnumDevicesW', 'RasSetEntryPropertiesW', 'RasGetEntryDialParamsW', 'RasDialW', 'FindNextUrlCacheEntryW', 'DeleteUrlCacheEntryW', 'FindFirstUrlCacheEntryW', 'FindCloseUrlCache', 'socket', 'gethostbyname', 'accept', 'connect', 'bind', 'htons', 'WSAStartup', 'shutdown', 'closesocket', 'recv', 'listen', 'send'], ['FindResourceExW', 'GetConsoleAliasExesLengthA', 'DeleteVolumeMountPointA', 'MoveFileExW', 'GetCommState', 'WaitNamedPipeA', 'GlobalSize', 'SetDefaultCommConfigW', 'CreateHardLinkA', 'WaitForSingleObjectEx', 'FreeEnvironmentStringsA', 'EnumCalendarInfoExW', 'GetConsoleTitleA', 'ReadConsoleW', 'GetCompressedFileSizeW', 'CreateActCtxW', 'SetHandleCount', 'TlsSetValue', 'VirtualFreeEx', 'LoadLibraryW', 'InterlockedPopEntrySList', 'SetConsoleMode', 'GetConsoleAliasW', 'GetFileAttributesW', 'IsBadStringPtrA', 'WritePrivateProfileStringW', 'VirtualQuery', 'GetConsoleAliasesW', 'GetStdHandle', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'BeginUpdateResourceW', 'EnumSystemCodePagesW', 'SetThreadPriorityBoost', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'AddAtomW', 'GetProfileStringA', 'WriteProfileSectionW', 'FoldStringW', 'EnumResourceTypesW', 'GetModuleFileNameA', 'GetModuleHandleA', 'OpenEventW', 'QueryPerformanceFrequency', 'SetCalendarInfoA', 'DeleteFileW', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'FindNextVolumeA', 'SearchPathW', 'GetStringTypeExA', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'GetCharABCWidthsW', 'CreateDiscardableBitmap', 'GetCharWidthI'], ['GetLastError', 'CloseHandle', 'GetModuleFileNameW', 'DeleteFileA', 'Sleep', 'GetProcessHeap', 'WaitForSingleObject', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'LocalFree', 'GetCurrentProcessId', 'GetVersionExA', 'LocalAlloc', 'LoadLibraryA', 'FreeLibrary', 'GetModuleHandleA', 'GetProcAddress', 'GetModuleFileNameA', 'GetVersionExW', 'GetSystemWindowsDirectoryA', 'GlobalFindAtomA', 'ExpandEnvironmentStringsA', 'GetCurrentProcess', 'GlobalAddAtomA', 'SetErrorMode', 'lstrcpynA', 'ExitProcess', 'GetTickCount', 'Module32Next', 'GlobalMemoryStatusEx', 'VirtualProtectEx', 'VirtualAlloc', 'Module32First', 'GetExitCodeProcess', 'CreateRemoteThread', 'VirtualFree', 'GetThreadContext', 'CreateFileA', 'SetThreadContext', 'OpenProcess', 'TerminateThread', 'CreateProcessA', 'TerminateProcess', 'FlushInstructionCache', 'GetShortPathNameA', 'GetHandleInformation', 'VirtualAllocEx', 'CreateToolhelp32Snapshot', 'WriteProcessMemory', 'ResumeThread', 'CreateThread', 'WriteFile', 'ReadFile', 'GetFileSizeEx', 'lstrcmpiA', 'CopyFileA', 'SetFileAttributesA', 'GetTempFileNameA', 'wsprintfW', 'DestroyWindow', 'keybd_event', 'GetMessageA', 'SetTimer', 'RegisterClassExA', 'PostQuitMessage', 'KillTimer', 'TranslateMessage', 'DefWindowProcA', 'ShowWindow', 'FlashWindow', 'DispatchMessageA', 'UpdateWindow', 'CreateWindowExA', 'SHGetFolderPathA', 'ShellExecuteExA', 'SHGetFolderPathW', 'ShellExecuteExW', 'CoInitializeEx', 'CoUninitialize', 'GetModuleBaseNameW', 'StrRChrA', 'PathAppendA', 'PathAppendW', 'StrStrIA', 'PathFileExistsA', 'StrStrNIW', 'PathAddExtensionA', 'PathIsDirectoryA', 'PathCombineA', 'PathAddBackslashA', 'RtlImageNtHeader', 'ZwClose', 'memset', '_alloca_probe', 'strstr', '_snprintf', 'ZwSetInformationThread', 'RtlUnwind', 'CryptGetHashParam', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'OpenProcessToken', 'GetSidSubAuthority', 'GetSidSubAuthorityCount', 'GetTokenInformation', 'CryptReleaseContext'], ['SHChangeNotifyRegister', '_CorExeMain', 'RegOpenKeyExA', 'UpdateWindow', 'GetModuleHandleA'], ['LoadLibraryA', 'OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'EnumResourceTypesW', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateTimerQueueTimer', 'TerminateProcess', 'SetLastError', 'SetEvent', 'FindNextFileW', 'GetCompressedFileSizeA', 'CopyFileExW', 'BuildCommDCBA', 'VerifyVersionInfoW', 'FreeResource', 'GetVersionExA', 'ReadConsoleOutputCharacterW', 'SetDefaultCommConfigW', 'VerLanguageNameW', 'GetCommConfig', 'WritePrivateProfileStructA', 'LocalFree', 'DeleteTimerQueueTimer', 'FindNextVolumeMountPointA', 'GetWriteWatch', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'GlobalDeleteAtom', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsW', 'GetProcAddress', 'GlobalAlloc', 'GetVersionExW', 'GlobalFix', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'SearchPathW', 'FormatMessageW', 'GetModuleHandleW', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'SetDllDirectoryW', 'SetConsoleWindowInfo', 'InterlockedDecrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'CopyFileA', 'GetPrivateProfileIntA', 'SetCalendarInfoW', 'DebugBreak', 'SetConsoleCursorInfo', 'FreeLibraryAndExitThread', 'GetModuleFileNameA', 'SetConsoleScreenBufferSize', 'WaitForDebugEvent', 'InterlockedExchangeAdd', 'GetOEMCP', 'GetPrivateProfileStringW', 'CreateActCtxA', 'ReadConsoleInputW', 'OutputDebugStringW', 'PulseEvent', 'SetThreadAffinityMask', 'FlushConsoleInputBuffer', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'GetThreadContext', 'FreeEnvironmentStringsA', 'TryEnterCriticalSection', 'QueryDepthSList', 'DeleteFiber', 'SetProcessPriorityBoost', 'LockFile', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'CreateIoCompletionPort', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasExesLengthA', 'CreateMailslotW', 'GetCommState', 'MoveFileWithProgressA', 'GetSystemTimeAdjustment', 'EnumSystemLocalesW', 'OpenMutexA', 'GetLastError', 'WriteProfileStringA', 'OpenWaitableTimerW', 'OpenFileMappingW', 'GetConsoleAliasesLengthW', 'SetProcessShutdownParameters', 'FillConsoleOutputCharacterW', 'WriteConsoleOutputCharacterW', 'BuildCommDCBAndTimeoutsA', 'GetConsoleAliasExesA', 'GetDateFormatW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'MoveFileA', 'DeleteFileA', 'RaiseException', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'WriteFile', 'GetStdHandle', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'RtlUnwind', 'OutputDebugStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'CharUpperW'], ['FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'GetFullPathNameW', 'GetTempPathW', 'GetLastError', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetEnvironmentVariableW', 'GetCurrentProcess', 'IsWow64Process', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetProcAddress', 'LoadLibraryExW', 'LoadLibraryA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FreeLibrary', 'RtlUnwindEx', 'RaiseException', 'OutputDebugStringW', 'GetModuleHandleW', 'GetCurrentProcessId', 'Sleep', 'RemoveDirectoryW', 'DeleteCriticalSection', 'CreateDirectoryW', 'RtlPcToFileHeader', 'InitializeSListHead', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'LCMapStringW', 'GetSystemTimeAsFileTime', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SwitchToThread', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'DecodePointer', 'EncodePointer', 'GetStringTypeW', 'MessageBoxW', 'ShellExecuteW', 'RegOpenKeyExW', 'RegCloseKey', 'ReportEventW', 'RegisterEventSourceW', 'DeregisterEventSource', 'RegGetValueW', '_initialize_wide_environment', '_set_app_type', '_invalid_parameter_noinfo_noreturn', '_seh_filter_exe', '_cexit', '_crt_atexit', '_register_onexit_function', 'terminate', '_configure_wide_argv', 'exit', '_exit', '__p___argc', '__p___wargv', '_c_exit', '_register_thread_local_exe_atexit_callback', 'abort', '_get_initial_wide_environment', '_errno', '_initterm', '_initialize_onexit_table', '_initterm_e', 'malloc', 'calloc', 'free', '_callnewh', '_set_new_mode', '__setusermatherr', 'frexp', '_wfopen', '__stdio_common_vswprintf', 'fclose', 'fread', 'fseek', 'fwrite', '__acrt_iob_func', '_set_fmode', 'fputwc', 'fputws', '__stdio_common_vfwprintf', 'fflush', '__p__commode', '__stdio_common_vsprintf_s', '_wcsicmp', '_wcsdup', '_wcsnicmp', 'wcsncmp', 'strcspn', 'wcsnlen', 'memset', 'strcpy_s', '_unlock_locales', '__pctype_func', '___lc_locale_name_func', '___mb_cur_max_func', 'setlocale', '_configthreadlocale', '_lock_locales', 'localeconv', '___lc_codepage_func', '_wremove', '_wrename', '_wtoi', 'wcstoul', 'wcsftime', '_gmtime64', '_time64'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['ChangeServiceConfig2A', 'VarI2FromDate', 'JetEndSession', 'GetProcAddress', 'GetModuleHandleA'], ['GetSystemMetrics', 'FindResourceW', 'CryptCreateHash', 'ShellExecuteExW', 'CoInitializeEx', 'CryptDecodeObjectEx', 'WSAWaitForMultipleEvents', 'BCryptGenRandom', 'SysStringLen', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetCurrentDirectoryA', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstFileA', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['GetProcAddress', 'LoadLibraryA', 'FindClose', 'FindFirstFileA', 'UnmapViewOfFile', 'GetLastError', 'MapViewOfFile', 'CreateFileMappingA', 'GetFileSize', 'lstrcmpA', 'GetTempFileNameA', 'GetTempPathA', 'lstrlenA', 'SetLastError', 'SetFileAttributesA', 'CopyFileA', 'WriteFile', 'GetPrivateProfileStringA', 'FindNextFileA', 'OpenEventA', 'GetVolumeInformationA', 'GetDriveTypeA', 'ExitProcess', 'GetModuleHandleA', 'GetModuleFileNameA', 'SetFilePointer', 'ReadFile', 'CreateProcessA', 'Sleep', 'lstrcatA', 'GetSystemDirectoryA', 'GetSystemTime', 'SetFileTime', 'GetTempPathW', 'FreeLibrary', 'GetEnvironmentVariableW', 'GetComputerNameW', 'GetTimeZoneInformation', 'GetLocalTime', 'MultiByteToWideChar', 'lstrcatW', 'lstrlenW', 'GetVersionExA', 'GetTickCount', 'GetComputerNameA', 'WaitForSingleObject', 'ResumeThread', 'TerminateProcess', 'FileTimeToSystemTime', 'GetWindowsDirectoryA', 'GetEnvironmentVariableA', 'CreateDirectoryA', 'CreateMutexA', 'ReleaseMutex', 'OutputDebugStringA', 'GetFileTime', 'InterlockedIncrement', 'InterlockedDecrement', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'GetStringTypeW', 'GetStringTypeA', 'DeleteFileA', 'lstrcpyA', 'CreateFileA', 'GetFileInformationByHandle', 'CloseHandle', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'GetWindowsDirectoryW', 'IsBadCodePtr', 'IsBadReadPtr', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'LCMapStringW', 'LCMapStringA', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'HeapSize', 'SetUnhandledExceptionFilter', 'FlushFileBuffers', 'GetCurrentProcess', 'GetStartupInfoA', 'GetStdHandle', 'HeapAlloc', 'HeapFree', 'GetFileType', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'CreateThread', 'TlsSetValue', 'TlsGetValue', 'ExitThread', 'GetCommandLineA', 'GetVersion', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'IsBadWritePtr', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'TlsAlloc', 'TlsFree', 'SetStdHandle', 'SetEndOfFile', 'SetHandleCount', 'RegisterClassExA', 'CreateWindowExA', 'DefWindowProcA', 'CharLowerBuffA', 'wsprintfA', 'wsprintfW', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegQueryValueExA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegEnumValueA', 'RegCloseKey', 'UuidToStringA', 'UuidCreate', 'RpcStringFreeA', 'inet_ntoa', 'gethostbyname', 'WSAStartup', 'WSACleanup'], ['GetUserNameA', 'OpenBackupEventLogA', 'CreatePrivateObjectSecurityEx', 'midiInGetDevCapsA', 'EnumResourceNamesA', 'GetBinaryTypeA', 'GetCurrentProcess', 'GetNumaHighestNodeNumber', 'IsValidLocale', 'GetModuleFileNameW', 'HeapQueryInformation', 'FindNextChangeNotification', 'CreateSemaphoreW', 'GetAsyncKeyState', 'IsCharAlphaA', 'CharNextA', 'GetSysColor', 'EnumClipboardFormats', 'IsCharAlphaW', 'GetActiveWindow', 'GrayStringW', 'CascadeWindows', 'LookupIconIdFromDirectory', 'GetProcessDefaultLayout', 'ReadUrlCacheEntryStream', 'CreateDiscardableBitmap', 'CryptCATAdminReleaseCatalogContext', 'CryptCATCDFClose', 'IsPwrSuspendAllowed', 'WcsSetUsePerUserProfiles', 'HlinkSimpleNavigateToString', 'AssocQueryKeyW', 'GetBestRoute', 'GetNumberOfInterfaces'], ['HeapLock', 'WaitForSingleObject', 'GetNamedPipeHandleStateW', 'DosDateTimeToFileTime', 'CallNamedPipeW', 'EnumResourceTypesA', 'EnumResourceNamesA', 'TerminateProcess', 'ReleaseActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'GetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueueTimer', 'FindNextVolumeW', 'LeaveCriticalSection', 'WriteConsoleInputW', 'TlsGetValue', 'SetComputerNameExW', 'FindAtomA', 'BuildCommDCBAndTimeoutsW', 'GlobalAlloc', 'EnterCriticalSection', 'GetCommandLineW', 'InterlockedExchange', 'CopyFileA', 'OutputDebugStringA', 'FormatMessageW', 'GetPriorityClass', 'WritePrivateProfileStringA', 'HeapValidate', 'TerminateThread', 'GlobalUnfix', 'GetProcessHeap', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExA', 'GetWindowsDirectoryA', 'GetSystemWow64DirectoryA', 'WriteProfileSectionA', 'GetCalendarInfoW', 'DebugBreak', 'GetConsoleCursorInfo', 'SetLastError', 'DeleteVolumeMountPointW', 'DebugActiveProcessStop', 'GetConsoleAliasExesLengthW', 'lstrcmpA', 'GetPrivateProfileSectionNamesW', 'IsBadHugeWritePtr', 'GetProcAddress', 'GetSystemWindowsDirectoryA', 'FindCloseChangeNotification', 'CreateActCtxW', 'GetMailslotInfo', 'GetPrivateProfileIntA', '_lread', 'InterlockedDecrement', 'DefineDosDeviceW', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleW', 'VirtualProtect', 'InterlockedPushEntrySList', 'SetConsoleCursorInfo', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'GetVolumePathNameW', 'GetConsoleMode', 'HeapSetInformation', 'GetComputerNameA', 'FindActCtxSectionStringW', 'WriteProcessMemory', 'MoveFileExA', 'DisableThreadLibraryCalls', 'GlobalCompact', 'UnregisterWait', 'DeleteAtom', 'FormatMessageA', 'FatalExit', 'InterlockedCompareExchange', 'WaitNamedPipeW', 'SetLocalTime', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'FreeEnvironmentStringsW', 'GetOverlappedResult', 'GetPrivateProfileStructA', 'SetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'GetFileType', 'SetConsoleCP', 'GetConsoleAliasA', 'GetLargestConsoleWindowSize', 'CreateIoCompletionPort', 'CreateMailslotW', 'EnumDateFormatsA', 'GetCommState', '_lopen', 'GetWriteWatch', 'GetPrivateProfileStringW', 'ClearCommError', 'ChangeTimerQueueTimer', 'SetSystemTime', 'WriteConsoleInputA', 'LockFile', 'GetConsoleAliasExesLengthA', 'GetLastError', 'SetFirmwareEnvironmentVariableW', 'MoveFileW', 'GetConsoleDisplayMode', 'GetSystemDefaultLangID', 'SetFilePointer', 'PostQueuedCompletionStatus', 'AreFileApisANSI', 'OpenWaitableTimerW', 'GetProcessVersion', 'GetNamedPipeHandleStateA', 'FillConsoleOutputCharacterA', 'FindNextVolumeMountPointW', 'WriteProfileStringA', 'InitAtomTable', 'AddAtomA', 'WriteConsoleOutputCharacterA', 'QueryInformationJobObject', 'QueryDosDeviceW', 'GetBinaryTypeW', 'VirtualAlloc', 'DeleteCriticalSection', 'LoadLibraryA', 'CreateFileA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'DeleteFileA', 'RaiseException', 'GetCommandLineA', 'IsBadReadPtr', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'InterlockedIncrement', 'ExitProcess', 'GetModuleFileNameA', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringW', 'LoadLibraryW', 'GetConsoleCP', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'CloseHandle', 'OemToCharW', 'GetFileSecurityA', 'WinHttpReadData'], ['SetupDiEnumDeviceInterfaces', 'SetupDiGetClassDevsA', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiEnumDeviceInfo', 'SetupDiGetDeviceRegistryPropertyA', 'SetupDiDestroyDeviceInfoList', 'CloseHandle', 'Sleep', 'ReadFile', 'CancelIo', 'WriteFile', 'DeviceIoControl', 'CreateEventW', 'FormatMessageW', 'GetLastError', 'CreateFileA', 'LoadLibraryA', 'ResetEvent', 'GetOverlappedResult', 'GetProcAddress', 'LocalFree', 'FreeLibrary', 'SizeofResource', 'FreeResource', 'LockResource', 'LoadResource', 'FindResourceW', 'CreateMutexW', 'ReleaseMutex', 'lstrlenW', 'DeleteFileW', 'GetFileAttributesW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'FlushFileBuffers', 'GetFileType', 'SetFilePointerEx', 'ReadConsoleW', 'LCMapStringW', 'GetConsoleMode', 'GetConsoleCP', 'HeapFree', 'HeapAlloc', 'GetStringTypeW', 'GetACP', 'GetVersionExW', 'WaitForSingleObject', 'TerminateProcess', 'GetSystemDefaultLCID', 'GetEnvironmentVariableW', 'SetStdHandle', 'CreateFileW', 'WriteConsoleW', 'HeapSize', 'HeapReAlloc', 'DecodePointer', 'SetEndOfFile', 'GetStdHandle', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'LoadLibraryExW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'GetWindowTextW', 'wsprintfW', 'EndPaint', 'GetWindowLongW', 'GetMessageW', 'DefWindowProcW', 'CallWindowProcW', 'GetWindowRect', 'GetDC', 'SetWindowPos', 'FillRect', 'CreateWindowExW', 'ScreenToClient', 'SendMessageW', 'SetWindowTextW', 'RegisterClassExW', 'LoadAcceleratorsW', 'LoadStringW', 'ShowWindow', 'RegisterDeviceNotificationW', 'DispatchMessageW', 'TrackMouseEvent', 'LoadBitmapW', 'TranslateAcceleratorW', 'TranslateMessage', 'LoadIconW', 'LoadCursorW', 'SetWindowLongW', 'GetClientRect', 'GetDlgItem', 'DrawTextW', 'PostQuitMessage', 'SystemParametersInfoW', 'UpdateWindow', 'InvalidateRect', 'BeginPaint', 'SelectObject', 'BitBlt', 'CreateCompatibleDC', 'StretchBlt', 'CreateFontW', 'GetStockObject', 'DeleteDC', 'GetTextExtentPoint32W', 'SetTextColor', 'SetBkMode', 'LineTo', 'GetObjectW', 'MoveToEx', 'SetBkColor', 'CreateSolidBrush', 'ShellExecuteW', 'CommandLineToArgvW', 'SHCreateDirectoryExW', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'InternetReadFile', 'InternetCloseHandle', 'HttpQueryInfoW', 'InternetOpenW', 'InternetOpenUrlW'], ['ReadProcessMemory', 'GetModuleHandleW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'CreateFileW', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'HeapSize', 'WriteConsoleW'], ['CreateFileA', 'CreateTimerQueue', 'SetPriorityClass', 'FindFirstChangeNotificationW', 'WriteConsoleInputW', 'WriteConsoleOutputCharacterW', 'WritePrivateProfileStructA', 'GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'CopyFileExW', 'GetStringTypeA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'EndUpdateResourceW', 'InterlockedIncrement', '_lwrite', 'InterlockedDecrement', 'SetDefaultCommConfigW', 'GetSystemWindowsDirectoryW', 'GetModuleHandleExW', 'SetConsoleScreenBufferSize', 'CallNamedPipeW', 'FreeEnvironmentStringsA', 'GetModuleHandleW', 'GetTickCount', 'FindNextVolumeMountPointA', 'GetConsoleAliasesA', 'GetCompressedFileSizeW', 'ReadConsoleOutputA', 'GetConsoleAliasExesW', 'GetDateFormatA', 'FindActCtxSectionStringA', 'TzSpecificLocalTimeToSystemTime', 'EnumResourceTypesA', 'GlobalAlloc', 'GetPrivateProfileIntA', 'AddRefActCtx', 'LoadLibraryW', 'TerminateThread', 'ReadConsoleInputA', 'GetSystemWow64DirectoryW', 'SetSystemTimeAdjustment', 'SetVolumeMountPointA', 'GetConsoleAliasExesLengthW', 'FormatMessageW', 'GetExitCodeProcess', 'GetNamedPipeInfo', 'FindNextVolumeW', 'SetDllDirectoryA', 'GetConsoleAliasW', 'GetWriteWatch', 'GetFileAttributesW', 'GetBinaryTypeA', 'GetAtomNameW', 'GetMailslotInfo', 'GetSystemDirectoryA', 'GetTimeZoneInformation', 'FillConsoleOutputCharacterA', 'CreateActCtxA', 'GetOverlappedResult', 'GetACP', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'GetStartupInfoW', 'WritePrivateProfileStringW', 'GetNamedPipeHandleStateW', 'VerifyVersionInfoW', 'GlobalUnfix', 'ReleaseActCtx', 'FillConsoleOutputCharacterW', 'GetLastError', 'AttachConsole', 'GetProcessHeaps', 'DefineDosDeviceW', 'CreateNamedPipeA', 'HeapUnlock', 'CopyFileA', 'FreeUserPhysicalPages', 'SetComputerNameA', 'EnterCriticalSection', 'BuildCommDCBW', 'OpenWaitableTimerA', 'GetLocalTime', 'LoadLibraryA', 'WriteConsoleA', 'InterlockedExchangeAdd', 'GetFileType', 'WritePrivateProfileStringA', 'MoveFileA', 'GlobalGetAtomNameW', 'FindAtomA', 'SetSystemTime', 'GlobalWire', 'EnumDateFormatsA', 'DebugSetProcessKillOnExit', 'CreateIoCompletionPort', 'FindFirstChangeNotificationA', 'CreateWaitableTimerW', 'FindNextFileW', 'CreateMailslotA', 'GetStringTypeW', 'WriteProfileStringW', 'VirtualProtect', 'EnumDateFormatsW', 'WaitForDebugEvent', 'SetThreadAffinityMask', 'Module32NextW', 'GetVersionExA', 'TerminateJobObject', 'CloseHandle', 'GetCurrentProcessId', 'GetFileInformationByHandle', 'EnumSystemLocalesW', 'CopyFileExA', 'SetComputerNameExW', 'GetThreadContext', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'SetStdHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleOutputCP', 'ImpersonateSelf'], ['GetNamedPipeHandleStateW', 'CreateIoCompletionPort', 'FillConsoleOutputCharacterW', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExW', 'FindNextFileW', 'CopyFileExA', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WriteProfileStringW', 'WritePrivateProfileStructA', 'FindFirstChangeNotificationA', 'MapViewOfFileEx', 'CreateTimerQueue', 'FindNextVolumeMountPointA', 'SetVolumeMountPointW', 'GetWriteWatch', 'ReadConsoleInputA', 'SetComputerNameExA', 'SystemTimeToTzSpecificLocalTime', 'GetSystemDirectoryA', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'InterlockedDecrement', 'FormatMessageW', 'SetDllDirectoryA', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'FlushConsoleInputBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileA', 'TerminateThread', 'EnterCriticalSection', 'FindAtomA', 'HeapUnlock', 'GetMailslotInfo', 'CreateActCtxA', 'GetConsoleAliasW', '_lwrite', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameA', 'SetConsoleScreenBufferSize', 'EnumResourceTypesA', 'lstrlenA', 'LoadLibraryW', 'MoveFileW', 'WriteConsoleA', 'VirtualProtect', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'AddRefActCtx', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'CopyFileW', 'GetVolumePathNameW', 'GetCommMask', 'CloseHandle', 'EnumDateFormatsExA', 'FindActCtxSectionStringA', 'GetNamedPipeInfo', 'AttachConsole', 'GlobalGetAtomNameW', 'SetComputerNameA', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotW', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeA', 'GetConsoleAliasExesLengthW', 'FindActCtxSectionStringW', 'GetPrivateProfileIntW', 'GetModuleHandleExW', 'GetStringTypeA', 'GetTickCount', 'OpenWaitableTimerA', 'GlobalWire', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatA', 'GetOEMCP', 'FindNextVolumeA', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'WideCharToMultiByte', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'SetStdHandle', 'GetFileType', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'ExitProcess', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'FlushFileBuffers', 'DebugBreak', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetConsoleOutputCP', 'SetFilePointer', 'CreateFileA', 'ReadFile', 'ImpersonateSelf'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['CryptAcquireContextA', 'CryptReleaseContext', 'CryptGetHashParam', 'CryptCreateHash', 'CryptHashData', 'CryptDestroyHash', 'GetUserNameA', 'GetCurrentHwProfileA', 'RegCloseKey', 'RegCreateKeyExW', 'RegSetValueExW', 'TranslateMessage', 'DispatchMessageA', 'DefWindowProcW', 'RegisterClassA', 'GetMessageA', 'CreateWindowExA', 'DestroyWindow', 'UnregisterClassA', 'gethostbyname', 'WSACleanup', 'WSAStartup', 'CryptBinaryToStringA', 'InternetGetConnectedState', 'HttpSendRequestA', 'InternetReadFile', 'ShellExecuteA', 'SHCreateDirectoryExW', 'SHCreateDirectoryExA', 'HeapReAlloc', 'HeapSize', 'ReadConsoleW', 'FlushFileBuffers', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCPInfo', 'GetOEMCP', 'WriteConsoleW', 'SetEndOfFile', 'GetACP', 'IsValidCodePage', 'FindFirstFileExW', 'CloseHandle', 'WaitForMultipleObjects', 'CreateThread', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LoadLibraryA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'GetLogicalDrives', 'GetVolumeInformationA', 'Sleep', 'GetModuleFileNameW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'GetComputerNameA', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetWindowsDirectoryW', 'GetModuleHandleA', 'DeleteFileW', 'CreateFileW', 'WriteFile', 'TerminateProcess', 'OpenProcess', 'QueryFullProcessImageNameW', 'GetVolumeInformationW', 'CopyFileW', 'GetFileTime', 'CreateProcessA', 'GetModuleFileNameA', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'LCMapStringW', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'MoveFileExW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'CompareStringW', 'DecodePointer'], ['ZombifyActCtx', 'GetConsoleAliasesLengthW', 'GetVersionExW', 'GetConsoleOutputCP', 'GetDefaultCommConfigA', 'SetCommConfig', 'GetDriveTypeW', 'FreeEnvironmentStringsA', 'CreateTimerQueue', 'FindNextVolumeA', 'InitializeCriticalSectionAndSpinCount', 'ReadConsoleInputW', 'TlsSetValue', 'SetComputerNameExW', 'FindAtomW', 'BuildCommDCBAndTimeoutsW', 'VirtualProtect', 'LoadLibraryA', 'LocalAlloc', 'InitializeCriticalSection', 'TlsGetValue', 'GetCommandLineA', 'InterlockedIncrement', 'GetCalendarInfoA', 'CopyFileA', 'OutputDebugStringA', 'GetSystemTimeAdjustment', 'GetPriorityClass', 'WritePrivateProfileStringW', 'ExitThread', 'GlobalWire', 'HeapCompact', 'GetStartupInfoA', 'CreatePipe', 'GetCPInfoExW', 'GetWindowsDirectoryW', 'GetSystemWow64DirectoryA', 'WriteProfileSectionW', 'GetCalendarInfoW', 'IsDebuggerPresent', 'SetConsoleCursorPosition', 'GetLastError', 'DebugActiveProcess', 'WriteFile', 'GetNumberOfConsoleInputEvents', 'GetSystemWindowsDirectoryW', 'CopyFileW', 'FindNextChangeNotification', 'CreateActCtxA', 'GetPrivateProfileIntA', '_lread', 'OutputDebugStringW', 'InterlockedDecrement', 'DefineDosDeviceA', 'SetVolumeMountPointA', 'EndUpdateResourceW', 'WriteConsoleA', 'InterlockedPushEntrySList', 'WritePrivateProfileSectionW', 'DeleteCriticalSection', 'GetPrivateProfileSectionNamesA', 'GetFileAttributesExW', 'FileTimeToSystemTime', 'MoveFileW', 'TerminateProcess', 'HeapSetInformation', 'lstrcmpW', 'GetComputerNameA', 'FindActCtxSectionStringA', 'WriteProcessMemory', 'MoveFileExA', 'GetProcAddress', 'GlobalCompact', 'UnregisterWait', 'WriteConsoleInputA', 'FormatMessageA', 'FatalExit', 'TransmitCommChar', 'WaitNamedPipeW', 'CreateIoCompletionPort', 'FindResourceExA', 'GetSystemInfo', 'EnumCalendarInfoExW', 'OpenSemaphoreA', 'GetPrivateProfileStructA', 'GetMailslotInfo', 'lstrcpyW', 'VerLanguageNameW', 'SetThreadExecutionState', 'GetSystemTime', 'GetFileInformationByHandle', 'GetConsoleCP', 'GetConsoleAliasA', 'SetConsoleScreenBufferSize', 'GetAtomNameW', 'WriteConsoleInputW', 'CreateMailslotA', 'GetCommState', 'GetLogicalDrives', '_lopen', 'GetConsoleAliasExesLengthW', 'GetWriteWatch', 'ClearCommBreak', 'ChangeTimerQueueTimer', 'GetOverlappedResult', 'EnumDateFormatsA', 'GlobalDeleteAtom', 'HeapSize', 'GetConsoleWindow', 'GetStringTypeA', 'SetFilePointer', 'PostQueuedCompletionStatus', 'SetFileApisToANSI', 'OpenWaitableTimerW', 'GetProcessId', 'PeekNamedPipe', 'FillConsoleOutputCharacterW', 'FindNextVolumeMountPointA', 'WriteProfileStringW', 'InitAtomTable', 'GlobalAddAtomA', 'WriteConsoleOutputCharacterA', 'TerminateJobObject', 'VirtualAlloc', 'GetBinaryTypeW', 'QueryDosDeviceW', 'LeaveCriticalSection', 'GetVolumePathNameA', 'FileTimeToDosDateTime', 'Sleep', 'EnterCriticalSection', 'RaiseException', 'RtlUnwind', 'MoveFileA', 'HeapValidate', 'IsBadReadPtr', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetModuleHandleW', 'TlsAlloc', 'GetCurrentThreadId', 'TlsFree', 'SetLastError', 'CloseHandle', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetModuleHandleA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleMode', 'DebugBreak', 'WriteConsoleW', 'LoadLibraryW', 'SetStdHandle', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetLocaleInfoA', 'CreateFileA', 'OemToCharA', 'GetFileSecurityW', 'AlphaBlend'], ['SetEndOfFile', 'CreateFileW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'PeekNamedPipe', 'GetFileInformationByHandle', 'SetEnvironmentVariableA', 'WriteConsoleW', 'SetStdHandle', 'LoadLibraryW', 'OutputDebugStringW', 'LoadLibraryExW', 'GetTimeZoneInformation', 'FlushFileBuffers', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetDriveTypeW', 'FindFirstFileExW', 'FileTimeToLocalFileTime', 'GetCurrentThreadId', 'SetFilePointerEx', 'SetFilePointer', 'GetConsoleCP', 'ReadConsoleW', 'GetConsoleMode', 'GetSystemTime', 'LocalFree', 'GetVersion', 'CloseHandle', 'GetFileTime', 'WaitCommEvent', 'GetSystemInfo', 'SetCommMask', 'LocalAlloc', 'LoadLibraryA', 'GlobalFree', 'GetProcAddress', 'GetLastError', 'GlobalUnlock', 'ReadFile', 'FileTimeToSystemTime', 'CreateProcessA', 'CreateEventA', 'IsDebuggerPresent', 'HeapSize', 'GetModuleFileNameW', 'GetStdHandle', 'AreFileApisANSI', 'GetModuleHandleExW', 'ExitProcess', 'GetProcessHeap', 'Sleep', 'GlobalAlloc', 'GetSystemTimes', 'SetCommTimeouts', 'WriteFile', 'SetFileTime', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'WaitForSingleObject', 'GlobalLock', 'LCMapStringW', 'CompareStringW', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'VirtualQuery', 'SystemTimeToFileTime', 'ClearCommError', 'MapUserPhysicalPages', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'SetLastError', 'SetUnhandledExceptionFilter', 'GetFileType', 'OpenFile', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'FindClose', 'SystemTimeToTzSpecificLocalTime', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'GetStringTypeW', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'FindFirstFileExA', 'FindNextFileA', 'LoadCursorA', 'CallWindowProcA', 'SetClipboardData', 'GetSystemMetrics', 'SystemParametersInfoA', 'OpenClipboard', 'SetThreadDesktop', 'GetCursorPos', 'SetDlgItemTextA', 'MoveWindow', 'GetSysColor', 'DefWindowProcA', 'EmptyClipboard', 'CreateWindowExA', 'GetWindowTextW', 'MessageBoxA', 'SetWindowLongA', 'OpenWindowStationA', 'FillRect', 'DestroyWindow', 'SetCursor', 'CloseClipboard', 'HideCaret', 'SetProcessWindowStation', 'InsertMenuItemA', 'OpenDesktopA', 'EndPaint', 'GetFocus', 'LoadBitmapA', 'GetClientRect', 'SendMessageA', 'BeginPaint', 'EnumWindows', 'PtInRect', 'SetWindowWord', 'DrawFocusRect', 'InflateRect', 'SetTextColor', 'GetTextExtentPoint32A', 'SetWindowExtEx', 'CreateSolidBrush', 'DeleteDC', 'SetBkColor', 'CreateDCA', 'DeleteObject', 'SelectObject', 'CombineRgn', 'SetMapMode', 'StartDocA', 'ExtTextOutW', 'Ellipse', 'SetTextAlign', 'TextOutW', 'EndDoc', 'OpenPrinterA', 'StartPagePrinter', 'WritePrinter', 'StartDocPrinterA', 'EndPagePrinter', 'EndDocPrinter', 'ClosePrinter', 'SetNamedSecurityInfoA', 'ConvertStringSidToSidA', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorOwner', 'OpenProcessToken', 'SHBrowseForFolderA', 'OleTranslateColor', 'capGetDriverDescriptionA', 'CredUIPromptForCredentialsW', 'PathCombineW', 'PathAppendW', 'PathCommonPrefixW', 'PathCanonicalizeW', 'PathBuildRootW', 'PathFindExtensionW', 'ImageList_Create', 'ImageList_Add', 'UuidToStringW', 'UuidCreate', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'ImmGetProperty', 'MapDebugInformation', 'CloseThemeData', 'OpenThemeData', 'TcGetFlowNameA', 'TcModifyFlow', 'DsGetRdnW'], ['UnmapViewOfFile', 'CreateFileMappingA', 'GetDiskFreeSpaceW', 'FindFirstFileW', 'WideCharToMultiByte', 'GetFileType', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'SwitchToThread', 'GetCurrentThread', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WaitForSingleObject', 'DuplicateHandle', 'ConnectNamedPipe', 'PeekNamedPipe', 'CreateEventA', 'CreateNamedPipeW', 'CancelSynchronousIo', 'CancelIoEx', 'RegisterWaitForSingleObject', 'UnregisterWait', 'QueueUserWorkItem', 'SetHandleInformation', 'GetStdHandle', 'GetStartupInfoW', 'CreateFileA', 'TerminateProcess', 'GetExitCodeProcess', 'UnregisterWaitEx', 'LCMapStringW', 'InterlockedExchange', 'Sleep', 'SetConsoleCtrlHandler', 'SetFileCompletionNotificationModes', 'CancelIo', 'InterlockedCompareExchange', 'TryEnterCriticalSection', 'SetEvent', 'ReleaseSemaphore', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CreateSemaphoreA', 'ResetEvent', 'ReadConsoleInputW', 'WriteConsoleInputW', 'GetNumberOfConsoleInputEvents', 'GetConsoleScreenBufferInfo', 'SetConsoleCursorPosition', 'ReadConsoleW', 'WriteConsoleW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'FileTimeToSystemTime', 'GetModuleFileNameW', 'GetTempPathW', 'MultiByteToWideChar', 'FlushViewOfFile', 'GetCurrentDirectoryW', 'SetFilePointerEx', 'GetVersionExW', 'LoadLibraryA', 'GetModuleHandleA', 'GetTempPathA', 'SetCurrentDirectoryA', 'GetSystemTime', 'SystemTimeToFileTime', 'GetEnvironmentVariableA', 'DeleteFileA', 'AreFileApisANSI', 'DeleteFileW', 'GetVersionExA', 'OutputDebugStringA', 'GetFileAttributesExW', 'GetDiskFreeSpaceA', 'CreateFileMappingW', 'LockFileEx', 'HeapSize', 'HeapValidate', 'HeapCreate', 'GetFileAttributesA', 'HeapDestroy', 'FormatMessageW', 'LoadLibraryW', 'GetProcessHeap', 'UnlockFileEx', 'GetTickCount', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'LockFile', 'UnlockFile', 'HeapFree', 'HeapAlloc', 'SetEndOfFile', 'SetFilePointer', 'HeapCompact', 'CreateMutexW', 'GetFileSize', 'HeapReAlloc', 'GetFullPathNameA', 'GetFullPathNameW', 'GetCurrentThreadId', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'ExitProcess', 'lstrcmpiA', 'lstrlenA', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'GetStringTypeW', 'SetEnvironmentVariableA', 'GetModuleFileNameA', 'GetTimeZoneInformation', 'GetDriveTypeW', 'FindFirstFileExW', 'FileTimeToLocalFileTime', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'InterlockedIncrement', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCommandLineA', 'SystemTimeToTzSpecificLocalTime', 'FindNextFileA', 'FindFirstFileExA', 'InterlockedDecrement', 'RtlUnwind', 'RaiseException', 'ExitThread', 'CreateThread', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleCP', 'DecodePointer', 'EncodePointer', 'IsDebuggerPresent', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'GetLongPathNameW', 'MapViewOfFile', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetPriorityClass', 'FindClose', 'LoadLibraryExW', 'FormatMessageA', 'LocalFree', 'GetProcAddress', 'FreeLibrary', 'FlushFileBuffers', 'ReadFile', 'WriteFile', 'GetFileInformationByHandle', 'SetLastError', 'ReadDirectoryChangesW', 'GetFileAttributesW', 'QueryPerformanceFrequency', 'CreateFileW', 'QueryPerformanceCounter', 'DebugBreak', 'CloseHandle', 'SetErrorMode', 'GetQueuedCompletionStatusEx', 'GetQueuedCompletionStatus', 'CreateIoCompletionPort', 'PostQueuedCompletionStatus', 'GetLastError', 'CompareStringW', 'wsprintfA', 'wsprintfW', 'SendMessageA', 'CallWindowProcA', 'UnregisterClassA', 'GetClassNameA', 'GetParent', 'RegisterClassExA', 'CreateWindowExA', 'IsWindow', 'ShowWindow', 'UpdateLayeredWindow', 'DialogBoxIndirectParamA', 'EndDialog', 'GetDlgItem', 'SetDlgItemInt', 'CheckRadioButton', 'GetSystemMetrics', 'GetDlgCtrlID', 'OpenClipboard', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'SendInput', 'GetMenu', 'GetMenuState', 'CheckMenuItem', 'GetSubMenu', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'SetScrollPos', 'GetScrollPos', 'SetScrollRange', 'SetWindowTextA', 'SetWindowTextW', 'MapVirtualKeyW', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'SendDlgItemMessageA', 'DdeCreateStringHandleW', 'GetWindowTextA', 'GetWindow', 'LoadImageA', 'SystemParametersInfoA', 'GetDesktopWindow', 'GetWindowLongA', 'GetCursorPos', 'MessageBoxW', 'GetWindowTextLengthA', 'GetWindowTextLengthW', 'MessageBoxA', 'GetWindowContextHelpId', 'GetObjectA', 'SetAbortProc', 'SetMapMode', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateFontIndirectA', 'CreateCompatibleDC', 'CombineRgn', 'SetWindowExtEx', 'GetOpenFileNameA', 'ImpersonateNamedPipeClient', 'CoInitialize', 'OleGetClipboard', 'ReleaseStgMedium', 'CreateStreamOnHGlobal', 'GdipDisposeImage', 'GdipCloneImage', 'GdipLoadImageFromStream', 'GdipAlloc', 'GdipFree', 'ImmGetDefaultIMEWnd', 'htons', 'WSASetLastError', 'WSAStartup', 'WSARecvFrom', 'WSARecv', 'socket', 'shutdown', 'listen', 'bind', 'WSAIoctl', 'select', 'ioctlsocket', 'WSASocketW', 'WSAGetLastError', 'setsockopt', 'getsockopt', 'closesocket', 'PathFindFileNameW', 'PathFindExtensionW', 'PathFileExistsW', 'PathCombineW', 'PathIsRelativeW', 'SetupDiGetClassDevsA', 'NetApiBufferFree', 'NetServerGetInfo', 'capGetDriverDescriptionA'], ['SetFileSecurityW', 'CreateCompatibleDC', 'CreateFontA', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'GetPixel', 'GetStockObject', 'SelectObject', 'SetBkColor', 'SetBkMode', 'SetPixel', 'SetTextColor', 'StretchBlt', 'TextOutA', 'DeleteCriticalSection', 'EnterCriticalSection', 'FindResourceA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedExchange', 'LeaveCriticalSection', 'LoadResource', 'LockResource', 'OutputDebugStringA', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', '_lclose', '_lopen', '_lread', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_iob', '_lock', '_onexit', '_unlock', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DispatchMessageA', 'GetSystemMetrics', 'LoadCursorA', 'LoadImageA', 'PeekMessageA', 'PostQuitMessage', 'RegisterClassExA', 'ShowCursor', 'ShowWindow', 'TranslateMessage', 'DirectDrawCreate'], ['SysFreeString', 'RegQueryValueExW', 'CharNextW', 'GetVersion', 'GetProcAddress', 'SetClassLongW', 'UnrealizeObject', 'VerQueryValueW', 'GetVersionExW', 'GetVersion', 'RegUnLoadKeyW', 'SHGetFolderPathW', 'Sleep', 'NetApiBufferFree', 'SafeArrayPtrOfIndex', 'GetErrorInfo', 'OleUninitialize', 'Shell_NotifyIconW', 'memset', 'InitializeFlatSB', 'EnumDisplayMonitors', 'InternetGetConnectedState', 'HlinkNavigateString', 'SHGetFolderPathW', 'OpenPrinterW', 'GetDefaultPrinterW', 'WSACleanup', 'MagSetImageScalingCallback', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetSystemDirectoryW', 'TerminateProcess', 'GetModuleFileNameW', 'ExitThread', 'MultiByteToWideChar', 'lstrlenW', 'VirtualUnlock', 'GetSystemInfo', 'WaitForMultipleObjects', 'lstrcmpiW', 'lstrcatW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'GetShortPathNameW', 'GetWindowsDirectoryW', 'lstrcpyW', 'GetVolumeInformationW', 'CreateThread', 'lstrcpyA', 'ExpandEnvironmentStringsW', 'lstrlenA', 'GetTickCount', 'lstrcmpiA', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'OpenProcess', 'EnterCriticalSection', 'VirtualLock', 'FindFirstFileW', 'lstrcmpW', 'MoveFileW', 'FindClose', 'FindNextFileW', 'GetSystemTime', 'GetNativeSystemInfo', 'GetDriveTypeW', 'GetModuleHandleW', 'GetProcAddress', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'GetCurrentProcess', 'VerifyVersionInfoW', 'LoadLibraryA', 'LocalAlloc', 'GetModuleHandleA', 'LocalFree', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSection', 'GetDriveTypeA', 'GetCommandLineA', 'GetProcessHeap', 'VirtualFree', 'GetComputerNameW', 'WaitForSingleObject', 'VirtualAlloc', 'SetErrorMode', 'GetSystemDefaultUILanguage', 'ExitProcess', 'CloseHandle', 'GetLastError', 'CreateFileW', 'ReadFile', 'Sleep', 'WriteFile', 'SetFilePointerEx', 'LeaveCriticalSection', 'FlushFileBuffers', 'OutputDebugStringW', 'HeapAlloc', 'RtlUnwind', 'LoadLibraryExW', 'GetStdHandle', 'LCMapStringW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThreadId', 'EncodePointer', 'DecodePointer', 'GetModuleHandleExW', 'WideCharToMultiByte', 'HeapFree', 'GetStringTypeW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'TlsGetValue', 'TlsSetValue', 'IsDebuggerPresent', 'WriteConsoleW', 'wsprintfW', 'GetForegroundWindow', 'CryptGetKeyParam', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'OpenProcessToken', 'GetUserNameW', 'CryptDestroyKey', 'CryptGenKey', 'CryptEncrypt', 'CryptImportKey', 'CryptReleaseContext', 'CryptAcquireContextW', 'CryptExportKey', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'SHGetSpecialFolderPathW', 'ShellExecuteW', 'ShellExecuteExW', 'WNetCloseEnum', 'WNetOpenEnumW', 'WNetEnumResourceW', 'HttpQueryInfoA', 'HttpSendRequestW', 'InternetConnectW', 'InternetOpenW', 'InternetCloseHandle', 'HttpOpenRequestW'], ['CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'FreeLibrary', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', '__dllonexit', '__getmainargs', '__initenv', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_iob', '_lock', '_onexit', '_unlock', '_winmajor', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'strlen', 'strncmp', 'vfprintf'], ['GetExitCodeProcess', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempFileNameW', 'GetTempPathW', 'GetThreadLocale', 'GetTickCount', 'GetTimeFormatW', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExA', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'Heap32ListFirst', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'IsSystemResumeAutomatic', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LocalFree', 'MoveFileExA', 'MoveFileExW', 'MoveFileW', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'QueryPerformanceCounter', 'QueueUserAPC', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReadProcessMemory', 'RemoveDirectoryW', 'ScrollConsoleScreenBufferW', 'SearchPathW', 'SetConsoleCtrlHandler', 'SetConsoleCursorPosition', 'SetConsoleMode', 'SetConsoleTextAttribute', 'SetConsoleTitleW', 'SetCurrentDirectoryW', 'SetEnvironmentVariableW', 'SetErrorMode', 'SetFileAttributesW', 'SetFilePointer', 'SetFileTime', 'SetLastError', 'SetLocalTime', 'SetSystemTime', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetVolumeLabelA', 'SleepEx', 'SwitchToThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TransmitCommChar', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualFreeEx', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileSectionA', '_hwrite', 'lstrcmpW', 'lstrcmpiW', 'lstrcpyW', 'lstrlenW', 'GetEnvironmentStringsW', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetConsoleTitleW', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetCompressedFileSizeW', 'GetCommandLineW', 'GetCPInfo', 'GetBinaryTypeW', 'GetBinaryType', 'FreeLibrary', 'FormatMessageW', 'FlushFileBuffers', 'FlushConsoleInputBuffer', 'FindNextFileW', 'FindNextFileA', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FillConsoleOutputCharacterW', 'FillConsoleOutputAttribute', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'EraseTape', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileW', 'DeleteFileA', 'CreateThread', 'CreateProcessW', 'CreateFileW', 'CreateFileA', 'CreateDirectoryW', 'CopyFileW', 'CopyFileA', 'ConvertDefaultLocale', 'CompareFileTime', 'CloseHandle', 'OpenProcess', 'AddAtomW', 'DefWindowProcW', 'DrawFocusRect', 'CreateWindowStationA', 'CreateMenu', 'FillRect', 'FindWindowW', 'GetMenuCheckMarkDimensions', 'GetProcessWindowStation', 'GetSysColorBrush', 'GetThreadDesktop', 'GetUpdateRgn', 'GetUserObjectInformationW', 'InflateRect', 'InsertMenuItemW', 'IsIconic', 'LockWindowUpdate', 'MessageBeep', 'MessageBoxW', 'MonitorFromWindow', 'OffsetRect', 'PostMessageW', 'RealGetWindowClass', 'SendMessageW', 'SetUserObjectInformationW', 'ShowWindow', 'ToUnicode', 'WinHelpA', 'LoadCursorW', 'GetKBCodePage', 'DefMDIChildProcW', 'CloseWindowStation', 'StartPage', 'SetMiterLimit', 'SetMapperFlags', 'SetBitmapBits', 'PtVisible', 'OffsetClipRgn', 'GetViewportOrgEx', 'GetTextFaceW', 'AddFontMemResourceEx', 'AnimatePalette', 'Arc', 'BRUSHOBJ_pvAllocRbrush', 'ColorMatchToTarget', 'CopyEnhMetaFileA', 'CreatePatternBrush', 'DescribePixelFormat', 'EngFreeModule', 'EngTextOut', 'EnumFontsW', 'FillRgn', 'GdiGetPageCount', 'GetGlyphOutlineW', 'GetMiterLimit', 'GetOutlineTextMetricsA', 'RegOpenKeyW', 'SaferRecordEventLogEntry', 'SaferIdentifyLevel', 'SaferComputeTokenFromLevel', 'SaferCloseLevel', 'RevertToSelf', 'RegSetValueW', 'RegSetValueExW', 'RegQueryValueW', 'RegQueryValueExW', 'CreateProcessAsUserW', 'RegOpenKeyExW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCloseKey', 'LookupAccountSidW', 'ImpersonateLoggedOnUser', 'GetSecurityDescriptorOwner', 'GetFileSecurityW', 'FreeSid', 'ShellExecuteExW', 'ShellExecuteA', 'ShellAboutA', 'SHIsFileAvailableOffline', 'SHGetSettings', 'CheckEscapesW', 'DragQueryFile', 'DragQueryFileAorW', 'ExtractIconExW', 'SHAppBarMessage', 'SHBrowseForFolderA', 'SHChangeNotify', 'SHCreateProcessAsUserW', 'SHEmptyRecycleBinA', 'SHFileOperationA', 'SHGetDataFromIDListA', 'SHGetDiskFreeSpaceA', 'SHGetMalloc', 'WOWShellExecute', 'StrCmpNW', 'StrStrIA', 'StrStrIW', 'StrCmpNA', 'StrChrIA', 'ImageList_Create', '_XcptFilter', '__getmainargs', '__initenv', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_adjust_fdiv', '_c_exit', '_cexit', '_close', '_controlfp', '_dup', '_dup2', '_errno', '_except_handler3', '_exit', '_get_osfhandle', '_getch', '_initterm', '_iob', '_open_osfhandle', '_pclose', '_pipe', '_seh_longjmp_unwind', '_setjmp3', '_setmode', '_snwprintf', '_tell', '_ultoa', '_vsnwprintf', '_wcsicmp', '_wcslwr', '_wcsnicmp', '_wcsupr', '_wpopen', '_wtol', 'calloc', 'exit', 'fflush', 'fgets', 'fprintf', 'free', 'iswalpha', 'iswdigit', 'iswspace', 'iswxdigit', 'longjmp', 'malloc', 'memmove', 'printf', 'qsort', 'rand', 'realloc', 'setlocale', 'srand', 'swprintf', 'swscanf', 'time', 'towlower', 'towupper', 'wcscat', 'wcschr', 'wcscmp', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsncpy', 'wcsrchr', 'wcsspn', 'wcsstr', 'wcstol', 'wcstoul'], ['RaiseException', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'CloseHandle', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW'], ['DefWindowProcA', 'GetClientRect', 'GetSystemMetrics', 'BeginPaint', 'GetSysColor', 'SetWindowWord', 'SetRect', 'EndPaint', 'RegisterClassA', 'UpdateWindow', 'GetWindowWord', 'LoadCursorA', 'OemToCharA', 'OemToCharBuffA', 'EnableWindow', 'SetWindowTextA', 'SendMessageA', 'ShowWindow', 'PostMessageA', 'GetLastActivePopup', 'KillTimer', 'SetTimer', 'GetWindowRect', 'DialogBoxIndirectParamA', 'SetCursor', 'SetWindowPos', 'GetDlgItemTextA', 'EndDialog', 'GetKeyState', 'PeekMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetParent', 'SetDlgItemTextA', 'SendDlgItemMessageA', 'GetDlgItem', 'InvalidateRect', 'wsprintfA', 'MessageBoxA', 'CreateDirectoryA', '_lwrite', 'RtlUnwind', 'SetFileTime', 'GetModuleHandleA', 'SetErrorMode', 'GetCommandLineA', 'GetTempPathA', 'GetModuleFileNameA', 'GetVersion', 'GetWindowsDirectoryA', 'LocalFree', 'GlobalUnlock', 'LocalAlloc', 'GlobalFree', 'GlobalAlloc', 'GlobalHandle', 'GetProfileStringA', 'lstrcmpiA', 'GlobalLock', '_llseek', '_lclose', 'WinExec', 'lstrlenA', '_lread', '_lopen', 'FindClose', 'FindFirstFileA', 'SetCurrentDirectoryA', '_lcreat', 'lstrcpyA', 'lstrcatA', 'LocalFileTimeToFileTime', 'DosDateTimeToFileTime', 'SetBkColor', 'SetTextAlign', 'GetTextExtentPoint32A', 'GetBkColor', 'SetTextColor', 'DeleteObject', 'ExtTextOutA', 'CreateDCA', 'GetDeviceCaps', 'CreateFontIndirectA', 'DeleteDC', 'SelectObject'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WindowFromDC', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MoveWindow', 'MessageBoxIndirectW', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameW', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CreateAcceleratorTableW', 'CopyRect', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixelV', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'ResizePalette', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetNearestPaletteIndex', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapDimensionEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'lstrcpyW', 'lstrcmpW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'IsDebuggerPresent', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CopyFileW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateInstance', 'IsEqualGUID', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'Sleep', 'CLSIDFromString', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SHGetFileInfoW', 'ExtractIconW', 'GetSaveFileNameW', 'GetOpenFileNameW', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW'], ['GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'ReadFile', 'ExitThread', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'CreateThread', 'Sleep', 'CloseHandle', 'RegEnumValueA', 'RegCloseKey', 'RegOpenKeyA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'DeleteDC', 'free', 'CoInitialize', 'OleLoadPicture', 'SHGetMalloc', 'GetDC'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsMenu', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CharNextW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA', 'NtFlushInstructionCache', 'AutodialHookCallback'], ['AddAce', 'ImageList_Remove', 'GetSaveFileNameW', 'LineTo', 'IcmpSendEcho', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetUseConnectionW', 'CoGetObject', 'VariantInit', 'GetProcessMemoryInfo', 'DragFinish', 'GetDC', 'LoadUserProfileW', 'IsThemeActive', 'VerQueryValueW', 'FtpOpenFileW', 'timeGetTime', 'socket'], ['VirtualProtect', 'GetCurrentProcess', 'Sleep', 'GetSystemInfo', 'ExitProcess', 'GetConsoleWindow', 'CheckRemoteDebuggerPresent', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'UnhandledExceptionFilter', 'ShowWindow', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?widen@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDD@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?uncaught_exception@std@@YA_NXZ', '?_Xlength_error@std@@YAXPBD@Z', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '__current_exception', '_CxxThrowException', '__std_terminate', '_except_handler4_common', '__std_exception_copy', '__std_exception_destroy', '__CxxFrameHandler3', 'memset', 'memmove', '__current_exception_context', '__p___argv', 'exit', '_register_thread_local_exe_atexit_callback', '_initterm_e', '__p___argc', '_invalid_parameter_noinfo_noreturn', 'terminate', '_get_initial_narrow_environment', '_controlfp_s', '_initterm', '_set_app_type', '_exit', '_c_exit', '_seh_filter_exe', '_cexit', '_crt_atexit', '_register_onexit_function', '_initialize_onexit_table', '_initialize_narrow_environment', '_configure_narrow_argv', '_callnewh', 'free', '_set_new_mode', 'malloc', '__setusermatherr', '_set_fmode', '__p__commode', '_configthreadlocale'], ['DeleteFileW', 'SetStdHandle', 'WriteConsoleW', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetStringTypeW', 'MultiByteToWideChar', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'LoadLibraryW', 'WideCharToMultiByte', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'VirtualProtect', 'EnterCriticalSection', 'InterlockedExchange', 'CreateFileW', 'GetModuleFileNameW', 'ReadFile', 'LeaveCriticalSection', 'LCMapStringW', 'GetFileSize', 'GetCPInfo', 'RtlUnwind', 'HeapSize', 'Sleep', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'DecodePointer', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'RaiseException', 'TranslateMessage', 'EndPaint', 'DestroyWindow', 'TranslateAcceleratorW', 'GetMessageW', 'PostQuitMessage', 'LoadImageW', 'DialogBoxParamW', 'LoadCursorW', 'DispatchMessageW', 'BeginPaint', 'GetClientRect', 'LoadAcceleratorsW', 'RegisterClassExW', 'LoadIconW', 'EndDialog', 'LoadStringW', 'ShowWindow', 'CreateWindowExW', 'UpdateWindow', 'DefWindowProcW', 'StretchBlt', 'SetBkMode', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'GetDIBColorTable', 'GetObjectW', 'DeleteDC', 'GdiplusShutdown', 'TransparentBlt', 'AlphaBlend'], ['ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetLastError', 'DeleteFileA', 'CloseHandle', 'GetFileType', 'CreateFileA', 'GetCommandLineA', 'GetVersion', 'SetEndOfFile', 'ReadFile', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'SetStdHandle', 'HeapAlloc', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetModuleHandleA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'HeapFree', 'RtlUnwind', 'WriteFile', 'VirtualAlloc', 'HeapReAlloc', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetProcAddress', 'LoadLibraryA', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW'], ['SHGetDiskFreeSpaceExW', '_CorExeMain', 'GetUserNameW', 'TranslateMessage', 'GetModuleHandleA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'lstrcmpiA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'ReadProcessMemory', 'LoadLibraryA', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetCPInfo', 'GetACP', 'EnumCalendarInfoA', 'DeviceIoControl', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CloseHandle', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'FindWindowA', 'CharNextA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'wglDeleteContext', 'CreateWindowExA', 'SafeArrayPtrOfIndex', 'CreateStreamOnHGlobal', 'GetErrorInfo', 'ImageList_SetIconSize', 'VariantChangeTypeEx', 'RaiseException'], ['_chkstk', 'strcmp', 'atol', '_snprintf', 'atoi', 'strrchr', 'memset', 'RtlInitUnicodeString', 'RtlInitAnsiString', 'LdrLoadDll', 'LdrGetProcedureAddress', 'ReadFile', 'GetFileSize', 'CreateFileA', 'GetPrivateProfileStringA', 'CloseHandle', 'lstrlenA', 'Sleep', 'InterlockedExchange', 'GetFullPathNameA', 'GlobalLock', 'GlobalUnlock', 'GlobalReAlloc', 'GetSystemTimeAsFileTime', 'GlobalAlloc', 'ExitProcess', 'GlobalFree', 'InterlockedCompareExchange', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'WritePrivateProfileStringA', 'ShowWindow', 'UpdateWindow', 'UnregisterClassA', 'InvalidateRect', 'SetWindowRgn', 'MessageBoxA', 'SetWindowPos', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DefWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'LoadCursorA', 'RegisterClassExA', 'GetClassInfoExA', 'TranslateMessage', 'DispatchMessageA', 'GetMessageA', 'LoadImageA', 'SetWindowTextA', 'GetParent', 'GetWindowTextA', 'DrawTextA', 'GetClientRect', 'SetRect', 'CreateWindowExA', 'LoadIconA', 'SendMessageA', 'PostMessageA', 'BitBlt', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'ExtCreateRegion', 'GetCurrentObject', 'SetTextColor', 'SetBkMode', 'CreateFontA', 'CombineRgn', 'DeleteDC', 'GetObjectA', 'CreateCompatibleBitmap', 'DeleteObject', 'GetOpenFileNameA', 'CreateStreamOnHGlobal', 'OleLoadPicture', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?length@?$char_traits@D@std@@SAIPBD@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Unlock@_Mutex@std@@QAEXXZ', '?_Lock@_Mutex@std@@QAEXXZ', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '__set_app_type', 'exit', '_ismbblead', '_XcptFilter', '_exit', '_cexit', '__getmainargs', '_amsg_exit', 'strtok', '?terminate@@YAXXZ', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_crt_debugger_hook', '_unlock', '__dllonexit', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', 'srand', '_invoke_watson', '_acmdln', 'malloc', '_time64', '??3@YAXPAX@Z', '__CxxFrameHandler3', 'rand', '??2@YAPAXI@Z', '_controlfp_s', 'InitCommonControlsEx', '_TrackMouseEvent'], ['GetModuleHandleA', 'ScrollDC', 'RegQueryValueW', 'DSA_Create', '_CorExeMain', 'ShellAboutA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetOpenFileNameW', 'SHGetMalloc', 'PathCompactPathExW', 'SetFocus'], ['IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'FlsAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'SetUnhandledExceptionFilter', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapSize', 'HeapQueryInformation', 'ExitProcess', 'Sleep', 'RtlPcToFileHeader', 'RaiseException', 'HeapReAlloc', 'RtlUnwindEx', 'RtlLookupFunctionEntry', 'GetCommandLineA', 'FlsSetValue', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'GetFileSizeEx', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'CreateFileW', 'GetShortPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetStringTypeExW', 'DeleteFileW', 'MoveFileW', 'GetCurrentDirectoryW', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'GlobalFlags', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'lstrlenA', 'GetTempPathW', 'GetProfileIntW', 'SearchPathW', 'lstrcmpiW', 'LocalAlloc', 'LocalUnlock', 'LocalLock', 'GetDiskFreeSpaceW', 'GetFullPathNameW', 'GetTempFileNameW', 'GetFileTime', 'SetFileTime', 'GetFileAttributesW', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'CompareStringA', 'GetModuleFileNameW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'FreeLibrary', 'CompareStringW', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GetCurrentThreadId', 'CloseHandle', 'GlobalLock', 'GlobalUnlock', 'GetCurrentProcessId', 'GlobalGetAtomNameW', 'GlobalAddAtomW', 'GetLastError', 'SetLastError', 'lstrlenW', 'GetProcAddress', 'GetModuleHandleW', 'LoadLibraryW', 'FreeResource', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'GetLocalTime', 'InitializeCriticalSectionAndSpinCount', 'VirtualAlloc', 'RegisterClipboardFormatW', 'LockWindowUpdate', 'GetDCEx', 'SystemParametersInfoW', 'GetMenuItemInfoW', 'InflateRect', 'GetSysColorBrush', 'LoadCursorW', 'DestroyCursor', 'SetCapture', 'GetTabbedTextExtentW', 'IsClipboardFormatAvailable', 'ShowOwnedPopups', 'PostQuitMessage', 'IsZoomed', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuW', 'EnableMenuItem', 'CheckMenuItem', 'SetWindowTextW', 'IsDialogMessageW', 'SetDlgItemTextW', 'RegisterWindowMessageW', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'GetClassLongPtrW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'MessageBoxW', 'CreateWindowExW', 'GetClassInfoExW', 'RegisterClassW', 'GetScrollInfo', 'SetScrollInfo', 'CallWindowProcW', 'SystemParametersInfoA', 'GetWindowPlacement', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'FillRect', 'GetMenuState', 'GetMenuStringW', 'AppendMenuW', 'InsertMenuW', 'RemoveMenu', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'ValidateRect', 'GetClassNameW', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuW', 'DestroyMenu', 'WinHelpW', 'SetWindowPos', 'SetFocus', 'GetWindowThreadProcessId', 'GetActiveWindow', 'IsWindowEnabled', 'EqualRect', 'GetDlgItem', 'LoadIconW', 'SetCursor', 'PeekMessageW', 'ReleaseCapture', 'LoadAcceleratorsW', 'SetActiveWindow', 'IsWindowVisible', 'UpdateWindow', 'IsIconic', 'InsertMenuItemW', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreatePopupMenu', 'GetClassInfoW', 'IntersectRect', 'GetMenu', 'GetLastActivePopup', 'BringWindowToTop', 'SetMenu', 'GetDesktopWindow', 'GetTabbedTextExtentA', 'PostThreadMessageW', 'CreateMenu', 'CopyAcceleratorTableW', 'SetWindowRgn', 'DrawIcon', 'CharUpperW', 'SetScrollRange', 'DestroyIcon', 'GetWindowLongW', 'ShowWindow', 'GetWindow', 'TranslateAcceleratorW', 'SetWindowLongW', 'GetSysColor', 'SetRectEmpty', 'PtInRect', 'GetDC', 'GetSystemMetrics', 'ReleaseDC', 'IsWindow', 'DefWindowProcW', 'GetDlgCtrlID', 'GetCursorPos', 'WindowFromPoint', 'IsChild', 'GetParent', 'GetCapture', 'InvalidateRect', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'OffsetRect', 'CopyRect', 'SetRect', 'DeferWindowPos', 'PostMessageW', 'GetFocus', 'SetTimer', 'GetWindowRect', 'KillTimer', 'EnableWindow', 'GetKeyState', 'MessageBeep', 'SendMessageW', 'AdjustWindowRectEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'CreatePatternBrush', 'CreateBitmap', 'SelectClipRgn', 'CreatePen', 'CreateSolidBrush', 'DPtoLP', 'GetViewportOrgEx', 'ScaleViewportExtEx', 'PatBlt', 'StartPage', 'OffsetViewportOrgEx', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceW', 'GetTextExtentPoint32A', 'GetWindowOrgEx', 'Rectangle', 'SetViewportExtEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'PtVisible', 'StartDocW', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'EndPage', 'CreateFontIndirectW', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateDCW', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'StretchDIBits', 'DeleteDC', 'GetObjectW', 'CreateFontW', 'SelectObject', 'GetCharWidthW', 'DeleteObject', 'GetBkColor', 'GetStockObject', 'GetTextExtentPoint32W', 'EnumFontFamiliesW', 'GetTextMetricsW', 'GetFileTitleW', 'ClosePrinter', 'OpenPrinterW', 'GetJobW', 'DocumentPropertiesW', 'RegSetValueExW', 'RegCreateKeyW', 'RegCreateKeyExW', 'GetFileSecurityW', 'SetFileSecurityW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegSetValueW', 'RegCloseKey', 'RegDeleteValueW', 'DragFinish', 'ExtractIconW', 'SHGetFileInfoW', 'DragQueryFileW', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'PathRemoveFileSpecW', 'CoInitializeEx', 'CoUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'CoCreateInstance', 'CoTaskMemFree', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen'], ['GetTickCount', 'ReadConsoleOutputA', 'MulDiv', 'LocalReAlloc', 'EnumResourceLanguagesA', 'CompareStringW', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'GetModuleHandleW', 'GlobalFree', 'SetFileApisToOEM', 'LoadLibraryA', 'LocalAlloc', 'SetConsoleCtrlHandler', 'AddAtomA', 'SetProcessShutdownParameters', 'CloseHandle', 'GlobalGetAtomNameA', 'CreateProcessW', 'GetLocaleInfoW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'RaiseException', 'LCMapStringA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringW', 'GetCPInfo', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'TransparentBlt'], ['GetTickCount', 'GetProcessHeap', 'WriteFile', 'Sleep', 'ReadFile', 'CreateFileW', 'GetFileSizeEx', 'GetStdHandle', 'GetLastError', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'GetLogicalDrives', 'LoadLibraryA', 'lstrcmpiW', 'FindNextFileW', 'CloseHandle', 'CreateThread', 'ExitProcess', 'GetModuleFileNameW', 'WideCharToMultiByte', 'ExitThread', 'MultiByteToWideChar', 'CreateMutexA', 'WaitForSingleObject', 'HeapFree', 'SetFilePointerEx', 'GetCurrentProcess', 'HeapAlloc', 'GetDriveTypeW', 'lstrlenA', 'FindFirstFileW', 'FindClose', 'GetSystemDefaultLangID', 'GetStringTypeW', 'LCMapStringW', 'IsValidCodePage', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'HeapSetInformation', 'RaiseException', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapSize', 'GetModuleHandleW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'LeaveCriticalSection', 'EnterCriticalSection', 'RtlUnwind', 'HeapReAlloc', 'LoadLibraryW', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'CryptDecrypt', 'CryptCreateHash', 'CryptDeriveKey', 'CryptDestroyKey', 'CryptEncrypt', 'CryptImportKey', 'CryptAcquireContextA', 'CryptReleaseContext', 'CryptHashData', 'ShellExecuteW', 'PathFindExtensionW', 'PathIsDirectoryW'], ['CreateDIBPatternBrushPt', 'GetCharABCWidthsA', 'GetGlyphOutlineA', 'GetNearestPaletteIndex', 'GetObjectType', 'GetSystemPaletteUse', 'GetArcDirection', 'AddFontResourceW', 'ScriptCacheGetHeight', 'ScriptString_pLogAttr', 'ScriptGetFontScriptTags', 'ScriptGetFontLanguageTags', 'ScriptGetFontFeatureTags', 'ScriptGetLogicalWidths'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'OutputDebugStringA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileType', 'GetFileTime', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePatternBrush', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastInputInfo', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DestroyAcceleratorTable', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableA', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateILockBytesOnHGlobal', 'GetHGlobalFromILockBytes', 'OleGetIconOfClass', 'OleDraw', 'OleSetMenuDescriptor', 'OleSetContainedObject', 'OleSave', 'OleLoad', 'OleUninitialize', 'OleInitialize', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['GetModuleHandleA', 'ReleaseDC', 'RegisterEventSourceA', 'ShellAboutA', '_CorExeMain', 'PropertySheet'], ['GetModuleHandleA', 'CopyRect', 'RegQueryValueA', '_CorExeMain', 'ShellAboutA', 'DSA_Create'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'SetClassLongW', 'GetClassLongW', 'SetWindowLongW', 'GetWindowLongW', 'CreateWindowExW', 'WindowFromPoint', 'WaitMessage', 'WaitForInputIdle', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetCapture', 'SetActiveWindow', 'SendNotifyMessageW', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PostThreadMessageW', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsClipboardFormatAvailable', 'IsChild', 'InvalidateRect', 'InsertMenuItemW', 'InsertMenuW', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameW', 'GetClassInfoExW', 'GetClassInfoW', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndMenu', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CreateAcceleratorTableW', 'CountClipboardFormats', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharUpperW', 'CharPrevW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AttachThreadInput', 'CharLowerBuffA', 'CharUpperBuffA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetRectRgn', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateEnhMetaFileW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CloseEnhMetaFile', 'Chord', 'BitBlt', 'ArcTo', 'Arc', 'AngleArc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WriteFile', 'WinExec', 'WideCharToMultiByte', 'WaitForSingleObjectEx', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'WaitForMultipleObjects', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UpdateResourceW', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'TerminateProcess', 'SystemTimeToFileTime', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'QueryDosDeviceW', 'PulseEvent', 'IsDebuggerPresent', 'OpenProcess', 'OpenFileMappingW', 'OpenEventW', 'MultiByteToWideChar', 'MulDiv', 'MoveFileW', 'MapViewOfFileEx', 'MapViewOfFile', 'LockResource', 'LocalFree', 'LocalFileTimeToFileTime', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVolumeInformationW', 'GetVersionExW', 'GetVersion', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStringTypeExW', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FlushViewOfFile', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumSystemLocalesW', 'EnumResourceNamesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'EndUpdateResourceW', 'DuplicateHandle', 'DeleteFileW', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessW', 'CreatePipe', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CopyFileW', 'CompareStringA', 'CompareStringW', 'CloseHandle', 'BeginUpdateResourceW', 'SetSecurityDescriptorSacl', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExA', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'OpenThreadToken', 'OpenProcessToken', 'LookupAccountSidW', 'IsValidSid', 'InitializeSecurityDescriptor', 'InitializeAcl', 'GetUserNameW', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'GetLengthSid', 'FreeSid', 'AllocateAndInitializeSid', 'AddAccessAllowedAce', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'CreateStreamOnHGlobal', 'OleRegEnumVerbs', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'EnumDisplayMonitors', 'GetMonitorInfoW', 'MonitorFromPoint', 'MonitorFromRect', 'MonitorFromWindow', 'memset', 'memcpy', 'SHGetFileInfoW', 'ShellExecuteW', 'Shell_NotifyIconW', 'ExtractAssociatedIconW', 'FindNextUrlCacheEntryW', 'FindFirstUrlCacheEntryW', 'FindCloseUrlCache', 'DeleteUrlCacheEntryW', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHChangeNotify', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW', 'GetVersionExW', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'WSACancelAsyncRequest', 'WSAAsyncGetHostByName', 'gethostname', 'socket', 'shutdown', 'setsockopt', 'send', 'recv', 'ntohs', 'listen', 'ioctlsocket', 'inet_ntoa', 'inet_addr', 'htons', 'closesocket'], ['CryptStringToBinaryA', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualAlloc', 'GetSystemTimeAsFileTime', 'RaiseException', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'Sleep', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetACP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GlobalFree', 'GlobalUnlock', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'WideCharToMultiByte', 'GlobalLock', 'GlobalAlloc', 'InterlockedExchange', 'MultiByteToWideChar', 'GetLastError', 'GetVersion', 'CompareStringA', 'lstrlenA', 'GetProcAddress', 'LoadLibraryW', 'GetVersionExA', 'GetModuleHandleA', 'lstrcmpW', 'SetLastError', 'LoadLibraryA', 'FreeLibrary', 'SetErrorMode', 'CreateFileA', 'GetCurrentProcess', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'GetCurrentThreadId', 'FreeResource', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetThreadLocale', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'MulDiv', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentProcessId', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'FormatMessageA', 'LocalFree', 'EnumSystemLocalesA', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'ValidateRect', 'PostQuitMessage', 'GetCursorPos', 'WindowFromPoint', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GetMenuState', 'IsWindowEnabled', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'UnregisterClassA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'SetFocus', 'GetWindowTextA', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetMenu', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'LoadCursorA', 'GetSysColorBrush', 'DestroyMenu', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'LoadImageA', 'GetSystemMetrics', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'AppendMenuA', 'DrawIcon', 'CreateWindowExW', 'InSendMessage', 'IsWindow', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'SendMessageA', 'EnableWindow', 'GetParent', 'InvalidateRect', 'GetClientRect', 'GetWindowRect', 'EqualRect', 'GetForegroundWindow', 'SaveDC', 'RestoreDC', 'SetMapMode', 'DeleteObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'CreateBitmap', 'GetStockObject', 'GetDeviceCaps', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'BitBlt', 'CreateCompatibleDC', 'SetWindowOrgEx', 'CreateCompatibleBitmap', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegQueryValueA', 'RegOpenKeyA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', '_TrackMouseEvent', 'PathFindFileNameA', 'PathFindExtensionA', 'CreateStreamOnHGlobal', 'VariantClear', 'VariantChangeType', 'VariantInit', 'GdipCreateFromHDC', 'GdipSetImageAttributesColorMatrix', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipDisposeImageAttributes', 'GdipCreateImageAttributes', 'GdipAlloc', 'GdipFree', 'GdipDrawImageRectRect', 'GdipCloneImage', 'GdiplusShutdown', 'GdiplusStartup', 'GdipDisposeImage'], ['GetLocaleInfoA', 'RemoveDirectoryTransactedA', 'GetUserDefaultLCID', 'DeleteFileA', 'lstrlenA', 'GetLastError', 'HeapAlloc', 'lstrcpynA', 'lstrcmpiW', 'GetModuleFileNameA', 'GetCurrentProcess', 'GetSystemPowerStatus', 'CreateMutexA', 'OpenProcess', 'CreateToolhelp32Snapshot', 'MultiByteToWideChar', 'GetSystemWow64DirectoryW', 'GetTimeZoneInformation', 'OpenMutexA', 'Process32NextW', 'GetVersionExA', 'GlobalAlloc', 'lstrcpyA', 'GetModuleHandleA', 'GlobalFree', 'GetSystemInfo', 'GetLogicalDriveStringsA', 'GlobalMemoryStatusEx', 'WideCharToMultiByte', 'GetComputerNameA', 'UnmapViewOfFile', 'GetFileInformationByHandle', 'FileTimeToSystemTime', 'CloseHandle', 'GetTickCount', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'HeapReAlloc', 'OutputDebugStringW', 'GetEnvironmentVariableA', 'GetFileSize', 'lstrcpyW', 'LoadLibraryW', 'GetVersionExW', 'lstrlenW', 'CreateDirectoryA', 'Process32FirstW', 'SystemTimeToFileTime', 'CreateFileA', 'GetFileAttributesA', 'LocalFileTimeToFileTime', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'SetFilePointer', 'SetFileTime', 'WriteFile', 'ReadFile', 'FindClose', 'CopyFileTransactedA', 'CreateDirectoryTransactedA', 'FreeLibrary', 'GetProcessHeap', 'LocalFree', 'GetProcAddress', 'lstrcatW', 'LoadLibraryA', 'LocalAlloc', 'SetEnvironmentVariableW', 'ReadConsoleW', 'EnumSystemLocalesW', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileSizeEx', 'GetCommandLineW', 'GetCommandLineA', 'HeapSize', 'ExitProcess', 'WriteConsoleW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetFileType', 'GetStdHandle', 'LoadLibraryExW', 'DeleteFileTransactedA', 'GetLocalTime', 'HeapFree', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'InitializeSListHead', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'DecodePointer', 'EncodePointer', 'GetSystemTimeAsFileTime', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SetCurrentDirectoryW', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'RemoveDirectoryW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'SetLastError', 'GetModuleHandleW', 'CopyFileW', 'FormatMessageW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'SwitchToThread', 'GetDesktopWindow', 'wsprintfW', 'wsprintfA', 'GetSystemMetrics', 'EnumDisplayDevicesA', 'GetWindowDC', 'GetWindowRect', 'BitBlt', 'SaveDC', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'GetDeviceCaps', 'DeleteDC', 'RestoreDC', 'DeleteObject', 'GetTokenInformation', 'CryptGetHashParam', 'CryptDestroyHash', 'RegQueryValueExA', 'GetUserNameA', 'CreateProcessWithTokenW', 'OpenProcessToken', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'DuplicateTokenEx', 'RegQueryValueExW', 'CryptReleaseContext', 'RegCloseKey', 'RegEnumKeyExW', 'RegOpenKeyExW', 'CryptAcquireContextA', 'CredEnumerateW', 'CredFree', 'CryptCreateHash', 'CryptHashData', 'SHGetFolderPathA', 'ShellExecuteA', 'SHGetSpecialFolderPathW', 'CoInitialize', 'CoUninitialize', 'CoTaskMemFree', 'CoCreateInstance', 'GetUserProfileDirectoryA', 'CommitTransaction', 'RollbackTransaction', 'CreateTransaction', 'BCryptDecrypt', 'BCryptDestroyKey', 'BCryptGenerateSymmetricKey', 'BCryptOpenAlgorithmProvider', 'BCryptSetProperty', 'BCryptCloseAlgorithmProvider', 'CryptStringToBinaryA', 'CryptUnprotectData', 'StrCmpNW', 'StrStrIW', 'WinHttpCloseHandle', 'WinHttpSendRequest', 'WinHttpConnect', 'WinHttpQueryDataAvailable', 'WinHttpSetOption', 'WinHttpQueryHeaders', 'WinHttpOpen', 'WinHttpOpenRequest', 'WinHttpReceiveResponse', 'WinHttpReadData', 'GdiplusStartup', 'GdipGetImageEncodersSize', 'GdipFree', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipAlloc', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdiplusShutdown', 'GdipSaveImageToFile'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'MessageBeep', 'GetProcessWindowStation', 'VariantChangeTypeEx', 'RaiseException'], ['GetModuleHandleA', 'ValidateRect', 'GetUserNameA', 'ImageList_SetBkColor', '_CorExeMain', 'SHGetIconOverlayIndexA'], ['lstrcatA', 'InitializeCriticalSection', 'GetProcAddress', 'LocalFree', 'RaiseException', 'LocalAlloc', 'GetModuleHandleA', 'LeaveCriticalSection', 'EnterCriticalSection', 'DuplicateHandle', 'GetShortPathNameA', 'ResumeThread', 'WriteProcessMemory', 'GetPrivateProfileSectionA', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'DefWindowProcA', 'AdjustWindowRectEx'], ['OpenFileMappingA', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'FileTimeToLocalFileTime', 'OpenEventA', 'SetEnvironmentVariableA', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetTimeZoneInformation', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'CreateFileA', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'SetHandleCount', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'HeapCreate', 'HeapDestroy', 'HeapReAlloc', 'FatalAppExitA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'VirtualQuery', 'GetSystemInfo', 'OutputDebugStringW', 'GetFileType', 'WriteConsoleW', 'OutputDebugStringA', 'GetStdHandle', 'DebugBreak', 'ExitProcess', 'ExitThread', 'CreateThread', 'GetModuleFileNameA', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'IsBadReadPtr', 'HeapValidate', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'GetDiskFreeSpaceW', 'GetTempFileNameW', 'GetFileTime', 'SetFileTime', 'GetFileAttributesW', 'GetShortPathNameW', 'lstrcmpiW', 'GetStringTypeExW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'MoveFileW', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileW', 'GetCurrentProcess', 'GetHandleInformation', 'GetCurrentDirectoryW', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'GetThreadLocale', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'FindResourceExW', 'InterlockedIncrement', 'CompareStringA', 'InterlockedExchange', 'GetLocaleInfoW', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GlobalFlags', 'CreateEventW', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'GlobalSize', 'FormatMessageW', 'GetProfileIntW', 'MulDiv', 'GetModuleHandleA', 'GetVersion', 'GetVersionExW', 'SuspendThread', 'ResumeThread', 'GetThreadPriority', 'SetThreadPriority', 'CompareStringW', 'LoadLibraryA', 'LoadLibraryW', 'lstrcmpW', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExA', 'FreeResource', 'lstrlenA', 'lstrcmpA', 'MultiByteToWideChar', 'SetErrorMode', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalAlloc', 'GlobalReAlloc', 'GlobalLock', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'GlobalUnlock', 'GlobalFree', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'LocalFree', 'GetAtomNameW', 'GlobalGetAtomNameW', 'lstrlenW', 'WideCharToMultiByte', 'FreeLibrary', 'InterlockedDecrement', 'GetModuleHandleW', 'GetProcAddress', 'GetCurrentProcessId', 'GetModuleFileNameW', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetLastError', 'SetLastError', 'CreateMutexW', 'FindFirstChangeNotificationW', 'PeekNamedPipe', 'CreateDirectoryW', 'GetCurrentThread', 'VirtualFree', 'Sleep', 'CopyFileW', 'GetTempPathW', 'OpenMutexW', 'VirtualAlloc', 'ResetEvent', 'VirtualProtect', 'DuplicateHandle', 'DeleteFileW', 'GetEnvironmentVariableW', 'DeleteDC', 'BitBlt', 'CreatePen', 'CreateDCW', 'DPtoLP', 'GetObjectW', 'EnumFontFamiliesExW', 'CopyMetaFileW', 'StretchDIBits', 'PlayEnhMetaFile', 'GdiComment', 'WidenPath', 'StrokePath', 'StrokeAndFillPath', 'SetMiterLimit', 'GetPath', 'GetMiterLimit', 'FlattenPath', 'FillPath', 'EndPath', 'CloseFigure', 'BeginPath', 'AbortPath', 'GetCharWidthFloatW', 'GetCharABCWidthsFloatW', 'ExtEscape', 'DrawEscape', 'PolyBezier', 'GetCurrentObject', 'GetColorAdjustment', 'PolyPolyline', 'GetArcDirection', 'AngleArc', 'SetPixelV', 'PlgBlt', 'MaskBlt', 'EndDoc', 'AbortDoc', 'SetAbortProc', 'EndPage', 'StartPage', 'StartDocW', 'GetGlyphOutlineW', 'GetKerningPairsW', 'GetFontData', 'GetCharABCWidthsW', 'GetOutlineTextMetricsW', 'ResetDCW', 'GetBoundsRect', 'SetBoundsRect', 'Escape', 'GetAspectRatioFilterEx', 'GetCharacterPlacementW', 'GetFontLanguageInfo', 'GetCharWidthW', 'GetTextCharacterExtra', 'GetTextMetricsW', 'GetTextFaceW', 'GetTextAlign', 'GetTextExtentPoint32W', 'TextOutW', 'ExtFloodFill', 'FloodFill', 'SetPixel', 'GetPixel', 'StretchBlt', 'PatBlt', 'RoundRect', 'Rectangle', 'PolyPolygon', 'Polygon', 'Pie', 'Ellipse', 'Chord', 'Polyline', 'Arc', 'RectVisible', 'PtVisible', 'PaintRgn', 'InvertRgn', 'FrameRgn', 'FillRgn', 'LPtoDP', 'GetWindowExtEx', 'GetWindowOrgEx', 'GetViewportExtEx', 'GetViewportOrgEx', 'GetWorldTransform', 'GetGraphicsMode', 'GetMapMode', 'GetTextColor', 'GetStretchBltMode', 'GetROP2', 'GetPolyFillMode', 'GetBkMode', 'GetBkColor', 'UpdateColors', 'RealizePalette', 'GetNearestColor', 'EnumObjects', 'SetBrushOrgEx', 'GetBrushOrgEx', 'CreateCompatibleDC', 'CreateICW', 'RectInRegion', 'PtInRegion', 'GetRgnBox', 'OffsetRgn', 'EqualRgn', 'CombineRgn', 'SetRectRgn', 'GetRegionData', 'ExtCreateRegion', 'PathToRegion', 'CreateRoundRectRgn', 'CreatePolyPolygonRgn', 'CreatePolygonRgn', 'CreateEllipticRgnIndirect', 'CreateEllipticRgn', 'CreateRectRgnIndirect', 'ResizePalette', 'GetNearestPaletteIndex', 'AnimatePalette', 'SetPaletteEntries', 'GetPaletteEntries', 'CreateHalftonePalette', 'CreatePalette', 'CreateDiscardableBitmap', 'CreateCompatibleBitmap', 'GetBitmapDimensionEx', 'SetBitmapDimensionEx', 'GetBitmapBits', 'SetBitmapBits', 'CreateBitmapIndirect', 'CreateFontW', 'CreateFontIndirectW', 'CreateBrushIndirect', 'CreatePenIndirect', 'UnrealizeObject', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateHatchBrush', 'CreateSolidBrush', 'ExtCreatePen', 'GetDeviceCaps', 'PlayMetaFile', 'EnumMetaFile', 'GetObjectType', 'PlayMetaFileRecord', 'ExtSelectClipRgn', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'DeleteObject', 'PolyBezierTo', 'SetColorAdjustment', 'PolylineTo', 'PolyDraw', 'SetArcDirection', 'ArcTo', 'GetCurrentPositionEx', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'LineTo', 'MoveToEx', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SelectPalette', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'CreateMetaFileW', 'CloseMetaFile', 'CreateEnhMetaFileW', 'CloseEnhMetaFile', 'ExtTextOutW', 'GetDCOrgEx', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'BeginDeferWindowPos', 'DeferWindowPos', 'EqualRect', 'ScreenToClient', 'AdjustWindowRectEx', 'SetFocus', 'GetFocus', 'DispatchMessageW', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'LoadIconW', 'AppendMenuW', 'GetClassInfoW', 'GetClassInfoExW', 'CreateWindowExW', 'RegisterWindowMessageW', 'SetMenuItemBitmaps', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'DragDetect', 'GetMenu', 'SetMenu', 'DrawMenuBar', 'GetSystemMenu', 'HiliteMenuItem', 'IsZoomed', 'ArrangeIconicWindows', 'SetWindowRgn', 'GetWindowRgn', 'BringWindowToTop', 'ClientToScreen', 'BeginPaint', 'EndPaint', 'GetDC', 'GetWindowDC', 'ReleaseDC', 'UpdateWindow', 'GetUpdateRect', 'GetUpdateRgn', 'InvalidateRect', 'InvalidateRgn', 'ValidateRect', 'ValidateRgn', 'IsWindowVisible', 'ShowOwnedPopups', 'GetDCEx', 'LockWindowUpdate', 'RedrawWindow', 'EnableScrollBar', 'DrawAnimatedRects', 'DrawCaption', 'SetTimer', 'KillTimer', 'SetCapture', 'DlgDirListW', 'DlgDirListComboBoxW', 'DlgDirSelectExW', 'DlgDirSelectComboBoxExW', 'GetNextDlgGroupItem', 'GetNextDlgTabItem', 'ShowScrollBar', 'ChildWindowFromPoint', 'ChildWindowFromPointEx', 'FindWindowW', 'FindWindowExW', 'SetParent', 'WindowFromPoint', 'FlashWindow', 'ChangeClipboardChain', 'SetClipboardViewer', 'OpenClipboard', 'GetOpenClipboardWindow', 'GetClipboardOwner', 'GetClipboardViewer', 'CreateCaret', 'GetCaretPos', 'SetCaretPos', 'HideCaret', 'ShowCaret', 'SetForegroundWindow', 'SendNotifyMessageW', 'SetWindowContextHelpId', 'GetWindowContextHelpId', 'PostThreadMessageW', 'LoadCursorW', 'CloseWindow', 'OpenIcon', 'CheckDlgButton', 'GetCapture', 'GetDlgItemInt', 'GetDlgItemTextW', 'CopyRect', 'SetDlgItemTextW', 'IsDlgButtonChecked', 'ScrollWindowEx', 'SetWindowTextW', 'MoveWindow', 'ShowWindow', 'GetAsyncKeyState', 'WindowFromDC', 'ExcludeUpdateRgn', 'FrameRect', 'InvertRect', 'DrawIcon', 'DrawStateW', 'DrawEdge', 'DrawFocusRect', 'DrawTextW', 'DrawTextExW', 'GetTabbedTextExtentW', 'GrayStringW', 'ScrollDC', 'CreateMenu', 'IsMenu', 'DeleteMenu', 'CheckMenuItem', 'EnableMenuItem', 'SetMenuDefaultItem', 'GetMenuDefaultItem', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'GetMenuStringW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'GetSubMenu', 'InsertMenuW', 'InsertMenuItemW', 'ModifyMenuW', 'RemoveMenu', 'LoadMenuW', 'LoadMenuIndirectW', 'SetMenuContextHelpId', 'GetMenuContextHelpId', 'CheckMenuRadioItem', 'GetCursorPos', 'SetRectEmpty', 'SetCursor', 'ReleaseCapture', 'GetMessageW', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'DestroyMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'UnregisterClassW', 'TranslateMessage', 'GetDialogBaseUnits', 'GetClipboardFormatNameA', 'GetClipboardFormatNameW', 'SystemParametersInfoW', 'GetKeyNameTextW', 'MapVirtualKeyW', 'CharUpperW', 'DestroyIcon', 'IsRectEmpty', 'PtInRect', 'SetRect', 'InflateRect', 'UnionRect', 'SubtractRect', 'DispatchMessageA', 'GetMessageA', 'IsWindowUnicode', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'UnregisterClassA', 'WinHelpW', 'TrackPopupMenuEx', 'SetWindowPlacement', 'GetWindowTextLengthW', 'GetSysColorBrush', 'GetActiveWindow', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'GetScrollRange', 'SetScrollRange', 'GetWindowTextW', 'GetKeyState', 'GetWindowRect', 'TrackPopupMenu', 'FillRect', 'PostMessageW', 'DialogBoxIndirectParamW', 'GetClientRect', 'GetForegroundWindow', 'IsDialogMessageW', 'CreateDialogIndirectParamW', 'DrawFrameControl', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'SetDlgItemInt', 'GetWindow', 'GetDlgCtrlID', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'CallWindowProcW', 'RemovePropW', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'SetWindowLongW', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'EndDialog', 'GetDesktopWindow', 'SetActiveWindow', 'GetSystemMetrics', 'DestroyWindow', 'GetDlgItem', 'UnhookWindowsHookEx', 'MessageBoxW', 'GetWindowLongW', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'GetWindowThreadProcessId', 'TabbedTextOutW', 'SendMessageW', 'IsWindow', 'MapDialogRect', 'PeekMessageW', 'PostQuitMessage', 'CheckRadioButton', 'CreatePopupMenu', 'RegisterClassW', 'CoRevokeClassObject', 'CoUnmarshalInterface', 'CreateStreamOnHGlobal', 'CoMarshalInterface', 'CoReleaseMarshalData', 'OleRun', 'CLSIDFromProgID', 'CLSIDFromString', 'StringFromGUID2', 'CoCreateInstance', 'CoDisconnectObject', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleSetContainedObject', 'OleInitialize', 'OleUninitialize', 'CreateBindCtx', 'OleDuplicateData', 'CoRegisterClassObject', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCopy', 'VarBstrFromCy', 'VarCyFromStr', 'SysReAllocStringLen', 'VariantCopy', 'SafeArrayCreate', 'SafeArrayRedim', 'SafeArrayGetLBound', 'VarBstrFromDec', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SysStringByteLen', 'SysAllocStringByteLen', 'SysStringLen', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'LoadTypeLib', 'DosDateTimeToVariantTime', 'VariantTimeToSystemTime', 'VarUdateFromDate', 'VarDateFromUdate', 'SystemTimeToVariantTime', 'SysFreeString', 'VarDecFromStr', 'VarDateFromStr', 'SafeArrayGetUBound', 'SysAllocString', 'VarBstrFromDate', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'LresultFromObject', 'GetFileTitleW', 'DragFinish', 'DragQueryFileW', 'SHGetFileInfoW', 'ExtractIconW', 'DragAcceptFiles', 'PathStripToRootW', 'PathIsUNCW', 'PathRemoveExtensionW', 'PathFindExtensionW', 'PathFindFileNameW', 'OpenThreadToken', 'RevertToSelf', 'SetThreadToken', 'GetFileSecurityW', 'SetFileSecurityW', 'RegCreateKeyW', 'RegDeleteValueW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegEnumKeyW', 'RegQueryValueW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegOpenKeyW', 'RegSetValueW', 'RegCloseKey'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'SetMailslotInfo', 'CreateDirectoryW', 'GetConsoleAliasesA', 'GetConsoleTitleA', 'ReadConsoleW', 'WriteConsoleW', 'GetBinaryTypeW', 'ReplaceFileA', 'CreateDirectoryA', 'GetStdHandle', 'GetCPInfoExW', 'GetLastError', 'GetProcAddress', 'SetFilePointer', 'MoveFileW', 'WriteProfileSectionA', 'EnterCriticalSection', 'LoadLibraryA', 'WriteConsoleA', 'GetProcessWorkingSetSize', 'SetCalendarInfoW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'FindFirstChangeNotificationA', 'FreeEnvironmentStringsW', 'VirtualProtect', 'InterlockedPushEntrySList', 'VirtualAlloc', 'UnregisterWait', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapAlloc', 'HeapReAlloc', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'Sleep', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'HeapSize'], ['GetModuleHandleA', 'TranslateMessage', 'GetUserNameA', 'InitCommonControls'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetProcessId', 'lstrcmpA', 'GetLastError', 'lstrlenA', 'lstrcatA', 'GetACP', 'GetVersion', 'GetCurrentThread', 'CheckRadioButton', 'GetWindowThreadProcessId', 'GetGUIThreadInfo', 'GetCursorPos', 'CheckMenuItem', 'GetCursorInfo', 'CheckMenuRadioItem', 'GetActiveWindow', 'vSetDdrawflag', 'DrawStatusTextA', 'CreateStdAccessibleObject'], ['EnumPwrSchemes', 'CM_Get_First_Log_Conf', 'SetupDiGetClassInstallParamsA', 'HGLOBAL_UserFree', 'DrawFrameControl', 'GetWindowTextA', 'TabbedTextOutA', 'RpcBindingFromStringBindingA', 'NdrSimpleTypeUnmarshall', 'SHGetFolderLocation', 'GetModuleFileNameW', 'SetConsoleDisplayMode', 'ConvertFiberToThread', 'GetBinaryTypeW', 'lstrlenW', 'SetLocaleInfoW', 'WriteConsoleOutputAttribute', 'ReadConsoleOutputW', 'GetModuleHandleW', 'VarUI2FromStr', 'NotifyRouteChange', 'RegOpenKeyA', 'SaferCreateLevel', 'GetServiceKeyNameA', 'GetNumberOfEventLogRecords', 'CombineRgn', 'RemoveFontResourceExW', 'SHDeleteValueA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenIcon', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LockWindowUpdate', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'GetProcAddress', 'NtFlushInstructionCache', 'FileProtocolHandlerA'], ['GetModuleHandleW', 'CreateWindowExW', 'RegisterEventSourceA', 'InitMUILanguage', '_CorExeMain', 'SHChangeNotifyRegister'], ['SetStdHandle', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'WriteConsoleW', 'SetFilePointerEx', 'ReadFile', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'GetACP', 'GetCommandLineW', 'GetCommandLineA', 'ReadConsoleW', 'CreateFileW', 'HeapSize', 'LocalFree', 'FreeConsole', 'HeapFree', 'SetConsoleCursorPosition', 'WinExec', 'FreeLibrary', 'GetProcessHeap', 'ExitProcess', 'GetProcAddress', 'FillConsoleOutputAttribute', 'HeapAlloc', 'CreateThread', 'CloseHandle', 'LoadLibraryA', 'TerminateThread', 'CreateFileA', 'GetLastError', 'Sleep', 'GetModuleHandleA', 'GetCurrentThreadId', 'LocalAlloc', 'SetFilePointer', 'DeviceIoControl', 'GetStdHandle', 'WriteFile', 'FillConsoleOutputCharacterA', 'GetCurrentProcess', 'SetConsoleTitleA', 'SetConsoleTextAttribute', 'GetConsoleScreenBufferInfo', 'GetModuleFileNameA', 'GetModuleHandleExW', 'HeapReAlloc', 'LoadLibraryExW', 'RaiseException', 'RtlUnwind', 'InitializeSListHead', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'SetEndOfFile', 'SetCursorPos', 'ReleaseDC', 'EnableWindow', 'SetWindowsHookExW', 'FindWindowA', 'GetMessageA', 'DispatchMessageA', 'LoadCursorA', 'DrawIcon', 'GetCursorInfo', 'GetForegroundWindow', 'MoveWindow', 'DefWindowProcA', 'CreateWindowExA', 'TranslateMessage', 'LoadIconA', 'PostQuitMessage', 'GetDesktopWindow', 'RegisterClassExA', 'GetCursorPos', 'BeginPaint', 'EndPaint', 'GetWindowRect', 'GetDC', 'SendMessageTimeoutA', 'MessageBoxW', 'EnumChildWindows', 'CallNextHookEx', 'GetSystemMetrics', 'SetWindowTextW', 'ShowWindow', 'RedrawWindow', 'MessageBoxA', 'UnhookWindowsHookEx', 'Pie', 'CreateFontA', 'SetPixel', 'PatBlt', 'StretchBlt', 'PlgBlt', 'PolyBezier', 'CreatePolygonRgn', 'CreatePatternBrush', 'CreateRectRgn', 'SetTextColor', 'TextOutA', 'SetBkMode', 'CreatePen', 'Rectangle', 'SelectClipRgn', 'Polygon', 'SetBkColor', 'Ellipse', 'CreateSolidBrush', 'CreateEllipticRgn', 'BitBlt', 'SelectObject', 'CreateDIBSection', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'CreateCompatibleBitmap', 'OpenProcessToken', 'CryptAcquireContextA', 'CryptGenRandom', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'SHDeleteKeyA', 'AlphaBlend', 'waveOutOpen', 'waveOutReset', 'waveOutUnprepareHeader', 'waveOutWrite', 'waveOutPrepareHeader'], ['InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyExA', 'RegFlushKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'CloseHandle', 'CompareStringA', 'CopyFileA', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreatePipe', 'CreateProcessA', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'EnumCalendarInfoA', 'ExitProcess', 'FatalAppExitA', 'FileTimeToDosDateTime', 'FileTimeToLocalFileTime', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FindResourceA', 'FormatMessageA', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetComputerNameA', 'GetCurrentDirectoryA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDateFormatA', 'GetDiskFreeSpaceA', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GetFileAttributesA', 'GetFileSize', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetOEMCP', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeExA', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetThreadLocale', 'GetTickCount', 'GetVersion', 'GetVersionExA', 'GlobalAddAtomA', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalFree', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalUnlock', 'HeapAlloc', 'HeapFree', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDBCSLeadByte', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OpenFileMappingA', 'OpenProcess', 'Process32First', 'Process32Next', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'ResetEvent', 'RtlUnwind', 'SearchPathA', 'SetConsoleCtrlHandler', 'SetEndOfFile', 'SetErrorMode', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetThreadLocale', 'SizeofResource', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcpyA', 'lstrcpynA', 'lstrlenA', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_Draw', 'ImageList_DrawEx', 'ImageList_EndDrag', 'ImageList_GetBkColor', 'ImageList_GetDragImage', 'ImageList_GetIconSize', 'ImageList_GetImageCount', 'ImageList_Read', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetBkColor', 'ImageList_SetDragCursorImage', 'ImageList_SetIconSize', 'ImageList_Write', 'BitBlt', 'CreateBitmap', 'CreateBrushIndirect', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateDIBSection', 'CreateDIBitmap', 'CreateFontIndirectA', 'CreateHalftonePalette', 'CreatePalette', 'CreatePenIndirect', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'ExcludeClipRect', 'GetBitmapBits', 'GetBrushOrgEx', 'GetClipBox', 'GetCurrentPositionEx', 'GetDCOrgEx', 'GetDIBColorTable', 'GetDIBits', 'GetDeviceCaps', 'GetObjectA', 'GetPaletteEntries', 'GetPixel', 'GetStockObject', 'GetSystemPaletteEntries', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'GetWindowOrgEx', 'IntersectClipRect', 'LineTo', 'MaskBlt', 'MoveToEx', 'PatBlt', 'Polyline', 'RealizePalette', 'RectVisible', 'Rectangle', 'RestoreDC', 'SaveDC', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetBrushOrgEx', 'SetDIBColorTable', 'SetPixel', 'SetROP2', 'SetStretchBltMode', 'SetTextColor', 'SetViewportOrgEx', 'SetWindowOrgEx', 'StretchBlt', 'UnrealizeObject', 'ShellExecuteA', 'ActivateKeyboardLayout', 'AdjustWindowRectEx', 'BeginPaint', 'CallNextHookEx', 'CallWindowProcA', 'CharLowerA', 'CharLowerBuffA', 'CharNextA', 'CharToOemA', 'CharToOemBuffA', 'CharUpperBuffA', 'CheckMenuItem', 'ClientToScreen', 'CreateIcon', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExA', 'DefFrameProcA', 'DefMDIChildProcA', 'DefWindowProcA', 'DeleteMenu', 'DestroyCursor', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DispatchMessageA', 'DrawEdge', 'DrawFrameControl', 'DrawIcon', 'DrawIconEx', 'DrawMenuBar', 'DrawTextA', 'EnableMenuItem', 'EnableScrollBar', 'EnableWindow', 'EndPaint', 'EnumThreadWindows', 'EnumWindows', 'EqualRect', 'FillRect', 'FindWindowA', 'FrameRect', 'GetActiveWindow', 'GetCapture', 'GetClassInfoA', 'GetClassNameA', 'GetClientRect', 'GetCursor', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetFocus', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardLayout', 'GetKeyboardLayoutList', 'GetKeyboardState', 'GetKeyboardType', 'GetLastActivePopup', 'GetMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoA', 'GetMenuState', 'GetMenuStringA', 'GetParent', 'GetPropA', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetWindow', 'GetWindowDC', 'GetWindowLongA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowThreadProcessId', 'InflateRect', 'InsertMenuA', 'InsertMenuItemA', 'IntersectRect', 'InvalidateRect', 'IsChild', 'IsDialogMessageA', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'IsZoomed', 'KillTimer', 'LoadBitmapA', 'LoadCursorA', 'LoadIconA', 'LoadKeyboardLayoutA', 'LoadStringA', 'MapVirtualKeyA', 'MapWindowPoints', 'MessageBoxA', 'OemToCharA', 'OemToCharBuffA', 'OffsetRect', 'PeekMessageA', 'PostMessageA', 'PostQuitMessage', 'PtInRect', 'RedrawWindow', 'RegisterClassA', 'RegisterClipboardFormatA', 'RegisterWindowMessageA', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropA', 'ScreenToClient', 'ScrollWindow', 'SendMessageA', 'SetActiveWindow', 'SetCapture', 'SetClassLongA', 'SetCursor', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemInfoA', 'SetPropA', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongA', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextA', 'SetWindowsHookExA', 'ShowCursor', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'TrackPopupMenu', 'TranslateMDISysAccel', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassA', 'UpdateWindow', 'WaitMessage', 'WinHelpA', 'WindowFromPoint', 'wsprintfA', 'GetSysColor', 'CoCreateInstance', 'CoGetMalloc', 'CoInitialize', 'CoUninitialize', 'GetErrorInfo', 'SafeArrayAccessData', 'SafeArrayCreate', 'SafeArrayGetElement', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayRedim', 'SafeArrayUnaccessData', 'SysAllocStringLen', 'SysFreeString', 'SysReAllocStringLen', 'SysStringLen', 'VarBoolFromStr', 'VarBstrFromBool', 'VarBstrFromCy', 'VarBstrFromDate', 'VarCyFromStr', 'VarDateFromStr', 'VarI4FromStr', 'VarNeg', 'VarNot', 'VarR8FromStr', 'VariantChangeTypeEx', 'VariantClear', 'VariantCopy', 'VariantCopyInd', 'VariantInit'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegEnumKeyA', 'ImageList_Add', 'Pie', 'memcpy', 'NetWkstaGetInfo', 'NtUnmapViewOfSection', 'OleDraw', 'LresultFromObject', 'VariantInit', 'Shell_NotifyIconW', 'GetDC', 'VerQueryValueW', 'WinHttpOpen', 'sndPlaySoundW', 'ClosePrinter'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'CreateDirectoryW', 'CreateFileW', 'DeleteFileW', 'RemoveDirectoryW', 'SetFileTime', 'CloseHandle', 'DeviceIoControl', 'GetCurrentProcess', 'CreateHardLinkW', 'GetLongPathNameW', 'GetShortPathNameW', 'MoveFileW', 'GetStdHandle', 'FlushFileBuffers', 'GetFileType', 'ReadFile', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'GetFileAttributesW', 'SetFileAttributesW', 'GetCurrentProcessId', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'Sleep', 'ExitProcess', 'GetSystemDirectoryW', 'LoadLibraryW', 'SetThreadExecutionState', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'CreateThread', 'SetThreadPriority', 'GetProcessAffinityMask', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCPInfo', 'IsDBCSLeadByte', 'GlobalAlloc', 'SetCurrentDirectoryW', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GetDateFormatW', 'GetTimeFormatW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'CreateFileMappingW', 'OpenFileMappingW', 'MapViewOfFile', 'UnmapViewOfFile', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'DecodePointer', 'GetConsoleMode', 'GetConsoleOutputCP', 'HeapSize', 'SetFilePointerEx', 'GetStringTypeW', 'SetStdHandle', 'GetProcessHeap', 'LCMapStringW', 'FreeEnvironmentStringsW', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'LocalFree', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'SysAllocString', 'SysFreeString', 'VariantClear', 'GdipAlloc', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['CloseHandle', 'CreateFileW', 'DeleteFileW', 'ExitProcess', 'GetComputerNameW', 'GetCurrentDirectoryW', 'GetFileSize', 'GetModuleFileNameW', 'GetTempPathW', 'GetVersionExW', 'ReadFile', 'WriteFile', 'lstrlenW', 'lstrcmpW', 'SleepEx', 'VirtualAlloc', 'HttpOpenRequestW', 'HttpSendRequestW', 'InternetOpenW', 'InternetConnectW', 'InternetCloseHandle', 'InternetReadFile', 'ShellExecuteW', 'RtlDecompressBuffer', 'swprintf'], ['GetModuleHandleA', 'GetCursor', 'RegisterEventSourceW', '_CorExeMain', 'DrawStatusTextW', 'SHGetDiskFreeSpaceA'], ['DragFinish', '_CorExeMain', 'RegisterEventSourceW', 'ReleaseDC', 'GetModuleHandleA'], ['LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileAttributesA', 'GetFileTime', 'HeapFree', 'RtlUnwind', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'Sleep', 'SetHandleCount', 'FileTimeToLocalFileTime', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'GetACP', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'SetErrorMode', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GlobalFlags', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'GetModuleFileNameW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'lstrcmpA', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'GetFileType', 'InterlockedExchange', 'GetSysColorBrush', 'LoadCursorA', 'DeleteMenu', 'SetCapture', 'WindowFromPoint', 'ReleaseCapture', 'WaitMessage', 'DestroyIcon', 'GetDialogBaseUnits', 'UnregisterClassA', 'TranslateAcceleratorA', 'SetMenu', 'BringWindowToTop', 'SetRectEmpty', 'CreatePopupMenu', 'InsertMenuItemA', 'InvalidateRect', 'LoadAcceleratorsA', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'SetParent', 'UnionRect', 'SetRect', 'SetTimer', 'KillTimer', 'GetDCEx', 'LockWindowUpdate', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'ScrollWindowEx', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'EndPaint', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'ShowScrollBar', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'LoadIconA', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetFocus', 'GetParent', 'ModifyMenuA', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'TrackPopupMenu', 'FillRect', 'ShowWindow', 'CreateWindowExW', 'SendMessageA', 'AppendMenuA', 'GetSystemMenu', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'DdeInitializeA', 'DdeCreateStringHandleA', 'DdeFreeStringHandle', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeNameService', 'DdeFreeDataHandle', 'DdeUnaccessData', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageA', 'PostQuitMessage', 'GetMenuState', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'DdeClientTransaction', 'DdeAccessData', 'SetForegroundWindow', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'OffsetViewportOrgEx', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'CreateCompatibleBitmap', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetBkColor', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'CreateRectRgn', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectType', 'GetDeviceCaps', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'ExtTextOutA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'SelectClipPath', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ExtractIconA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['GetLastError', 'GetSystemDefaultLangID', 'GetEnvironmentStringsW', 'GetCurrentThreadId', 'GetCurrentProcessorNumber', 'GetCurrentThread', 'GetOEMCP', 'GetCurrentProcess', 'GetCommandLineW', 'GetUserDefaultLangID', 'SetFileApisToOEM', 'AreFileApisANSI', 'GetLargePageMinimum', 'IsSystemResumeAutomatic', 'UnregisterApplicationRestart', 'SwitchToThread', 'GetThreadLocale', 'GetUserDefaultUILanguage', 'GetCommandLineA', 'TlsAlloc', 'RaiseException', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'DecodePointer', 'MultiByteToWideChar', 'LoadResource', 'SizeofResource', 'GetTickCount', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryExW', 'GetModuleFileNameW', 'lstrcmpiW', 'FreeLibrary', 'WriteConsoleW', 'CreateFileW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleOutputCP', 'WriteFile', 'FlushFileBuffers', 'GetProcessHeap', 'GetThreadErrorMode', 'CloseHandle', 'ReadFile', 'FindClose', 'GetTickCount64', 'FindResourceW', 'LoadLibraryA', 'SetFilePointerEx', 'RtlUnwind', 'GetFileSizeEx', 'HeapReAlloc', 'HeapSize', 'GetFileType', 'GetStdHandle', 'HeapAlloc', 'HeapFree', 'GetModuleHandleExW', 'ExitProcess', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'InterlockedFlushSList', 'RtlPcToFileHeader', 'RtlUnwindEx', 'OutputDebugStringW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'GetProcessWindowStation', 'GetMessageExtraInfo', 'GetForegroundWindow', 'GetCapture', 'IsWow64Message', 'GetDialogBaseUnits', 'GetKBCodePage', 'CountClipboardFormats', 'GetCursor', 'GetMenuCheckMarkDimensions', 'GetShellWindow', 'InSendMessage', 'CreateMenu', 'CharNextW', 'GetFocus', 'CloseClipboard', 'IsProcessDPIAware', 'DestroyCaret', 'SetProcessDPIAware', 'GetActiveWindow', 'GdiFlush', 'RegQueryInfoKeyW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'CoCreateInstance', 'CoTaskMemRealloc', 'CoTaskMemAlloc', 'CoUninitialize', 'CoTaskMemFree', 'VarUI4FromStr'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'free'], ['DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FormatMessageA', 'FormatMessageW', 'GetComputerNameW', 'GetCurrentThreadId', 'GetLastError', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetProcessHeap', 'GetStartupInfoA', 'GetThreadLocale', 'GetVersionExA', 'GetVersionExW', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitializeCriticalSection', 'InterlockedExchange', 'InterlockedIncrement', 'CreateProcessW', 'LocalAlloc', 'LocalFree', 'MoveFileExW', 'MultiByteToWideChar', 'OutputDebugStringW', 'RaiseException', 'ReleaseMutex', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetLastError', 'SetThreadExecutionState', 'SetThreadLocale', 'Sleep', 'WaitForMultipleObjects', 'WideCharToMultiByte', 'WriteFile', 'lstrcmpW', 'lstrcpyA', 'lstrlenA', 'GetProcAddress', 'LoadLibraryW', 'VirtualAllocEx', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'LeaveCriticalSection', 'CloseHandle', 'CharLowerA', 'CharLowerBuffA', 'CharToOemBuffA', 'ClientToScreen', 'CopyRect', 'CreateDialogIndirectParamA', 'CreateDialogParamA', 'CreatePopupMenu', 'CreateWindowExA', 'CreateWindowStationA', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DefDlgProcA', 'DefFrameProcA', 'DefWindowProcA', 'DefWindowProcW', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DrawIconEx', 'DrawStateW', 'DrawTextA', 'DrawTextExW', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndMenu', 'EndPaint', 'EnumChildWindows', 'EnumDesktopsA', 'EnumDesktopsW', 'EnumDisplayDevicesA', 'ChangeMenuW', 'EnumDisplaySettingsA', 'EnumPropsExA', 'EnumPropsW', 'EnumThreadWindows', 'EnumWindows', 'ExitWindowsEx', 'FindWindowA', 'GetClassLongA', 'GetClassNameA', 'GetClientRect', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextA', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyboardLayoutNameW', 'GetMenuItemInfoA', 'GetMessageA', 'GetMessageTime', 'GetMonitorInfoA', 'GetNextDlgTabItem', 'GetSysColor', 'GetSystemMetrics', 'GetWindowInfo', 'GetWindowLongA', 'GetWindowRect', 'GetWindowTextA', 'GetWindowThreadProcessId', 'InternalGetWindowText', 'InvalidateRect', 'IsCharUpperW', 'IsWindow', 'KillTimer', 'LoadBitmapA', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'LoadMenuW', 'MessageBoxA', 'MonitorFromPoint', 'OffsetRect', 'PeekMessageA', 'PostMessageA', 'PostQuitMessage', 'PtInRect', 'RegisterClassA', 'RegisterClassExA', 'RegisterHotKey', 'RegisterWindowMessageA', 'ReleaseDC', 'RemovePropW', 'ScreenToClient', 'SendMessageA', 'SendMessageTimeoutW', 'SetClassLongW', 'SetClassWord', 'SetCursorPos', 'SetDlgItemInt', 'SetDlgItemTextA', 'SetFocus', 'SetForegroundWindow', 'SetMenuItemInfoW', 'SetRect', 'SetSystemCursor', 'SetTimer', 'SetWindowLongA', 'SetWindowPos', 'SetWindowTextA', 'SetWindowsHookExA', 'ShowWindow', 'SystemParametersInfoA', 'TabbedTextOutA', 'TileChildWindows', 'TrackPopupMenuEx', 'TranslateAcceleratorA', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassA', 'UnregisterHotKey', 'UpdateWindow', 'ValidateRect', 'ValidateRgn', 'WaitForInputIdle', 'wsprintfA', 'LoadIconW', 'ChangeDisplaySettingsExA', 'BeginPaint', 'AttachThreadInput', 'AppendMenuA', 'EnumDisplayMonitors', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegCloseKey'], ['e', 'ee', 'ind', 'nfo', 'GetOEMCP', 'apAlloc', 'apDestroy', 'HeapCreate', 'e', 'ee', 'ind', 'nfo', 'GetOEMCP', 'apAlloc'], ['OpenProcess', 'Sleep', 'GetFileAttributesA', 'FreeConsole', 'VirtualProtectEx', 'GetCurrentProcessId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'WriteConsoleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'CreateFileW', 'DecodePointer'], ['CryptImportKey', 'CryptGetHashParam', 'CryptDeriveKey', 'CryptDecrypt', 'CryptCreateHash', 'CryptHashData', 'CryptVerifySignatureA', 'CryptDestroyHash', 'RegEnumValueA', 'RegDeleteValueA', 'GetUserNameA', 'RegDeleteKeyA', 'CryptReleaseContext', 'CryptDestroyKey', 'CryptEncrypt', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'CryptAcquireContextA', 'DirectInput8Create', 'DirectSoundCreate', 'DirectSoundEnumerateA', 'TextOutA', 'GetTextExtentPoint32A', 'GetTextExtentPointA', 'SelectObject', 'CreateFontA', 'SetBkMode', 'SetTextColor', 'SetTextAlign', 'GetTextExtentExPointA', 'CreateFontIndirectA', 'GetStockObject', 'SetBkColor', 'SetPixelFormat', 'DeleteObject', 'DeleteDC', 'CreateDIBSection', 'SwapBuffers', 'BitBlt', 'CreateCompatibleDC', 'ChoosePixelFormat', 'gluOrtho2D', 'gluPerspective', 'ImmGetDefaultIMEWnd', 'ImmReleaseContext', 'ImmGetCompositionStringA', 'ImmGetCompositionWindow', 'ImmSetCompositionWindow', 'ImmGetProperty', 'ImmSetOpenStatus', 'ImmGetConversionStatus', 'ImmSetConversionStatus', 'ImmGetContext', 'ImmGetDescriptionA', 'ImmGetIMEFileNameA', 'ImmNotifyIME', 'ImmGetOpenStatus', 'HeapReAlloc', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'ExitProcess', 'GetVersion', 'FatalAppExitA', 'LCMapStringA', 'LCMapStringW', 'GetStartupInfoA', 'GetCPInfo', 'CompareStringA', 'CompareStringW', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'HeapSize', 'GetACP', 'GetCurrentThreadId', 'GetTickCount', 'Sleep', 'lstrlenA', 'CloseHandle', 'WriteFile', 'SetFilePointer', 'CreateFileA', 'DeleteFileA', 'ReadFile', 'GetLocalTime', 'GetSystemDirectoryA', 'lstrcmpiA', 'GetVersionExA', 'QueryPerformanceCounter', 'SetProcessAffinityMask', 'SetThreadPriority', 'SetPriorityClass', 'GetProcessAffinityMask', 'GetThreadPriority', 'GetPriorityClass', 'GetCurrentThread', 'GetCurrentProcess', 'QueryPerformanceFrequency', 'GetOEMCP', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GlobalMemoryStatus', 'GlobalUnlock', 'GlobalLock', 'GetCommandLineA', 'GetFileSize', 'GetLastError', 'GetPrivateProfileStringA', 'GetCurrentDirectoryA', 'CopyFileA', 'SetFileAttributesA', 'Process32Next', 'TerminateProcess', 'OpenProcess', 'Process32First', 'CreateToolhelp32Snapshot', 'WinExec', 'FindClose', 'FindFirstFileA', 'GetModuleFileNameA', 'IsBadReadPtr', 'GetModuleHandleA', 'GetNumberFormatA', 'HeapFree', 'RaiseException', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InterlockedExchange', 'InitializeCriticalSection', 'EnterCriticalSection', 'CreateFileMappingA', 'UnmapViewOfFile', 'MapViewOfFile', 'FindNextFileA', 'RemoveDirectoryA', 'GetFileAttributesA', 'CreateDirectoryA', 'GetThreadContext', 'lstrcpynA', 'GetCurrentProcessId', 'Module32First', 'Module32Next', 'SetUnhandledExceptionFilter', 'WaitForSingleObject', 'OpenEventA', 'lstrcatA', 'OpenMutexA', 'CreateThread', 'TerminateThread', 'CreateMutexA', 'ReleaseMutex', 'GetComputerNameA', 'lstrcmpA', 'CreateEventA', 'GetModuleFileNameW', 'VirtualProtect', 'OpenFileMappingA', 'LoadLibraryExA', 'GetTempFileNameA', 'GetTempPathA', 'GetProcessHeap', 'GetFileInformationByHandle', 'DuplicateHandle', 'CreatePipe', 'PeekNamedPipe', 'lstrcpyA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'FlushFileBuffers', 'GetStringTypeA', 'GetStringTypeW', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'SetEndOfFile', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'SetEvent', 'ResumeThread', 'ResetEvent', 'GetExitCodeProcess', 'WaitForMultipleObjects', 'CreateProcessA', 'OutputDebugStringA', 'glColor3f', 'glEnd', 'glVertex3fv', 'glTexCoord2f', 'glBegin', 'glColor3fv', 'glGetIntegerv', 'glGetString', 'glAlphaFunc', 'glFogf', 'glFogfv', 'glEnable', 'glDisable', 'glClearColor', 'glTexImage2D', 'glBindTexture', 'glVertex3f', 'glDepthMask', 'glPolygonMode', 'glFrontFace', 'glStencilFunc', 'glColorMask', 'glVertex2f', 'glDepthFunc', 'glStencilOp', 'glTexParameteri', 'glTexEnvf', 'glPixelStorei', 'glDeleteTextures', 'glIsTexture', 'glColor4ub', 'glLoadIdentity', 'glMatrixMode', 'glPopMatrix', 'glClear', 'glTranslatef', 'glRotatef', 'glPushMatrix', 'wglDeleteContext', 'wglMakeCurrent', 'wglCreateContext', 'glScalef', 'glGenTextures', 'glTexEnvi', 'glReadPixels', 'glGetFloatv', 'glBlendFunc', 'glViewport', 'glFogi', 'glFlush', 'glTexSubImage2D', 'glColor4f', 'ShellExecuteA', 'ShellExecuteExA', 'GetFocus', 'UnregisterHotKey', 'RegisterHotKey', 'GetAsyncKeyState', 'GetKeyboardLayout', 'GetKeyboardLayoutNameA', 'OpenClipboard', 'SendMessageA', 'wsprintfA', 'GetWindowRect', 'SetWindowPos', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetDesktopWindow', 'MessageBoxA', 'SetWindowLongA', 'CallWindowProcA', 'GetWindowLongA', 'GetCaretPos', 'GetWindowTextA', 'SetWindowTextA', 'ShowWindow', 'ReleaseDC', 'GetDC', 'CreateWindowExA', 'CloseClipboard', 'SetFocus', 'IsWindowVisible', 'GetScrollPos', 'SetScrollPos', 'SetTimer', 'FindWindowA', 'ShowCursor', 'SystemParametersInfoA', 'ReleaseCapture', 'SetCapture', 'DefWindowProcA', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'DestroyWindow', 'RegisterClassA', 'LoadCursorA', 'LoadIconA', 'SetForegroundWindow', 'GetSystemMetrics', 'AdjustWindowRect', 'IsIconic', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'PeekMessageA', 'UpdateWindow', 'PostMessageA', 'GetClipboardData', 'EnumDisplaySettingsA', 'SetCursorPos', 'KillTimer', 'SetRect', 'OffsetRect', 'PtInRect', 'GetDoubleClickTime', 'ScreenToClient', 'GetCursorPos', 'GetActiveWindow', 'IntersectRect', 'ClientToScreen', 'wvsprintfA', 'ChangeDisplaySettingsA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'mmioAscend', 'mmioOpenA', 'mmioClose', 'timeGetTime', 'mmioDescend', 'mmioRead', 'timeGetDevCaps', 'timeBeginPeriod', 'mmioWrite', 'timeEndPeriod', 'gethostbyname', 'WSAAsyncSelect', 'setsockopt', 'socket', 'shutdown', 'recv', 'WSASend', 'WSAStartup', 'WSACleanup', 'send', 'WSAGetLastError', 'inet_addr', 'htons', 'connect', 'closesocket', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'wzAudioStop', 'wzAudioPlay', 'wzAudioGetStreamOffsetRange', 'wzAudioDestroy', 'wzAudioOption', 'wzAudioCreate'], ['GetVolumeInformationW', 'GetFullPathNameW', 'GetTickCount', 'HeapReAlloc', 'GetCommandLineA', 'RtlUnwind', 'RaiseException', 'HeapSize', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetCurrentProcess', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrlenA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'FormatMessageW', 'LocalFree', 'GetFileTime', 'GetFileSize', 'GetFileAttributesW', 'CreateFileW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'MulDiv', 'GetModuleHandleA', 'InterlockedDecrement', 'GlobalFindAtomW', 'CompareStringW', 'GetVersionExA', 'GetCurrentProcessId', 'GlobalAddAtomW', 'CloseHandle', 'GlobalUnlock', 'WritePrivateProfileStringW', 'FreeResource', 'GlobalFree', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameW', 'GetVersion', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GetModuleHandleW', 'CreateProcessW', 'GetCurrentDirectoryW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'ExitProcess', 'GetLastError', 'GetThreadLocale', 'lstrlenW', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'GetNativeSystemInfo', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'VirtualFree', 'VirtualAlloc', 'IsBadReadPtr', 'VirtualProtect', 'SetHandleCount', 'SetLastError', 'RegisterClipboardFormatW', 'PostThreadMessageW', 'CopyAcceleratorTableW', 'CharNextW', 'ReleaseCapture', 'LoadCursorW', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'DestroyMenu', 'RegisterWindowMessageW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'SetFocus', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowThreadProcessId', 'GetLastActivePopup', 'MessageBoxW', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'CharUpperW', 'GetSysColorBrush', 'MessageBeep', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'RemovePropW', 'IsRectEmpty', 'LoadBitmapW', 'GetFocus', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetWindowLongW', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GetWindow', 'SetWindowContextHelpId', 'GetParent', 'MapDialogRect', 'SetWindowPos', 'PostQuitMessage', 'PostMessageW', 'EnableWindow', 'SendMessageW', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'AppendMenuW', 'GetSystemMenu', 'ShowWindow', 'LoadIconW', 'UnregisterClassA', 'PtVisible', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'GetWindowExtEx', 'GetViewportExtEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'GetBkColor', 'CreateBitmap', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'RectVisible', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegDeleteKeyW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegCloseKey', 'RegSetValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegQueryValueExW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetFolderLocation', 'SHBrowseForFolderW', 'InitCommonControlsEx', 'PathFindFileNameW', 'PathStripToRootW', 'PathFindExtensionW', 'PathIsUNCW', 'OleUIBusyW', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString'], ['ZwQueryInformationProcess', 'RtlNtStatusToDosError', 'ZwClose', 'NtQueryVirtualMemory', 'RtlUnwind', 'NtUnmapViewOfSection', 'memcpy', 'memset', 'StrChrA', 'StrRChrA', 'PathCombineW', 'GetModuleFileNameExA', 'EnumProcessModules', 'VirtualAlloc', 'MapViewOfFile', 'CreateFileA', 'LoadLibraryA', 'FreeLibrary', 'lstrcmpA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualProtect', 'CreateFileW', 'GetModuleFileNameA', 'lstrlenA', 'lstrcatA', 'LocalAlloc', 'LocalReAlloc', 'LocalFree', 'CloseHandle', 'CreateEventA', 'OpenEventA', 'GetModuleHandleA', 'CreateProcessW', 'GetComputerNameW', 'SwitchToThread', 'GetLastError', 'ResumeThread', 'Sleep', 'GetModuleHandleW', 'GetVersion', 'GetCurrentProcessId', 'GetProcAddress', 'lstrcpyA', 'VirtualFree', 'VirtualAllocEx', 'OpenProcess', 'GetCurrentProcess', 'CreateRemoteThread', 'ReadProcessMemory', 'WriteProcessMemory', 'WaitForSingleObject', 'GetFileSize', 'ReadFile', 'SetFilePointer', 'lstrcmpiA', 'CreateFileMappingW', 'wsprintfA', 'ShellExecuteA', 'SHGetFolderPathW'], ['GetCurrentDirectoryW', 'TlsFree', 'TlsSetValue', 'GetExitCodeThread', 'GetCurrentThreadId', 'TlsAlloc', 'SetThreadPriority', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'GetFileAttributesW', 'SetEndOfFile', 'SetFileAttributesW', 'DeleteFileW', 'RemoveDirectoryW', 'GetEnvironmentVariableW', 'GetVersionExA', 'GetComputerNameW', 'GetVersionExW', 'CreateEventW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetTimeZoneInformation', 'LocalFree', 'FormatMessageW', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'FlsSetValue', 'GetCommandLineA', 'RaiseException', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'ExitThread', 'GetCurrentProcessId', 'GetCPInfo', 'UnhandledExceptionFilter', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'HeapSize', 'GetModuleHandleW', 'ExitProcess', 'GetModuleFileNameW', 'GetLocaleInfoW', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'SetHandleCount', 'GetFileType', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeW', 'SetConsoleCtrlHandler', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleW', 'FlushFileBuffers', 'CompareStringW', 'SetEnvironmentVariableA', 'GlobalMemoryStatus', 'FlushConsoleInputBuffer', 'LoadLibraryA', 'FileTimeToSystemTime', 'CreateFileW', 'SetFilePointer', 'GetProcessHeap', 'CreateMutexW', 'GetStartupInfoW', 'DuplicateHandle', 'GetStdHandle', 'GetConsoleWindow', 'CreateProcessW', 'WaitForSingleObject', 'TerminateProcess', 'OpenProcess', 'GetExitCodeProcess', 'ReadFile', 'GetLastError', 'WriteFile', 'CreatePipe', 'CloseHandle', 'FileTimeToLocalFileTime', 'GetDriveTypeA', 'FindFirstFileExA', 'GetFullPathNameA', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'GetFileInformationByHandle', 'ExpandEnvironmentStringsW', 'CreateThread', 'GetProcAddress', 'LoadLibraryW', 'FreeLibrary', 'WideCharToMultiByte', 'CreateFileA', 'SetConsoleMode', 'ReadConsoleInputA', 'SetFileAttributesA', 'EnterCriticalSection', 'MultiByteToWideChar', 'LeaveCriticalSection', 'Sleep', 'PeekNamedPipe', 'LCMapStringW', 'TryEnterCriticalSection', 'GetDriveTypeW', 'OemToCharBuffA', 'GetUserObjectInformationW', 'GetProcessWindowStation', 'GetDesktopWindow', 'MessageBoxW', 'GetAdaptersAddresses', 'GetAdaptersInfo', 'ObtainUserAgentString', 'WinHttpGetIEProxyConfigForCurrentUser', 'CryptSetHashParam', 'CryptReleaseContext', 'CryptGenRandom', 'CryptAcquireContextA', 'RegCloseKey', 'RegQueryValueExW', 'CryptDestroyKey', 'CryptGetUserKey', 'CryptGetProvParam', 'CryptEnumProvidersA', 'CryptDecrypt', 'CryptCreateHash', 'CryptSignHashA', 'CryptDestroyHash', 'CryptExportKey', 'RegisterEventSourceW', 'ReportEventW', 'DeregisterEventSource', 'RegOpenKeyExW', 'getsockopt', 'socket', 'ioctlsocket', 'getnameinfo', 'WSASetLastError', 'listen', 'bind', 'accept', 'getsockname', 'closesocket', 'setsockopt', 'inet_addr', 'getaddrinfo', 'freeaddrinfo', 'ntohl', 'htons', 'ntohs', 'WSAStartup', 'WSACleanup', 'select', 'recvfrom', 'sendto', 'recv', 'WSAGetLastError', 'getpeername', 'send', 'connect', 'shutdown', 'CertDuplicateCertificateContext', 'CertFindCertificateInStore', 'CertFreeCertificateContext', 'CertEnumCertificatesInStore', 'CertCloseStore', 'CertGetCertificateContextProperty', 'CertOpenStore'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'WaitForMultipleObjects', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextChangeNotification', 'FindFirstChangeNotificationA', 'FindCloseChangeNotification', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PathToRegion', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['GetModuleHandleA', 'ShowWindow', 'RegOpenKeyExA', 'CreateStatusWindowA', 'SHChangeNotifyRegister', '_lock_file', '__stdio_common_vfprintf', '__setusermatherr', '_time64', 'accept', '_configthreadlocale', 'srand', '__current_exception_context', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', 'free', '_register_onexit_function'], ['GetProcAddress', 'GetModuleHandleA', 'MultiByteToWideChar', 'DeleteAtom', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'GetCommandLineA', 'GetLastError', 'HeapFree', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'GetCPInfo', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'VirtualAlloc', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetLocaleInfoW', 'CreateFileA'], ['SetEndOfFile', 'SetFilePointerEx', 'WriteFile', 'CloseHandle', 'GetLastError', 'lstrcpynW', 'MoveFileW', 'WaitForSingleObject', 'CreateThread', 'GetNativeSystemInfo', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'CreateIoCompletionPort', 'GetQueuedCompletionStatus', 'PostQueuedCompletionStatus', 'CancelIo', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ReadFile', 'Sleep', 'ExitThread', 'CreateTimerQueue', 'CreateTimerQueueTimer', 'GlobalAlloc', 'GlobalFree', 'lstrcpyW', 'lstrcatW', 'DeleteTimerQueue', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'lstrcmpW', 'WaitForMultipleObjects', 'VirtualAlloc', 'FreeLibrary', 'GetFileSizeEx', 'CreateFileW', 'lstrlenA', 'lstrlenW', 'VirtualQuery', 'GetModuleHandleW', 'GetStartupInfoW', 'InitializeSListHead', 'DeleteCriticalSection', 'GetLogicalDriveStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RaiseException', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentThreadId', 'GetProcAddress', 'CryptAcquireContextA', 'CryptImportKey', 'CryptDecrypt', '??0_Lockit@std@@QAE@H@Z', '?_Xlength_error@std@@YAXPBD@Z', '??1_Lockit@std@@QAE@XZ', 'GetIpNetTable', 'NetShareEnum', 'NetApiBufferFree', 'StrStrIW', 'StrStrIA', 'WSASocketW', 'WSAIoctl', 'socket', 'WSACleanup', 'WSAStartup', 'gethostname', 'WSAGetLastError', 'WSAAddressToStringW', 'bind', 'closesocket', 'getsockopt', 'htons', 'inet_ntoa', 'setsockopt', 'shutdown', 'gethostbyname', 'memset', 'memmove', '__std_exception_destroy', '_CxxThrowException', '__CxxFrameHandler3', 'memcmp', '__std_type_info_destroy_list', '__current_exception', '__current_exception_context', '_except_handler4_common', '__vcrt_GetModuleFileNameW', '__vcrt_GetModuleHandleW', '__vcrt_LoadLibraryExW', '__std_exception_copy', 'memcpy', '__p___argv', '_cexit', '_c_exit', '_register_thread_local_exe_atexit_callback', '_configthreadlocale', '_set_new_mode', '__p__commode', 'strcpy_s', 'strcat_s', '__stdio_common_vsprintf_s', '_free_dbg', '_seh_filter_dll', '_initialize_onexit_table', '_register_onexit_function', '_execute_onexit_table', '_crt_atexit', '_crt_at_quick_exit', '_controlfp_s', 'terminate', '_wmakepath_s', '_wsplitpath_s', 'wcscpy_s', '_set_fmode', '_exit', 'exit', '_initterm_e', '_initterm', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '__setusermatherr', '_set_app_type', '_seh_filter_exe', '_callnewh', '_CrtDbgReportW', '_CrtDbgReport', 'malloc', 'free', 'wcslen', '_invalid_parameter', '__p___argc'], ['DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'ShellExecuteW', 'URLDownloadToFileW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowRgn', 'SetWindowPos', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'SafeArrayPutElement', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'SysReAllocStringLen', 'SafeArrayCreate', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'NetWkstaGetInfo', 'NetApiBufferFree', 'log', 'strncmp', '_endthreadex', 'strcspn', '_beginthreadex', 'qsort', 'memcmp', 'memcpy', 'memset', 'localtime', 'strrchr', 'memmove', 'strlen', 'rename', 'SetFileAttributesW', 'SetFileTime', 'FlushViewOfFile', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'VirtualProtect', 'UnlockFile', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'GetProcessHeap', 'HeapAlloc', 'ExitProcess', 'GetFileAttributesA', 'GetCPInfoExW', 'GetSystemTime', 'GetLongPathNameW', 'RtlUnwind', 'GetCPInfo', 'GetTempPathA', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'GetDllDirectoryW', 'HeapDestroy', 'SetDllDirectoryW', 'FileTimeToDosDateTime', 'ReadFile', 'GetDiskFreeSpaceA', 'HeapSize', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'LockFileEx', 'HeapValidate', 'MapViewOfFile', 'CreateMutexW', 'LoadLibraryA', 'AreFileApisANSI', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'CreateFileA', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'DeleteFileA', 'RaiseException', 'GlobalAddAtomW', 'GetSystemTimeAsFileTime', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'OutputDebugStringW', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'HeapReAlloc', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'FlushFileBuffers', 'LoadResource', 'SuspendThread', 'GetTickCount', 'HeapCompact', 'GetFullPathNameA', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'GlobalLock', 'SetThreadPriority', 'VirtualAlloc', 'GetTempPathW', 'GetSystemInfo', 'GetCommandLineW', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'UnlockFileEx', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'LockFile', 'UnmapViewOfFile', 'lstrlenW', 'CompareStringA', 'QueryPerformanceCounter', 'SetEndOfFile', 'WaitForSingleObjectEx', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'CreateFileW', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'FormatMessageA', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'OutputDebugStringA', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'SHGetFolderPathW', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['CreateProcessA', 'CloseHandle', 'WriteConsoleW', 'SetFilePointerEx', 'EncodePointer', 'DecodePointer', 'GetCommandLineA', 'GetCurrentThreadId', 'RaiseException', 'RtlUnwind', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'HeapFree', 'HeapAlloc', 'SetLastError', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'HeapReAlloc', 'LCMapStringW', 'OutputDebugStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'CreateFileW', 'MessageBoxA'], ['lstrlenA', 'lstrcmpiA', 'SetLastError', 'WaitForSingleObject', 'SleepEx', 'ReleaseMutex', 'InterlockedIncrement', 'InterlockedExchange', 'CreateMutexA', 'InterlockedDecrement', 'GetCurrentDirectoryA', 'GetSystemDirectoryA', 'GetWindowsDirectoryA', 'GetTempPathA', 'CreateFileA', 'FindClose', 'FindFirstFileA', 'GetTickCount', 'VirtualProtect', 'GetCurrentProcessId', 'SystemTimeToFileTime', 'GetSystemTime', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'SetEvent', 'CreateEventA', 'SetEnvironmentVariableW', 'GetEnvironmentVariableW', 'GetCurrentProcess', 'GetModuleHandleA', 'OpenProcess', 'GetVersionExA', 'IsBadStringPtrW', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'DeviceIoControl', 'GetModuleFileNameA', 'VirtualLock', 'ResumeThread', 'SetPriorityClass', 'GetCurrentThread', 'SetThreadPriority', 'CreateProcessA', 'GetStartupInfoA', 'WriteFile', 'WideCharToMultiByte', 'GetModuleFileNameW', 'IsBadWritePtr', 'IsBadReadPtr', 'Sleep', 'OpenMutexA', 'TerminateProcess', 'ResetEvent', 'lstrlenW', 'lstrcmpiW', 'HeapReAlloc', 'GetEnvironmentVariableA', 'TerminateThread', 'CreateThread', 'QueryPerformanceCounter', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'ExpandEnvironmentStringsW', 'GetFileAttributesW', 'MultiByteToWideChar', 'GetLastError', 'SetErrorMode', 'GetTempPathW', 'GetTempFileNameW', 'CreateFileMappingW', 'GetSystemInfo', 'LoadLibraryExA', 'LocalAlloc', 'GetVersion', 'VirtualAlloc', 'VirtualFree', 'OpenMutexW', 'CreateMutexW', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'GetFileSize', 'ControlService', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'OpenSCManagerA', 'CreateServiceW', 'OpenServiceW', 'QueryServiceStatus', 'StartServiceA', 'CloseServiceHandle', 'InitializeSecurityDescriptor', '_snprintf', 'mbstowcs', 'sprintf', '_snwprintf', 'strrchr', 'strncpy', '_splitpath', 'strcpy', 'memset', 'wcstombs', 'wcscat', 'wcschr', 'wcsrchr', '_local_unwind2', 'wcsncmp', 'wcsncat', 'wcsstr', 'strncat', 'memcmp', '_getpid', 'wcsncpy', '__dllonexit', '_onexit', '??1type_info@@UAE@XZ', '_exit', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp', '_CxxThrowException', 'wcscpy', 'strlen', '_stricmp', '_wcsicmp', '_wcsnicmp', '_strnicmp', 'swprintf', 'wcslen', 'memcpy', '_purecall', 'malloc', 'free', '__CxxFrameHandler', 'fseek', 'fread', '_get_osfhandle', 'memmove', 'calloc', '??2@YAPAXI@Z', 'fclose', '_wfopen', 'strstr', 'strcmp', 'strncmp', '??3@YAXPAX@Z', 'wcscmp', 'UnregisterClassW', 'SetPropA', 'CreateWindowExW', 'DestroyWindow'], ['GetModuleHandleA', 'wsprintfA', 'CryptGetHashParam', 'SHGetFolderPathAndSubDirA', 'StrStrA', 'accept', 'RtlRemoveVectoredExceptionHandler'], ['DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'LeaveCriticalSection', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'memcpy', 'signal', 'vfprintf', 'DrawIcon', 'GetCursorPos', 'GetDesktopWindow', 'GetWindowDC', 'LoadIconA'], ['StrStrIW', 'GetModuleHandleW', 'VirtualFree', 'WriteFile', 'SizeofResource', 'ReadFile', 'CreateFileW', 'lstrlenW', 'GetLastError', 'GetProcAddress', 'VirtualAlloc', 'OpenThread', 'LockResource', 'lstrcmpiW', 'CreateToolhelp32Snapshot', 'GetCurrentProcess', 'CloseHandle', 'HeapAlloc', 'HeapCreate', 'OutputDebugStringW', 'ExitProcess', 'GetCommandLineW', 'MapViewOfFile', 'OpenProcess', 'LoadLibraryW', 'Sleep', 'GetModuleFileNameW', 'lstrcmpW', 'OpenMutexW', 'Process32FirstW', 'GetProcessId', 'IsWow64Process', 'CreateFileMappingW', 'Process32NextW', 'lstrcatW', 'DeleteFileW', 'lstrcpyW', 'CreateProcessW', 'LoadResource', 'FindResourceW', 'lstrlenA', 'SetFilePointer', 'GetFileSize', 'HeapFree', 'wsprintfW', 'RegSetValueExW', 'RegCloseKey', 'RegCreateKeyExW', 'SHGetFolderPathW'], ['FreeLibrary', 'MapViewOfFileEx', 'LoadLibraryA', 'SetFilePointerEx', 'CreateFileMappingA', 'OpenFileMappingA', 'GetTickCount', 'GetProcessHeap', 'DuplicateHandle', 'HeapAlloc', 'CreateEventA', 'GetCurrentProcess', 'HeapFree', 'WaitForSingleObject', 'SetEvent', 'Sleep', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'GetExitCodeProcess', 'CreateProcessA', 'TerminateProcess', 'GetModuleFileNameW', 'RaiseException', 'InterlockedExchange', 'GetStartupInfoA', 'GetStdHandle', 'FindFirstFileA', 'GetLogicalDriveStringsA', 'GetLastError', 'SetLastError', 'GetProcAddress', 'QueueUserAPC', 'EnterCriticalSection', 'FindClose', 'WriteConsoleA', 'InterlockedExchangeAdd', 'PostQueuedCompletionStatus', 'WaitForMultipleObjects', 'GetModuleFileNameA', 'FindNextFileA', 'CreateIoCompletionPort', 'GetModuleHandleA', 'DeleteCriticalSection', 'GetCurrentThreadId', 'OutputDebugStringA', 'GetVersionExA', 'TlsAlloc', 'CloseHandle', 'GetCurrentProcessId', 'CreateWaitableTimerA', 'LocalFree', 'TlsFree', 'DeleteFileA', 'SetFileTime', 'GetWindowsDirectoryA', 'GetDriveTypeA', 'GetSystemWindowsDirectoryA', 'GetFileAttributesA', 'SetFileAttributesA', 'GetTempPathA', 'InitializeCriticalSection', 'LocalAlloc', 'ReadFile', 'FlushFileBuffers', 'SetThreadPriority', 'GetThreadPriority', 'CreateThread', 'GetLogicalDrives', 'SystemTimeToFileTime', 'GetLocalTime', 'GetSystemTime', 'MultiByteToWideChar', 'UnmapViewOfFile', 'GetPrivateProfileStringW', 'WideCharToMultiByte', 'GetLocaleInfoW', 'SetEndOfFile', 'GetWindowsDirectoryW', 'LoadLibraryW', 'GetEnvironmentVariableW', 'GetFileSizeEx', 'WriteFile', 'GetSystemInfo', 'CreateFileA', 'FormatMessageA', 'FreeConsole', 'InitializeCriticalSectionAndSpinCount', 'TerminateThread', 'OpenProcess', 'TlsSetValue', 'SleepEx', 'InterlockedCompareExchange', 'QueryDosDeviceA', 'InterlockedDecrement', 'GetQueuedCompletionStatus', 'InterlockedIncrement', 'SetWaitableTimer', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'SetFilePointer', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'HeapSize', 'GetConsoleMode', 'GetCommandLineW', 'GetConsoleCP', 'ExitProcess', 'HeapReAlloc', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'GetModuleHandleW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetFileType', 'SetHandleCount', 'GetStringTypeW', 'RtlUnwind', 'GetCPInfo', 'GetCommandLineA', 'GetTimeZoneInformation', 'GetDateFormatA', 'GetTimeFormatA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'ExitThread', 'AreFileApisANSI', 'GetPrivateProfileStringA', 'GetFileAttributesExW', 'AllocConsole', 'TlsGetValue', 'GetSystemDefaultLCID', 'OpenEventA', 'ResetEvent', 'ResumeThread', 'GetUserDefaultLCID', 'GetStringTypeExA', 'LCMapStringA', 'LCMapStringW', 'QueryPerformanceCounter', 'CreateFileW', 'FindFirstFileW', 'FindNextFileW', 'GetFileAttributesW', 'RegSetValueExA', 'IsValidSid', 'GetUserNameW', 'RegEnumValueW', 'RegEnumKeyExW', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'IsTextUnicode', 'RegCloseKey', 'RegOpenKeyExA', 'RegCreateKeyExA', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'RegQueryValueExA', 'DnsFree', 'DnsQuery_A', 'GetAdaptersInfo', 'AcceptEx', 'GetAcceptExSockaddrs', 'CoInitialize', 'CoCreateInstance', 'SysAllocString', 'SysStringLen', 'SysFreeString', 'GetProcessImageFileNameA', 'CommandLineToArgvW', 'SHGetFolderPathW', 'wsprintfA', 'LoadStringA', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'InternetCrackUrlW', 'HttpQueryInfoA', 'HttpOpenRequestA', 'ntohl', 'inet_addr', 'htonl', 'getaddrinfo', 'WSARecv', 'WSAStartup', 'select', 'WSAGetLastError', 'htons', 'ntohs', 'getsockname', 'shutdown', 'setsockopt', 'WSACleanup', 'recv', 'bind', 'freeaddrinfo', '__WSAFDIsSet', 'WSASetLastError', 'closesocket', 'send', 'getsockopt', 'WSASocketA', 'listen', 'accept', 'inet_ntoa', 'connect', 'WSAStringToAddressA', 'ioctlsocket', 'getpeername', 'socket', 'sendto', 'recvfrom', 'WSAAccept', 'gethostname', 'WSASend', 'gethostbyname'], ['DeviceIoControl', 'CreateMutexW', 'ExitProcess', 'CreateProcessA', 'GetModuleHandleW', 'GetLogicalDriveStringsW', 'VirtualAlloc', 'WideCharToMultiByte', 'GetFileAttributesW', 'GetDriveTypeW', 'GetCurrentDirectoryW', 'GetStdHandle', 'Sleep', 'SetLastError', 'GetLastError', 'CloseHandle', 'CreateFileW', 'GetTickCount', 'GetProcessHeap', 'MultiByteToWideChar', 'GetStringTypeW', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LCMapStringW', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapFree', 'HeapAlloc', 'SetUnhandledExceptionFilter', 'RtlUnwindEx', 'TlsGetValue', 'TlsSetValue', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'IsProcessorFeaturePresent', 'GetCurrentProcess', 'TerminateProcess', 'GetModuleHandleExW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'wsprintfW', 'QueryServiceStatusEx', 'RegOpenKeyExW', 'RegCloseKey', 'StartServiceW', 'OpenServiceW', 'OpenSCManagerW', 'DeleteService', 'CreateServiceW', 'ControlService', 'CloseServiceHandle', 'NtCreateFile', 'NtQueryDirectoryObject', 'NtClose', 'NtQuerySystemInformation', 'RtlFreeHeap', 'RtlDosPathNameToNtPathName_U', 'RtlFreeUnicodeString', 'LdrFindResource_U', 'LdrAccessResource', 'NtFlushBuffersFile', 'NtOpenDirectoryObject', 'NtDeleteFile', 'RtlImageNtHeader', 'RtlGetVersion', 'RtlInitUnicodeString', 'RtlInitString', 'LdrLoadDll', 'LdrGetProcedureAddress', 'RtlAllocateHeap', 'NtWriteFile', 'NtFreeVirtualMemory', 'NtAllocateVirtualMemory'], ['GetModuleHandleA', 'EndPaint', 'RegisterEventSourceW', 'CreateStatusWindowA', 'SHGetDiskFreeSpaceExW'], ['GetModuleHandleA', 'GetProcAddress', 'ClosePrinter', 'ImageList_Add', 'ShellExecuteW', 'IsEqualGUID', 'VerQueryValueW', 'GetDC', 'VariantInit', 'NetWkstaGetInfo', 'RegLoadKeyW', 'Pie'], ['GetTickCount', 'CreateEventW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcAddress', 'LoadLibraryW', 'DeleteCriticalSection', 'DecodePointer', 'RaiseException', 'InitializeCriticalSectionEx', 'Sleep', 'GetLastError', 'FormatMessageW', 'ReadConsoleW', 'ReadFile', 'SetEndOfFile', 'WriteConsoleW', 'CreateFileW', 'SetFilePointerEx', 'GetStringTypeW', 'SetStdHandle', 'CloseHandle', 'GetConsoleMode', 'GetConsoleCP', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'InitializeCriticalSection', 'GetLocalTime', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'CreateDirectoryW', 'HeapFree', 'HeapAlloc', 'GetCurrentThread', 'OutputDebugStringA', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetStdHandle', 'GetFileType', 'GetACP', 'SetConsoleCtrlHandler', 'HeapSize', 'HeapReAlloc', 'FindClose', 'FindFirstFileExA', 'FindFirstFileExW', 'FindNextFileA', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'GetProcessHeap', 'FlushFileBuffers', 'WriteFile', 'GetTimeZoneInformation', 'UnregisterClassW', 'CertGetIntendedKeyUsage', 'CertFindChainInStore', 'CertCloseStore', 'CertDeleteCertificateFromStore', 'CertEnumCertificatesInStore', 'CertAddCertificateContextToStore', 'CertOpenStore', 'CertGetNameStringW', 'CertFindCertificateInStore', 'WinHttpSendRequest', 'WinHttpAddRequestHeaders', 'WinHttpReceiveResponse', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpQueryHeaders', 'WinHttpQueryDataAvailable', 'WinHttpOpen', 'WinHttpCloseHandle', 'WinHttpReadData', 'WinHttpSetOption', 'SHGetSpecialFolderPathW'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetProcessId', 'GetLastError', 'GetCurrentThread', 'GetVersion', 'lstrcmpA', 'GetCurrentThreadId', 'lstrlenA', 'OleUninitialize', 'OleInitialize', 'InitCommonControls', 'CreateStdAccessibleProxyA', 'Shell_NotifyIconW', 'AddPortExW'], ['GetModuleHandleA', '__getmainargs'], ['RaiseException', 'GetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'Sleep', 'LoadResource', 'SizeofResource', 'FindClose', 'CloseHandle', 'CreateMutexA', 'OpenMutexA', 'GetModuleFileNameA', 'GetModuleHandleA', 'CreateProcessA', 'FindResourceW', 'FindResourceExW', 'GetTempPathA', 'CreateDirectoryA', 'RemoveDirectoryA', 'GetFullPathNameW', 'QueryDosDeviceW', 'SetFileAttributesA', 'DeleteFileA', 'FindFirstFileW', 'FindNextFileW', 'CopyFileA', 'GetPriorityClass', 'GetVersionExA', 'FindFirstVolumeW', 'TerminateProcess', 'FindVolumeClose', 'GetVolumePathNamesForVolumeNameW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'LoadLibraryW', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedPopEntrySList', 'ReleaseSemaphore', 'VirtualFree', 'GetVersionExW', 'GetThreadTimes', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'GetCurrentProcessId', 'OpenProcess', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'LockResource', 'HeapDestroy', 'InterlockedDecrement', 'FindNextVolumeW', 'DecodePointer', 'SetEndOfFile', 'CreateFileW', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileAttributesExW', 'GetExitCodeProcess', 'WaitForSingleObject', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'GetACP', 'WriteFile', 'WriteConsoleW', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'VirtualQuery', 'FreeLibrary', 'DuplicateHandle', 'GetCurrentThread', 'GetExitCodeThread', 'TryEnterCriticalSection', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'GetCPInfo', 'EncodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'OutputDebugStringW', 'LocalFree', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'ReadFile', 'GetStdHandle', 'RegisterClassExA', 'CreateWindowExA', 'PostQuitMessage', 'DefWindowProcA', 'SendMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'RegisterWindowMessageA', 'wsprintfA', 'GetDC', 'ReleaseDC', 'ShowWindow', 'IsWindowVisible', 'GetCursorPos', 'GetSystemMetrics', 'TrackPopupMenu', 'GetDesktopWindow', 'LoadCursorA', 'LoadIconA', 'SetForegroundWindow', 'SelectObject', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'GetObjectA', 'SetKernelObjectSecurity', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'Shell_NotifyIconA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoSetProxyBlanket', 'CoInitializeEx', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeSecurity', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysAllocString', 'PathFindExtensionA', 'PathFindExtensionW', 'GdipCloneImage', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdipCreateBitmapFromHBITMAP', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipSaveImageToFile', 'GdipDisposeImage', 'GdipCreateBitmapFromScan0', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'InternetOpenA', 'InternetCloseHandle', 'HttpSendRequestA', 'URLDownloadToFileA', 'ObtainUserAgentString'], ['MultiByteToWideChar', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'GetOEMCP', 'GetACP', 'LCMapStringA', 'HeapValidate', 'IsBadReadPtr', 'IsBadWritePtr', 'SetConsoleCtrlHandler', 'GetLastError', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetFilePointer', 'SetStdHandle', 'FlushFileBuffers', 'GetModuleHandleA', 'GetCPInfo', 'VirtualProtect', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'GetProcAddress', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'CloseHandle', 'GetDC', 'LoadImageA', 'SetWindowRgn', 'GetSystemMetrics', 'SetWindowPos', 'ValidateRect', 'GetCursorPos', 'PostMessageA', 'EndDialog', 'SendMessageA', 'PostQuitMessage', 'DefWindowProcA', 'CreateWindowExA', 'CreateDialogParamA', 'EnumWindows', 'LoadCursorA', 'RegisterClassExA', 'GetMessageA', 'DispatchMessageA', 'CreateCompatibleDC', 'GetObjectA', 'SelectObject', 'CreateRectRgn', 'GetPixel', 'CombineRgn', 'DeleteObject', 'DeleteDC', 'BitBlt'], ['GetModuleHandleA', 'CharNextA', 'GetUserNameA', '_CorExeMain', 'InitCommonControls', 'SHChangeNotifyRegister'], ['VirtualAlloc', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'HeapSize', 'RaiseException', 'RtlUnwind', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameW', 'WriteConsoleW', 'ReadFile', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileSizeEx', 'SetFilePointerEx', 'WriteFile', 'OutputDebugStringW', 'DecodePointer', 'CloseHandle', 'GetConsoleMode', 'ReadConsoleW', 'GetConsoleOutputCP', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'FlushFileBuffers', 'SetStdHandle', 'GetStringTypeW', 'CreateFileW', 'SetEndOfFile'], ['SendMessageA', 'RegisterClassA', 'LoadIconA', 'LoadCursorA', 'GetWindowThreadProcessId', 'ShowWindow', 'GetMessageA', 'TranslateMessage', 'UpdateWindow', 'wsprintfA', 'GetClassNameA', 'EnumWindows', 'CreateWindowExA', 'DispatchMessageA', 'DefWindowProcA', 'GetWindowTextA', 'LocalAlloc', 'OpenProcess', 'SetEvent', 'LocalFree', 'OpenMutexA', 'GetModuleHandleA', 'WriteFile', 'WaitForSingleObject', 'VirtualFree', 'VirtualAlloc', 'SystemTimeToFileTime', 'Sleep', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreateThread', 'DeleteFileA', 'ExitProcess', 'FileTimeToSystemTime', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetLocalTime', 'GetModuleFileNameA', 'GetVolumeInformationA', 'GetProcAddress', 'GetTempPathA', 'SetFilePointer', 'GetSidSubAuthority', 'OpenProcessToken', 'GetTokenInformation', 'WSAStartup', 'closesocket', 'connect', 'htons', 'ioctlsocket', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket', 'WSACleanup', 'CommandLineToArgvW', 'freeaddrinfo', 'WSAIoctl', 'getaddrinfo', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'GetUserNameExA', 'GetUserNameExW', 'GetModuleFileNameExA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PathToRegion', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'GetSaveFileNameA', 'SaveDC', 'WNetDisconnectDialog', 'GradientFill', 'OleDraw', 'VariantCopy', 'ShellExecuteA', 'SHGetFolderPathA', 'CoInternetCreateZoneManager', 'GetDC', 'VerQueryValueA', 'FindCloseUrlCache'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'CreateDirectoryA', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpiA', 'lstrcmpA', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateRemoteThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsClipboardFormatAvailable', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'ChangeClipboardChain', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ShellExecuteA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'sndPlaySoundA', 'SHGetFolderPathA'], ['GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'ntohs', 'htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'ntohl', 'htonl', 'SetEnvironmentVariableA', 'SetEndOfFile', 'GetTimeZoneInformation', 'InitializeSListHead', 'LoadLibraryW', 'Sleep', 'FreeLibraryAndExitThread', 'GetProcAddress', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', 'OpenProcess', 'GetCurrentProcessId', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'QueryInformationJobObject', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'SetThreadPriority', 'CreateFileW', 'ReadFile', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'InitializeCriticalSectionAndSpinCount', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'RaiseException', 'DecodePointer', 'FileTimeToSystemTime', 'GetModuleHandleA', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'FormatMessageA', 'OpenEventA', 'CreateEventW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetStdHandle', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'GetCPInfo', 'ExitThread', 'LoadLibraryExW', 'IsDebuggerPresent', 'ExitProcess', 'AreFileApisANSI', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapSize', 'GetProcessHeap', 'GetCurrentThread', 'BringWindowToTop', 'EnumWindows', 'GetClassNameW', 'GetWindowTextW', 'SendMessageTimeoutW', 'SetActiveWindow', 'RegCloseKey', 'RegOpenKeyExW'], ['GetLastError', 'MultiByteToWideChar', 'lstrlenA', 'CloseHandle', 'GetModuleFileNameA', 'MapViewOfFile', 'CreateFileMappingW', 'ExitProcess', 'CopyFileW', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'InterlockedDecrement', 'FlushFileBuffers', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'GetLocaleInfoA', 'InterlockedIncrement', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'InitializeCriticalSection', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'WideCharToMultiByte', 'LocalFree', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'RaiseException', 'GetCommandLineA', 'GetVersionExA', 'GetProcessHeap', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'Sleep', 'HeapSize', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'MessageBoxA', 'EndPaint', 'DefWindowProcA', 'PeekMessageA', 'BeginPaint', 'TranslateMessage', 'DispatchMessageA', 'LoadIconA', 'LoadCursorA', 'RegisterClassA', 'GetMessageA', 'DestroyWindow', 'PostQuitMessage', 'AdjustWindowRect', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetDC', 'TextOutA', 'ShellExecuteW', 'OleRun', 'CoCreateInstance', 'CoInitialize', 'CLSIDFromProgID', 'CLSIDFromString', 'SysStringByteLen', 'SysAllocStringByteLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysFreeString', 'SysAllocString', 'GetErrorInfo'], ['HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'HeapSize', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCommandLineW', 'SetHandleCount', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'Sleep', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetErrorMode', 'GetShortPathNameW', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetModuleHandleA', 'WritePrivateProfileStringW', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'FreeResource', 'GlobalFindAtomW', 'LoadLibraryA', 'GetVersionExA', 'GetThreadLocale', 'GlobalFree', 'GlobalUnlock', 'FormatMessageW', 'LocalFree', 'MulDiv', 'lstrlenA', 'CompareStringW', 'CloseHandle', 'GlobalAddAtomW', 'lstrlenW', 'GetTickCount', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetVersion', 'EnumResourceLanguagesW', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GetLastError', 'FreeLibrary', 'GetModuleFileNameW', 'SetLastError', 'GetModuleHandleW', 'GetProcAddress', 'InterlockedDecrement', 'InterlockedIncrement', 'LockResource', 'SizeofResource', 'LoadResource', 'GetFileType', 'FindResourceW', 'PostThreadMessageW', 'EndPaint', 'BeginPaint', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'DestroyIcon', 'UnregisterClassW', 'LoadCursorW', 'GetDC', 'ReleaseDC', 'GetSysColorBrush', 'GetDesktopWindow', 'ClientToScreen', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'IsWindow', 'SetFocus', 'GetForegroundWindow', 'SetActiveWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetClientRect', 'GetMenu', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'SetWindowLongW', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetWindow', 'GetWindowTextW', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'SetWindowsHookExW', 'CallNextHookEx', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'DestroyMenu', 'GetMessageTime', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'RegisterClipboardFormatW', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxW', 'SetCursor', 'PostMessageW', 'PostQuitMessage', 'UnhookWindowsHookEx', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'SendMessageW', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'MessageBoxA', 'ShowWindow', 'UnregisterClassA', 'DeleteDC', 'GetStockObject', 'PtVisible', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'CreateBitmap', 'SetMapMode', 'RestoreDC', 'SaveDC', 'DeleteObject', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'RectVisible', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegSetValueExW', 'RegSetValueW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CryptAcquireContextA', 'ExtractIconW', 'PathFindExtensionW', 'PathFindFileNameW', 'OleUIBusyW', 'CoCreateInstance', 'OleIsCurrentClipboard', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'StringFromCLSID', 'CoTaskMemFree', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoDisconnectObject', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'LoadTypeLib', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SysAllocStringByteLen', 'SysAllocString', 'SysStringLen', 'SysStringByteLen', 'SysFreeString', 'VariantChangeType', 'SysAllocStringLen', 'VariantInit', 'VariantCopy', 'VariantClear'], ['AuthzFreeContext', 'AuthzAddSidsToContext', 'AuthzFreeAuditEvent', 'AuthzFreeResourceManager', 'AuthzInitializeContextFromSid', 'WTSFreeMemory', 'WTSVirtualChannelPurgeInput', 'WTSEnumerateServersA', 'WTSEnumerateProcessesA', 'WTSEnumerateSessionsW', 'WriteProcessMemory', 'OpenEventA', 'MoveFileA', 'GetFileAttributesW', 'DecodePointer', 'InterlockedIncrement', 'GetACP', 'CreateEventA', 'GetModuleHandleA', 'OpenFileMappingA', 'GetEnvironmentVariableA', 'VirtualAlloc', 'GetEnvironmentVariableW', 'LoadLibraryExW', 'LoadBitmapW', 'IsCharLowerA', 'MessageBoxExW', 'GetMessageA', 'MessageBoxW', 'CreateWindowExW', 'SetWindowTextW', 'GetWindow', 'InsertMenuW', 'FindWindowW', 'FindWindowW', 'GetFocus', 'ExtractIconW', 'DragQueryFileA', 'ShellMessageBoxA', 'ShellExecuteW', 'DragQueryPoint', 'FindExecutableW', 'SHEmptyRecycleBinW', 'FindExecutableW', 'SHDefExtractIconW', 'ShellAboutA', 'SHGetFileInfoA', 'SHGetDataFromIDListW', 'ClusWorkerTerminate', 'ResUtilDupString', 'CAEnumNextCA', 'CACloseCertType', 'RegSaveKeyW', 'RegReplaceKeyA', 'IsValidSid', 'RegDeleteValueW', 'CryptSignHashA', 'ReadEventLogW', 'RegCreateKeyExW', 'RegUnLoadKeyA', 'IsValidAcl', 'InitializeAcl', 'OpenEventLogA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'CoInitialize', 'VariantCopy', 'GetDC', 'VerQueryValueA'], ['WSACleanup', 'inet_addr', 'gethostbyname', 'gethostname', 'WSAStartup', 'mixerSetControlDetails', 'waveOutGetVolume', 'joyGetPosEx', 'mixerGetControlDetailsW', 'mixerOpen', 'mixerGetDevCapsW', 'mixerGetLineControlsW', 'waveOutSetVolume', 'mixerClose', 'mciSendStringW', 'joyGetDevCapsW', 'mixerGetLineInfoW', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'ImageList_Create', 'CreateStatusWindowW', 'ImageList_ReplaceIcon', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetModuleBaseNameW', 'GetModuleFileNameExW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'FileTimeToLocalFileTime', 'SetEnvironmentVariableW', 'Beep', 'MoveFileW', 'OutputDebugStringW', 'CreateProcessW', 'GetFileAttributesW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetExitCodeProcess', 'WriteProcessMemory', 'ReadProcessMemory', 'GetCurrentProcessId', 'OpenProcess', 'TerminateProcess', 'SetPriorityClass', 'SetLastError', 'GetEnvironmentVariableW', 'GetLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'GetDiskFreeSpaceW', 'SetVolumeLabelW', 'CreateFileW', 'DeviceIoControl', 'GetDriveTypeW', 'GetVolumeInformationW', 'CreateDirectoryW', 'ReadFile', 'WriteFile', 'DeleteFileW', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'SetFileTime', 'GetFileSizeEx', 'GetSystemTime', 'GetSystemDefaultUILanguage', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetTempPathW', 'LockResource', 'GetShortPathNameW', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualProtect', 'QueryDosDeviceW', 'CompareStringW', 'RemoveDirectoryW', 'CopyFileW', 'GetCurrentProcess', 'FormatMessageW', 'GetPrivateProfileStringW', 'GetPrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'WritePrivateProfileStringW', 'WritePrivateProfileSectionW', 'SetEndOfFile', 'GetACP', 'GetFileType', 'GetStdHandle', 'SetFilePointerEx', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetFileSize', 'VirtualAllocEx', 'VirtualFreeEx', 'EnumResourceNamesW', 'LoadLibraryExW', 'GlobalSize', 'GetOEMCP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'HeapFree', 'ExitProcess', 'HeapAlloc', 'TlsFree', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetSystemTimeAsFileTime', 'GetModuleFileNameW', 'DeleteCriticalSection', 'GetCPInfo', 'GetVersionExW', 'FreeLibrary', 'LoadLibraryW', 'GetModuleHandleW', 'GetProcAddress', 'GetLastError', 'CreateMutexW', 'CloseHandle', 'GetExitCodeThread', 'SetThreadPriority', 'CreateThread', 'GetStringTypeExW', 'lstrcmpiW', 'GetCurrentThreadId', 'GlobalUnlock', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GetCurrentDirectoryW', 'SetErrorMode', 'InitializeCriticalSection', 'SetCurrentDirectoryW', 'Sleep', 'GetTickCount', 'MulDiv', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'SetHandleCount', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'LCMapStringW', 'RaiseException', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'TlsSetValue', 'SetFilePointer', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'GetFullPathNameW', 'VirtualQuery', 'GetMenuItemID', 'GetSubMenu', 'GetMenuStringW', 'ExitWindowsEx', 'SetMenu', 'FlashWindow', 'GetPropW', 'SetPropW', 'RemovePropW', 'MapWindowPoints', 'RedrawWindow', 'SetParent', 'GetClassInfoExW', 'GetAncestor', 'UpdateWindow', 'GetMessagePos', 'GetClassLongW', 'DefDlgProcW', 'CallWindowProcW', 'CheckRadioButton', 'IntersectRect', 'GetUpdateRect', 'PtInRect', 'CreateDialogIndirectParamW', 'CreateAcceleratorTableW', 'DestroyAcceleratorTable', 'InsertMenuItemW', 'SetMenuDefaultItem', 'RemoveMenu', 'SetMenuItemInfoW', 'IsMenu', 'GetMenuItemInfoW', 'CreateMenu', 'CreatePopupMenu', 'SetMenuInfo', 'AppendMenuW', 'DestroyMenu', 'TrackPopupMenuEx', 'GetDesktopWindow', 'CopyImage', 'CreateIconIndirect', 'CreateIconFromResourceEx', 'EnumClipboardFormats', 'GetWindow', 'BringWindowToTop', 'MessageBoxW', 'GetTopWindow', 'SetWindowTextW', 'IsWindowVisible', 'CheckMenuItem', 'LoadImageW', 'ChangeClipboardChain', 'GetMenuItemCount', 'LoadAcceleratorsW', 'GetMenu', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'DestroyIcon', 'DestroyWindow', 'IsCharAlphaW', 'MapVirtualKeyW', 'VkKeyScanExW', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'ActivateKeyboardLayout', 'GetGUIThreadInfo', 'GetWindowTextW', 'mouse_event', 'WindowFromPoint', 'GetSystemMetrics', 'keybd_event', 'SetKeyboardState', 'GetKeyboardState', 'GetCursorPos', 'GetAsyncKeyState', 'AttachThreadInput', 'SendInput', 'UnregisterHotKey', 'RegisterHotKey', 'PostQuitMessage', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PostThreadMessageW', 'IsCharAlphaNumericW', 'IsCharUpperW', 'IsCharLowerW', 'ToUnicodeEx', 'GetKeyboardLayout', 'CallNextHookEx', 'CharLowerW', 'ReleaseDC', 'GetDC', 'OpenClipboard', 'GetClipboardData', 'GetClipboardFormatNameW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostMessageW', 'FindWindowW', 'EndDialog', 'IsWindow', 'DispatchMessageW', 'TranslateMessage', 'GetSystemMenu', 'GetLastInputInfo', 'GetCursor', 'ClientToScreen', 'MessageBeep', 'SetDlgItemTextW', 'GetDlgItem', 'SendDlgItemMessageW', 'DialogBoxParamW', 'SetForegroundWindow', 'DefWindowProcW', 'FillRect', 'SetClipboardViewer', 'DrawIconEx', 'ShowWindow', 'CountClipboardFormats', 'SetWindowLongW', 'ScreenToClient', 'IsDialogMessageW', 'SendMessageW', 'IsWindowEnabled', 'GetWindowLongW', 'GetKeyState', 'TranslateAcceleratorW', 'GetSysColor', 'RegisterWindowMessageW', 'IsIconic', 'IsZoomed', 'EnumWindows', 'GetWindowTextLengthW', 'EnableWindow', 'InvalidateRect', 'SetLayeredWindowAttributes', 'SetWindowPos', 'SetWindowRgn', 'SetFocus', 'SetActiveWindow', 'EnumChildWindows', 'MoveWindow', 'GetQueueStatus', 'GetWindowRect', 'GetClientRect', 'SystemParametersInfoW', 'AdjustWindowRectEx', 'DrawTextW', 'KillTimer', 'PeekMessageW', 'GetFocus', 'GetClassNameW', 'GetWindowThreadProcessId', 'GetForegroundWindow', 'GetMessageW', 'SetTimer', 'GetParent', 'GetDlgCtrlID', 'CharUpperW', 'IsClipboardFormatAvailable', 'SetRect', 'MapVirtualKeyExW', 'GetIconInfo', 'EnableMenuItem', 'GetPixel', 'GetClipRgn', 'GetCharABCWidthsW', 'SetBkMode', 'CreatePatternBrush', 'SetBrushOrgEx', 'EnumFontFamiliesExW', 'CreateDIBSection', 'GdiFlush', 'SetBkColor', 'ExcludeClipRect', 'SetTextColor', 'GetClipBox', 'BitBlt', 'CreateCompatibleBitmap', 'GetSystemPaletteEntries', 'GetDIBits', 'CreateCompatibleDC', 'CreatePolygonRgn', 'CreateRectRgn', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'DeleteDC', 'GetObjectW', 'GetTextMetricsW', 'GetTextFaceW', 'SelectObject', 'GetStockObject', 'CreateDCW', 'CreateSolidBrush', 'CreateFontW', 'FillRgn', 'GetDeviceCaps', 'DeleteObject', 'CommDlgExtendedError', 'GetSaveFileNameW', 'GetOpenFileNameW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'CloseServiceHandle', 'UnlockServiceDatabase', 'LockServiceDatabase', 'OpenSCManagerW', 'GetUserNameW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCloseKey', 'RegConnectRegistryW', 'RegDeleteValueW', 'DragQueryPoint', 'SHEmptyRecycleBinW', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderPathW', 'ShellExecuteExW', 'Shell_NotifyIconW', 'DragFinish', 'DragQueryFileW', 'ExtractIconW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CLSIDFromString', 'CoGetObject', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'SafeArrayGetLBound', 'GetActiveObject', 'OleLoadPicture', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayAccessData', 'SafeArrayUnlock', 'SafeArrayPtrOfIndex', 'SafeArrayLock', 'SafeArrayGetDim', 'SafeArrayDestroy', 'SafeArrayGetUBound', 'VariantCopyInd', 'SafeArrayCopy', 'SysAllocString', 'VariantChangeType', 'VariantClear', 'SafeArrayCreate', 'SysFreeString', 'SysStringLen'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetColorSpace', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetSaveFileNameA', 'GetOpenFileNameA', 'mciSendCommandA', 'mciGetErrorStringA'], ['GetLastError', 'SetLastError', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'SetFileTime', 'CloseHandle', 'CreateFileW', 'CreateDirectoryW', 'SetFileAttributesW', 'GetFileAttributesW', 'DeleteFileW', 'MoveFileW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'ExitProcess', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'GetTickCount', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetLocalTime', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetTimeFormatW', 'GetDateFormatW', 'GetNumberFormatW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'DecodePointer', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc'], ['GetModuleHandleA', 'FillRect', 'CreateSolidBrush', '??Bid@locale@std@@QEAA_KXZ', 'longjmp', '__CxxFrameHandler4', 'abort', 'strtod', 'feof', '_unlock_file', 'strcoll', 'realloc', '_ldsign', '_configthreadlocale', 'clock', 'getenv', 'RtlLookupFunctionEntry'], ['GetModuleHandleA', 'CreateWindowExA', 'RegOpenKeyExA', 'PropertySheet', '_CorExeMain', 'ShellAboutA'], ['GetFileAttributesW', 'GetFileSize', 'GetFileType', 'GetLastError', 'GetLocaleInfoA', 'GetLogicalDrives', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetOEMCP', 'GetPriorityClass', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetProcessIoCounters', 'GetProcessVersion', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemDirectoryW', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetThreadContext', 'GetThreadLocale', 'GetThreadPriority', 'GetTickCount', 'GetVersion', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationA', 'GetVolumeInformationW', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFree', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'GetFileAttributesA', 'LocalFree', 'LockResource', 'MapViewOfFile', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'OpenFileMappingA', 'OpenMutexW', 'OpenProcess', 'OutputDebugStringW', 'PulseEvent', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'RaiseException', 'ReadConsoleInputW', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'SetConsoleDisplayMode', 'SetConsoleMode', 'SetConsoleTitleA', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetPriorityClass', 'SetStdHandle', 'SetThreadAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SuspendThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'VirtualQueryEx', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WriteProcessMemory', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpyA', 'lstrcpynW', 'lstrlenA', 'lstrlenW', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetDriveTypeW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetModuleHandleW', 'GetCurrentProcess', 'GetConsoleTitleA', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageW', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceW', 'FindResourceA', 'FindNextFileW', 'FindFirstFileW', 'FindFirstFileA', 'FindClose', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumResourceNamesW', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteCriticalSection', 'CreateThread', 'CreateSemaphoreW', 'CreateProcessW', 'CreateProcessA', 'CreateMutexW', 'CreateMutexA', 'CreateJobObjectW', 'CreateFileW', 'CreateFileMappingW', 'CreateFileMappingA', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CopyFileW', 'CompareStringW', 'CloseHandle', 'VirtualAllocEx', 'LocalFileTimeToFileTime', 'IsZoomed', 'KillTimer', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadImageW', 'LoadKeyboardLayoutW', 'LoadStringW', 'LookupIconIdFromDirectory', 'MessageBoxW', 'MsgWaitForMultipleObjects', 'OemToCharA', 'OffsetRect', 'OpenWindowStationA', 'PostMessageA', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'RegisterClassExW', 'RegisterHotKey', 'RegisterWindowMessageW', 'ReleaseDC', 'RemovePropA', 'ReuseDDElParam', 'ScrollDC', 'SendInput', 'SendMessageA', 'SendMessageCallbackA', 'SendMessageTimeoutA', 'SendMessageTimeoutW', 'SendMessageW', 'SetClassLongW', 'SetClipboardData', 'SetCursorPos', 'SetForegroundWindow', 'SetParent', 'SetPropA', 'SetTimer', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowRgn', 'ShowOwnedPopups', 'ShowWindow', 'SystemParametersInfoW', 'TabbedTextOutA', 'TranslateAcceleratorW', 'TranslateMessage', 'UpdateWindow', 'WaitForInputIdle', 'wsprintfW', 'wvsprintfA', 'IsWindowVisible', 'GetSystemMetrics', 'GetSystemMenu', 'GetPropA', 'GetParent', 'GetMessageW', 'GetMenuInfo', 'GetMenu', 'GetIconInfo', 'GetForegroundWindow', 'GetDC', 'GetClipboardFormatNameA', 'GetClientRect', 'GetClassWord', 'GetClassNameA', 'GetClassLongW', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowW', 'FindWindowExW', 'FindWindowExA', 'EnumWindows', 'EnumThreadWindows', 'EnumDisplaySettingsW', 'EnumDisplayDevicesW', 'EnumDesktopWindows', 'EndPaint', 'EndDialog', 'EnableWindow', 'EnableMenuItem', 'DrawTextW', 'DrawFrameControl', 'DrawFocusRect', 'DispatchMessageW', 'DialogBoxParamW', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcW', 'DefDlgProcW', 'DdeGetData', 'CreateWindowExW', 'CreatePopupMenu', 'CreateMDIWindowA', 'CreateDesktopA', 'ChildWindowFromPointEx', 'CharUpperW', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'IsCharAlphaNumericW', 'InvalidateRect', 'InflateRect', 'ImpersonateDdeClientWindow', 'IMPQueryIMEA', 'GetWindowThreadProcessId', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindow', 'AdjustWindowRectEx', 'AnimateWindow', 'AttachThreadInput', 'BeginPaint', 'CallMsgFilter', 'CascadeChildWindows', 'ChangeDisplaySettingsExW', 'CharLowerW', 'GetUserObjectInformationW', 'GetThreadDesktop', 'GetTopWindow', 'CharUpperBuffW', 'cGetTTFFromFOT', 'SetDIBits', 'RectInRegion', 'GetDeviceGammaRamp', 'GetCharacterPlacementA', 'GdiConvertToDevmodeW', 'GdiConvertBitmap', 'FlattenPath', 'FONTOBJ_pifi', 'EudcLoadLinkW', 'EngReleaseSemaphore', 'EngQueryLocalTime', 'EngEraseSurface', 'DescribePixelFormat', 'CreateEllipticRgn', 'CryptReleaseContext', 'LookupAccountSidW', 'LookupAccountSidA', 'InitializeSecurityDescriptor', 'GetUserNameW', 'GetTokenInformation', 'GetLengthSid', 'GetKernelObjectSecurity', 'SetSecurityDescriptorDacl', 'ReportEventW', 'RegisterEventSourceW', 'RegUnLoadKeyW', 'RegOpenKeyExA', 'RegLoadKeyW', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyA', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDecrypt', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptExportKey', 'CryptGetProvParam', 'CryptGetUserKey', 'CryptImportKey', 'CryptSignHashA', 'CryptSetHashParam', 'CryptSetProvParam', 'OpenProcessToken', 'SHGetDataFromIDListW', 'Shell_NotifyIconW', 'ExtractAssociatedIconA', 'FindExecutableA', 'SHCreateDirectoryExW', 'SHFileOperation', 'SHFormatDrive', 'WOWShellExecute', 'SHGetDesktopFolder', 'SHGetFolderPathA', 'SHGetPathFromIDListA', 'ShellAboutA', 'ShellExecuteW', 'OleUninitialize', 'GetHGlobalFromStream', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'CoCreateGuid', 'StrRStrIW', 'StrCmpNIA', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_GetIcon', 'ImageList_GetIconSize', 'ImageList_GetImageCount', 'ImageList_Read', 'ImageList_ReplaceIcon', 'ImageList_Write'], ['WriteConsoleOutputA', 'GetStringTypeExW', 'GetProcAddress', 'LoadLibraryW', 'OpenFileMappingW', 'GetModuleHandleA', 'LocalAlloc', 'GetLocaleInfoW', 'GetOEMCP', 'CloseHandle', 'Module32FirstW', 'CreateToolhelp32Snapshot', 'GetSystemTimeAdjustment', 'GetMailslotInfo', 'GetWriteWatch', 'GetDiskFreeSpaceA', 'LocalCompact', 'VerSetConditionMask', 'CompareStringW', 'CompareStringA', 'CreateFileA', 'GetTimeZoneInformation', 'HeapSize', 'WriteConsoleW', 'GetConsoleOutputCP', 'GetLastError', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'VirtualAlloc', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'SetFilePointer', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'WriteConsoleA', 'SetEnvironmentVariableA', 'DefMDIChildProcW', 'LoadKeyboardLayoutW', 'GetMenuInfo', 'SetClipboardData', 'TransparentBlt'], ['_iob', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '__p___initenv', '_XcptFilter', '_exit', '_onexit', '__dllonexit', 'strrchr', 'wcsncmp', '_close', 'wcslen', 'wcscpy', 'strerror', 'modf', 'strspn', 'realloc', '__p__environ', '__p__wenviron', '_errno', 'free', 'strncmp', 'strstr', 'strncpy', '_ftol', 'qsort', 'fopen', 'perror', 'fclose', 'fflush', 'calloc', 'malloc', 'signal', 'printf', '_isctype', 'atoi', 'exit', '__mb_cur_max', '_pctype', 'strchr', 'fprintf', '_controlfp', '_strdup', '_strnicmp', 'PeekNamedPipe', 'ReadFile', 'WriteFile', 'LoadLibraryA', 'GetProcAddress', 'GetVersionExA', 'GetExitCodeProcess', 'TerminateProcess', 'LeaveCriticalSection', 'SetEvent', 'ReleaseMutex', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'CreateMutexA', 'GetFileType', 'SetLastError', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GlobalFree', 'GetCommandLineW', 'TlsAlloc', 'TlsFree', 'DuplicateHandle', 'GetCurrentProcess', 'SetHandleInformation', 'CloseHandle', 'GetSystemTimeAsFileTime', 'FileTimeToSystemTime', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToFileTime', 'SystemTimeToTzSpecificLocalTime', 'Sleep', 'FormatMessageA', 'GetLastError', 'WaitForSingleObject', 'CreateEventA', 'SetStdHandle', 'SetFilePointer', 'CreateFileA', 'CreateFileW', 'GetOverlappedResult', 'DeviceIoControl', 'GetFileInformationByHandle', 'LocalFree', 'FreeSid', 'AllocateAndInitializeSid', 'getsockopt', 'connect', 'htons', 'gethostbyname', 'ntohl', 'inet_ntoa', 'setsockopt', 'socket', 'closesocket', 'select', 'ioctlsocket', '__WSAFDIsSet', 'WSAStartup', 'WSACleanup', 'WSAGetLastError', 'WSARecv', 'WSASend'], ['GetPrivateProfileSectionW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetProcessIoCounters', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemPowerStatus', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetSystemTimes', 'GetSystemWindowsDirectoryW', 'GetTempFileNameW', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersion', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAlloc', 'GlobalFindAtomA', 'GlobalFree', 'GlobalUnWire', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedExchangeAdd', 'InterlockedIncrement', 'IsBadReadPtr', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'IsWow64Process', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockResource', 'MapViewOfFileEx', 'Module32FirstW', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'FlushInstructionCache', 'GetPrivateProfileSectionNamesW', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'PeekNamedPipe', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadDirectoryChangesW', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'ReleaseSemaphore', 'ReplaceFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'ScrollConsoleScreenBufferA', 'SetCurrentDirectoryW', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetFilePointerEx', 'SetHandleCount', 'SetLastError', 'SetNamedPipeHandleState', 'SetStdHandle', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnmapViewOfFile', 'VerSetConditionMask', 'VerifyVersionInfoW', 'VirtualAlloc', 'VirtualAllocEx', 'VirtualFree', 'VirtualFreeEx', 'VirtualLock', 'WTSGetActiveConsoleSessionId', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileSectionW', 'WritePrivateProfileStringW', 'lstrcmpA', 'lstrcmpiA', 'lstrcmpiW', 'lstrcpynW', 'lstrlen', 'lstrlenA', 'lstrlenW', 'FlushFileBuffers', 'FindResourceW', 'GetPrivateProfileIntW', 'GetOverlappedResult', 'GetOEMCP', 'GetNumberOfConsoleMouseButtons', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLongPathNameW', 'GetLogicalDrives', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetFileTime', 'GetFileSizeEx', 'GetFileSize', 'GetFileAttributesW', 'GetFileAttributesExW', 'GetFileAttributesExA', 'GetExitCodeThread', 'GetExitCodeProcess', 'GetEnvironmentStringsW', 'GetDriveTypeA', 'GetDiskFreeSpaceExW', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryW', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetConsoleAliasesW', 'GetCommandLineW', 'GetCommState', 'GetCPInfoExA', 'GetCPInfo', 'GetAtomNameW', 'GetACP', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeConsole', 'OpenMutexA', 'FormatMessageW', 'FindResourceExW', 'FindNextFileW', 'FindFirstFileW', 'FindCloseChangeNotification', 'FindClose', 'FindAtomW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FatalAppExitA', 'ExitThread', 'ExitProcess', 'EnumSystemLocalesA', 'EnterCriticalSection', 'DuplicateHandle', 'DisconnectNamedPipe', 'DeviceIoControl', 'DeleteVolumeMountPointW', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'DeleteAtom', 'CreateWaitableTimerA', 'CreateToolhelp32Snapshot', 'CreateThread', 'CreateSemaphoreW', 'CreateSemaphoreA', 'CreateRemoteThread', 'CreateProcessW', 'CreateNamedPipeW', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CopyFileW', 'CopyFileExA', 'ConnectNamedPipe', 'CompareStringW', 'CompareStringA', 'CompareFileTime', 'CloseHandle', 'CancelIo', 'OpenEventW', 'AddAtomW', 'keybd_event', 'WindowFromPoint', 'WaitForInputIdle', 'UpdateWindow', 'UpdateLayeredWindow', 'UnregisterClassA', 'TranslateMessage', 'SystemParametersInfoW', 'SwitchToThisWindow', 'ShowWindow', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowsHookA', 'SetWindowTextW', 'SetWindowPos', 'SetWindowLongW', 'SetTimer', 'SetRectEmpty', 'SetRect', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardViewer', 'SetClassLongW', 'SetActiveWindow', 'SendMessageW', 'SendMessageTimeoutW', 'ScreenToClient', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClassExW', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'OpenInputDesktop', 'OffsetRect', 'MonitorFromWindow', 'MonitorFromRect', 'MonitorFromPoint', 'MessageBoxW', 'MapWindowPoints', 'LoadStringW', 'LoadImageW', 'LoadCursorW', 'KillTimer', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsDialogMessageW', 'InvalidateRect', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowInfo', 'GetWindow', 'GetSystemMetrics', 'GetShellWindow', 'GetParent', 'GetMonitorInfoW', 'GetMessageW', 'GetMessagePos', 'GetKeyboardState', 'GetForegroundWindow', 'GetDesktopWindow', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetClassLongW', 'GetClassInfoExW', 'GetAncestor', 'GetActiveWindow', 'FindWindowW', 'FindWindowExW', 'ExitWindowsEx', 'EnumDisplaySettingsW', 'EnumClipboardFormats', 'EnableWindow', 'DrawTextW', 'DispatchMessageW', 'DestroyWindow', 'DestroyIcon', 'DefWindowProcW', 'CreateWindowExW', 'CopyRect', 'CloseDesktop', 'ClientToScreen', 'CharNextW', 'CallWindowProcW', 'AttachThreadInput', 'AllowSetForegroundWindow', 'AdjustWindowRect', 'AngleArc', 'CloseMetaFile', 'CreateBrushIndirect', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateDIBSection', 'CreateEllipticRgn', 'CreateFontIndirectW', 'CreateFontW', 'CreatePolygonRgn', 'DeleteDC', 'DeleteObject', 'DeviceCapabilitiesExW', 'EngDeletePath', 'EngFillPath', 'EngReleaseSemaphore', 'ExtCreatePen', 'GdiCreateLocalEnhMetaFile', 'GdiEntry9', 'GdiValidateHandle', 'GetBkMode', 'GetCharABCWidthsFloatA', 'GetCharABCWidthsI', 'GetCharWidthInfo', 'GetEnhMetaFileDescriptionW', 'GetLogColorSpaceA', 'GetObjectW', 'GetOutlineTextMetricsW', 'GetStockObject', 'GetTextExtentPoint32W', 'GetTextExtentPointI', 'HT_Get8BPPMaskPalette', 'LPtoDP', 'PATHOBJ_bEnum', 'PlayMetaFile', 'PolyBezier', 'RoundRect', 'SelectObject', 'SetDIBColorTable', 'SetROP2', 'SetRectRgn', 'SetTextColor', 'SwapBuffers', 'UnloadNetworkFonts', 'cGetTTFFromFOT', 'BitBlt', 'CheckTokenMembership', 'CloseServiceHandle', 'ConvertSidToStringSidW', 'ConvertStringSidToSidW', 'CreateWellKnownSid', 'CryptAcquireContextW', 'CryptGenRandom', 'CryptReleaseContext', 'DuplicateToken', 'DuplicateTokenEx', 'EqualSid', 'FreeSid', 'GetNamedSecurityInfoW', 'GetTokenInformation', 'GetUserNameW', 'ImpersonateLoggedOnUser', 'InitializeSecurityDescriptor', 'LookupAccountSidW', 'LookupPrivilegeValueW', 'OpenEventLogW', 'OpenProcessToken', 'OpenSCManagerW', 'OpenServiceW', 'QueryServiceStatus', 'ReadEventLogW', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyExA', 'RegEnumKeyExW', 'RegNotifyChangeKeyValue', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegOpenKeyW', 'RegQueryInfoKeyW', 'RegQueryValueExA', 'RegQueryValueExW', 'RegSetValueExW', 'RevertToSelf', 'SetEntriesInAclW', 'SetNamedSecurityInfoW', 'SetSecurityDescriptorDacl', 'StartServiceW', 'RegOpenKeyA', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CloseEventLog', 'ShellExecuteW', 'ShellExecuteExW', 'ShellExecuteA', 'SHLoadInProc', 'SHGetSpecialFolderPathW', 'SHGetMalloc', 'SHGetIconOverlayIndexW', 'SHGetFolderPathW', 'SHGetFolderPathA', 'SHFileOperationA', 'SHCreateDirectoryExW', 'SHChangeNotify', 'ExtractAssociatedIconExW', 'DragQueryFileA', 'Shell_NotifyIconW', 'ColorHLSToRGB', 'ColorRGBToHLS', 'PathAddBackslashW', 'PathAppendW', 'PathCombineA', 'PathCombineW', 'PathCompactPathW', 'PathFileExistsA', 'AssocQueryStringW', 'PathFindExtensionW', 'PathFindFileNameA', 'PathFindFileNameW', 'PathIsDirectoryW', 'PathIsPrefixW', 'PathRemoveBackslashW', 'PathRemoveExtensionW', 'PathRemoveFileSpecW', 'PathStripPathW', 'SHDeleteKeyW', 'SHDeleteValueA', 'SHDeleteValueW', 'SHGetValueA', 'SHGetValueW', 'SHSetValueA', 'SHSetValueW', 'StrCmpIW', 'StrCmpNA', 'StrRStrIW', 'StrStrIW', 'StrStrW', 'wnsprintfW', 'PathFileExistsW'], ['ExitProcess', 'ExitThread', 'FileTimeToDosDateTime', 'FileTimeToLocalFileTime', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FindResourceW', 'FlushInstructionCache', 'FormatMessageW', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatW', 'GetDiskFreeSpaceW', 'GetEnvironmentVariableW', 'GetExitCodeThread', 'GetFileAttributesW', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetModuleFileNameW', 'GetModuleHandleW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemInfo', 'GetThreadLocale', 'GetTickCount', 'GetVersion', 'GetVersionExW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'HeapCreate', 'HeapDestroy', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'EnumCalendarInfoA', 'InterlockedIncrement', 'IsBadReadPtr', 'IsValidLocale', 'LeaveCriticalSection', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OutputDebugStringW', 'RaiseException', 'ReadFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'SetEndOfFile', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetLastError', 'SetThreadLocale', 'SignalObjectAndWait', 'SizeofResource', 'Sleep', 'SwitchToThread', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'VirtualQueryEx', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileStringW', 'WriteProcessMemory', 'lstrcmpW', 'lstrcpyW', 'lstrcpynW', 'lstrlenW', 'VirtualAllocEx', 'LoadLibraryA', 'GetModuleHandleA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CompareStringA', 'InterlockedExchangeAdd', 'CloseHandle', 'DrawMenuBar', 'CloseDesktop', 'AnyPopup', 'CreatePopupMenu', 'VkKeyScanA', 'GetInputState', 'GetSystemMetrics', 'GetLastActivePopup', 'IsCharUpperA', 'EndMenu', 'GetDialogBaseUnits', 'GetMessageExtraInfo', 'OpenIcon', 'InSendMessage', 'LoadCursorFromFileW', 'CountClipboardFormats', 'CharToOemBuffA', 'DestroyCursor', 'GetLayout', 'GetDCPenColor', 'GetGraphicsMode', 'CreatePatternBrush', 'GetBkColor', 'GdiGetBatchLimit', 'SwapBuffers', 'GetEnhMetaFileW', 'RegOpenKeyExW'], ['malloc', 'fputc', 'CallMsgFilterA', 'DrawStateA', 'GetDlgItemInt', 'DrawFrameControl', 'GetProcessWindowStation', 'GetCursorInfo', 'AVIFileGetStream', 'SCardListReadersA', 'NetLocalGroupAddMembers', 'GetPrintProcessorDirectoryW', 'FindFirstPrinterChangeNotification', 'LZSeek', 'CM_Get_Next_Log_Conf', 'DeregisterEventSource', 'FileEncryptionStatusW', 'GetDiskFreeSpaceA', 'GetPrivateProfileStringW', 'GetSystemWindowsDirectoryW', 'SetMailslotInfo', 'GetFileTime', 'GetModuleHandleA', 'GetNamedPipeClientProcessId', 'GetTickCount', 'GetVolumeInformationW', 'WriteProcessMemory', 'FreeEnvironmentStringsW', 'GetCurrentProcess', 'GetUserDefaultLangID', 'GetTimeFormatW', 'GetSystemPowerStatus', 'GetConsoleWindow', 'FillConsoleOutputAttribute', 'GetClipRgn', 'Rectangle', 'GetCharWidth32A', 'FillRgn', 'GetCharacterPlacementA', 'timeGetTime'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'InitCommonControlsEx', 'GetStockObject', 'free', 'CoInitialize', 'ShellExecuteExA', 'PathQuoteSpacesA', 'SetFocus', 'timeBeginPeriod'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteFile', 'VirtualQuery', 'LoadLibraryA', 'GetVersionExA', 'GetThreadLocale', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetDiskFreeSpaceA', 'GetCPInfo', 'GetACP', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharNextA'], ['ExpandEnvironmentStringsA', 'HeapAlloc', 'GetProcessHeap', 'VirtualAlloc', 'Sleep', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'IsBadReadPtr', 'HeapFree', 'VirtualFree', 'FreeLibrary', 'WriteFile', 'GetStringTypeA', 'LCMapStringW', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'SetUnhandledExceptionFilter', 'IsBadWritePtr', 'GetModuleFileNameA', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'IsBadCodePtr', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'MultiByteToWideChar', 'LCMapStringA', 'GetStringTypeW', 'wsprintfA'], ['11111111111111111111111', '2222222222222222222', '22222222222222', 'ntohl', 'ntohs', 'htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'htonl', 'SetEnvironmentVariableA', 'SetEndOfFile', 'GetTimeZoneInformation', 'LoadLibraryW', 'Sleep', 'FreeLibraryAndExitThread', 'GetProcAddress', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', '11111111111', 'GetCurrentProcessId', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'QueryInformationJobObject', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'SetThreadPriority', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'InitializeCriticalSectionAndSpinCount', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'RaiseException', 'DecodePointer', 'InitializeSListHead', 'GetModuleHandleA', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FormatMessageA', 'OpenEventA', 'GetModuleFileNameA', 'QueryPerformanceCounter', 'CreateEventW', 'GetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'FileTimeToSystemTime', 'GetCPInfo', 'ExitThread', 'LoadLibraryExW', 'IsDebuggerPresent', 'ExitProcess', 'AreFileApisANSI', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapSize', 'GetProcessHeap', 'GetCurrentThread', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'GetWindowTextW', 'SendMessageTimeoutW', 'SetActiveWindow', 'EnumWindows', 'GetClassNameW', 'BringWindowToTop', 'RegCloseKey', 'RegOpenKeyExW'], ['GetModuleHandleA', 'GetSystemDirectoryA', 'ReadConsoleA', 'WriteProfileStringW', 'WriteProfileSectionA', 'LoadLibraryW', 'GetProcessPriorityBoost', 'GetTempPathW', 'IsProcessorFeaturePresent', 'GetTickCount', 'SleepEx', 'MoveFileWithProgressW', 'SetTapeParameters', 'VirtualProtect', 'FormatMessageA', 'GetStringTypeExA', 'EnumTimeFormatsA', 'WritePrivateProfileStructA', 'CreateIoCompletionPort', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'CloseHandle', 'WriteConsoleW', 'SetStdHandle', 'GlobalAlloc', 'FindClose', 'GetFileTime', 'SetConsoleCP', 'AreFileApisANSI', 'GetLastError', 'HeapFree', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'HeapCreate', 'HeapDestroy', 'HeapAlloc', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'EncodePointer', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'GetLocaleInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'Sleep', 'WideCharToMultiByte', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'RtlUnwind', 'MultiByteToWideChar', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'ReadFile', 'CreateFileW', 'CallWindowProcA', 'SetClassLongA', 'ActivateKeyboardLayout', 'GrayStringW', 'GetMenuBarInfo', 'CharLowerA', 'ResizePalette', 'ExtTextOutA', 'SetDIBColorTable', 'GetTextExtentExPointW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetKeyboardType', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'TranslateMessage', 'SetWindowLongW', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'ExitWindowsEx', 'DispatchMessageW', 'DestroyWindow', 'CharUpperBuffW', 'CallWindowProcW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SizeofResource', 'SignalObjectAndWait', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'MultiByteToWideChar', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GetWindowsDirectoryW', 'GetVersionExW', 'GetUserDefaultLangID', 'GetThreadLocale', 'GetSystemInfo', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesW', 'GetExitCodeProcess', 'GetEnvironmentVariableW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentProcess', 'GetCommandLineW', 'GetCPInfo', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateProcessW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'InitCommonControls', 'Sleep', 'AdjustTokenPrivileges', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PathToRegion', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA'], ['htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'ntohl', 'ntohs', 'htonl', 'GetTimeZoneInformation', 'InitializeSListHead', 'GetModuleHandleA', 'GetCurrentProcessId', 'LoadLibraryW', 'Sleep', 'SetThreadPriority', 'FreeLibraryAndExitThread', 'GetProcAddress', 'DisableThreadLibraryCalls', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'QueryInformationJobObject', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'GetVersionExW', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'SetEndOfFile', 'GetThreadContext', 'HeapReAlloc', 'SetThreadContext', 'HeapAlloc', 'HeapFree', 'Thread32First', 'HeapDestroy', 'HeapCreate', 'Thread32Next', 'OpenThread', 'VirtualProtect', 'CreateToolhelp32Snapshot', 'SuspendThread', 'ResumeThread', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'DecodePointer', 'TlsAlloc', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'OpenMutexW', 'CreateMutexW', 'ReleaseMutex', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'SetEnvironmentVariableA', 'FormatMessageA', 'OpenEventA', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetStdHandle', 'GetOEMCP', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDebuggerPresent', 'ExitThread', 'LoadLibraryExW', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetProcessHeap', 'ExitProcess', 'AreFileApisANSI', 'HeapSize', 'GetCurrentThread', 'IsValidCodePage', 'GetACP', 'SetActiveWindow', 'EnumWindows', 'GetWindowTextW', 'GetClassNameW', 'SendMessageTimeoutW', 'BringWindowToTop', 'RegEnumValueW', 'RegCloseKey', 'RegOpenKeyExW', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor'], ['GetStringTypeW', 'GetSystemDefaultLCID', 'GetSystemTimeAsFileTime', 'GetThreadLocale', 'GetThreadPriority', 'GetTickCount', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalFree', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalUnlock', 'Heap32ListNext', 'HeapAlloc', 'HeapCreate', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LocalReAlloc', 'LocalSize', 'LockResource', 'MapViewOfFile', 'MultiByteToWideChar', 'OpenEventW', 'OpenMutexW', 'OpenSemaphoreA', 'GetStringTypeExW', 'OutputDebugStringA', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'ReplaceFileA', 'RtlUnwind', 'SetComputerNameExA', 'SetConsoleCtrlHandler', 'SetConsoleMode', 'SetConsoleOutputCP', 'SetConsoleTextAttribute', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetThreadLocale', 'SetUnhandledExceptionFilter', 'SetVolumeMountPointW', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'VerLanguageNameA', 'VirtualAlloc', 'VirtualFree', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', '_lwrite', 'lstrcmpA', 'lstrcmpW', 'lstrlenA', 'lstrlenW', 'GetStringTypeA', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetShortPathNameW', 'GetProcessHeaps', 'GetProcessHeap', 'GetProcAddress', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLocaleInfoW', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFileType', 'GetExitCodeThread', 'GetEnvironmentStringsW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleScreenBufferInfo', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleFontSize', 'GetConsoleCP', 'GetComputerNameW', 'GetCommandLineW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FormatMessageW', 'FlushFileBuffers', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumResourceLanguagesW', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileA', 'CreateEventW', 'ConvertDefaultLocale', 'OpenThread', 'CloseHandle', 'GrayStringW', 'IsIconic', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadMenuW', 'LoadStringW', 'MapWindowPoints', 'MessageBoxA', 'MessageBoxW', 'ModifyMenuW', 'MsgWaitForMultipleObjectsEx', 'NotifyWinEvent', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'PostThreadMessageW', 'PtInRect', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseDC', 'RemovePropW', 'SendMessageA', 'SendMessageW', 'SetCursor', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetMessageQueue', 'SetPropW', 'SetWindowLongW', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowWindow', 'SystemParametersInfoA', 'TabbedTextOutW', 'TranslateMessage', 'UnhookWinEvent', 'UnhookWindowsHookEx', 'UnregisterClassW', 'UnregisterDeviceNotification', 'ValidateRect', 'WinHelpW', 'WindowFromDC', 'LoadCursorFromFileA', 'GetClipboardData', 'InSendMessage', 'IsMenu', 'DestroyIcon', 'CharLowerW', 'GetMenuContextHelpId', 'VkKeyScanA', 'CountClipboardFormats', 'IsCharAlphaA', 'IsCharAlphaNumericA', 'GetProcessWindowStation', 'IsWindowUnicode', 'GetKeyboardLayout', 'VkKeyScanW', 'GetKBCodePage', 'GetClipboardOwner', 'GetAsyncKeyState', 'DestroyCursor', 'CloseClipboard', 'PaintDesktop', 'GetInputState', 'GetCursor', 'CloseDesktop', 'ReleaseCapture', 'EnumClipboardFormats', 'GetWindowContextHelpId', 'GetWindowTextLengthA', 'GetClipboardViewer', 'GetThreadDesktop', 'IsCharAlphaW', 'AnyPopup', 'CharUpperW', 'IsCharLowerW', 'IsClipboardFormatAvailable', 'GetQueueStatus', 'CloseWindow', 'GetDialogBaseUnits', 'OemKeyScan', 'CharNextA', 'LoadIconA', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindow', 'GetTopWindow', 'GetSystemMetrics', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollPos', 'GetPropW', 'GetParent', 'GetMessageW', 'GetMessageTime', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDC', 'GetCursorPos', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetClassInfoExW', 'GetCapture', 'GetActiveWindow', 'EnableWindow', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExW', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DefWindowProcW', 'DefWindowProcA', 'DdeQueryConvInfo', 'CreateWindowExW', 'CreateDialogParamW', 'CopyRect', 'ClientToScreen', 'CheckMenuItem', 'CharToOemW', 'CharNextW', 'CharLowerA', 'CallWindowProcW', 'CallNextHookEx', 'AdjustWindowRectEx', 'GetClassNameW', 'CreateSolidBrush', 'SaveDC', 'FlattenPath', 'GdiGetBatchLimit', 'AbortDoc', 'GetStockObject', 'GetLayout', 'GetBkColor', 'GdiFlush', 'CreateHalftonePalette', 'GetSystemPaletteUse', 'GetObjectType', 'DeleteObject', 'AddFontResourceW', 'EngQueryLocalTime', 'GetPolyFillMode', 'GetGraphicsMode', 'AbortPath', 'DeleteColorSpace', 'CreateCompatibleDC', 'UnrealizeObject', 'GetDCPenColor', 'UpdateColors', 'CreatePatternBrush', 'StrokePath', 'SwapBuffers', 'GetTextCharset', 'XLATEOBJ_cGetPalette', 'XFORMOBJ_iGetXform', 'StartDocW', 'SetWindowExtEx', 'SetTextColor', 'GetTextColor', 'GetICMProfileW', 'GetCharABCWidthsA', 'GdiStartDocEMF', 'GdiDllInitialize', 'GetColorSpace', 'CopyMetaFileW', 'EngLoadModule', 'DPtoLP', 'EngReleaseSemaphore', 'RegSetValueExA', 'RegQueryValueW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCreateKeyExA', 'RegCloseKey', 'RegSetValueExW', 'PathFindFileNameW', 'PathFindExtensionW'], ['GetModuleHandleA', 'DefWindowProcW', 'RegOpenKeyExW', '_CorExeMain', 'PropertySheet', 'PathMakeUniqueName'], ['GetModuleHandleW', 'LoadLibraryW', 'GetProcAddress', 'VirtualAllocEx', 'SetUnhandledExceptionFilter', 'RegOpenKeyExW', 'RegQueryValueExA'], ['VirtualFree', 'IsBadReadPtr', 'GetConsoleAliasesLengthA', 'WaitForMultipleObjectsEx', 'FreeConsole', 'GetVersionExW', 'WritePrivateProfileStructW', 'IsProcessorFeaturePresent', 'MulDiv', 'EnumResourceLanguagesA', 'GetModuleFileNameW', 'CreateActCtxA', 'WritePrivateProfileStringW', 'ReplaceFileA', 'GetStringTypeExA', 'GetStdHandle', 'GetLogicalDriveStringsA', 'OpenMutexW', 'GetLastError', 'ReadConsoleOutputCharacterA', 'GetModuleHandleW', 'AttachConsole', 'VirtualAlloc', 'LoadLibraryA', 'InterlockedExchangeAdd', 'LocalAlloc', 'GetFileType', 'CreateFileMappingW', 'FindFirstVolumeMountPointW', 'GetNumberFormatW', 'CreateEventW', 'GetModuleFileNameA', 'lstrcmpiW', 'GetModuleHandleA', 'CreateMutexA', 'CancelTimerQueueTimer', 'GetFileAttributesExW', 'GetConsoleCursorInfo', 'ScrollConsoleScreenBufferA', 'GetCurrentThreadId', 'FindAtomW', 'DebugBreak', 'FindNextVolumeA', 'AddConsoleAliasW', 'CancelWaitableTimer', 'GetCommState', 'WaitForSingleObject', 'GetProcAddress', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetHandleCount', 'DeleteCriticalSection', 'Sleep', 'ExitProcess', 'WriteFile', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA', 'CharLowerBuffA', 'EnumFontsW', 'GetCharABCWidthsFloatA', 'GetCharWidthW', 'MapGenericMask'], ['InitializeCriticalSectionAndSpinCount', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetComputerNameA', 'CreateFileA', 'FindResourceA', 'lstrlenA', 'FreeLibrary', 'LoadResource', 'GetStdHandle', 'HeapSize', 'VirtualAlloc', 'HeapAlloc', 'GetCurrentProcess', 'HeapFree', 'WaitForSingleObject', 'GetProcessHeap', 'ExpandEnvironmentStringsA', 'GetWindowsDirectoryA', 'WriteFile', 'InitializeCriticalSection', 'AllocateUserPhysicalPages', 'GlobalAlloc', 'WideCharToMultiByte', 'SizeofResource', 'CreateEventA', 'LeaveCriticalSection', 'HeapCreate', 'SetConsoleCursorPosition', 'GetSystemDirectoryA', 'GetOverlappedResult', 'lstrlenW', 'SetConsoleTitleA', 'GetLastError', 'GetProcAddress', 'EnterCriticalSection', 'GlobalFree', 'ResetEvent', 'LoadLibraryA', 'GetModuleHandleA', 'CancelIo', 'lstrcatW', 'CloseHandle', 'LocalFree', 'lstrcpyW', 'lstrcpyA', 'MultiByteToWideChar', 'SetLastError', 'MulDiv', 'GlobalUnlock', 'GlobalLock', 'FreeResource', 'LockResource', 'GetModuleFileNameW', 'InterlockedDecrement', 'GetVersionExA', 'HeapReAlloc', 'RtlUnwind', 'GetStartupInfoA', 'GetCommandLineA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'ExitProcess', 'Sleep', 'SetErrorMode', 'GetModuleHandleW', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'FlushFileBuffers', 'SetFilePointer', 'ReadFile', 'lstrcmpiA', 'GetStringTypeExA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GetThreadLocale', 'DeleteCriticalSection', 'GlobalFlags', 'lstrcmpW', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'RaiseException', 'CharUpperA', 'DeleteMenu', 'DestroyMenu', 'UnregisterClassA', 'LoadCursorA', 'GetSysColorBrush', 'GetMenuStringA', 'InsertMenuA', 'ValidateRect', 'SetCursor', 'PostQuitMessage', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'SetForegroundWindow', 'IsWindowVisible', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'GetClassInfoExA', 'EnableWindow', 'GetSystemMetrics', 'SendMessageA', 'GetClientRect', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'GetDlgCtrlID', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'UnhookWindowsHookEx', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'GetWindowTextA', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetWindow', 'GetWindowThreadProcessId', 'CheckMenuItem', 'LookupIconIdFromDirectory', 'EndDeferWindowPos', 'FindWindowA', 'UpdateWindow', 'LoadImageA', 'SetWindowTextA', 'DispatchMessageA', 'IsWindow', 'SetMenu', 'ShowWindow', 'LoadAcceleratorsA', 'GetMenuItemInfoA', 'GetCursorPos', 'GetSysColor', 'GetDesktopWindow', 'DefWindowProcA', 'GetParent', 'EndPaint', 'ClientToScreen', 'SetWindowPlacement', 'GetMessageA', 'GetClassNameA', 'GetSystemMenu', 'GetWindowRect', 'SetCapture', 'GetKeyState', 'LoadStringA', 'GetFocus', 'LoadBitmapA', 'wsprintfA', 'SetFocus', 'GetWindowTextLengthA', 'BeginPaint', 'PtInRect', 'SetWindowWord', 'GetIconInfo', 'GetDC', 'TranslateMessage', 'GetMenu', 'GetWindowWord', 'GetWindowPlacement', 'RegisterClipboardFormatA', 'GetWindowLongA', 'CreateWindowExA', 'ReleaseDC', 'TranslateAcceleratorA', 'GetDlgItem', 'SetWindowsHookExA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'TextOutA', 'RectVisible', 'PtVisible', 'GetClipBox', 'SetMapMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'CreateSolidBrush', 'GetObjectA', 'CreateDIBitmap', 'CreatePen', 'GetMetaRgn', 'SelectObject', 'DeleteObject', 'GetTextCharsetInfo', 'CreateDCA', 'SetTextColor', 'GetDeviceCaps', 'GetFileTitleA', 'GetOpenFileNameA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteValueA', 'ConvertSidToStringSidA', 'RegQueryValueExA', 'OpenServiceA', 'CloseServiceHandle', 'OpenProcessToken', 'RegDeleteKeyA', 'RegEnumKeyExA', 'RegOpenKeyExA', 'GetSecurityInfo', 'OpenSCManagerA', 'GetUserNameA', 'ControlService', 'RegOpenKeyA', 'RegCloseKey', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'DeleteService', 'SHQueryRecycleBinA', 'DragAcceptFiles', 'ExtractIconExA', 'ImageList_DragEnter', 'ImageList_AddMasked', 'ImageList_DragLeave', 'ImageList_BeginDrag', 'ImageList_Destroy', 'ImageList_GetImageInfo', 'ImageList_Draw', 'ImageList_Create', 'ImageList_GetImageCount', 'ImageList_EndDrag', 'ImageList_ReplaceIcon', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'OleUninitialize', 'OleInitialize', 'VariantInit', 'VariantChangeType', 'VariantClear', 'CreateUriWithFragment', 'FtpSetCurrentDirectoryA', 'NetUserEnum', 'NetApiBufferFree', 'AVIStreamGetFrameClose', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'VerQueryValueA', 'CertVerifyValidityNesting', 'CertVerifyRevocation', 'CertVerifySubjectCertificateContext', 'CertVerifyTimeValidity', 'CertVerifyCTLUsage', 'CertVerifyCertificateChainPolicy', 'PdhGetFormattedCounterValue', 'CreateStdAccessibleObject', 'LresultFromObject', 'SetupDiGetClassDevsW', 'SetupDiDestroyDeviceInfoList'], ['OpenMutexW', 'GetSystemTimeAdjustment', 'VerSetConditionMask', 'FindNextVolumeA', 'HeapWalk', 'GetNamedPipeHandleStateA', 'FileTimeToLocalFileTime', 'FillConsoleOutputCharacterW', 'VirtualFree', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExW', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBA', 'SetDefaultCommConfigW', 'WritePrivateProfileStructA', 'HeapQueryInformation', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputA', 'GetVersionExA', 'AddAtomA', 'SearchPathW', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeW', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'LocalAlloc', 'SetProcessPriorityBoost', 'GetProfileSectionA', 'FindFirstChangeNotificationA', 'VerifyVersionInfoA', 'FormatMessageA', 'SetDllDirectoryW', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'GetProcessHeap', 'SetWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileA', 'GetLastError', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceA', 'SetLastError', 'DeleteVolumeMountPointA', 'FatalAppExitA', 'OpenFileMappingA', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'SetDefaultCommConfigA', 'ContinueDebugEvent', 'VirtualAlloc', 'InterlockedExchangeAdd', 'GlobalFix', 'GetACP', 'GlobalFindAtomA', 'lstrcatA', 'GetPrivateProfileStringA', 'GetMailslotInfo', 'CreateActCtxW', 'GetPrivateProfileIntW', '_lwrite', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'GetAtomNameW', 'FlushConsoleInputBuffer', 'EnumResourceTypesA', 'lstrlenA', 'MoveFileW', 'WriteConsoleA', 'lstrcpyA', 'GetModuleHandleW', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBW', 'ReleaseActCtx', 'GetStringTypeA', 'GetPrivateProfileStringW', 'GetFileAttributesExA', 'MoveFileA', 'GetVolumePathNameW', 'SetCommMask', 'SetFileShortNameW', 'VerLanguageNameA', 'LockFile', 'EnumDateFormatsW', 'WTSGetActiveConsoleSessionId', 'LoadLibraryW', 'GetOverlappedResult', 'AttachConsole', 'GlobalGetAtomNameA', 'SetComputerNameW', 'GetConsoleAliasExesLengthW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressW', 'DebugActiveProcess', 'GetStringTypeExA', 'EnumSystemLocalesA', 'GetPrivateProfileIntA', 'GetTickCount', 'GetModuleFileNameA', 'GetConsoleAliasesLengthW', 'GlobalWire', 'GetCompressedFileSizeW', 'SetThreadPriority', 'MapUserPhysicalPagesScatter', 'WriteConsoleOutputCharacterW', 'EnumDateFormatsA', 'TerminateJobObject', 'CreateFileA', 'GetDateFormatA', 'BuildCommDCBAndTimeoutsW', 'GetConsoleAliasExesW', 'OpenWaitableTimerW', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'HeapValidate', 'IsBadReadPtr', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetModuleFileNameW', 'SetUnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'Sleep', 'InterlockedDecrement', 'GetProcAddress', 'ExitProcess', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'WriteFile', 'HeapAlloc', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapSize', 'HeapReAlloc', 'GetOEMCP', 'GetCPInfo', 'IsValidCodePage', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'GetConsoleOutputCP', 'CloseHandle', 'FlushFileBuffers'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'MessageBoxA', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'SwitchToThread', 'GetCurrentThreadId', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'WriteFile', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VerSetConditionMask', 'VerifyVersionInfoW', 'SizeofResource', 'SetFileAttributesW', 'SetEvent', 'ResetEvent', 'LockResource', 'LocalFree', 'LoadResource', 'IsValidLocale', 'GetVersionExW', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFileAttributesW', 'GetEnvironmentVariableW', 'GetDiskFreeSpaceW', 'GetCPInfo', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindFirstFileW', 'FindClose', 'EnumSystemLocalesW', 'EnumResourceNamesW', 'EnumCalendarInfoW', 'CreateFileW', 'CreateEventW', 'CompareStringW', 'CloseHandle', 'ShellExecuteExW'], ['GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'UnhandledExceptionFilter', 'VirtualAlloc', '__std_type_info_destroy_list', '_except_handler4_common', 'memcpy', 'memset', '_cexit', '_configure_narrow_argv', '_execute_onexit_table', '_initialize_narrow_environment', '_initialize_onexit_table', '_initterm', '_initterm_e', '_seh_filter_dll'], ['GetModuleFileNameW', 'GetStdHandle', 'GetBinaryTypeA', 'LockFile', 'GetProcessIdOfThread', 'SetEvent', 'GetModuleHandleW', 'LocalAlloc', 'LocalFree', 'GetProcAddress', 'FreeLibrary', 'GetLastError', 'LoadLibraryA', 'RaiseException', 'SetGraphicsMode', 'SelectPalette'], ['GetModuleHandleA', 'EndPaint', 'RegQueryValueA', 'DSA_Create', 'ShellAboutW', '_CorExeMain'], ['GetStartupInfoA', 'GetModuleHandleA', 'GetTimeFormatA', 'ExitThread', 'GetLastError', 'FormatMessageA', 'LocalFree', 'Sleep', 'GetComputerNameA', 'CreateThread', 'PostQuitMessage', 'DialogBoxParamA', 'GetDC', 'EndDialog', 'MessageBoxA', 'PostMessageA', 'EndPaint', 'DefWindowProcA', 'LoadIconA', 'RegisterClassExA', 'AdjustWindowRectEx', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'IsDialogMessageW', 'ReleaseDC', 'LoadCursorA', 'BeginPaint', 'DeleteObject', 'GetStockObject', 'LineTo', 'MoveToEx', 'CreateSolidBrush', 'Ellipse', 'GetCurrentObject', 'CreatePen', 'Polygon', 'SelectObject', 'RegOpenKeyExW', 'WSACleanup', 'closesocket', 'ntohs', 'getsockname', 'bind', 'htons', 'gethostbyname', 'socket', 'accept', 'listen', 'connect', 'recv', 'send', 'WSAGetLastError', 'WSAStartup', '?_Grow@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAE_NI_N@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?_Mode@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEHH@Z', '?_Init@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAEXPBDIH@Z', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', '?clear@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?close@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@XZ', '?_Init@locale@std@@CAPAV_Locimp@12@XZ', '?_Global@_Locimp@locale@std@@0PAV123@A', '??_8?$basic_ofstream@DU?$char_traits@D@std@@@std@@7B@', '??0locale@std@@QAE@XZ', '??_7?$basic_filebuf@DU?$char_traits@D@std@@@std@@6B@', '?_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@12@@Z', '??_7?$basic_ofstream@DU?$char_traits@D@std@@@std@@6B@', '?pbackfail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHPADH@Z', '?seekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@JW4seekdir@ios_base@2@H@Z', '?seekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@V32@H@Z', '?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PADH@Z', '?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '??_7?$basic_istream@DU?$char_traits@D@std@@@std@@6B@', '?__Fiopen@std@@YAPAU_iobuf@@PBDH@Z', '?setp@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD0@Z', '?setg@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD00@Z', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAPAD0PAH001@Z', '?_Stinit@?1??_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@23@@Z@4HA', '?_Initcvt@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '?clear@ios_base@std@@QAEXH_N@Z', '??_7ios_base@std@@6B@', '??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N1@Z', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '??1_Lockit@std@@QAE@XZ', '??0_Lockit@std@@QAE@XZ', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@II@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', '?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAE_NI_N@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@II@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AA_N@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAH@Z', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1ios_base@std@@UAE@XZ', '??1locale@std@@QAE@XZ', '??_7?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@', '?_Tidy@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAEXXZ', '??_7?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '?str@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@J@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@N@Z', '??_7?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@', '??_7?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@', '?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z', '??_7?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@', '??_7?$basic_ios@DU?$char_traits@D@std@@@std@@6B@', '??0ios_base@std@@IAE@XZ', '??_8?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B@', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAJ@Z', '??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAN@Z', '?_C@?1??_Nullstr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@CAPBGXZ@4GB', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@ABV12@II@Z', '?npos@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@2IB', '??0?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z', '?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAEX_N@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z', '??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '?_Split@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXXZ', '?_Xran@std@@YAXXZ', '?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_Xlen@std@@YAXXZ', '??5std@@YAAAV?$basic_istream@DU?$char_traits@D@std@@@0@AAV10@AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z', '??8std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z', '??1?$basic_iostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ', '__CxxFrameHandler', '__dllonexit', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '?terminate@@YAXXZ', '_except_handler3', 'free', 'fclose', 'vsprintf', 'sprintf', '_controlfp', '_errno', 'strerror', 'memmove', 'tolower', 'wcslen', '_onexit', 'time', 'srand', 'rand', '_ftol', '_CxxThrowException', '??2@YAPAXI@Z'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'EndPaint', 'CreateCompatibleBitmap', 'RegCreateKeyExA', 'ShellExecuteA', 'CoUninitialize', 'VarI4FromStr', 'PathFileExistsA', 'InitCommonControlsEx'], ['LoadLibraryA', 'GetOEMCP', 'GetACP', 'ReadFile', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'GetStringTypeW', 'CreateFileA', 'GetVersionExA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'IsValidCodePage', 'IsValidLocale', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'SetEndOfFile', 'GetTimeFormatA', 'ExitThread', 'GetLastError', 'FormatMessageA', 'LocalFree', 'GetComputerNameA', 'Sleep', 'GetStringTypeA', 'CreateThread', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'CloseHandle', 'UnhandledExceptionFilter', 'IsBadWritePtr', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'SetUnhandledExceptionFilter', 'WideCharToMultiByte', 'MultiByteToWideChar', 'RtlUnwind', 'RaiseException', 'HeapFree', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'CompareStringA', 'CompareStringW', 'HeapSize', 'GetProcAddress', 'SetEnvironmentVariableA', 'ReleaseDC', 'GetDC', 'IsDialogMessageW', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'UpdateWindow', 'ShowWindow', 'CreateWindowExA', 'AdjustWindowRectEx', 'RegisterClassExA', 'LoadIconA', 'LoadCursorA', 'DefWindowProcA', 'EndPaint', 'PostMessageA', 'MessageBoxA', 'EndDialog', 'PostQuitMessage', 'DialogBoxParamA', 'BeginPaint', 'GetCurrentObject', 'Ellipse', 'Polygon', 'MoveToEx', 'LineTo', 'GetStockObject', 'DeleteObject', 'CreateSolidBrush', 'SelectObject', 'CreatePen', 'RegOpenKeyExW', 'WSAStartup', 'WSACleanup', 'closesocket', 'ntohs', 'getsockname', 'bind', 'htons', 'gethostbyname', 'socket', 'accept', 'listen', 'connect', 'recv', 'send', 'WSAGetLastError'], ['GetModuleHandleA', 'CoCreateInstance', 'SysFreeString', 'CryptStringToBinaryA'], ['GetModuleHandleA', 'ScrollDC', 'GetUserNameA', 'ShellAboutW', 'ImageList_Create', '_CorExeMain'], ['QueryDosDeviceA', 'GetLogicalDriveStringsA', 'WideCharToMultiByte', 'LocalFree', 'LocalAlloc', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetComputerNameW', 'GetLastError', 'GetProcAddress', 'LoadLibraryA', 'GetTickCount', 'CompareStringW', 'CompareStringA', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'GetOEMCP', 'GetACP', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'RtlUnwind', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetFileAttributesW', 'MoveFileW', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCommandLineA', 'GetVersion', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetModuleHandleA', 'CloseHandle', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'WriteFile', 'SetFilePointer', 'VirtualAlloc', 'HeapReAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'IsBadReadPtr', 'IsBadCodePtr', 'GetCPInfo', 'SetStdHandle', 'FlushFileBuffers', 'SetEnvironmentVariableA', 'htons', 'bind', 'listen', 'inet_addr', 'socket', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'VerQueryValueW'], ['WriteFile', 'HeapReAlloc', 'FindFirstChangeNotificationW', 'HeapAlloc', 'WaitForSingleObject', 'FindCloseChangeNotification', 'GetFileAttributesW', 'MultiByteToWideChar', 'GetLastError', 'SetLastError', 'FindNextChangeNotification', 'DeleteFileW', 'VirtualFree', 'DeleteCriticalSection', 'WideCharToMultiByte', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'CreateDirectoryW', 'GetModuleFileNameW', 'GetFullPathNameW', 'ExpandEnvironmentStringsW', 'GetCurrentProcess', 'VirtualAlloc', 'VirtualProtect', 'GetSystemTime', 'SystemTimeToFileTime', 'GetModuleHandleA', 'LoadLibraryA', 'GetVersionExA', 'CreateEventA', 'SetEvent', 'CreateFileA', 'FormatMessageA', 'GetProcAddress', 'CreateToolhelp32Snapshot', 'SetFilePointer', 'Thread32Next', 'GetCurrentProcessId', 'WaitForMultipleObjects', 'CreateWaitableTimerA', 'SetWaitableTimer', 'TerminateProcess', 'FreeLibrary', 'GetTickCount', 'LocalAlloc', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW', 'VirtualQuery', 'GetStringTypeW', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetProcessHeap', 'HeapFree', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryW', 'Sleep', 'CreateThread', 'Thread32First', 'CloseHandle', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ExitThread', 'ResumeThread', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapSize', 'ExitProcess', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetTimeZoneInformation', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'EnumThreadWindows', 'EnumChildWindows', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'DestroyWindow', 'CreateWindowExA', 'RegisterClassA', 'PostMessageA', 'IsWindowVisible', 'CallWindowProcA', 'SetWindowLongA', 'GetWindowLongA', 'GetClassNameA', 'GetActiveWindow', 'RegSetValueExA', 'RegCreateKeyExA', 'GetTokenInformation', 'OpenProcessToken', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'RegDeleteKeyW', 'RegQueryValueExA', 'SysAllocStringLen', 'SysFreeString', 'GetModuleInformation'], ['lstrcpyW', 'GetTickCount', 'CreateEventW', 'CloseHandle', 'WaitForSingleObject', 'ResetEvent', 'SetEvent', 'GetSystemInfo', 'GlobalMemoryStatusEx', 'GetComputerNameW', 'GetComputerNameExW', 'GetACP', 'GetOEMCP', 'GetPriorityClass', 'GetCurrentProcess', 'GetThreadPriority', 'GetCurrentThread', 'SetPriorityClass', 'SetThreadPriority', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'LoadLibraryW', 'GetProcAddress', 'FreeLibrary', 'GetModuleHandleW', 'GetNativeSystemInfo', 'CreateFileW', 'DeleteCriticalSection', 'SetFilePointerEx', 'ReadFile', 'WriteFile', 'DeleteFileW', 'GetTempPathW', 'GetCurrentThreadId', 'GetDiskFreeSpaceExW', 'GetVolumeInformationW', 'GetDriveTypeW', 'GetLogicalDriveStringsW', 'GetFileAttributesExW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'GetFileSize', 'TerminateProcess', 'GetStdHandle', 'CreatePipe', 'SetStdHandle', 'DuplicateHandle', 'CreateProcessW', 'WriteConsoleW', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'DecodePointer', 'RaiseException', 'GetLastError', 'Sleep', 'InitializeCriticalSectionEx', 'GetModuleFileNameW', 'OutputDebugStringA', 'GetFileSizeEx', 'lstrlenW', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'HeapReAlloc', 'HeapSize', 'IsDebuggerPresent', 'OutputDebugStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'InterlockedFlushSList', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'RtlUnwind', 'CreateThread', 'ExitThread', 'ResumeThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'ExitProcess', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'GetFileType', 'GetStringTypeW', 'LCMapStringW', 'CharLowerW', 'CharUpperW', 'wsprintfW', 'RegCloseKey', 'RegSetValueExW', 'RegCreateKeyW', 'RegOpenKeyW', 'RegQueryValueExW', 'CoCreateGuid', 'StrStrW', 'StrCmpW', 'StrCpyW', 'WSAStartup', 'GetAddrInfoW', 'FreeAddrInfoW', 'WSACleanup', 'send', 'connect', 'setsockopt', 'recv', 'closesocket', 'htons', 'socket'], ['WaitForSingleObject', 'CreateProcessA', 'GetStartupInfoA', 'Sleep', 'SetLocalTime', 'GetUserDefaultLCID', 'LCMapStringA', 'GetTickCount', 'ReadFile', 'GetFileSize', 'SetFilePointer', 'GetModuleFileNameA', 'IsBadReadPtr', 'CreateDirectoryA', 'SetFileAttributesA', 'GetCommandLineA', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'InterlockedExchange', 'WriteFile', 'SetEndOfFile', 'DeleteFileA', 'ExitProcess', 'CloseHandle', 'GetProcessHeap', 'GetModuleHandleA', 'MoveFileExA', 'CreateFileA', 'CreateEventA', 'Thread32Next', 'Thread32First', 'GlobalFree', 'GlobalAlloc', 'OpenEventA', 'RtlMoveMemory', 'lstrcpyn', 'IsDebuggerPresent', 'VirtualProtectEx', 'VirtualQueryEx', 'RtlZeroMemory', 'TerminateProcess', 'OpenProcess', 'GetCurrentProcessId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'GetLocalTime', 'DeviceIoControl', 'FlushFileBuffers', 'SetStdHandle', 'IsBadCodePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LCMapStringW', 'RaiseException', 'IsBadWritePtr', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapSize', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'TlsGetValue', 'SetLastError', 'TlsFree', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'InterlockedIncrement', 'InterlockedDecrement', 'RtlUnwind', 'GetVersion', 'GetCurrentProcess', 'GetLastError', 'GetVersionExA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetTempPathA', 'TerminateThread', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'CreateThread', 'PathFileExistsA', 'PathFindFileNameA', 'TranslateMessage', 'GetMessageA', 'DispatchMessageA', 'wsprintfA', 'MessageBoxA', 'PostMessageA', 'GetCursorPos', 'PeekMessageA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'StartServiceA', 'CreateServiceA', 'CryptEncrypt', 'CryptGetHashParam', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptGetKeyParam', 'CryptDestroyKey', 'CryptSetKeyParam', 'CryptDecrypt', 'CryptReleaseContext', 'CryptImportKey', 'CryptAcquireContextA', 'DeleteService', 'ControlService', 'CloseServiceHandle', 'OpenServiceA', 'OpenSCManagerA', 'RegOpenKeyExA', 'CLSIDFromString', 'CoCreateInstance', 'OleRun', 'CoUninitialize', 'CLSIDFromProgID', 'CoInitialize', 'InternetGetCookieA', 'InternetSetCookieA', 'RegisterTypeLib', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim', 'SafeArrayDestroy', 'VariantClear', 'SysAllocString', 'SafeArrayCreate', 'VariantCopy', 'LHashValOfNameSys', 'LoadTypeLib', 'VariantChangeType', 'VarR8FromBool', 'VarR8FromCy', 'SysFreeString', 'SafeArrayGetElemsize', 'SafeArrayUnaccessData', 'VariantInit', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayAccessData', 'WinHttpOpen', 'WinHttpSetCredentials', 'WinHttpSetTimeouts', 'WinHttpReadData', 'WinHttpQueryDataAvailable', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpQueryHeaders', 'WinHttpSetOption', 'WinHttpAddRequestHeaders', 'WinHttpCloseHandle', 'SHGetSpecialFolderPathA'], ['send', 'socket', 'inet_ntoa', 'ntohs', 'recvfrom', 'sendto', 'recv', '__WSAFDIsSet', 'WSAStartup', 'select', 'accept', 'listen', 'bind', 'closesocket', 'WSACleanup', 'ioctlsocket', 'htons', 'WSAGetLastError', 'inet_addr', 'gethostbyname', 'gethostname', 'connect', 'setsockopt', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'timeGetTime', 'waveOutSetVolume', 'mciSendStringW', 'ImageList_ReplaceIcon', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_SetDragCursorImage', 'ImageList_BeginDrag', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_EndDrag', 'ImageList_DragMove', 'InitCommonControlsEx', 'ImageList_Create', 'WNetUseConnectionW', 'WNetCancelConnection2W', 'WNetGetConnectionW', 'WNetAddConnection2W', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetSetOptionW', 'InternetCrackUrlW', 'HttpQueryInfoW', 'InternetConnectW', 'HttpOpenRequestW', 'HttpSendRequestW', 'FtpOpenFileW', 'FtpGetFileSize', 'InternetOpenUrlW', 'InternetQueryOptionW', 'InternetQueryDataAvailable', 'GetProcessMemoryInfo', 'IcmpCreateFile', 'IcmpCloseHandle', 'IcmpSendEcho', 'UnloadUserProfile', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'LoadUserProfileW', 'IsThemeActive', 'DuplicateHandle', 'CreateThread', 'WaitForSingleObject', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'Sleep', 'GetCurrentThreadId', 'MultiByteToWideChar', 'MulDiv', 'GetVersionExW', 'IsWow64Process', 'GetSystemInfo', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetErrorMode', 'GetModuleFileNameW', 'WideCharToMultiByte', 'lstrcpyW', 'lstrlenW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'VirtualFreeEx', 'OpenProcess', 'VirtualAllocEx', 'WriteProcessMemory', 'ReadProcessMemory', 'CreateFileW', 'SetFilePointerEx', 'SetEndOfFile', 'ReadFile', 'WriteFile', 'FlushFileBuffers', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetFileTime', 'GetFileAttributesW', 'FindFirstFileW', 'SetCurrentDirectoryW', 'GetLongPathNameW', 'GetShortPathNameW', 'DeleteFileW', 'FindNextFileW', 'CopyFileExW', 'MoveFileW', 'CreateDirectoryW', 'RemoveDirectoryW', 'SetSystemPowerState', 'QueryPerformanceFrequency', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'EnumResourceNamesW', 'OutputDebugStringW', 'GetTempPathW', 'GetTempFileNameW', 'DeviceIoControl', 'GetLocalTime', 'CompareStringW', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'CreatePipe', 'InterlockedExchange', 'TerminateThread', 'LoadLibraryExW', 'FindResourceExW', 'CopyFileW', 'VirtualFree', 'FormatMessageW', 'GetExitCodeProcess', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'GetPrivateProfileSectionW', 'WritePrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetDriveTypeW', 'GetDiskFreeSpaceExW', 'GetDiskFreeSpaceW', 'GetVolumeInformationW', 'SetVolumeLabelW', 'CreateHardLinkW', 'SetFileAttributesW', 'CreateEventW', 'SetEvent', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'GetFileSize', 'GlobalFree', 'GlobalMemoryStatusEx', 'Beep', 'GetSystemDirectoryW', 'HeapReAlloc', 'HeapSize', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'GetProcessIoCounters', 'CreateProcessW', 'GetProcessId', 'SetPriorityClass', 'LoadLibraryW', 'VirtualAlloc', 'IsDebuggerPresent', 'GetCurrentDirectoryW', 'lstrcmpiW', 'DecodePointer', 'GetLastError', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCurrentThread', 'CloseHandle', 'GetFullPathNameW', 'EncodePointer', 'ExitProcess', 'GetModuleHandleExW', 'ExitThread', 'GetSystemTimeAsFileTime', 'ResumeThread', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetStringTypeW', 'SetStdHandle', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'RtlUnwind', 'ReadConsoleW', 'GetTimeZoneInformation', 'GetDateFormatW', 'GetTimeFormatW', 'LCMapStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'WriteConsoleW', 'FindClose', 'SetEnvironmentVariableA', 'AdjustWindowRectEx', 'CopyImage', 'SetWindowPos', 'GetCursorInfo', 'RegisterHotKey', 'ClientToScreen', 'GetKeyboardLayoutNameW', 'IsCharAlphaW', 'IsCharAlphaNumericW', 'IsCharLowerW', 'IsCharUpperW', 'GetMenuStringW', 'GetSubMenu', 'GetCaretPos', 'IsZoomed', 'MonitorFromPoint', 'GetMonitorInfoW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'FlashWindow', 'GetClassLongW', 'TranslateAcceleratorW', 'IsDialogMessageW', 'GetSysColor', 'InflateRect', 'DrawFocusRect', 'DrawTextW', 'FrameRect', 'DrawFrameControl', 'FillRect', 'PtInRect', 'DestroyAcceleratorTable', 'CreateAcceleratorTableW', 'SetCursor', 'GetWindowDC', 'GetSystemMetrics', 'GetActiveWindow', 'CharNextW', 'wsprintfW', 'RedrawWindow', 'DrawMenuBar', 'DestroyMenu', 'SetMenu', 'GetWindowTextLengthW', 'CreateMenu', 'IsDlgButtonChecked', 'DefDlgProcW', 'CallWindowProcW', 'ReleaseCapture', 'SetCapture', 'CreateIconFromResourceEx', 'mouse_event', 'ExitWindowsEx', 'SetActiveWindow', 'FindWindowExW', 'EnumThreadWindows', 'SetMenuDefaultItem', 'InsertMenuItemW', 'IsMenu', 'TrackPopupMenuEx', 'GetCursorPos', 'DeleteMenu', 'SetRect', 'GetMenuItemID', 'GetMenuItemCount', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'SetForegroundWindow', 'IsIconic', 'FindWindowW', 'MonitorFromRect', 'keybd_event', 'SendInput', 'GetAsyncKeyState', 'SetKeyboardState', 'GetKeyboardState', 'GetKeyState', 'VkKeyScanW', 'LoadStringW', 'DialogBoxParamW', 'MessageBeep', 'EndDialog', 'SendDlgItemMessageW', 'GetDlgItem', 'SetWindowTextW', 'CopyRect', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'GetClientRect', 'GetMenu', 'DestroyWindow', 'EnumWindows', 'GetDesktopWindow', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'EnableWindow', 'InvalidateRect', 'GetWindowLongW', 'GetWindowThreadProcessId', 'AttachThreadInput', 'GetFocus', 'GetWindowTextW', 'ScreenToClient', 'SendMessageTimeoutW', 'EnumChildWindows', 'CharUpperBuffW', 'GetParent', 'GetDlgCtrlID', 'SendMessageW', 'MapVirtualKeyW', 'PostMessageW', 'GetWindowRect', 'SetUserObjectSecurity', 'CloseDesktop', 'CloseWindowStation', 'OpenDesktopW', 'SetProcessWindowStation', 'GetProcessWindowStation', 'OpenWindowStationW', 'GetUserObjectSecurity', 'MessageBoxW', 'DefWindowProcW', 'SetClipboardData', 'EmptyClipboard', 'CountClipboardFormats', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'OpenClipboard', 'BlockInput', 'GetMessageW', 'LockWindowUpdate', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'UnregisterHotKey', 'CheckMenuRadioItem', 'CharLowerBuffW', 'MoveWindow', 'SetFocus', 'PostQuitMessage', 'KillTimer', 'CreatePopupMenu', 'RegisterWindowMessageW', 'SetTimer', 'ShowWindow', 'CreateWindowExW', 'RegisterClassExW', 'LoadIconW', 'LoadCursorW', 'GetSysColorBrush', 'GetForegroundWindow', 'MessageBoxA', 'DestroyIcon', 'SystemParametersInfoW', 'LoadImageW', 'GetClassNameW', 'StrokePath', 'DeleteObject', 'GetTextExtentPoint32W', 'ExtCreatePen', 'GetDeviceCaps', 'EndPath', 'SetPixel', 'CloseFigure', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'GetDIBits', 'LineTo', 'AngleArc', 'MoveToEx', 'Ellipse', 'DeleteDC', 'GetPixel', 'CreateDCW', 'GetStockObject', 'GetTextFaceW', 'CreateFontW', 'SetTextColor', 'PolyDraw', 'BeginPath', 'Rectangle', 'SetViewportOrgEx', 'GetObjectW', 'SetBkMode', 'RoundRect', 'SetBkColor', 'CreatePen', 'CreateSolidBrush', 'StrokeAndFillPath', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetAce', 'RegEnumValueW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'RegConnectRegistryW', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AdjustTokenPrivileges', 'OpenThreadToken', 'OpenProcessToken', 'LookupPrivilegeValueW', 'DuplicateTokenEx', 'CreateProcessAsUserW', 'CreateProcessWithLogonW', 'GetLengthSid', 'CopySid', 'LogonUserW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'RegCreateKeyExW', 'FreeSid', 'GetTokenInformation', 'GetSecurityDescriptorDacl', 'GetAclInformation', 'AddAce', 'SetSecurityDescriptorDacl', 'GetUserNameW', 'InitiateSystemShutdownExW', 'DragQueryPoint', 'ShellExecuteExW', 'DragQueryFileW', 'SHEmptyRecycleBinW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHCreateShellItem', 'SHGetDesktopFolder', 'SHGetSpecialFolderLocation', 'SHGetFolderPathW', 'SHFileOperationW', 'ExtractIconExW', 'Shell_NotifyIconW', 'ShellExecuteW', 'DragFinish', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'ProgIDFromCLSID', 'CLSIDFromProgID', 'OleSetMenuDescriptor', 'MkParseDisplayName', 'OleSetContainedObject', 'CoCreateInstance', 'IIDFromString', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'GetRunningObjectTable', 'CoGetInstanceFromFile', 'CoGetObject', 'CoInitializeSecurity', 'CoCreateInstanceEx', 'CoSetProxyBlanket', 'LoadTypeLibEx', 'VariantCopyInd', 'SysReAllocString', 'SysFreeString', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayAllocData', 'SafeArrayAllocDescriptorEx', 'SafeArrayCreateVector', 'RegisterTypeLib', 'CreateStdDispatch', 'DispCallFunc', 'VariantChangeType', 'SysStringLen', 'VariantTimeToSystemTime', 'VarR8FromDec', 'SafeArrayGetVartype', 'VariantCopy', 'VariantClear', 'OleLoadPicture', 'QueryPathOfRegTypeLib', 'RegisterTypeLibForUser', 'UnRegisterTypeLibForUser', 'UnRegisterTypeLib', 'CreateDispTypeInfo', 'SysAllocString', 'VariantInit'], ['GetProcessHeap', 'GetSystemTimeAsFileTime', 'GetTickCount', 'ExitThread', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'SetEndOfFile', 'GlobalUnlock', 'SearchPathA', 'IsValidCodePage', 'GetDateFormatA', 'UnlockFile', 'GetDiskFreeSpaceA', 'RaiseException', 'InterlockedExchange', 'LockFile', 'GetTimeFormatA', 'GetShortPathNameA', 'WritePrivateProfileStringA', 'GlobalFlags', 'GetTimeZoneInformation', 'CreateDirectoryA', 'GetExitCodeProcess', 'GlobalFindAtomW', 'HeapFree', 'DuplicateHandle', 'GlobalLock', 'ExpandEnvironmentStringsA', 'FindFirstFileA', 'GlobalAddAtomW', 'GetExitCodeThread', 'lstrcmpiA', 'GetFileAttributesA', 'CompareFileTime', 'GetVolumeInformationW', 'FindClose', 'GetTempPathA', 'GetConsoleCP', 'SetFileAttributesA', 'FlushFileBuffers', 'GetDriveTypeW', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'FindNextFileA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'SetFilePointer', 'GetModuleHandleW', 'GetLastError', 'GetVersionExA', 'GetProcAddress', 'IsBadReadPtr', 'RemoveDirectoryA', 'FreeLibrary', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'CloseHandle', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'WriteFile', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'GetSystemMetrics', 'SendMessageA', 'SetTextColor', 'Rectangle', 'AllocateLocallyUniqueId', 'RegNotifyChangeKeyValue', 'SafeArrayPutElement', 'VarAdd', 'VarDecRound'], ['GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'GetModuleHandleA', 'GetListBoxInfo', 'GetAsyncKeyState', 'GetWindowDC', 'GetWindowContextHelpId', 'DrawMenuBar', 'GetTopWindow', 'GetSysColor', 'GetFocus', 'InSendMessage', 'CharLowerW', 'GetCapture', 'GetClipboardOwner', 'CharUpperA', 'GetOpenClipboardWindow', 'CreatePopupMenu', 'GetSystemMetrics', 'GetSystemPaletteUse', 'DeleteDC', 'CreateMetaFileW', 'BeginPath', 'SetMetaRgn', 'SwapBuffers', 'GetPixelFormat', 'GetStockObject', 'GetROP2', 'GetBkMode', 'RegOpenKeyExW'], ['GetNativeSystemInfo', 'GlobalMemoryStatus', 'GetConsoleCP', 'FreeConsole', 'GetVersion', 'EscapeCommFunction', 'GetUrlCacheEntryInfoExA', 'FindMimeFromData', 'EndPath', 'VarCyFromI2', 'memset', 'strtod', 'GetQueueStatus', 'GetInputState'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'LocalFree', 'LocalAlloc', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetQueueStatus', 'GetPropA', 'GetProcessWindowStation', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['WSASetLastError', 'ntohl', 'ntohs', 'htonl', 'htons', 'getsockopt', 'connect', 'freeaddrinfo', 'getaddrinfo', 'WSAGetLastError', 'setsockopt', 'WSASocketW', 'WSASend', 'WSARecv', 'select', 'ioctlsocket', 'closesocket', 'WSACleanup', 'WSAStartup', 'GetTimeZoneInformation', 'InitializeSListHead', 'LoadLibraryW', 'Sleep', 'FreeLibraryAndExitThread', 'GetProcAddress', 'GetCurrentThreadId', 'CreateThread', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetNativeSystemInfo', 'IsWow64Process', 'GetLastError', 'CloseHandle', 'GetCurrentProcess', 'GetModuleHandleW', 'GetVersionExW', 'GetExitCodeThread', 'WaitForSingleObject', 'TerminateThread', 'OpenEventW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'FreeLibrary', 'GetSystemTimeAsFileTime', 'CreateEventA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetEndOfFile', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedExchangeAdd', 'InitializeCriticalSectionAndSpinCount', 'WaitForMultipleObjects', 'QueueUserAPC', 'SleepEx', 'PostQueuedCompletionStatus', 'CreateIoCompletionPort', 'SetWaitableTimer', 'GetQueuedCompletionStatus', 'InterlockedCompareExchange', 'SetLastError', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetThreadContext', 'HeapReAlloc', 'SetThreadContext', 'HeapAlloc', 'HeapFree', 'Thread32First', 'HeapDestroy', 'Thread32Next', 'OpenThread', 'VirtualProtect', 'CreateToolhelp32Snapshot', 'SuspendThread', 'ResumeThread', 'RaiseException', 'DecodePointer', 'OpenMutexW', 'CreateMutexW', 'ReleaseMutex', 'VirtualQuery', 'VirtualFree', 'GetSystemInfo', 'GetModuleHandleA', 'GetThreadTimes', 'OutputDebugStringW', 'WriteConsoleW', 'SetStdHandle', 'FlushFileBuffers', 'CreateFileW', 'SetEnvironmentVariableA', 'FormatMessageA', 'OpenEventA', 'TlsAlloc', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'FileTimeToSystemTime', 'GetCPInfo', 'ExitThread', 'LoadLibraryExW', 'IsDebuggerPresent', 'ExitProcess', 'AreFileApisANSI', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'WriteFile', 'GetConsoleCP', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapSize', 'GetProcessHeap', 'GetCurrentThread', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetStdHandle', 'SetActiveWindow', 'EnumWindows', 'GetWindowTextW', 'GetClassNameW', 'SendMessageTimeoutW', 'BringWindowToTop', 'RegEnumValueW', 'RegCloseKey', 'RegOpenKeyExW', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'ImageList_SetIconSize'], ['WSACleanup', 'inet_addr', 'gethostbyname', 'gethostname', 'WSAStartup', 'mixerSetControlDetails', 'waveOutGetVolume', 'joyGetPosEx', 'mixerGetControlDetailsW', 'mixerOpen', 'mixerGetDevCapsW', 'mixerGetLineControlsW', 'waveOutSetVolume', 'mixerClose', 'mciSendStringW', 'joyGetDevCapsW', 'mixerGetLineInfoW', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'ImageList_Create', 'CreateStatusWindowW', 'ImageList_ReplaceIcon', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetModuleBaseNameW', 'GetModuleFileNameExW', 'FindNextFileW', 'FindClose', 'FileTimeToLocalFileTime', 'SetEnvironmentVariableW', 'Beep', 'MoveFileW', 'OutputDebugStringW', 'CreateProcessW', 'GetFileAttributesW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetExitCodeProcess', 'WriteProcessMemory', 'ReadProcessMemory', 'GetCurrentProcessId', 'OpenProcess', 'TerminateProcess', 'SetPriorityClass', 'SetLastError', 'GetEnvironmentVariableW', 'GetLocalTime', 'GetDateFormatW', 'GetTimeFormatW', 'GetDiskFreeSpaceW', 'SetVolumeLabelW', 'CreateFileW', 'DeviceIoControl', 'GetDriveTypeW', 'GetVolumeInformationW', 'CreateDirectoryW', 'ReadFile', 'WriteFile', 'DeleteFileW', 'SetFileAttributesW', 'LocalFileTimeToFileTime', 'SetFileTime', 'GetFileSizeEx', 'GetSystemTime', 'GetSystemDefaultUILanguage', 'GetComputerNameW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetFullPathNameW', 'GetShortPathNameW', 'FindFirstFileW', 'FreeLibrary', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualProtect', 'QueryDosDeviceW', 'CompareStringW', 'RemoveDirectoryW', 'CopyFileW', 'GetCurrentProcess', 'FormatMessageW', 'GetPrivateProfileStringW', 'GetPrivateProfileSectionW', 'GetPrivateProfileSectionNamesW', 'WritePrivateProfileStringW', 'WritePrivateProfileSectionW', 'SetEndOfFile', 'GetACP', 'GetFileType', 'GetStdHandle', 'SetFilePointerEx', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetFileSize', 'VirtualAllocEx', 'VirtualFreeEx', 'EnumResourceNamesW', 'LoadLibraryExW', 'GlobalSize', 'GetOEMCP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'HeapQueryInformation', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'ExitProcess', 'HeapAlloc', 'TlsFree', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'InitializeCriticalSectionAndSpinCount', 'LockResource', 'LoadResource', 'SizeofResource', 'FindResourceW', 'GetSystemTimeAsFileTime', 'GetModuleFileNameW', 'DeleteCriticalSection', 'GetCPInfo', 'GetVersionExW', 'GetModuleHandleW', 'GetProcAddress', 'GetLastError', 'CreateMutexW', 'CloseHandle', 'GetExitCodeThread', 'SetThreadPriority', 'CreateThread', 'lstrcmpiW', 'GetCurrentThreadId', 'GlobalUnlock', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GetCurrentDirectoryW', 'SetErrorMode', 'InitializeCriticalSection', 'SetCurrentDirectoryW', 'Sleep', 'GetTickCount', 'MulDiv', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'SetHandleCount', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'RaiseException', 'LCMapStringW', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'TlsSetValue', 'SetFilePointer', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'LoadLibraryW', 'VirtualQuery', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'GetMenuStringW', 'ExitWindowsEx', 'SetMenu', 'FlashWindow', 'MapWindowPoints', 'RedrawWindow', 'SetParent', 'GetClassInfoExW', 'GetAncestor', 'UpdateWindow', 'GetMessagePos', 'GetClassLongW', 'DefDlgProcW', 'CallWindowProcW', 'CheckRadioButton', 'IntersectRect', 'PtInRect', 'CreateAcceleratorTableW', 'DestroyAcceleratorTable', 'InsertMenuItemW', 'SetMenuDefaultItem', 'RemoveMenu', 'SetMenuItemInfoW', 'IsMenu', 'GetMenuItemInfoW', 'CreateMenu', 'CreatePopupMenu', 'SetMenuInfo', 'AppendMenuW', 'DestroyMenu', 'TrackPopupMenuEx', 'CreateIconIndirect', 'GetDesktopWindow', 'CopyImage', 'CreateIconFromResourceEx', 'EnumClipboardFormats', 'GetWindow', 'BringWindowToTop', 'GetTopWindow', 'GetIconInfo', 'SetWindowTextW', 'IsWindowVisible', 'CheckMenuItem', 'MessageBoxW', 'LoadImageW', 'GetLastInputInfo', 'SetClipboardViewer', 'LoadAcceleratorsW', 'EnableMenuItem', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'DestroyIcon', 'DestroyWindow', 'IsCharAlphaW', 'MapVirtualKeyW', 'GetSysColorBrush', 'VkKeyScanExW', 'GetWindowTextW', 'mouse_event', 'WindowFromPoint', 'GetSystemMetrics', 'keybd_event', 'SetKeyboardState', 'GetKeyboardState', 'GetCursorPos', 'GetAsyncKeyState', 'AttachThreadInput', 'SendInput', 'UnregisterHotKey', 'RegisterHotKey', 'PostQuitMessage', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'PostThreadMessageW', 'IsCharUpperW', 'IsCharLowerW', 'IsCharAlphaNumericW', 'ToUnicodeEx', 'GetKeyboardLayout', 'CallNextHookEx', 'CharLowerW', 'ReleaseDC', 'GetDC', 'OpenClipboard', 'GetClipboardData', 'GetClipboardFormatNameW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostMessageW', 'FindWindowW', 'EndDialog', 'IsWindow', 'DispatchMessageW', 'GetCursor', 'ClientToScreen', 'MessageBeep', 'IsWindowEnabled', 'SetDlgItemTextW', 'GetDlgItem', 'SendDlgItemMessageW', 'DialogBoxParamW', 'SetForegroundWindow', 'DefWindowProcW', 'FillRect', 'ChangeClipboardChain', 'DrawIconEx', 'TranslateMessage', 'ShowWindow', 'CountClipboardFormats', 'SetWindowLongW', 'ScreenToClient', 'IsDialogMessageW', 'SendMessageW', 'GetWindowLongW', 'GetKeyState', 'TranslateAcceleratorW', 'GetSysColor', 'RegisterWindowMessageW', 'IsIconic', 'IsZoomed', 'EnumWindows', 'GetWindowTextLengthW', 'EnableWindow', 'InvalidateRect', 'SetLayeredWindowAttributes', 'SetWindowPos', 'SetWindowRgn', 'SetFocus', 'GetGUIThreadInfo', 'SetActiveWindow', 'EnumChildWindows', 'MoveWindow', 'GetQueueStatus', 'GetWindowRect', 'GetClientRect', 'SystemParametersInfoW', 'AdjustWindowRectEx', 'KillTimer', 'PeekMessageW', 'GetFocus', 'GetClassNameW', 'GetWindowThreadProcessId', 'GetForegroundWindow', 'GetMessageW', 'SetTimer', 'GetParent', 'GetDlgCtrlID', 'CharUpperW', 'IsClipboardFormatAvailable', 'DrawTextW', 'MapVirtualKeyExW', 'SetRect', 'GetMenu', 'GetPixel', 'GetClipBox', 'GetCharABCWidthsW', 'SetBkMode', 'EnumFontFamiliesExW', 'CreateDIBSection', 'GdiFlush', 'ExcludeClipRect', 'SetBkColor', 'SetTextColor', 'FillRgn', 'BitBlt', 'CreateCompatibleBitmap', 'GetSystemPaletteEntries', 'GetDIBits', 'CreateCompatibleDC', 'CreatePolygonRgn', 'CreateRectRgn', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'DeleteDC', 'GetObjectW', 'GetTextMetricsW', 'GetTextFaceW', 'SelectObject', 'GetStockObject', 'CreateDCW', 'CreateSolidBrush', 'CreateFontW', 'GetClipRgn', 'GetDeviceCaps', 'DeleteObject', 'CommDlgExtendedError', 'GetOpenFileNameW', 'GetSaveFileNameW', 'RegDeleteKeyW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'CloseServiceHandle', 'UnlockServiceDatabase', 'LockServiceDatabase', 'OpenSCManagerW', 'GetUserNameW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegCloseKey', 'RegConnectRegistryW', 'RegDeleteValueW', 'DragQueryPoint', 'SHFileOperationW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderPathW', 'ShellExecuteExW', 'Shell_NotifyIconW', 'DragFinish', 'DragQueryFileW', 'ExtractIconW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CLSIDFromString', 'CoGetObject', 'StringFromGUID2', 'CreateStreamOnHGlobal', 'SafeArrayGetLBound', 'GetActiveObject', 'OleLoadPicture', 'SafeArrayUnaccessData', 'SafeArrayGetElemsize', 'SafeArrayAccessData', 'SafeArrayUnlock', 'SafeArrayPtrOfIndex', 'SafeArrayLock', 'SafeArrayGetDim', 'SafeArrayDestroy', 'SafeArrayGetUBound', 'VariantCopyInd', 'SafeArrayCopy', 'SysAllocString', 'VariantChangeType', 'VariantClear', 'SafeArrayCreate', 'SysFreeString', 'SysStringLen'], ['RasDialA', 'RasEditPhonebookEntryA', 'RasCreatePhonebookEntryA', 'RasHangUpA', 'RasEnumEntriesA', 'RasGetErrorStringA', 'RasGetProjectionInfoA', 'RasEnumConnectionsA', 'RasGetConnectStatusA', 'sndPlaySoundA', 'VerQueryValueA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'GetVersion', 'FormatMessageA', 'LocalFree', 'GetCurrentThread', 'SetThreadPriority', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileIntA', 'SearchPathA', 'GetWindowsDirectoryA', 'FreeLibrary', 'lstrcatA', 'lstrlenA', 'WinExec', 'GetLastError', 'CreateToolhelp32Snapshot', 'OpenProcess', 'GetVersionExA', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetModuleFileNameA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'WideCharToMultiByte', 'LoadLibraryA', 'MulDiv', 'MultiByteToWideChar', 'lstrlenW', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'GlobalSize', 'CopyFileA', 'GlobalFree', 'lstrcmpA', 'InterlockedExchange', 'CompareStringA', 'GetLocaleInfoA', 'EnumResourceLanguagesA', 'ConvertDefaultLocale', 'GetCurrentThreadId', 'GlobalDeleteAtom', 'CloseHandle', 'ResumeThread', 'WaitForSingleObject', 'SetEvent', 'SuspendThread', 'CreateEventA', 'lstrcmpW', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'FreeResource', 'GetCurrentProcessId', 'MoveFileA', 'DeleteFileA', 'GetStringTypeExA', 'GetThreadLocale', 'lstrcmpiA', 'ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'DuplicateHandle', 'GetCurrentProcess', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetShortPathNameA', 'CreateFileA', 'GetModuleFileNameW', 'InterlockedDecrement', 'VirtualProtect', 'LocalAlloc', 'TlsGetValue', 'GlobalReAlloc', 'GlobalHandle', 'TlsAlloc', 'TlsSetValue', 'LocalReAlloc', 'TlsFree', 'GetModuleHandleW', 'InterlockedIncrement', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'GlobalFlags', 'GetCPInfo', 'GetOEMCP', 'GetAtomNameA', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileSizeEx', 'GetFileTime', 'FindResourceExA', 'RtlUnwind', 'RaiseException', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'GetACP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'FatalAppExitA', 'GetStdHandle', 'GetTimeZoneInformation', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'SetConsoleCtrlHandler', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'GetProcAddress', 'GetModuleHandleA', 'SetThreadContext', 'Sleep', 'GetFileAttributesA', 'lstrcpyA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'SetLastError', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'ShowWindow', 'ScrollWindowEx', 'EndDialog', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'GetDesktopWindow', 'GetMenuItemInfoA', 'DestroyMenu', 'GetAsyncKeyState', 'MapDialogRect', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'ClientToScreen', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'WindowFromPoint', 'GetKeyNameTextA', 'MapVirtualKeyA', 'GetSysColorBrush', 'DeleteMenu', 'WaitMessage', 'DestroyIcon', 'GetDialogBaseUnits', 'UnregisterClassA', 'SetRectEmpty', 'TranslateAcceleratorA', 'BringWindowToTop', 'CreatePopupMenu', 'InsertMenuItemA', 'LoadAcceleratorsA', 'GetMenuBarInfo', 'ReuseDDElParam', 'UnpackDDElParam', 'SetRect', 'IsRectEmpty', 'SetParent', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'SetDlgItemInt', 'GetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'ShowOwnedPopups', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'ShowScrollBar', 'UpdateWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'GetWindowLongA', 'SetWindowPos', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'SetWindowsHookExA', 'CallNextHookEx', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'ValidateRect', 'PostQuitMessage', 'GetMenuState', 'GetMenuStringA', 'InsertMenuA', 'GetMenuItemCount', 'RemoveMenu', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'CharUpperA', 'GetWindowThreadProcessId', 'RemovePropA', 'IsWindowEnabled', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'SetMenuDefaultItem', 'GetCursorPos', 'TrackPopupMenu', 'LoadMenuA', 'GetSubMenu', 'GetMenuItemID', 'SendMessageA', 'PostMessageA', 'IsIconic', 'FindWindowA', 'MessageBoxA', 'PeekMessageA', 'TranslateMessage', 'DispatchMessageA', 'wsprintfA', 'SetFocus', 'SetActiveWindow', 'SetWindowLongA', 'LoadCursorA', 'CopyIcon', 'EnableMenuItem', 'CheckMenuItem', 'GetMessageTime', 'RegisterWindowMessageA', 'GetLastActivePopup', 'SetForegroundWindow', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'GetClientRect', 'LoadIconA', 'EnableWindow', 'GetSystemMetrics', 'LoadImageA', 'OffsetRect', 'FillRect', 'RedrawWindow', 'SetTimer', 'KillTimer', 'GetSysColor', 'LoadBitmapA', 'SetCursor', 'PtInRect', 'InflateRect', 'MessageBeep', 'DestroyCursor', 'IsWindow', 'ReleaseCapture', 'GetParent', 'SetCapture', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'GetWindowRect', 'GetMessageA', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PolyDraw', 'ArcTo', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateRectRgnIndirect', 'PatBlt', 'GetTextMetricsA', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'PolyBezierTo', 'PolylineTo', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateFontIndirectA', 'GetStockObject', 'BitBlt', 'CreateCompatibleDC', 'GetObjectA', 'CreateCompatibleBitmap', 'SetRectRgn', 'SetWorldTransform', 'ModifyWorldTransform', 'SetMapMode', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'LineTo', 'MoveToEx', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'SetArcDirection', 'SetColorAdjustment', 'DeleteObject', 'SelectClipRgn', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'GetViewportExtEx', 'GetWindowExtEx', 'GetPixel', 'StartDocA', 'PtVisible', 'RectVisible', 'TextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'ExtTextOutA', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'GetBkColor', 'EnumFontFamiliesExA', 'DPtoLP', 'GetMapMode', 'CombineRgn', 'RegSetValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'RegDeleteValueA', 'GetUserNameA', 'InitializeAcl', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegConnectRegistryA', 'RegQueryValueA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'ShellExecuteA', 'Shell_NotifyIconA', 'DragFinish', 'PathFileExistsA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathRemoveFileSpecW', 'PathFindExtensionA', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'GetFileTitleA', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'CreateBindCtx', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoUninitialize', 'OleDuplicateData', 'CoCreateInstance', 'CoInitializeEx', 'StringFromGUID2', 'CoDisconnectObject', 'CLSIDFromString', 'OleRegGetUserType', 'SafeArrayCopy', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'RegisterTypeLib', 'LoadTypeLib', 'LoadRegTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['lstrlenW', 'GetLastError', 'FreeLibrary', 'LoadLibraryW', 'SetLastError', 'WriteConsoleW', 'GetFileType', 'GetStdHandle', 'MultiByteToWideChar', 'GetModuleHandleA', 'FindFirstFileW', 'FindNextFileW', 'GetFileAttributesW', 'GetCommandLineW', 'LocalAlloc', 'LocalFree', 'VerifyVersionInfoW', 'FormatMessageW', 'GetModuleHandleW', 'ExitProcess', 'SetErrorMode', 'VirtualAlloc', 'LoadIconA', 'LoadCursorW', 'UpdateWindow', 'LoadCursorA', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'GetDC', 'BeginPaint', 'GetClientRect', 'DrawTextA', 'EndPaint', 'PostQuitMessage', 'GetStockObject', 'GetColorSpace', 'RegOpenKeyA', 'GetUserNameA', 'RegQueryValueExA', 'PlaySoundA'], ['I_RpcBindingIsClientLocal', 'CreateURLMoniker', 'GetCurrentProcess', 'GetProcessIoCounters', 'GetCommandLineA', 'SetConsoleCP', 'GetPriorityClass', 'GetLogicalDrives', 'HeapSize', 'CancelIo', 'GetIpForwardTable', 'SysStringLen', 'VarI2FromR4', 'UnlockUrlCacheEntryStream', 'GetClipCursor', 'GetSubMenu', 'LockWindowUpdate', 'DestroyCursor', 'GetClipboardSequenceNumber', 'SendDlgItemMessageA', 'ToAsciiEx', 'EndPaint', 'ChangeMenuW', 'NetShareEnum', 'RegQueryValueExA', 'RegOpenKeyW', 'GetSecurityDescriptorDacl', 'RoundRect', 'GetRandomRgn'], ['LocalFree', 'LocalSize', 'LocalUnlock', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OpenFile', 'OutputDebugStringA', 'OutputDebugStringW', 'PeekNamedPipe', 'QueryPerformanceCounter', 'ReadConsoleOutputCharacterW', 'ReadProcessMemory', 'RtlUnwind', 'RtlZeroMemory', 'ScrollConsoleScreenBufferW', 'SetConsoleCP', 'SetConsoleCtrlHandler', 'SetEvent', 'SetFileApisToANSI', 'SetFilePointer', 'SetHandleCount', 'SetStdHandle', 'SetTapeParameters', 'SetThreadLocale', 'SetThreadUILanguage', 'SetTimerQueueTimer', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'LocalAlloc', 'VirtualAllocEx', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileSectionA', 'WritePrivateProfileStringW', 'WritePrivateProfileStructA', 'WriteProcessMemory', 'lstrcatA', 'lstrcmpW', 'lstrcpyA', 'lstrcpyW', 'lstrcpynW', 'lstrlenW', 'HeapSize', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'IsDebuggerPresent', 'SetLastError', 'TlsFree', 'TlsAlloc', 'LoadResource', 'LoadModule', 'LoadLibraryW', 'LoadLibraryExW', 'LoadLibraryA', 'LeaveCriticalSection', 'LCMapStringW', 'LCMapStringA', 'IsDBCSLeadByteEx', 'IsBadWritePtr', 'IsBadReadPtr', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InitializeCriticalSection', 'HeapReAlloc', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalHandle', 'GlobalFree', 'GlobalFindAtomW', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersionExA', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadPriority', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStringTypeW', 'GetStringTypeA', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetProfileSectionW', 'GetProcessShutdownParameters', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'GetOEMCP', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFileType', 'GetFileAttributesA', 'GetEnvironmentVariableA', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageA', 'FlushInstructionCache', 'FlushFileBuffers', 'FindResourceW', 'FindNextFileA', 'FindAtomW', 'ExpandEnvironmentStringsA', 'ExitProcess', 'EnumDateFormatsW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateSemaphoreW', 'CreateSemaphoreA', 'CreateMutexW', 'CreateHardLinkA', 'CreateFileW', 'CreateEventA', 'CreateDirectoryA', 'CopyFileW', 'CloseHandle', 'CallNamedPipeA', 'VirtualAlloc', 'AreFileApisANSI', 'ScreenToClient', 'ReleaseDC', 'ReleaseCapture', 'RegisterClassW', 'RealGetWindowClassA', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'OpenWindowStationW', 'MoveWindow', 'MonitorFromRect', 'ModifyMenuA', 'MessageBoxW', 'MapWindowPoints', 'LockWindowUpdate', 'LoadStringW', 'LoadMenuW', 'LoadIconW', 'LoadCursorW', 'LoadAcceleratorsW', 'SendMessageW', 'IsDialogMessage', 'InvalidateRect', 'IntersectRect', 'IMPSetIMEW', 'IMPSetIMEA', 'GetSystemMetrics', 'GetMessageW', 'GetMessageTime', 'GetMenuItemRect', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetDesktopWindow', 'GetDC', 'GetClassNameA', 'GetAltTabInfoW', 'EnumPropsW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetMenu', 'SetProcessWindowStation', 'SetRect', 'SetTimer', 'SetUserObjectInformationA', 'ShowWindow', 'SystemParametersInfoW', 'TranslateAcceleratorW', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassW', 'UpdateLayeredWindow', 'UpdateWindow', 'BeginPaint', 'ChangeDisplaySettingsA', 'CharNextW', 'CharUpperBuffW', 'CheckMenuItem', 'WinHelpW', 'wsprintfW', 'KillTimer', 'EndPaint', 'EndDialog', 'DrawTextA', 'DrawMenuBar', 'DrawFocusRect', 'DlgDirListComboBoxW', 'DispatchMessageW', 'DialogBoxParamW', 'DialogBoxIndirectParamA', 'DestroyIcon', 'DefWindowProcW', 'CreateWindowExW', 'CreateAcceleratorTableA', 'CopyAcceleratorTableW', 'IsCharLowerA', 'CreatePolyPolygonRgn', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontW', 'CreateFontIndirectW', 'CreateFontA', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBitmap', 'CombineRgn', 'BitBlt', 'GetDIBColorTable', 'GetDIBits', 'GetDeviceCaps', 'GetLayout', 'GetMetaRgn', 'GetNearestPaletteIndex', 'GetObjectA', 'GetObjectType', 'GetObjectW', 'GetPaletteEntries', 'GetRgnBox', 'GetStockObject', 'GetTextExtentExPointW', 'GetTextExtentPoint32A', 'GetTextExtentPoint32W', 'GetTextFaceA', 'GetTextMetricsW', 'CreateRectRgn', 'IntersectClipRect', 'LineTo', 'MaskBlt', 'MoveToEx', 'Polygon', 'RealizePalette', 'ResizePalette', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBitmapBits', 'SetBkColor', 'SetBkMode', 'SetDIBitsToDevice', 'SetLayout', 'SetLayoutWidth', 'SetMapMode', 'SetPixel', 'SetROP2', 'SetStretchBltMode', 'SetTextColor', 'SetViewportOrgEx', 'StartDocA', 'StartPage', 'StretchBlt', 'StretchDIBits', 'TextOutA', 'PathToRegion', 'CreateRectRgnIndirect', 'CreateRoundRectRgn', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'EndDoc', 'EndPage', 'ExcludeClipRect', 'GdiFixUpHandle', 'GdiFlush', 'GetBitmapBits', 'GetViewportOrgEx', 'GetCurrentObject', 'GetClipBox', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'CloseServiceHandle', 'RegCloseKey', 'OpenServiceA', 'OpenSCManagerA', 'ControlService', 'SHGetDiskFreeSpaceA', 'ShellExecuteW', 'ShellAboutW', 'CommandLineToArgvW', 'DragQueryFile', 'SHBindToParent', 'SHBrowseForFolderW', 'SHCreateDirectoryExW', 'SHGetDesktopFolder', 'WOWShellExecute', 'SHGetFolderPathW', 'SHGetMalloc', 'SHGetPathFromIDListA', 'SHGetSpecialFolderPathA', 'SHInvokePrinterCommandA', 'SHPathPrepareForWriteA', 'CoTaskMemFree', 'CoInitializeEx', 'CoCreateInstance', 'CoUninitialize', 'StrRChrIA', 'StrChrW', 'StrStrA', 'InitCommonControlsEx'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'VerQueryValueA', 'UnrealizeObject', 'CreateStreamOnHGlobal', 'FlatSB_SetScrollPos', 'ImmGetOpenStatus', 'WritePrinter', 'ShellExecuteA', 'PageSetupDlgA', 'OleUIObjectPropertiesA'], ['GetCurrentDirectoryW', 'GetProcAddress', 'Sleep', 'GetCurrentProcessId', 'GetModuleHandleW', 'ExitProcess', 'LoadLibraryW', 'RaiseException', 'DecodePointer', 'CreateFileW', 'WriteConsoleW', 'SetFilePointerEx', 'HeapReAlloc', 'HeapSize', 'GetConsoleMode', 'GetConsoleCP', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'WriteFile', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'GetTimeZoneInformation', 'GetStringTypeW', 'CloseHandle', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetStdHandle', 'GetProcessHeap', 'FlushFileBuffers', 'GetModuleFileNameW', 'OleCreate', 'OleUninitialize', 'OleInitialize', 'DhcpCApiInitialize', 'DhcpRequestParams', 'DhcpDeRegisterParamChange', 'DhcpRemoveDNSRegistrations', 'DhcpCApiCleanup', 'DhcpRegisterParamChange', 'SystemFunction036'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA', 'ChooseColorA'], ['ExitProcess', 'CreateFileA', 'WriteFile', 'CreateFileW', 'GetTempPathW', 'GetModuleFileNameA', 'CloseHandle', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RtlUnwind', 'HeapSize', 'GetLocaleInfoA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'wsprintfW', 'wsprintfA', 'ShellExecuteA', 'ShellExecuteW'], ['BitBlt', 'CreateCompatibleDC', 'DeleteDC', 'DeleteObject', 'GetObjectA', 'GetStockObject', 'SelectObject', 'CloseHandle', 'CreateSemaphoreA', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'InitializeCriticalSection', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'LoadLibraryW', 'MultiByteToWideChar', 'ReleaseSemaphore', 'SetLastError', 'SetUnhandledExceptionFilter', 'Sleep', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WideCharToMultiByte', '_fdopen', '_fstat', '_lseek', '_read', '_write', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_filbuf', '_flsbuf', '_iob', '_onexit', '_setmode', '_waccess', 'abort', 'atexit', 'atoi', 'calloc', 'fclose', 'fflush', 'fopen', 'fputc', 'fputs', 'fread', 'free', 'fseek', 'ftell', 'fwrite', 'getenv', 'getwc', 'iswctype', 'localeconv', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strtod', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'BeginPaint', 'CreateWindowExA', 'DefWindowProcA', 'DestroyWindow', 'DispatchMessageA', 'EndPaint', 'GetClientRect', 'GetMessageA', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowRect', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'PostQuitMessage', 'RegisterClassExA', 'SetWindowLongA', 'ShowWindow', 'TranslateAcceleratorA', 'TranslateMessage', 'UnregisterClassA', 'UpdateWindow'], ['VirtualProtect', 'CreateFileW', 'GetLastError', 'WideCharToMultiByte', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'SwitchToThread', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetProcessHeap', 'HeapSize', 'WriteConsoleW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['GetEnvironmentVariableW', 'LoadLibraryExW', 'InitializeCriticalSection', 'GetSystemDirectoryW', 'Sleep', 'GetProcAddress', 'EnterCriticalSection', 'GetVolumeInformationW', 'CreateFileA', 'SetStdHandle', 'SetFilePointer', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetStartupInfoW', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'LeaveCriticalSection', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'RaiseException', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CoTaskMemFree', 'CoInitialize', 'CoUninitialize', 'CoTaskMemAlloc', 'RasEnumConnectionsW', 'RasHangUpW', 'RasGetConnectStatusW'], ['NdrClientCall2', 'GetLastError', 'InitializeCriticalSection', 'DeleteCriticalSection', 'WaitForSingleObject', 'WaitForMultipleObjects', 'CloseHandle', 'lstrcmpiW', 'OpenMutexW', 'GetModuleFileNameW', 'ExpandEnvironmentStringsW', 'GetDriveTypeA', 'GetSystemDirectoryW', 'VirtualUnlock', 'GetComputerNameW', 'MultiByteToWideChar', 'GetTickCount', 'lstrcmpiA', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualLock', 'GetProcAddress', 'WriteFile', 'GetSystemTime', 'ExitThread', 'GetModuleHandleW', 'CreateFileW', 'GetVolumeInformationW', 'WideCharToMultiByte', 'VerSetConditionMask', 'LoadLibraryA', 'GetModuleHandleA', 'ExitProcess', 'GlobalAlloc', 'GlobalFree', 'LocalAlloc', 'MulDiv', 'GetTempPathW', 'VirtualQuery', 'LoadLibraryW', 'LoadLibraryExW', 'ReadFile', 'ConnectNamedPipe', 'CreateEventW', 'CreateNamedPipeW', 'GetFullPathNameW', 'GetCurrentProcess', 'GetShortPathNameW', 'GetProcessHeap', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'Sleep', 'lstrcmpW', 'VerifyVersionInfoW', 'GetDC', 'ReleaseDC', 'FillRect', 'wsprintfW', 'DrawTextW', 'DrawTextA', 'wsprintfA', 'SetBitmapBits', 'GetBitmapBits', 'CreateBitmap', 'GetObjectW', 'SetTextColor', 'SetPixel', 'CreateCompatibleDC', 'CreateFontW', 'DeleteDC', 'DeleteObject', 'GetDeviceCaps', 'GetDIBits', 'GetPixel', 'GetStockObject', 'SelectObject', 'SetBkColor', 'CreateCompatibleBitmap', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'SuspendThread', 'SleepEx', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastInputInfo', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'PrintDlgA'], ['FreeLibrary', 'InitializeSListHead', 'GetModuleHandleW', 'GetConsoleAliasesA', 'InitializeCriticalSection', 'LoadLibraryW', 'GetFileAttributesW', 'WriteConsoleW', 'ReleaseActCtx', 'GetLastError', 'GetLongPathNameW', 'GetProcAddress', 'lstrcpynA', 'WriteProfileSectionA', 'SetFileAttributesA', 'WriteConsoleA', 'LocalAlloc', 'MoveFileA', 'SetProcessWorkingSetSize', 'GetModuleFileNameA', 'WTSGetActiveConsoleSessionId', 'EnumDateFormatsA', 'CreateIoCompletionPort', 'GetConsoleTitleW', 'GetShortPathNameW', 'GetFileInformationByHandle', 'ReadFile', 'GetProcessHeap', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'ExitProcess', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetFilePointer', 'RaiseException', 'WriteFile', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetStringTypeW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapReAlloc', 'CloseHandle', 'CreateFileA', 'SetStdHandle', 'LCMapStringW', 'FlushFileBuffers', 'SetEndOfFile', 'CreateFileW', 'WinHttpSetDefaultProxyConfiguration'], ['LCMapStringW', 'CompareStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'SetStdHandle', 'GetProcessHeap', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LoadLibraryExW', 'GetModuleFileNameW', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'CreateFileW', 'OutputDebugStringW', 'GetStringTypeW', 'SetFilePointerEx', 'WriteConsoleW', 'SetEndOfFile', 'ReadFile', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetFullPathNameW', 'GetFullPathNameA', 'GetSystemDirectoryA', 'UpdateResourceA', 'EnumResourceTypesA', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'FindResourceExA', 'CreateEventA', 'lstrcpyA', 'FormatMessageW', 'CloseHandle', 'SizeofResource', 'LoadResource', 'Sleep', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'UnhandledExceptionFilter', 'GetCurrentThreadId', 'SetLastError', 'GetStartupInfoW', 'GetFileType', 'GetStdHandle', 'IsDebuggerPresent', 'LockResource', 'FreeResource', 'FindNextFileW', 'DeleteCriticalSection', 'HeapSize', 'FindFirstFileExW', 'SetCurrentDirectoryA', 'GetTempPathA', 'FindClose', 'WriteFile', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ReadConsoleW', 'WaitForInputIdle', 'DefWindowProcA', 'wsprintfA', 'SendMessageA', 'PostMessageA', 'CreateWindowExA', 'ShowWindow', 'GetIconInfo', 'DestroyCursor', 'LoadCursorFromFileW', 'GetWindow', 'FindWindowExA', 'FindWindowA', 'GetDesktopWindow', 'GetWindowLongA', 'FillRect', 'GetSysColorBrush', 'MapWindowPoints', 'ClipCursor', 'GetCursorPos', 'ShowCursor', 'MessageBoxA', 'GetWindowRect', 'GetClientRect', 'SetWindowTextA', 'InvalidateRect', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'SetActiveWindow', 'DrawTextA', 'DrawIcon', 'ReleaseCapture', 'SendInput', 'GetFocus', 'SendDlgItemMessageA', 'GetDlgItem', 'EndDialog', 'IsWindowVisible', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetBkMode', 'CombineRgn', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SwapBuffers', 'TextOutA', 'GetObjectA', 'GetTextMetricsA', 'SetTextAlign', 'SetTextColor', 'BitBlt', 'SelectObject', 'GetStockObject', 'DeleteDC', 'CreateRectRgn', 'CreateMetaFileA', 'CreateFontIndirectA', 'ConnectToPrinterDlg', 'GetOpenFileNameA', 'GetFileTitleA', 'RegQueryValueExA', 'GetUserNameW', 'RegCloseKey', 'RegCreateKeyA', 'AllocateAndInitializeSid', 'RegCreateKeyExA', 'RegOpenKeyExW', 'RegSetValueExA', 'SetEntriesInAclW', 'InitializeSecurityDescriptor', 'SHGetFolderPathA', 'WSALookupServiceEnd', 'WSAProviderConfigChange', 'WSANtohs', 'NetUserGetInfo', 'NetApiBufferFree', 'ImageList_DragLeave', 'ImageList_EndDrag', 'wglGetCurrentDC', 'ImmEnumInputContext', 'ImmGetCompositionStringA', 'ImmGetContext', 'ImmDisableTextFrameService', 'RasGetSubEntryPropertiesW', 'RasGetSubEntryHandleW', 'HlinkSimpleNavigateToString'], ['CreateJobObjectW', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'EnumCalendarInfoExW', 'GetProcessHandleCount', 'lstrcpynW', 'SetConsoleMode', 'GetModuleFileNameW', 'GetBinaryTypeW', 'SetConsoleTitleA', 'InterlockedExchange', 'GetCPInfoExW', 'SetDefaultCommConfigW', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'LoadLibraryA', 'LocalAlloc', 'TransmitCommChar', 'CreateEventW', 'SetProcessWorkingSetSize', 'OpenJobObjectW', 'GetFileAttributesExW', 'SetCalendarInfoA', 'SetFileAttributesW', 'FreeLibrary', 'GetCurrentProcess', 'GetLastError', 'GetConsoleAliasesLengthW', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'HeapCreate', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'EncodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'Sleep', 'SetStdHandle', 'RtlUnwind', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'RaiseException', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'CloseHandle', 'CreateFileW', 'GetBitmapBits', 'ImpersonateAnonymousToken'], ['GetThemePosition', 'GetThemeTransitionDuration', 'BeginBufferedAnimation', 'BufferedPaintUnInit', 'DrawThemeTextEx', 'GetThemeDocumentationProperty', 'GetThemeAppProperties', 'EnableThemeDialogTexture', 'GetThemeIntList', 'GetThemeString', 'GetOpenFileNamePreviewA', 'DrawDibStart', 'DrawDibGetPalette', 'DrawDibOpen', 'ICSeqCompressFrame', 'ICDrawBegin', 'ICCompress', 'ExitProcess', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap'], ['OpenMutexW', 'SetLocaleInfoA', 'FindNextVolumeW', 'GetNamedPipeHandleStateW', 'SystemTimeToFileTime', 'EnumResourceTypesA', 'EnumResourceNamesA', 'FillConsoleOutputCharacterA', 'CreateMailslotW', 'TerminateProcess', 'SetLastError', 'GetVersionExW', 'FreeResource', 'FindNextFileA', 'CopyFileExA', 'BuildCommDCBW', 'SetDefaultCommConfigA', 'GetCommConfig', 'WritePrivateProfileStructW', 'LocalShrink', 'ChangeTimerQueueTimer', 'ReadConsoleInputW', 'WriteConsoleInputW', 'LoadResource', 'AddAtomW', 'SearchPathW', 'GetThreadPriority', 'CallNamedPipeW', 'GetDriveTypeA', 'BuildCommDCBAndTimeoutsA', 'VirtualProtect', 'GetModuleHandleA', 'GlobalAlloc', 'SetThreadIdealProcessor', 'GetProfileSectionW', 'DeleteFileA', 'FindFirstChangeNotificationW', 'VerifyVersionInfoA', 'FormatMessageW', 'SetDllDirectoryA', 'LoadLibraryA', 'WritePrivateProfileStringW', 'GetUserDefaultLCID', 'TerminateThread', 'CancelWaitableTimer', 'SetConsoleTextAttribute', 'InterlockedIncrement', 'GetStartupInfoW', 'GetSystemWow64DirectoryA', 'CopyFileW', 'SetCalendarInfoA', 'DebugBreak', 'EndUpdateResourceW', 'OpenFileMappingA', 'GetConsoleAliasExesLengthA', 'lstrcmpA', 'ReadFileScatter', 'FlushConsoleInputBuffer', 'WaitForDebugEvent', 'DisableThreadLibraryCalls', 'InterlockedExchangeAdd', 'GlobalFix', 'GetSystemWindowsDirectoryW', 'CopyFileA', 'GetOEMCP', 'GlobalFindAtomA', 'lstrcatW', 'GetPrivateProfileStringA', 'SetMailslotInfo', 'CreateActCtxA', 'OutputDebugStringA', 'CreateNamedPipeW', 'SetThreadAffinityMask', 'SetConsoleActiveScreenBuffer', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleA', 'GetProcAddress', 'lstrcpyA', 'QueryActCtxW', 'GetConsoleCP', 'GetQueuedCompletionStatus', 'AllocConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasExesLengthW', 'SystemTimeToTzSpecificLocalTime', 'MoveFileWithProgressA', 'GetStringTypeExA', 'EnumSystemLocalesW', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'GetLastError', 'FreeLibrary', 'GetModuleFileNameW', 'OpenWaitableTimerA', 'GetConsoleAliasesLengthA', 'PeekNamedPipe', 'WriteConsoleOutputCharacterW', 'TerminateJobObject', 'GetConsoleAliasExesA', 'EnumDateFormatsA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'HeapValidate', 'IsBadReadPtr', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetStdHandle', 'WriteFile', 'WriteConsoleW', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'SetHandleCount', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetFilePointer', 'SetStdHandle', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA'], ['mciSendCommandW', 'joyGetNumDevs', 'joyGetPosEx', 'timeGetTime', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutUnprepareHeader', 'waveOutReset', 'waveOutWrite', 'waveOutClose', 'timeEndPeriod', 'timeBeginPeriod', 'joyGetDevCapsW', 'socket', 'gethostbyname', 'bind', 'sendto', 'setsockopt', 'ntohs', 'htons', 'WSAGetLastError', 'select', 'ioctlsocket', 'recvfrom', 'WSAStartup', 'inet_ntoa', 'closesocket', 'RaiseException', 'SetEnvironmentVariableW', 'SetEndOfFile', 'CreateFileW', 'HeapSize', 'LCMapStringW', 'CompareStringW', 'GetStringTypeW', 'SetEnvironmentVariableA', 'WriteConsoleW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetCurrentDirectoryW', 'CreateDirectoryW', 'FindNextFileW', 'FindFirstFileExW', 'GetTimeZoneInformation', 'DeleteFileW', 'WriteConsoleInputW', 'MapViewOfFile', 'UnmapViewOfFile', 'SetConsoleScreenBufferSize', 'SetEvent', 'GetLargestConsoleWindowSize', 'GetStdHandle', 'GetConsoleScreenBufferInfo', 'CreateEventW', 'SetConsoleWindowInfo', 'WaitForMultipleObjects', 'CloseHandle', 'ReadConsoleOutputCharacterW', 'VirtualFree', 'GetLastError', 'VirtualAlloc', 'FreeLibrary', 'GlobalLock', 'GlobalAlloc', 'LoadLibraryW', 'GlobalUnlock', 'GetProcAddress', 'GlobalFree', 'ExitProcess', 'GetNativeSystemInfo', 'GetDriveTypeW', 'AllocConsole', 'GetNumberOfConsoleInputEvents', 'SetErrorMode', 'HeapAlloc', 'GlobalSize', 'HeapFree', 'GetProcessHeap', 'IsBadReadPtr', 'WriteFile', 'Sleep', 'FreeConsole', 'GetVersionExW', 'SetLastError', 'LoadLibraryA', 'VirtualProtect', 'ReadConsoleInputW', 'OutputDebugStringW', 'GetModuleFileNameW', 'FlushFileBuffers', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'SetFilePointerEx', 'MoveFileExW', 'GetConsoleCP', 'DeleteCriticalSection', 'GetFileType', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'ReadConsoleW', 'GetConsoleMode', 'LeaveCriticalSection', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'AreFileApisANSI', 'MultiByteToWideChar', 'ReadFile', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'EncodePointer', 'DecodePointer', 'CreateThread', 'GetCurrentThreadId', 'ExitThread', 'LoadLibraryExW', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'FindClose', 'GetFullPathNameA', 'HeapReAlloc', 'GetModuleHandleExW', 'WideCharToMultiByte', 'GetCommandLineA', 'EnterCriticalSection', 'RegisterWindowMessageW', 'GetWindowLongW', 'SetWindowLongW', 'AdjustWindowRect', 'UnregisterHotKey', 'RegisterHotKey', 'DefWindowProcW', 'MoveWindow', 'CloseClipboard', 'GetMessageW', 'SetForegroundWindow', 'TranslateMessage', 'MessageBoxA', 'GetClipboardData', 'PeekMessageW', 'ShowWindow', 'OpenClipboard', 'DispatchMessageW', 'MessageBoxW', 'GetWindowRect', 'SetCapture', 'ShowCursor', 'SetCursorPos', 'SystemParametersInfoW', 'GetCursorPos', 'ClipCursor', 'GetSystemMetrics', 'ReleaseCapture'], ['RegEnumKeyW', '_TrackMouseEvent', 'CertOpenStore', 'LPtoDP', 'GdipFree', 'ImmGetContext', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'AlphaBlend', 'DoDragDrop', 'LresultFromObject', 'SystemTimeToVariantTime', 'OleUIBusyW', 'DragFinish', 'PathIsUNCW', 'GetDC', 'IsAppThemed', 'VerQueryValueW', 'PlaySoundW', 'OpenPrinterW', 'send'], ['GetCurrentHwProfileA', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateProcessA', 'CreateRemoteThread', 'CreateSemaphoreA', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DeleteFileA', 'DuplicateHandle', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetFullPathNameA', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDebuggerPresent', 'LeaveCriticalSection', 'OpenProcess', 'OutputDebugStringA', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseSemaphore', 'RemoveVectoredExceptionHandler', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualAllocEx', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WriteProcessMemory', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_access', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_fmode', '_getpid', '_initterm', '_onexit', '_setjmp', '_strdup', '_time64', '_ultoa', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fwrite', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'rand', 'realloc', 'signal', 'sprintf', 'srand', 'strcmp', 'strlen', 'strncmp', 'strtoul', 'vfprintf', 'CoInitialize', 'URLDownloadToFileA', 'UrlMkSetSessionOption', 'MessageBoxA', 'DeleteUrlCacheEntry'], ['CreateFileA', 'CloseHandle', 'GetLastError', 'GetCurrentDirectoryA', 'CreateThread', 'FindFirstFileA', 'FindNextFileA', 'GetCurrentThreadId', 'SetCurrentDirectoryA', 'DeleteFileA', 'CreateFileMappingA', 'SetFileTime', 'OpenFileMappingA', 'CreateNamedPipeA', 'VirtualAlloc', 'ExitThread', 'TransactNamedPipe', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'LCMapStringW', 'FindClose', 'FindFirstFileExA', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'WriteFile', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'CreateFileW', 'RaiseException'], ['TlsFree', '_write', 'MessageBoxW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['htons', 'WSASetLastError', 'WSAStartup', 'select', 'WSARecvFrom', 'bind', 'WSAIoctl', 'WSASend', 'shutdown', 'WSASocketW', 'socket', 'WSARecv', 'ioctlsocket', 'FreeAddrInfoW', 'GetAddrInfoW', 'closesocket', 'getsockopt', 'setsockopt', 'htonl', 'WSAGetLastError', 'GetACP', 'HeapReAlloc', 'CompareStringW', 'GetModuleFileNameA', 'ExitProcess', 'CreateMutexA', 'GetLastError', 'GetStdHandle', 'SetConsoleMode', 'GetConsoleMode', 'CloseHandle', 'FreeConsole', 'GetConsoleWindow', 'SetThreadAffinityMask', 'GetCurrentProcess', 'SetProcessAffinityMask', 'GetCurrentThread', 'VirtualFree', 'VirtualAlloc', 'LocalAlloc', 'LocalFree', 'SetPriorityClass', 'SetThreadPriority', 'GetProcAddress', 'GetModuleHandleW', 'TlsSetValue', 'EnterCriticalSection', 'ReleaseSemaphore', 'WaitForMultipleObjects', 'LeaveCriticalSection', 'InitializeCriticalSection', 'WaitForSingleObject', 'ResumeThread', 'SetEvent', 'TlsAlloc', 'ResetEvent', 'DeleteCriticalSection', 'CreateSemaphoreW', 'TlsGetValue', 'TlsFree', 'CreateSemaphoreA', 'CreateEventA', 'GetModuleFileNameW', 'MultiByteToWideChar', 'QueryPerformanceFrequency', 'GetSystemInfo', 'GetCurrentProcessId', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'GetTimeZoneInformation', 'SetConsoleCtrlHandler', 'PostQueuedCompletionStatus', 'Sleep', 'SetErrorMode', 'GetQueuedCompletionStatus', 'CreateIoCompletionPort', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetConsoleCursorInfo', 'CreateFileW', 'DuplicateHandle', 'QueueUserWorkItem', 'SetConsoleCursorInfo', 'FillConsoleOutputCharacterW', 'ReadConsoleInputW', 'CreateFileA', 'ReadConsoleW', 'WriteConsoleInputW', 'FillConsoleOutputAttribute', 'WriteConsoleW', 'GetNumberOfConsoleInputEvents', 'SetConsoleCursorPosition', 'GetFileType', 'CreateDirectoryW', 'ReadFile', 'SetLastError', 'WriteFile', 'DeviceIoControl', 'RemoveDirectoryW', 'SetFileTime', 'CreateHardLinkW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'SetFilePointerEx', 'MoveFileExW', 'CopyFileW', 'FlushFileBuffers', 'CancelIo', 'GetModuleHandleA', 'LoadLibraryA', 'FormatMessageA', 'DebugBreak', 'SetNamedPipeHandleState', 'CreateNamedPipeW', 'PeekNamedPipe', 'GetNamedPipeHandleStateA', 'SwitchToThread', 'ConnectNamedPipe', 'GetLongPathNameW', 'ReadDirectoryChangesW', 'TerminateProcess', 'UnregisterWaitEx', 'LCMapStringW', 'GetExitCodeProcess', 'GetStartupInfoW', 'HeapFree', 'HeapAlloc', 'SetFileAttributesW', 'GetFileAttributesExW', 'GetConsoleCP', 'SetStdHandle', 'GetModuleHandleExW', 'GetStringTypeW', 'HeapSize', 'GetProcessHeap', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'DecodePointer', 'SetHandleInformation', 'GetCurrentThreadId', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'GetSystemTimeAsFileTime', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'InitializeSListHead', 'CreateThread', 'EncodePointer', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'LoadLibraryExW', 'InterlockedFlushSList', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'GetCommandLineA', 'GetCommandLineW', 'ExitThread', 'TranslateMessage', 'ShowWindow', 'DispatchMessageA', 'MapVirtualKeyW', 'GetMessageA', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LsaOpenPolicy', 'LsaAddAccountRights', 'LsaClose', 'GetTokenInformation', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'CopyFileA', 'SetFileAttributesA', 'CreateDirectoryA', 'Process32First', 'CreateMutexA', 'WaitForSingleObject', 'CreateToolhelp32Snapshot', 'Process32Next', 'CloseHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'CreateFileW', 'DecodePointer', 'GetConsoleMode', 'GetConsoleOutputCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'SetFilePointerEx', 'GetProcessHeap', 'GetStringTypeW', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceFrequency', 'WaitForSingleObjectEx', 'Sleep', 'GetExitCodeThread', 'InitializeCriticalSectionEx', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'RaiseException', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'HeapFree', 'HeapAlloc', 'GetFileType', 'LCMapStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'WriteConsoleW', 'OpenClipboard', 'GetClipboardData', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'GetKeyState', 'LoadStringA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'IsValidURL', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetOpenA', 'InternetReadFile'], ['GetVersionExW', 'GetModuleHandleA', 'CreateEventW', 'MultiByteToWideChar', 'Sleep', 'GetTempPathA', 'CopyFileA', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'SetEvent', 'TerminateThread', 'DeleteFileW', 'CloseHandle', 'LoadLibraryW', 'CreateThread', 'GetOverlappedResult', 'VirtualProtectEx', 'GetWindowsDirectoryW', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetFileSize', 'DeleteCriticalSection', 'ExitProcess', 'GetCurrentProcessId', 'CreateProcessW', 'GetModuleHandleW', 'CreateRemoteThread', 'CreateProcessA', 'CreateEventA', 'ConnectNamedPipe', 'GetComputerNameA', 'GetFileAttributesW', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetTempPathW', 'GetTickCount', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindFirstFileExW', 'CreateFileW', 'LocalAlloc', 'WaitForSingleObject', 'InitializeCriticalSection', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'CreateNamedPipeW', 'GetModuleFileNameW', 'TerminateProcess', 'InterlockedDecrement', 'WriteFile', 'ReadFile', 'GetCurrentProcess', 'GetCommandLineW', 'EnterCriticalSection', 'WriteProcessMemory', 'CancelIo', 'FindClose', 'DecodePointer', 'SetEndOfFile', 'HeapSize', 'WriteConsoleW', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'ReadConsoleW', 'SetFilePointerEx', 'GetModuleFileNameA', 'FreeLibrary', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'WideCharToMultiByte', 'EncodePointer', 'RaiseException', 'RtlUnwind', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleHandleExW', 'GetACP', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'GetFileType', 'FindNextFileW', 'wsprintfW', 'CryptAcquireContextW', 'CryptReleaseContext', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CryptGenRandom', 'LookupPrivilegeNameW', 'CopySid', 'IsValidSid', 'LogonUserA', 'OpenProcessToken', 'ConvertSidToStringSidW', 'GetLengthSid', 'LookupAccountSidW', 'GetTokenInformation', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'CoCreateGuid', 'CoTaskMemFree', 'CoSetProxyBlanket', 'CoInitializeEx', 'CoInitializeSecurity', 'CoCreateInstance', 'CoUninitialize', 'SysFreeString', 'SysAllocString', 'SysStringLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'VariantClear', 'SafeArrayCreate', 'GetIpNetTable', 'FreeAddrInfoW', 'GetAddrInfoW', 'WSACleanup', 'WSAStartup', 'ntohl', 'CredUIParseUserNameW', 'NetApiBufferFree', 'NetGetDCName'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'TextOutA', 'StretchBlt', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetTextAlign', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyPolyline', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExtTextOutA', 'ExtSelectClipRgn', 'ExtCreatePen', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePolygonRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'Arc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendDlgItemMessageA', 'ScrollWindowEx', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'IsCharAlphaNumericA', 'IsCharAlphaA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDoubleClickTime', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCaretPos', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EndPaint', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'BeginDeferWindowPos', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ShellExecuteA', 'ChooseFontA', 'ChooseColorA', 'GetOpenFileNameA', 'MulDiv', 'SHGetFolderPathA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'CreateStatusWindowW', 'FindTextW', 'LPtoDP', 'exit', 'DragFinish', 'GetDC', 'OpenPrinterW'], ['Sleep', 'GetCurrentProcess', 'VirtualAllocEx', 'WriteConsoleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetACP', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'GetCurrentThread', 'GetStringTypeW', 'OutputDebugStringA', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExA', 'FindFirstFileExW', 'FindNextFileA', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'SetConsoleCtrlHandler', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'SetFilePointerEx', 'CreateFileW', 'DecodePointer'], ['CertStrToNameA', 'gluSphere', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'ioctlsocket'], ['GetProcAddress', 'GetModuleHandleW', 'FreeLibraryAndExitThread', 'ReleaseMutex', 'SetEvent', 'OpenEventW', 'GetModuleHandleExW', 'VirtualFree', 'lstrcpyW', 'CreateThread', 'ExitThread', 'ResumeThread', 'ReadFile', 'GetFileSize', 'CreateFileW', 'Process32NextW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'FindClose', 'FindNextFileW', 'DeleteFileW', 'GetLastError', 'RemoveDirectoryW', 'lstrcmpW', 'FindFirstFileW', 'VirtualAlloc', 'LoadLibraryA', 'lstrcmpA', 'CreateEventW', 'SystemTimeToFileTime', 'GetLocalTime', 'lstrlenW', 'CreateDirectoryW', 'lstrcpyA', 'WriteFile', 'GetTempPathW', 'GetTickCount64', 'GetCurrentProcessId', 'GetSystemInfo', 'GetTickCount', 'ExitProcess', 'FlushFileBuffers', 'HeapSize', 'HeapReAlloc', 'HeapAlloc', 'GetStringTypeW', 'LCMapStringW', 'WriteConsoleW', 'SetStdHandle', 'MultiByteToWideChar', 'HeapFree', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'HeapCreate', 'GetVersion', 'HeapSetInformation', 'FlsAlloc', 'GetCurrentThreadId', 'SetLastError', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'OpenMutexW', 'CloseHandle', 'CreateMutexW', 'GetModuleFileNameW', 'LocalAlloc', 'lstrcmpiW', 'LocalFree', 'Sleep', 'WaitForSingleObject', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'TerminateProcess', 'WaitForMultipleObjects', 'LoadLibraryW', 'DeleteCriticalSection', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCommandLineA', 'GetStartupInfoW', 'DecodePointer', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'EncodePointer', 'GetCurrentProcess', 'GetStdHandle', 'RtlUnwindEx', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WSAStartup', 'closesocket', 'socket', 'WSACreateEvent', 'inet_addr', 'gethostbyname', 'htons', 'connect', 'WSACloseEvent', 'WSAEnumNetworkEvents', 'WSAGetLastError', 'WSAEventSelect', 'WSAWaitForMultipleEvents', 'send', 'recv', 'WSACleanup', 'setsockopt', 'shutdown', 'SendMessageTimeoutW', 'MessageBoxW', 'PostThreadMessageW', 'wsprintfA', 'LoadImageW', 'GetCursorPos', 'SetForegroundWindow', 'CreatePopupMenu', 'TrackPopupMenu', 'PostMessageW', 'DestroyMenu', 'DefWindowProcW', 'RegisterClassW', 'CreateWindowExW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'UnregisterClassW', 'DestroyWindow', 'AppendMenuW', 'RegOpenKeyW', 'RegSetValueExW', 'RegCloseKey', 'SetEntriesInAclW', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'RegDeleteKeyExW', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'GetSecurityDescriptorSacl', 'SetNamedSecurityInfoW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'GetUserNameW', 'CoInitializeEx', 'CoUninitialize', 'Shell_NotifyIconW', 'ShellExecuteExW'], ['CreateServiceA', 'CryptAcquireContextA', 'DeleteService', 'OpenSCManagerA', 'OpenServiceA', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'StartServiceCtrlDispatcherA', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'DebugBreak', 'EnterCriticalSection', 'ExitProcess', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCurrentDirectoryA', 'GetCurrentThreadId', 'GetEnvironmentStrings', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDefaultLangID', 'GetUserDefaultLCID', 'GetVersion', 'GetVersionExA', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'LCMapStringA', 'LeaveCriticalSection', 'LoadLibraryA', 'MultiByteToWideChar', 'OpenEventA', 'RaiseException', 'ReadFile', 'RtlUnwind', 'SetConsoleCtrlHandler', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetThreadLocale', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'EnumThreadWindows', 'MessageBoxA', 'wsprintfA'], ['VirtualFree', 'VirtualAlloc', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'VirtualProtect', 'GetModuleFileNameA', 'wsprintfA', 'MessageBoxA'], ['AddAtomW', 'CloseHandle', 'CompareStringA', 'ConvertDefaultLocale', 'CreateDirectoryW', 'CreateEventA', 'CreateEventW', 'CreateFileA', 'CreateFileMappingW', 'CreateFileW', 'CreateMutexW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteAtom', 'DeleteCriticalSection', 'DeleteFileW', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'EnumResourceLanguagesW', 'EnumSystemLocalesA', 'ExitProcess', 'ExitThread', 'ExpandEnvironmentStringsW', 'FatalAppExitA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindAtomW', 'FindClose', 'FindFirstFileW', 'FindResourceExW', 'FindResourceW', 'FlushFileBuffers', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'GetComputerNameW', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatA', 'GetDateFormatW', 'GetEnvironmentStringsW', 'GetExitCodeProcess', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFileSizeEx', 'GetFileTime', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetNumberFormatA', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetProfileStringW', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempFileNameW', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalLock', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'IsDebuggerPresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockResource', 'MapViewOfFile', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'OpenEventW', 'OpenFileMappingW', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'RtlUnwind', 'SearchPathW', 'SetConsoleCtrlHandler', 'SetCurrentDirectoryW', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetFilePointerEx', 'SetFileTime', 'SetHandleCount', 'SetLastError', 'SetProcessWorkingSetSize', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SuspendThread', 'TerminateProcess', 'UnhandledExceptionFilter', 'UnlockFile', 'UnmapViewOfFile', 'VirtualAlloc', 'VirtualFree', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', 'lstrcatW', 'lstrcmpW', 'lstrcmpiW', 'lstrcpyW', 'lstrcpynW', 'lstrlenA', 'lstrlenW', 'VirtualAllocEx', 'AdjustWindowRectEx', 'AppendMenuW', 'BeginDeferWindowPos', 'BeginPaint', 'BringWindowToTop', 'CallNextHookEx', 'CallWindowProcW', 'CharLowerW', 'CharUpperW', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'ClientToScreen', 'CopyRect', 'CreatePopupMenu', 'CreateWindowExW', 'DefWindowProcW', 'DeferWindowPos', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DialogBoxParamW', 'DispatchMessageW', 'DrawTextExW', 'DrawTextW', 'EnableMenuItem', 'EnableWindow', 'EndDeferWindowPos', 'EndDialog', 'EndPaint', 'EnumChildWindows', 'EnumThreadWindows', 'EqualRect', 'ExitWindowsEx', 'FillRect', 'FindWindowW', 'GetActiveWindow', 'GetCapture', 'GetClassInfoExW', 'GetClassInfoW', 'GetClassLongW', 'GetClassNameW', 'GetClientRect', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextW', 'GetFocus', 'GetForegroundWindow', 'GetKeyNameTextW', 'GetKeyState', 'GetLastActivePopup', 'GetMenu', 'GetMenuBarInfo', 'GetMenuCheckMarkDimensions', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoW', 'GetMenuState', 'GetMenuStringW', 'GetMessagePos', 'GetMessageTime', 'GetMessageW', 'GetParent', 'GetPropW', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetWindow', 'GetWindowDC', 'GetWindowLongA', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowThreadProcessId', 'GrayStringW', 'InflateRect', 'InsertMenuItemW', 'InsertMenuW', 'IntersectRect', 'InvalidateRect', 'IsChild', 'IsDialogMessageW', 'IsDlgButtonChecked', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'KillTimer', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadImageW', 'LoadMenuW', 'LoadStringA', 'LoadStringW', 'LockWindowUpdate', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBoxA', 'MessageBoxW', 'ModifyMenuW', 'MoveWindow', 'OffsetRect', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RedrawWindow', 'RegisterClassExW', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ReuseDDElParam', 'ScreenToClient', 'ScrollWindow', 'ScrollWindowEx', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageA', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetParent', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TrackPopupMenuEx', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnpackDDElParam', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WinHelpW', 'WindowFromPoint', 'wsprintfW'], ['CM_Query_Resource_Conflict_List', 'CM_Get_First_Log_Conf', 'DeleteMetaFile', 'EndPath', 'AddFontResourceW', 'mixerSetControlDetails', 'VkKeyScanA', 'GetUpdateRect', 'GetMenuState', 'SetClipboardViewer', 'GetMenuInfo', 'GetForegroundWindow', 'InsertMenuItemW', 'PackDDElParam', 'LockSetForegroundWindow', 'ToUnicode', 'LoadMenuA', 'CreatePopupMenu', 'NotifyWinEvent', 'I_RpcServerRegisterForwardFunction', 'RpcBindingFromStringBindingW', 'UuidIsNil', 'NdrAllocate', 'I_RpcSessionStrictContextHandle', 'IIDFromString', 'HGLOBAL_UserSize', 'OleGetAutoConvert', 'DispGetParam', 'EnumResourceNamesA', 'GetConsoleScreenBufferInfoEx', 'LocalFree', 'CloseHandle', 'GetThreadLocale', 'GetCurrentThreadId', 'GetCommandLineW', 'GetModuleHandleA', 'IsDebuggerPresent', 'WaitForSingleObject', 'CreateWaitableTimerA', 'FindResourceExW', 'FileTimeToDosDateTime', 'CreateActCtxW', 'GetCommConfig', 'UnhandledExceptionFilter', 'SetFileApisToOEM', 'VerifySignature', 'JetDelete', 'IsTokenRestricted', 'RevertToSelf', 'GetLengthSid', 'SetEntriesInAclW', 'CryptGetProvParam', 'PathIsRootW', 'PathIsUNCW', 'StrDupA', 'SHGetFolderLocation'], ['CreateBitmap', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateFontA', 'CreateFontIndirectA', 'CreatePalette', 'CreatePen', 'CreateSolidBrush', 'DeleteDC', 'DeleteObject', 'ExcludeClipRect', 'ExtTextOutA', 'ExtTextOutW', 'GetBkMode', 'GetCharABCWidthsFloatA', 'GetCharWidth32A', 'GetCharWidth32W', 'GetCharWidthA', 'GetCharWidthW', 'GetCharacterPlacementW', 'GetDeviceCaps', 'GetObjectA', 'GetPixel', 'GetStockObject', 'GetTextExtentExPointA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'IntersectClipRect', 'LineTo', 'MoveToEx', 'Polyline', 'RealizePalette', 'Rectangle', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetMapMode', 'SetPaletteEntries', 'SetPixel', 'SetTextAlign', 'SetTextColor', 'TextOutA', 'TranslateCharsetInfo', 'UnrealizeObject', 'UpdateColors', 'AppendMenuA', 'BeginPaint', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'CloseClipboard', 'CreateCaret', 'CreateDialogParamA', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExA', 'CreateWindowExW', 'DefDlgProcA', 'DefWindowProcA', 'DefWindowProcW', 'DeleteMenu', 'DestroyCaret', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'DispatchMessageW', 'DrawEdge', 'DrawIconEx', 'EmptyClipboard', 'EnableMenuItem', 'EnableWindow', 'EndDialog', 'EndPaint', 'FindWindowA', 'FlashWindow', 'GetCapture', 'GetCaretBlinkTime', 'GetClientRect', 'GetClipboardData', 'GetClipboardOwner', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetDlgItem', 'GetDlgItemTextA', 'GetDoubleClickTime', 'GetForegroundWindow', 'GetKeyboardLayout', 'GetKeyboardState', 'GetMessageA', 'GetMessageTime', 'GetParent', 'GetQueueStatus', 'GetScrollInfo', 'GetSysColor', 'GetSystemMenu', 'GetSystemMetrics', 'GetWindowLongPtrA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextA', 'GetWindowTextLengthA', 'HideCaret', 'InsertMenuA', 'InvalidateRect', 'IsDialogMessageA', 'IsDlgButtonChecked', 'IsIconic', 'IsWindow', 'IsZoomed', 'KillTimer', 'LoadCursorA', 'LoadIconA', 'MapDialogRect', 'MessageBeep', 'MessageBoxA', 'MessageBoxIndirectA', 'MoveWindow', 'MsgWaitForMultipleObjects', 'OpenClipboard', 'PeekMessageA', 'PeekMessageW', 'PostMessageA', 'PostQuitMessage', 'RegisterClassA', 'RegisterClassW', 'RegisterClipboardFormatA', 'RegisterWindowMessageA', 'ReleaseCapture', 'ReleaseDC', 'ScreenToClient', 'SendDlgItemMessageA', 'SendMessageA', 'SetActiveWindow', 'SetCapture', 'SetCaretPos', 'SetClassLongPtrA', 'SetClipboardData', 'SetCursor', 'SetDlgItemTextA', 'SetFocus', 'SetForegroundWindow', 'SetKeyboardState', 'SetScrollInfo', 'SetTimer', 'SetWindowLongPtrA', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextA', 'ShowCaret', 'ShowCursor', 'ShowWindow', 'SystemParametersInfoA', 'ToAsciiEx', 'TrackPopupMenu', 'TranslateMessage', 'UpdateWindow', 'ChooseColorA', 'ChooseFontA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'ShellExecuteA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'ImmGetCompositionStringW', 'ImmGetContext', 'ImmReleaseContext', 'ImmSetCompositionFontA', 'ImmSetCompositionWindow', 'AllocateAndInitializeSid', 'CopySid', 'EqualSid', 'GetLengthSid', 'GetUserNameA', 'InitializeSecurityDescriptor', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'SetSecurityDescriptorDacl', 'SetSecurityDescriptorOwner', 'Beep', 'ClearCommBreak', 'CloseHandle', 'CompareStringW', 'ConnectNamedPipe', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateFileW', 'CreateMutexA', 'CreateNamedPipeA', 'CreatePipe', 'CreateProcessA', 'CreateThread', 'DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindFirstFileExA', 'FindNextFileA', 'FindResourceA', 'FlushFileBuffers', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommState', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatW', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetFileAttributesExA', 'GetFileType', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemDirectoryA', 'GetSystemTimeAsFileTime', 'GetTempPathA', 'GetThreadTimes', 'GetTickCount', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetVersionExA', 'GetWindowsDirectoryA', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalMemoryStatus', 'GlobalUnlock', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockResource', 'MapViewOfFile', 'MulDiv', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringW', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReleaseMutex', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetCommBreak', 'SetCommState', 'SetCommTimeouts', 'SetCurrentDirectoryA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFilePointerEx', 'SetHandleInformation', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnmapViewOfFile', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WaitNamedPipeA', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LineDDA', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'GetClassLongA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextCharacterExtra', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipRgn', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetOpenFileNameA'], ['ExitProcess', 'DebugActiveProcess', 'LockFile', 'CloseHandle', 'GetHandleInformation', 'GetTickCount', 'FormatMessageW', 'lstrlenA', 'GetModuleHandleW', 'GetNumberFormatA', 'GetBinaryTypeA', 'FoldStringW', 'EnumSystemCodePagesW', 'PeekConsoleInputW', 'WriteConsoleOutputA', 'CreateToolhelp32Snapshot', 'Module32First', 'ReadFile', 'CreateFileW', 'OutputDebugStringW', 'WriteConsoleW', 'VirtualProtect', 'LocalAlloc', 'GetStringTypeW', 'GetProcAddress', 'SetFilePointerEx', 'SetStdHandle', 'EncodePointer', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'GetCommandLineW', 'IsProcessorFeaturePresent', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetModuleHandleExW', 'AreFileApisANSI', 'MultiByteToWideChar', 'WideCharToMultiByte', 'HeapSize', 'EnterCriticalSection', 'LeaveCriticalSection', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'DeleteCriticalSection', 'FatalAppExitA', 'IsDebuggerPresent', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CreateSemaphoreW', 'SetConsoleCtrlHandler', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'HeapReAlloc', 'ReadConsoleW', 'SetMenuItemInfoW', 'MsgWaitForMultipleObjectsEx', 'GetMonitorInfoW', 'SetSecurityDescriptorControl', 'AddAccessAllowedObjectAce', 'RegCreateKeyExA', 'TransparentBlt'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCPenColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBkMode', 'GetBkColor', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiComment', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['AddAtomW', 'CloseHandle', 'CompareStringA', 'ConvertDefaultLocale', 'CreateEventW', 'CreateFileA', 'CreateFileW', 'CreateMutexW', 'CreateProcessW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteAtom', 'DeleteCriticalSection', 'DeleteFileW', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'EnumResourceLanguagesW', 'EnumSystemLocalesA', 'ExitProcess', 'ExitThread', 'FatalAppExitA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindAtomW', 'FindClose', 'FindFirstFileW', 'FindResourceExW', 'FindResourceW', 'FlushFileBuffers', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCommandLineW', 'GetComputerNameW', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatA', 'GetEnvironmentStringsW', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFileSizeEx', 'GetFileTime', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOEMCP', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessHeap', 'GetProcessTimes', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFlags', 'GlobalLock', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'IsDebuggerPresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockResource', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadFile', 'ReleaseMutex', 'ResumeThread', 'RtlUnwind', 'SetConsoleCtrlHandler', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFileAttributesW', 'SetFilePointer', 'SetFilePointerEx', 'SetFileTime', 'SetHandleCount', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SuspendThread', 'TerminateProcess', 'UnhandledExceptionFilter', 'UnlockFile', 'VirtualAlloc', 'VirtualFree', 'WTSGetActiveConsoleSessionId', 'WaitForSingleObject', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringW', 'lstrcmpW', 'lstrcmpiW', 'lstrlenW', 'VirtualAllocEx', 'AdjustWindowRectEx', 'AppendMenuW', 'BeginDeferWindowPos', 'BeginPaint', 'BringWindowToTop', 'CallNextHookEx', 'CallWindowProcW', 'CharUpperW', 'CheckDlgButton', 'CheckMenuItem', 'CheckRadioButton', 'ClientToScreen', 'CopyRect', 'CreatePopupMenu', 'CreateWindowExW', 'DefWindowProcW', 'DeferWindowPos', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DispatchMessageW', 'DrawTextExW', 'DrawTextW', 'EnableMenuItem', 'EnableWindow', 'EndDeferWindowPos', 'EndDialog', 'EndPaint', 'EqualRect', 'FillRect', 'GetActiveWindow', 'GetCapture', 'GetClassInfoExW', 'GetClassInfoW', 'GetClassLongW', 'GetClassNameW', 'GetClientRect', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetDlgItem', 'GetDlgItemInt', 'GetDlgItemTextW', 'GetFocus', 'GetForegroundWindow', 'GetKeyNameTextW', 'GetKeyState', 'GetLastActivePopup', 'GetMenu', 'GetMenuBarInfo', 'GetMenuCheckMarkDimensions', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoW', 'GetMenuState', 'GetMenuStringW', 'GetMessagePos', 'GetMessageTime', 'GetMessageW', 'GetParent', 'GetPropW', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetWindow', 'GetWindowDC', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowThreadProcessId', 'GrayStringW', 'InflateRect', 'InsertMenuItemW', 'InsertMenuW', 'IntersectRect', 'IsChild', 'IsDialogMessageW', 'IsDlgButtonChecked', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'KillTimer', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadMenuW', 'LoadStringW', 'LockWindowUpdate', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBoxW', 'ModifyMenuW', 'MoveWindow', 'OffsetRect', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PtInRect', 'RegisterClassW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ReuseDDElParam', 'ScreenToClient', 'ScrollWindow', 'ScrollWindowEx', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetDlgItemInt', 'SetDlgItemTextW', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemBitmaps', 'SetParent', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TrackPopupMenuEx', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnpackDDElParam', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WinHelpW', 'WindowFromPoint', 'wsprintfW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WideCharToMultiByte', 'TlsSetValue', 'TlsGetValue', 'MultiByteToWideChar', 'GetModuleHandleA', 'GetLastError', 'GetCommandLineA', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'ExitProcess', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'WriteFile', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetLastError', 'SetFilePointer', 'SetErrorMode', 'SetEndOfFile', 'RemoveDirectoryA', 'ReadFile', 'LockResource', 'LoadResource', 'LoadLibraryA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLangID', 'GetSystemInfo', 'GetSystemDefaultLCID', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetCurrentProcess', 'GetCommandLineA', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CreateDirectoryA', 'CloseHandle', 'TranslateMessage', 'SetWindowLongA', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'LoadStringA', 'ExitWindowsEx', 'DispatchMessageA', 'DestroyWindow', 'CreateWindowExA', 'CallWindowProcA', 'CharPrevA', 'InitCommonControls', 'AdjustTokenPrivileges'], ['CloseServiceHandle', 'CreateServiceA', 'OpenSCManagerA', 'OpenServiceA', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'StartServiceA', 'StartServiceCtrlDispatcherA', 'htonl', 'ioctlsocket', 'listen', 'recv', 'select', 'send', 'setsockopt', 'shutdown', 'socket', 'connect', 'closesocket', 'bind', 'accept', 'WSAStartup', 'WSACleanup', 'htons', 'wsprintfA', 'MessageBoxA', 'CloseHandle', 'CopyFileA', 'CreateDirectoryA', 'WriteFile', 'WriteConsoleA', 'WaitForSingleObject', 'VirtualFree', 'VirtualAlloc', 'TerminateThread', 'SystemTimeToFileTime', 'Sleep', 'SetUnhandledExceptionFilter', 'SetFilePointer', 'SetEvent', 'SetCurrentDirectoryA', 'ReadFile', 'GetSystemTimeAsFileTime', 'GetStdHandle', 'GetModuleFileNameA', 'GetLastError', 'GetFileSize', 'ExitProcess', 'CreateThread', 'CreateFileA', 'CreateEventA', 'ShellExecuteExA', 'WSAIoctl'], ['_controlfp_s', '_invoke_watson', 'strncpy', '_except_handler4_common', '_decode_pointer', '_onexit', '_lock', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '__set_app_type', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '__initenv', 'exit', '_XcptFilter', '_exit', '_cexit', '__getmainargs', '_amsg_exit', 'realloc', 'bsearch', 'qsort', 'memset', 'memcpy', 'setbuf', 'getenv', 'atoi', 'malloc', 'free', '_snprintf', 'strncmp', 'strrchr', 'fprintf', '__iob_func', '_crt_debugger_hook', '_stricmp', '_strdup', 'LocalFree', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'HeapAlloc', 'IsBadReadPtr', 'SetLastError', 'GetProcessHeap', 'HeapFree', 'VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'FreeLibrary', 'GetModuleHandleA', 'OutputDebugStringA', 'GetFullPathNameA', 'LoadLibraryA', 'GetProcAddress', 'UnmapViewOfFile', 'CreateFileA', 'GetFileSize', 'CreateFileMappingA', 'CloseHandle', 'MapViewOfFile', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetLastError', 'FormatMessageA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnionRect', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassExA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetBitmapBits', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateFontA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'AddAtomW', 'AddAtomA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'sndPlaySoundA', 'PlaySoundA', 'ShellExecuteA', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InternetGetConnectedState', 'LresultFromObject'], ['GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetModuleHandleA', 'OpenFile', 'TerminateProcess', 'Wow64SetThreadContext', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetCurrentProcess', 'UuidToStringW', 'NdrServerCall2', 'mixerSetControlDetails', 'CoRevokeInitializeSpy', 'GetCurrentObject', 'QueryServiceObjectSecurity', '__p__commode', '__p__fmode', '__set_app_type', '?terminate@@YAXXZ', '_except_handler4_common', '_controlfp', '_exit', '_amsg_exit', '_initterm', '_cexit', '__getmainargs', 'strspn', 'clearerr', 'memset', '_acmdln', 'exit', '_ismbblead', '_XcptFilter', '__setusermatherr', 'IsHungAppWindow'], ['GetLastError', 'DeviceIoControl', 'DeleteFileA', 'LockResource', 'FindResourceExW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetModuleFileNameW', 'GetModuleFileNameA', 'Sleep', 'OutputDebugStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetCurrentProcess', 'GetSystemInfo', 'GetVersionExW', 'GetModuleHandleW', 'HeapDestroy', 'HeapAlloc', 'FreeResource', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'RaiseException', 'CloseHandle', 'SizeofResource', 'WriteFile', 'CreateFileA', 'LoadResource', 'FindResourceW', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetLocaleInfoA', 'GetConsoleMode', 'InitializeCriticalSection', 'HeapFree', 'GetStartupInfoW', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlUnwind', 'ExitProcess', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'VirtualAlloc', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'GetConsoleCP', 'StartServiceW', 'RegCloseKey', 'RegSetValueExA', 'RegCreateKeyExA', 'OpenSCManagerW', 'OpenServiceA', 'CloseServiceHandle', 'CreateServiceA', 'setsockopt', 'gethostbyname', 'htons', 'getsockname', 'closesocket', 'connect', 'socket', 'inet_ntoa', 'WSAStartup', 'GetAdaptersInfo'], ['capCreateCaptureWindowA', 'capGetDriverDescriptionA', 'ExitProcess', 'CopyFileW', 'GetModuleFileNameW', 'GetProcAddress', 'LoadLibraryW', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'GetCurrentProcessId', 'GetCurrentThreadId', 'CreateFileMappingW', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetSystemTimeAsFileTime', 'lstrcatA', 'lstrcpyA', 'GetTickCount', 'MapViewOfFile', 'GetWindowRect', 'DialogBoxParamA', 'AppendMenuA', 'GetSubMenu', 'SetMenu', 'LoadIconA', 'LoadCursorA', 'RegisterClassA', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'BeginPaint', 'DrawTextA', 'EndPaint', 'DefWindowProcA', 'PostQuitMessage', 'GetWindowLongA', 'KillTimer', 'SetTimer', 'CheckMenuItem', 'IsWindow', 'SendMessageA', 'EnableMenuItem', 'SetWindowPos', 'GetClientRect', 'MoveWindow', 'EndDialog', 'SendDlgItemMessageA', 'MessageBoxA', 'wsprintfA', 'LoadMenuA', 'GetStockObject', 'GetSaveFileNameA', 'ShellExecuteW', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@PBD@Z', '??$?HDU?$char_traits@D@std@@V?$allocator@D@1@@std@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@PBD@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '_lock', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '_crt_debugger_hook', '__set_app_type', '_encode_pointer', '_onexit', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '_acmdln', 'exit', '_ismbblead', '_decode_pointer', '_except_handler4_common', '_invoke_watson', '_controlfp_s', '__p__fmode', 'malloc', 'atoi', 'memset', 'free', 'strlen', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter'], ['CreateFileW', 'Sleep', 'TlsAlloc', 'CloseHandle', 'HeapAlloc', 'GetCurrentDirectoryW', 'GetModuleFileNameW', 'GetFileSize', 'DeleteCriticalSection', 'GetProcessHeap', 'CreateProcessW', 'TlsGetValue', 'GetTickCount', 'VirtualProtectEx', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetCommandLineW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'InitializeSListHead', 'RaiseException', 'RtlUnwind', 'GetLastError', 'FreeLibrary', 'LoadLibraryExW', 'HeapValidate', 'GetSystemInfo', 'GetFileType', 'GetModuleFileNameA', 'GetModuleHandleExW', 'DuplicateHandle', 'ExitProcess', 'GetStdHandle', 'WriteFile', 'GetACP', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetEndOfFile', 'ReadFile', 'ReadConsoleW', 'SetFilePointerEx', 'OutputDebugStringA', 'OutputDebugStringW', 'WriteConsoleW', 'CreateThread', 'FlushFileBuffers', 'IsValidCodePage', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetCommandLineA', 'GetStartupInfoW', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CLSIDFromString', 'PathMakePrettyW', 'SystemFunction036'], ['VirtualProtect', 'GetFileTime', 'GetShortPathNameW', 'DuplicateHandle', 'DeleteFileW', 'GetCurrentProcessId', 'GetLocalTime', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'OutputDebugStringW', 'LoadLibraryExW', 'ResetEvent', 'OpenMutexW', 'GetTempPathW', 'GetTimeFormatW', 'Sleep', 'PeekNamedPipe', 'GetCurrentThread', 'FindFirstChangeNotificationW', 'CreateMutexW', 'CreateFileW', 'GetEnvironmentVariableW', 'WideCharToMultiByte', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'GetStringTypeW', 'GetLastError', 'HeapFree', 'GetSystemTimeAsFileTime', 'GetCommandLineW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'GetProcAddress', 'GetDateFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'IsDebuggerPresent', 'GetProcessHeap', 'GetCurrentThreadId', 'ExitProcess', 'GetModuleHandleExW', 'HeapSize', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetTimeZoneInformation', 'GetStdHandle', 'GetFileType', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'ReadFile', 'SetFilePointerEx', 'HeapReAlloc', 'SetEnvironmentVariableA', 'GetTopWindow', 'GetIconInfo', 'IsDialogMessageW', 'CheckDlgButton', 'SendMessageTimeoutW', 'LoadBitmapW', 'SetWindowTextW', 'CreateFontIndirectW', 'Rectangle', 'ExtTextOutW', 'StartDocW', 'RestoreDC', 'EndPage', 'RegQueryValueExW', 'RegCreateKeyW', 'RegCloseKey'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'CharNextW', 'LoadStringW', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'lstrlenW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemInfo', 'GetVersion', 'CompareStringW', 'IsDBCSLeadByteEx', 'IsValidLocale', 'SetThreadLocale', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetConsoleOutputCP', 'GetConsoleCP', 'GetACP', 'LoadLibraryExW', 'GetStartupInfoW', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetCommandLineW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'SwitchToThread', 'GetCurrentThreadId', 'CreateThread', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'FindFirstFileW', 'FindClose', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetFileType', 'GetFileSize', 'CreateFileW', 'GetStdHandle', 'CloseHandle', 'GetProcAddress', 'RaiseException', 'LoadLibraryA', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'ShowWindow', 'PeekMessageW', 'MsgWaitForMultipleObjects', 'MessageBoxW', 'LoadStringW', 'GetSystemMetrics', 'CharUpperBuffW', 'CharUpperW', 'CharLowerBuffW', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'WritePrivateProfileStringW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VerSetConditionMask', 'VerifyVersionInfoW', 'UnmapViewOfFile', 'TryEnterCriticalSection', 'SystemTimeToFileTime', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SetThreadPriority', 'SetLastError', 'SetFileTime', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'QueryDosDeviceW', 'IsDebuggerPresent', 'MapViewOfFile', 'LocalFree', 'LocalFileTimeToFileTime', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'InitializeCriticalSection', 'HeapSize', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GetVolumeInformationW', 'GetVersionExW', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetTempPathW', 'GetStdHandle', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLogicalDrives', 'GetLogicalDriveStringsW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileSize', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcess', 'GetComputerNameW', 'GetCPInfoExW', 'GetCPInfo', 'GetACP', 'FreeLibrary', 'FormatMessageW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumSystemLocalesW', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateFileMappingW', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'Sleep', 'NetApiBufferFree', 'NetWkstaGetInfo', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'memset', 'memcpy', 'ShellExecuteW', 'GetConsoleWindow'], ['FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'FindNextFileW', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FormatMessageW', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetComputerNameA', 'GetConsoleCP', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatA', 'GetDateFormatW', 'GetDiskFreeSpaceA', 'GetDiskFreeSpaceExA', 'GetDiskFreeSpaceW', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetEnvironmentVariableW', 'GetExitCodeProcess', 'GetExitCodeThread', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileSize', 'GetFileTime', 'GetFileType', 'GetFullPathNameA', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLogicalDriveStringsA', 'GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetOEMCP', 'GetOverlappedResult', 'GetPriorityClass', 'GetPrivateProfileSectionA', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetShortPathNameA', 'GetShortPathNameW', 'GetStartupInfoA', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDefaultLangID', 'GetSystemDirectoryA', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempFileNameA', 'GetTempFileNameW', 'GetTempPathA', 'GetTempPathW', 'GetTickCount', 'GetTimeFormatA', 'GetTimeFormatW', 'GetTimeZoneInformation', 'GetVersionExA', 'GetVersionExW', 'GetVolumeInformationA', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalFree', 'GlobalMemoryStatus', 'HeapAlloc', 'HeapCompact', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'FileTimeToLocalFileTime', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsBadWritePtr', 'IsDebuggerPresent', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadLibraryW', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LockFile', 'LockFileEx', 'MapViewOfFile', 'Module32First', 'Module32FirstW', 'Module32Next', 'Module32NextW', 'MoveFileA', 'MoveFileExA', 'MoveFileExW', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'OpenProcess', 'OutputDebugStringA', 'OutputDebugStringW', 'Process32First', 'Process32FirstW', 'Process32Next', 'Process32NextW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'QueueUserAPC', 'RaiseException', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'RemoveDirectoryA', 'RemoveDirectoryW', 'ResetEvent', 'RtlUnwind', 'SearchPathA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetEvent', 'SetFileAttributesA', 'SetFileAttributesW', 'SetFilePointer', 'SetFileTime', 'SetHandleCount', 'SetHandleInformation', 'SetLastError', 'SetNamedPipeHandleState', 'SetPriorityClass', 'SetProcessAffinityMask', 'SetStdHandle', 'SetSystemPowerState', 'SetThreadAffinityMask', 'SetThreadExecutionState', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'Toolhelp32ReadProcessMemory', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnlockFileEx', 'UnmapViewOfFile', 'VerLanguageNameA', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WaitNamedPipeA', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleW', 'WriteFile', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcpyA', 'lstrcpynA', 'lstrlenA', 'lstrlenW', 'ExpandEnvironmentStringsW', 'ExpandEnvironmentStringsA', 'ExitThread', 'ExitProcess', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeviceIoControl', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'DebugBreak', 'CreateToolhelp32Snapshot', 'GetModuleHandleW', 'CreateThread', 'CreateProcessW', 'CreateProcessA', 'CreatePipe', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileMappingA', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CopyFileW', 'CopyFileA', 'CompareStringW', 'CompareStringA', 'CompareFileTime', 'CloseHandle', 'CancelIo', 'BackupSeek', 'BackupRead', 'AreFileApisANSI', 'VirtualAllocEx', 'InterlockedCompareExchange', 'DrawIconEx', 'DrawMenuBar', 'DrawTextExW', 'DrawTextW', 'EmptyClipboard', 'EnableMenuItem', 'EnableScrollBar', 'EnableWindow', 'EndDialog', 'EndPaint', 'EnumChildWindows', 'EnumClipboardFormats', 'EnumDisplayMonitors', 'EnumThreadWindows', 'EnumWindows', 'EqualRect', 'FillRect', 'FindWindowExW', 'FindWindowW', 'FrameRect', 'GetActiveWindow', 'GetAsyncKeyState', 'GetCapture', 'GetClassInfoExW', 'GetClassInfoW', 'GetClassLongW', 'GetClassNameW', 'GetClientRect', 'GetClipboardData', 'GetCursor', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetDlgItem', 'GetDlgItemTextA', 'GetDoubleClickTime', 'GetFocus', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyNameTextW', 'GetKeyState', 'GetKeyboardLayout', 'GetKeyboardLayoutList', 'GetKeyboardLayoutNameW', 'GetKeyboardState', 'GetLastActivePopup', 'GetMenu', 'GetMenuCheckMarkDimensions', 'GetMenuDefaultItem', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoW', 'GetMenuState', 'GetMenuStringW', 'GetMessageA', 'GetMessageExtraInfo', 'GetMessagePos', 'GetMessageTime', 'GetMessageW', 'GetMonitorInfoW', 'GetNextDlgTabItem', 'GetParent', 'GetPropW', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetUpdateRect', 'GetWindow', 'GetWindowDC', 'GetWindowLongA', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextW', 'GetWindowThreadProcessId', 'GrayStringW', 'HideCaret', 'InflateRect', 'InsertMenuItemW', 'InsertMenuW', 'IntersectRect', 'InvalidateRect', 'IsCharAlphaNumericW', 'IsCharAlphaW', 'IsChild', 'IsClipboardFormatAvailable', 'IsDialogMessageA', 'IsDialogMessageW', 'IsIconic', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowUnicode', 'IsWindowVisible', 'IsZoomed', 'KillTimer', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadKeyboardLayoutW', 'LoadStringW', 'MapDialogRect', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBeep', 'MessageBoxA', 'MessageBoxW', 'ModifyMenuW', 'MonitorFromPoint', 'MonitorFromWindow', 'MoveWindow', 'MsgWaitForMultipleObjects', 'MsgWaitForMultipleObjectsEx', 'OffsetRect', 'OpenClipboard', 'PeekMessageA', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'PostThreadMessageW', 'PtInRect', 'RedrawWindow', 'RegisterClassW', 'RegisterClipboardFormatW', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ScreenToClient', 'ScrollWindow', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'SendMessageA', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetClassLongW', 'SetClipboardData', 'SetCursor', 'SetCursorPos', 'SetFocus', 'SetForegroundWindow', 'SetKeyboardState', 'SetMenu', 'SetMenuItemBitmaps', 'SetMenuItemInfoW', 'SetParent', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowContextHelpId', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowRgn', 'SetWindowTextA', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowCaret', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutW', 'TrackPopupMenu', 'TranslateMDISysAccel', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassA', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WaitMessage', 'WinHelpW', 'WindowFromPoint', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DialogBoxParamA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreateWindowExW', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CreateDialogIndirectParamW', 'CountClipboardFormats', 'CopyRect', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperW', 'CharUpperBuffW', 'CharNextW', 'CharNextA', 'CharLowerW', 'CharLowerBuffW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'ChildWindowFromPoint', 'RegQueryValueExA', 'RegOpenKeyA', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'DeregisterEventSource', 'FreeSid', 'InitiateSystemShutdownW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'OpenThreadToken', 'PrivilegeCheck', 'RegCloseKey', 'RegCreateKeyExW', 'RegDeleteKeyA', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegLoadKeyW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegUnLoadKeyW', 'RegisterEventSourceW', 'RegisterServiceCtrlHandlerW', 'ReportEventW', 'SetServiceStatus', 'StartServiceCtrlDispatcherW', 'ImageList_GetIconSize', 'ImageList_Read', 'ImageList_Write', 'ImageList_GetIcon', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext'], ['InitializeSListHead', 'OutputDebugStringW', 'LCMapStringW', 'GetStringTypeW', 'RtlUnwind', 'GetSystemInfo', 'VirtualAlloc', 'VirtualQuery', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'HeapQueryInformation', 'GetCommandLineA', 'GetSystemTimeAsFileTime', 'QueryPerformanceFrequency', 'SetStdHandle', 'GetFileType', 'ExitProcess', 'GetStdHandle', 'IsValidLocale', 'EnumSystemLocalesW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'IsValidCodePage', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'FindFirstFileExA', 'FindNextFileA', 'WriteConsoleW', 'CreateFileW', 'GetStartupInfoW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'CreateEventW', 'WaitForSingleObjectEx', 'GetUserDefaultLCID', 'SearchPathA', 'GetProfileIntA', 'GetTickCount', 'GetTempFileNameA', 'GetTempPathA', 'VerifyVersionInfoA', 'VerSetConditionMask', 'FindResourceExW', 'GetCurrentDirectoryA', 'lstrcpyA', 'GetACP', 'SystemTimeToTzSpecificLocalTime', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesExA', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetCPInfo', 'GetOEMCP', 'VirtualProtect', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'CompareStringW', 'GlobalFlags', 'GetVolumeInformationA', 'lstrcmpiA', 'GetCurrentProcess', 'UnlockFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'LockFile', 'GetFullPathNameA', 'FlushFileBuffers', 'FindFirstFileA', 'FindClose', 'GlobalFindAtomA', 'GlobalAddAtomA', 'FindResourceA', 'LoadLibraryA', 'lstrcmpW', 'GlobalDeleteAtom', 'LoadLibraryExW', 'FreeResource', 'FreeLibrary', 'GetSystemDirectoryW', 'EncodePointer', 'FileTimeToSystemTime', 'GlobalGetAtomNameA', 'lstrcmpA', 'CompareStringA', 'ResumeThread', 'SetThreadPriority', 'GetCurrentThreadId', 'WaitForSingleObject', 'SetEvent', 'MultiByteToWideChar', 'CopyFileA', 'FormatMessageA', 'MulDiv', 'GlobalSize', 'WideCharToMultiByte', 'FindResourceW', 'LockResource', 'LoadResource', 'GetModuleFileNameA', 'GetCurrentProcessId', 'LocalFree', 'LocalReAlloc', 'LocalAlloc', 'GlobalFree', 'GlobalUnlock', 'GlobalHandle', 'GlobalLock', 'GlobalReAlloc', 'GlobalAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'LoadLibraryW', 'GetModuleHandleW', 'GetModuleFileNameW', 'SetLastError', 'OutputDebugStringA', 'QueryPerformanceCounter', 'GetSystemTime', 'CreateProcessA', 'FindFirstChangeNotificationA', 'GetProcessHeap', 'DeleteCriticalSection', 'GetFileSize', 'GetProcAddress', 'DecodePointer', 'SetFileAttributesA', 'HeapAlloc', 'GetWindowsDirectoryA', 'ResetEvent', 'RaiseException', 'CloseHandle', 'HeapReAlloc', 'GetDateFormatA', 'DeleteFileA', 'GetVersionExA', 'GetCurrentThread', 'CreateFileA', 'OpenMutexA', 'GetLastError', 'Sleep', 'HeapSize', 'OpenProcess', 'GetModuleHandleA', 'DuplicateHandle', 'CreateMutexA', 'GetEnvironmentVariableA', 'PeekNamedPipe', 'InitializeCriticalSectionAndSpinCount', 'WriteFile', 'HeapFree', 'SizeofResource', 'GetCommandLineW', 'GetShortPathNameA', 'CreateMenu', 'GetWindowRgn', 'DestroyCursor', 'ReleaseCapture', 'SetCapture', 'GetNextDlgGroupItem', 'KillTimer', 'SetTimer', 'DeleteMenu', 'ShowOwnedPopups', 'LoadImageW', 'InvalidateRect', 'TrackMouseEvent', 'IntersectRect', 'MapDialogRect', 'GetAsyncKeyState', 'GetNextDlgTabItem', 'EndDialog', 'CreateDialogIndirectParamA', 'PostQuitMessage', 'OffsetRect', 'SetRectEmpty', 'CopyImage', 'SystemParametersInfoA', 'InflateRect', 'GetMenuItemInfoA', 'DestroyMenu', 'FillRect', 'GetWindowDC', 'TabbedTextOutA', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'RealChildWindowFromPoint', 'GetDesktopWindow', 'ClientToScreen', 'CharUpperA', 'DestroyIcon', 'IsDialogMessageA', 'SetWindowTextA', 'SendDlgItemMessageA', 'CheckDlgButton', 'MoveWindow', 'ShowWindow', 'GetMonitorInfoA', 'MonitorFromWindow', 'WinHelpA', 'GetScrollInfo', 'SetScrollInfo', 'LoadIconW', 'LoadIconA', 'GetWindow', 'GetTopWindow', 'GetClassNameA', 'GetClassLongA', 'SetWindowLongA', 'PtInRect', 'EqualRect', 'CopyRect', 'MapWindowPoints', 'ScreenToClient', 'AdjustWindowRectEx', 'GetWindowRect', 'GetClientRect', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'IsCharLowerA', 'EndPaint', 'BeginPaint', 'SetForegroundWindow', 'GetForegroundWindow', 'SubtractRect', 'UpdateWindow', 'TrackPopupMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'SetFocus', 'GetDlgCtrlID', 'GetDlgItem', 'IsIconic', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'SetWindowPos', 'DestroyWindow', 'IsChild', 'IsMenu', 'IsWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'CallWindowProcA', 'DefWindowProcA', 'PostMessageA', 'GetMessageTime', 'GetMessagePos', 'RegisterWindowMessageA', 'LoadBitmapW', 'SetMenuItemInfoA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'GetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'LoadCursorA', 'GetSysColorBrush', 'GetSysColor', 'ReleaseDC', 'GetDC', 'GetSystemMetrics', 'CallNextHookEx', 'SetWindowsHookExA', 'GetCursorPos', 'ValidateRect', 'GetKeyState', 'GetActiveWindow', 'IsWindowVisible', 'PeekMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'RemoveMenu', 'AppendMenuA', 'InsertMenuA', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'InsertMenuItemA', 'SetDlgItemInt', 'GetKeyboardLayout', 'WaitMessage', 'TranslateMDISysAccel', 'DefMDIChildProcA', 'DefFrameProcA', 'DrawMenuBar', 'GetUpdateRect', 'IsClipboardFormatAvailable', 'CharUpperBuffA', 'RegisterClipboardFormatA', 'ModifyMenuA', 'GetDoubleClickTime', 'SetMenuDefaultItem', 'LockWindowUpdate', 'SetRect', 'PostThreadMessageA', 'GetComboBoxInfo', 'ReuseDDElParam', 'UnpackDDElParam', 'GetDlgItemInt', 'SetCursor', 'ShowScrollBar', 'LoadMenuA', 'TranslateAcceleratorA', 'UnhookWindowsHookEx', 'SendMessageA', 'EnableWindow', 'IsWindowEnabled', 'MessageBoxA', 'GetWindowLongA', 'GetParent', 'GetWindowThreadProcessId', 'GetLastActivePopup', 'GetMenuStringA', 'GetMenuState', 'CopyAcceleratorTableA', 'DestroyAcceleratorTable', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'ToAsciiEx', 'GetKeyboardState', 'SetActiveWindow', 'MapVirtualKeyExA', 'WindowFromPoint', 'MonitorFromPoint', 'UpdateLayeredWindow', 'UnionRect', 'DrawIcon', 'FrameRect', 'CopyIcon', 'SetCursorPos', 'BringWindowToTop', 'GetSystemMenu', 'LoadMenuW', 'IsZoomed', 'DrawFrameControl', 'DrawEdge', 'DrawStateA', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'OpenClipboard', 'SetParent', 'SetWindowRgn', 'SetClassLongA', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'GetKeyNameTextA', 'MapVirtualKeyA', 'GetMenuDefaultItem', 'CreatePopupMenu', 'NotifyWinEvent', 'LoadCursorW', 'InvertRect', 'HideCaret', 'EnableScrollBar', 'MessageBeep', 'GetIconInfo', 'DrawIconEx', 'LoadImageA', 'IsRectEmpty', 'RedrawWindow', 'DrawFocusRect', 'LoadAcceleratorsA', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'VariantClear', 'VariantCopy', 'VariantChangeType', 'VarBstrFromDate', 'VariantInit', 'SysAllocString', 'SysFreeString', 'SysAllocStringLen', 'SysStringLen', 'LoadTypeLib', 'SysAllocStringByteLen', 'Escape', 'ExcludeClipRect', 'GetClipBox', 'GetObjectType', 'GetPixel', 'GetStockObject', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePatternBrush', 'CreatePen', 'CreateHatchBrush', 'CreateCompatibleDC', 'BitBlt', 'SelectPalette', 'SetBkMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetTextAlign', 'MoveToEx', 'TextOutA', 'ExtTextOutA', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'DeleteObject', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'CombineRgn', 'CreateRectRgnIndirect', 'PatBlt', 'SetRectRgn', 'DPtoLP', 'GetTextMetricsA', 'EnumFontFamiliesExA', 'CreatePalette', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'GetSystemPaletteEntries', 'RealizePalette', 'GetBkColor', 'CreateCompatibleBitmap', 'CreateDIBitmap', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'SetPixel', 'StretchBlt', 'CreateDIBSection', 'SetDIBColorTable', 'CreateEllipticRgn', 'Ellipse', 'GetTextColor', 'CreatePolygonRgn', 'Polygon', 'Polyline', 'CreateRoundRectRgn', 'LPtoDP', 'Rectangle', 'GetRgnBox', 'OffsetRgn', 'RoundRect', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'PtInRegion', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetTextFaceA', 'GetObjectA', 'SetTextColor', 'SetBkColor', 'CreateBitmap', 'GetDeviceCaps', 'CreateDCA', 'SetWindowOrgEx', 'CopyMetaFileA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHAppBarMessage', 'DragFinish', 'DragQueryFileA', 'OleLockRunning', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'RevokeDragDrop', 'RegisterDragDrop', 'CoLockObjectExternal', 'OleGetClipboard', 'DoDragDrop', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CoDisconnectObject', 'ReleaseStgMedium', 'OleDuplicateData', 'CoTaskMemFree', 'CoTaskMemAlloc', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdipCreateBitmapFromHBITMAP', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdiplusStartup', 'GdipFree', 'GdipAlloc', 'GdiplusShutdown', 'StrFormatKBSizeA', 'PathRemoveFileSpecW', 'PathFindExtensionA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindFileNameA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'RegQueryValueExA', 'SystemFunction036', 'RegDeleteValueA', 'RegEnumKeyExA', 'PlaySoundA', 'DrawThemeText', 'DrawThemeParentBackground', 'OpenThemeData', 'CloseThemeData', 'DrawThemeBackground', 'GetThemePartSize', 'GetThemeSysColor', 'IsThemeBackgroundPartiallyTransparent', 'IsAppThemed', 'GetWindowTheme', 'GetCurrentThemeName', 'GetThemeColor', 'TransparentBlt', 'AlphaBlend', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'OutputDebugStringA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'ScaleWindowExtEx', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EqualRgn', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'ValidateRect', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['SetCommConfig', 'CreateEventA', 'TerminateProcess', 'lstrcatA', 'GetStringTypeExA', 'GetProcAddress', 'EnumDateFormatsExA', 'GetNumaHighestNodeNumber', 'WriteConsoleA', 'LocalAlloc', 'GetTickCount', 'SetProcessWorkingSetSize', '_lread', 'GetModuleHandleA', 'UpdateResourceW', 'FindActCtxSectionStringW', 'DeleteFileA', 'SetEvent', 'QueryDosDeviceA', 'GetNumberOfConsoleMouseButtons', 'LoadResource', 'SetEndOfFile', 'FindFirstChangeNotificationW', 'GetNumaNodeProcessorMask', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'HeapFree', 'Sleep', 'GetModuleHandleW', 'ExitProcess', 'MultiByteToWideChar', 'ReadFile', 'TlsGetValue', 'TlsSetValue', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'RtlUnwind', 'HeapAlloc', 'LoadLibraryW', 'WriteFile', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CloseHandle', 'WriteConsoleW', 'LCMapStringW', 'GetStringTypeW', 'CreateFileW', 'GetCaretPos', 'GetPrivateObjectSecurity', 'AddAuditAccessAce', 'DestroyPrivateObjectSecurity', 'AlphaBlend'], ['GetConsoleWindow', 'CreateFileW', 'SetEnvironmentVariableA', 'WriteConsoleW', 'GetStringTypeW', 'OutputDebugStringW', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'CompareStringW', 'SetFilePointerEx', 'ReadConsoleW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetModuleFileNameA', 'VirtualQuery', 'LoadLibraryExW', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'EnumSystemLanguageGroupsA', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetConsoleMode', 'GetConsoleCP', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GlobalAddAtomA', 'CreateProcessA', 'LoadLibraryA', 'FormatMessageA', 'WaitCommEvent', 'SetCommTimeouts', 'SetCommMask', 'ClearCommError', 'ReadFile', 'WriteFile', 'WaitForSingleObject', 'VirtualAlloc', 'GlobalAlloc', 'GetVersion', 'LockResource', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'GetProcessHeap', 'GetCurrentThreadId', 'SetLastError', 'GetStartupInfoW', 'GetFileType', 'SetEndOfFile', 'GetStdHandle', 'CancelIo', 'DeleteFileA', 'CreateFileA', 'GetModuleHandleA', 'CreateEventA', 'CloseHandle', 'DeviceIoControl', 'Sleep', 'GetOverlappedResult', 'GetLastError', 'GetCurrentProcess', 'GetProcAddress', 'GetSystemInfo', 'IsDebuggerPresent', 'DeleteCriticalSection', 'HeapSize', 'IsProcessorFeaturePresent', 'HeapReAlloc', 'GetCommandLineA', 'MultiByteToWideChar', 'AreFileApisANSI', 'GetModuleHandleExW', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'RaiseException', 'LeaveCriticalSection', 'SetCurrentDirectoryA', 'TerminateProcess', 'GetTempPathA', 'EncodePointer', 'DecodePointer', 'EnterCriticalSection', 'wsprintfA', 'PostQuitMessage', 'WaitForInputIdle', 'CreateWindowExA', 'DestroyWindow', 'SetLayeredWindowAttributes', 'CallWindowProcA', 'SendMessageA', 'DefWindowProcA', 'BeginDeferWindowPos', 'DeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'IsDlgButtonChecked', 'GetClipboardData', 'TrackPopupMenu', 'DdeNameService', 'SystemParametersInfoA', 'WinHelpA', 'DefMDIChildProcA', 'GetIconInfo', 'GetWindow', 'GetDesktopWindow', 'SetWindowLongA', 'GetWindowLongA', 'PtInRect', 'OffsetRect', 'FillRect', 'GetSysColorBrush', 'GetSysColor', 'MapWindowPoints', 'GetCursorPos', 'MessageBoxA', 'GetWindowRect', 'GetClientRect', 'GetWindowTextA', 'SetWindowTextA', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'GetForegroundWindow', 'SetActiveWindow', 'UpdateWindow', 'DrawTextA', 'GetObjectA', 'CreateFontIndirectA', 'CreateDCA', 'EndDoc', 'StartDocA', 'GetTextMetricsA', 'SetTextAlign', 'SetTextColor', 'SelectClipRgn', 'GetDeviceCaps', 'Escape', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreatePen', 'CreateICA', 'WritePrinter', 'StartPagePrinter', 'ClosePrinter', 'StartDocPrinterA', 'EndDocPrinter', 'EndPagePrinter', 'OpenPrinterA', 'QueryServiceStatus', 'ControlService', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'StartServiceA', 'CloseServiceHandle', 'QueryServiceConfigA', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'CreateServiceA', 'ShellExecuteA', 'GetHGlobalFromStream', 'CoTaskMemFree', 'CoInitialize', 'StringFromCLSID', 'LoadTypeLib', 'OleSavePictureFile', 'InternetGetCookieA', 'InternetGetConnectedStateExW', 'InternetGetConnectedState', 'TransparentBlt', 'ImmGetContext', 'ImmDisableTextFrameService'], ['GetLastError', 'SetLastError', 'CreateFileW', 'CloseHandle', 'WriteFile', 'GetStdHandle', 'SetFilePointer', 'SetEndOfFile', 'FlushFileBuffers', 'GetFileType', 'ReadFile', 'SetFileTime', 'GetFileAttributesW', 'SetFileAttributesW', 'MoveFileW', 'DeleteFileW', 'CreateDirectoryW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetVersionExW', 'GetCurrentDirectoryW', 'FoldStringW', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'FreeLibrary', 'GetProcAddress', 'GetCurrentProcessId', 'GetLocaleInfoW', 'GetNumberFormatW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetExitCodeProcess', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'Sleep', 'MapViewOfFile', 'GetCommandLineW', 'CreateFileMappingW', 'GetTickCount', 'GetLocalTime', 'OpenFileMappingW', 'LoadLibraryW', 'GetSystemDirectoryW', 'ExitProcess', 'FreeConsole', 'WriteConsoleW', 'AttachConsole', 'AllocConsole', 'CompareStringW', 'SystemTimeToFileTime', 'TzSpecificLocalTimeToSystemTime', 'LocalFileTimeToFileTime', 'WideCharToMultiByte', 'MultiByteToWideChar', 'IsDBCSLeadByte', 'GetCPInfo', 'GlobalAlloc', 'SetCurrentDirectoryW', 'LocalAlloc', 'InterlockedExchange', 'LoadLibraryA', 'RaiseException', 'HeapFree', 'RtlUnwind', 'HeapReAlloc', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'GetStartupInfoA', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameA', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringA', 'LCMapStringW', 'GetModuleHandleA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA'], ['CloseHandle', 'WaitForSingleObject', 'CreateThread', 'VirtualProtectEx', 'FreeConsole', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RaiseException', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'SetConsoleCtrlHandler', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'ReadFile', 'ReadConsoleW', 'CreateFileW', 'DecodePointer'], ['PathFileExistsA', 'Sleep', 'RemoveDirectoryA', 'CreateFileA', 'WriteFile', 'GlobalLock', 'GlobalUnlock', 'GetLocalTime', 'GetCurrentThreadId', 'TerminateThread', 'GetLastError', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'FindClose', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'GetTickCount', 'CreateFileW', 'GetProcessHeap', 'SetEndOfFile', 'HeapReAlloc', 'GetStringTypeW', 'HeapSize', 'FlushFileBuffers', 'WriteConsoleW', 'LoadLibraryW', 'FindNextFileA', 'FindFirstFileA', 'CreateThread', 'CreateDirectoryA', 'GetTempPathA', 'CloseHandle', 'CompareStringW', 'UnhandledExceptionFilter', 'HeapFree', 'HeapAlloc', 'DeleteFileA', 'GetSystemTimeAsFileTime', 'FlsSetValue', 'GetCommandLineA', 'TerminateProcess', 'GetCurrentProcess', 'SetEnvironmentVariableA', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'HeapSetInformation', 'GetVersion', 'HeapCreate', 'HeapDestroy', 'DecodePointer', 'EncodePointer', 'RtlUnwindEx', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameW', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'GetFileType', 'SetHandleCount', 'GetStartupInfoW', 'DeleteCriticalSection', 'MultiByteToWideChar', 'FlsGetValue', 'FlsFree', 'SetLastError', 'FlsAlloc', 'GetTimeZoneInformation', 'RaiseException', 'RtlPcToFileHeader', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemMetrics', 'EnumDisplayMonitors', 'GetDC', 'GetKeyNameTextA', 'GetKeyState', 'GetDesktopWindow', 'GetAsyncKeyState', 'GetWindowTextA', 'GetForegroundWindow', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'MapVirtualKeyA', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'GetDeviceCaps', 'GetDIBits', 'SelectObject', 'DeleteObject', 'DeleteDC', 'BitBlt'], ['GlobalReAlloc', 'GlobalHandle', 'TlsAlloc', 'TlsSetValue', 'LocalReAlloc', 'DeleteCriticalSection', 'TlsFree', 'InterlockedIncrement', 'GetThreadLocale', 'SetFilePointer', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'DuplicateHandle', 'GetVolumeInformationW', 'GetFullPathNameW', 'FileTimeToSystemTime', 'GlobalFlags', 'SetErrorMode', 'FileTimeToLocalFileTime', 'GetFileTime', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetTimeZoneInformation', 'ExitThread', 'RtlUnwind', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'TlsGetValue', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetEnvironmentVariableA', 'LocalAlloc', 'InterlockedCompareExchange', 'WritePrivateProfileStringW', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetLocaleInfoW', 'CompareStringA', 'FormatMessageW', 'LocalFree', 'SuspendThread', 'InterlockedDecrement', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'CompareStringW', 'GetVersionExA', 'CreateThread', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'MoveFileA', 'HeapFree', 'GetProcessHeap', 'HeapAlloc', 'FlushFileBuffers', 'GetVersion', 'SearchPathA', 'GetWindowsDirectoryA', 'lstrcpynA', 'ResetEvent', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'CreateEventW', 'Module32NextW', 'Module32FirstW', 'UnmapViewOfFile', 'IsBadReadPtr', 'MapViewOfFile', 'CreateFileMappingW', 'CreateFileW', 'RemoveDirectoryW', 'FindNextFileW', 'FindFirstFileW', 'MoveFileExW', 'GetFileAttributesW', 'lstrcmpW', 'FreeLibrary', 'GetWindowsDirectoryW', 'GetModuleFileNameA', 'SetThreadPriority', 'GetModuleFileNameW', 'CreateProcessA', 'GetSystemDirectoryA', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'lstrcpyA', 'GetFileAttributesA', 'ReadFile', 'GetFileSize', 'WriteFile', 'CreateFileA', 'MoveFileExA', 'GetCurrentThread', 'GetCurrentProcess', 'GetVersionExW', 'GlobalLock', 'GlobalAlloc', 'SizeofResource', 'GlobalFree', 'GlobalUnlock', 'MulDiv', 'lstrcpynW', 'LoadLibraryA', 'WinExec', 'lstrcatW', 'GetModuleHandleA', 'FreeResource', 'LockResource', 'LoadResource', 'FindResourceW', 'CreateMutexW', 'GetCommandLineW', 'Process32NextW', 'CloseHandle', 'TerminateProcess', 'OpenProcess', 'lstrcmpiW', 'lstrcpyW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'InterlockedExchange', 'RemoveDirectoryA', 'GetTempPathA', 'DeleteFileA', 'ExpandEnvironmentStringsA', 'DeleteFileW', 'ExpandEnvironmentStringsW', 'lstrcmpiA', 'FindClose', 'lstrcmpA', 'GetVolumeInformationA', 'GetDriveTypeA', 'MultiByteToWideChar', 'lstrlenA', 'FindNextFileA', 'FindFirstFileA', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'GetLogicalDrives', 'GetProcAddress', 'GetModuleHandleW', 'LoadLibraryW', 'GetLastError', 'SetLastError', 'WideCharToMultiByte', 'lstrlenW', 'ExitProcess', 'lstrcatA', 'VirtualProtect', 'Sleep', 'GetMessageW', 'ValidateRect', 'CreateDialogIndirectParamW', 'GetNextDlgTabItem', 'EndDialog', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'IsDlgButtonChecked', 'SetDlgItemTextW', 'CheckRadioButton', 'CheckDlgButton', 'BeginPaint', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuW', 'GetMenuState', 'CheckMenuItem', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetWindowTextLengthW', 'GetForegroundWindow', 'GetLastActivePopup', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'GetKeyState', 'GetScrollPos', 'GetMenu', 'GetMenuItemCount', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'CallWindowProcW', 'IntersectRect', 'GetWindowPlacement', 'DrawEdge', 'FrameRect', 'DrawStateW', 'GetWindowDC', 'CreateIconIndirect', 'GetIconInfo', 'GetWindowThreadProcessId', 'DrawFocusRect', 'SetRectEmpty', 'EnableMenuItem', 'GetMenuItemID', 'TrackPopupMenu', 'SetMenuDefaultItem', 'DestroyIcon', 'DeleteMenu', 'GetSubMenu', 'LoadMenuW', 'RedrawWindow', 'SetWindowRgn', 'RegisterWindowMessageW', 'SendMessageW', 'UnregisterClassA', 'EnableWindow', 'InvalidateRect', 'GetClientRect', 'GetSysColorBrush', 'SetClipboardViewer', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'LoadBitmapW', 'IsCharAlphaNumericW', 'SetFocus', 'FillRect', 'SetRect', 'PostMessageW', 'GetCursorPos', 'UpdateWindow', 'ClientToScreen', 'GetCaretPos', 'GetClassNameW', 'GetFocus', 'UpdateLayeredWindow', 'GetWindow', 'LockSetForegroundWindow', 'UnregisterClassW', 'DestroyWindow', 'RegisterClassExW', 'DefWindowProcW', 'CopyIcon', 'InflateRect', 'GetSysColor', 'ScreenToClient', 'GetMessagePos', 'SetTimer', 'KillTimer', 'DispatchMessageW', 'TranslateMessage', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'IsRectEmpty', 'CopyAcceleratorTableW', 'ReleaseCapture', 'SetCapture', 'CharUpperW', 'CharNextW', 'PeekMessageW', 'SetWindowPos', 'OffsetRect', 'DestroyMenu', 'PostQuitMessage', 'MapDialogRect', 'SetWindowContextHelpId', 'RegisterClipboardFormatW', 'GetWindowTextW', 'WindowFromPoint', 'SystemParametersInfoA', 'PostThreadMessageW', 'GetSystemMetrics', 'EqualRect', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'LoadIconW', 'CreatePopupMenu', 'AppendMenuW', 'GetWindowRect', 'wsprintfW', 'wsprintfA', 'SendMessageTimeoutW', 'EnumWindows', 'SetForegroundWindow', 'IsIconic', 'ShowWindow', 'GetDesktopWindow', 'IsWindowEnabled', 'GetActiveWindow', 'SetActiveWindow', 'LoadIconA', 'DrawIcon', 'IsWindowVisible', 'FindWindowA', 'PtInRect', 'LoadImageW', 'GetParent', 'GetDC', 'ReleaseDC', 'GetWindowLongW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'LoadCursorW', 'IsWindow', 'CopyRect', 'SystemParametersInfoW', 'MessageBoxW', 'GetDlgItem', 'CreateWindowExW', 'SetCursor', 'EndPaint', 'CreateRectRgnIndirect', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipRgn', 'CreateFontW', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetTextColor', 'GetClipBox', 'SetDIBits', 'GetDIBits', 'CombineRgn', 'GetPixel', 'CreateRectRgn', 'SetBkColor', 'GetMapMode', 'SetMapMode', 'CreateBitmap', 'DPtoLP', 'StretchBlt', 'SetStretchBltMode', 'GetCurrentObject', 'CreateDIBSection', 'DeleteObject', 'GetTextExtentPoint32W', 'DeleteDC', 'GetDeviceCaps', 'CreateFontIndirectW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'PtVisible', 'RectVisible', 'TextOutW', 'ExtTextOutW', 'Escape', 'CreateCompatibleBitmap', 'GetObjectW', 'GetStockObject', 'CreateSolidBrush', 'AlphaBlend', 'GetFileTitleW', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'RegEnumKeyW', 'RegCreateKeyExW', 'RegEnumKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegEnumValueA', 'RegQueryValueW', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExW', 'InitiateSystemShutdownW', 'RegCloseKey', 'LookupPrivilegeValueW', 'FreeSid', 'EqualSid', 'AllocateAndInitializeSid', 'OpenThreadToken', 'GetTokenInformation', 'OpenProcessToken', 'RegQueryValueExW', 'RegSetValueExA', 'RegCreateKeyA', 'RegOpenKeyW', 'RegDeleteKeyW', 'RegCreateKeyW', 'RegEnumValueW', 'RegDeleteValueW', 'Shell_NotifyIconW', 'SHGetSpecialFolderPathW', 'CommandLineToArgvW', 'SHEmptyRecycleBinW', 'SHAddToRecentDocs', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'InitCommonControlsEx', '_TrackMouseEvent', 'PathStripToRootW', 'PathFindFileNameW', 'PathFindExtensionW', 'StrStrA', 'SHDeleteValueW', 'StrStrIA', 'StrCmpIW', 'SHGetValueA', 'SHDeleteKeyW', 'StrStrW', 'StrStrIW', 'PathIsUNCW', 'OleUIBusyW', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CreateStreamOnHGlobal', 'CoTaskMemFree', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'CLSIDFromString', 'CoGetClassObject', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CreateILockBytesOnHGlobal', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'VariantClear', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysAllocStringLen', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'OleCreateFontIndirect', 'SysFreeString', 'SafeArrayDestroy', 'VariantCopy', 'SysAllocString', 'GetErrorInfo', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromStream', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc', 'GdipCreateFromHDC', 'GdipDeleteGraphics', 'GdipDrawImageI', 'GdipCreateImageAttributes', 'GdipDisposeImageAttributes', 'GdipSetImageAttributesColorMatrix', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipDrawImageRectRect', 'GdipCreateBitmapFromHBITMAP', 'GdipSetSmoothingMode', 'GdipDrawImageRectI', 'GdipReleaseDC', 'GdipCreatePen1', 'GdipDeletePen', 'GdipDrawLineI', 'GetModuleFileNameExW', 'InternetConnectW', 'FindFirstUrlCacheEntryW', 'DeleteUrlCacheEntryW', 'FindCloseUrlCache', 'FindNextUrlCacheEntryW', 'FindFirstUrlCacheEntryA', 'DeleteUrlCacheEntryA', 'FindNextUrlCacheEntryA', 'InternetReadFile', 'HttpQueryInfoW', 'InternetOpenW', 'HttpOpenRequestW', 'HttpSendRequestW', 'InternetCloseHandle', 'MCIWndCreateW', 'WinVerifyTrust'], ['DirectDrawCreate', 'DirectDrawCreateEx', 'SetMenuItemBitmaps', 'GetClientRect', 'MapDialogRect', 'GetSysColorBrush', 'IsWindowEnabled', 'GetNextDlgGroupItem', 'CreateWindowExW', 'EnableMenuItem', 'DestroyWindow', 'GetWindowLongW', 'PostMessageW', 'DrawIcon', 'InvalidateRgn', 'GetParent', 'GetDesktopWindow', 'IsIconic', 'ValidateRect', 'SetActiveWindow', 'GetMenuState', 'IsWindowVisible', 'MessageBeep', 'SetMenu', 'EndDialog', 'SetTimer', 'DispatchMessageW', 'GetMenuCheckMarkDimensions', 'GetSystemMetrics', 'UpdateWindow', 'LoadBitmapW', 'GetKeyState', 'ModifyMenuW', 'GetActiveWindow', 'GetDlgItem', 'SetWindowContextHelpId', 'SetWindowPos', 'CheckMenuItem', 'GetCursorPos', 'GetFocus', 'CreateDialogIndirectParamW', 'GetWindow', 'PeekMessageW', 'IsWindow', 'EnableWindow', 'PostQuitMessage', 'GetNextDlgTabItem', 'TranslateMessage', 'VirtualUnlock', 'GlobalAlloc', 'SetUnhandledExceptionFilter', 'InterlockedCompareExchange', 'GlobalHandle', 'GetTempPathW', 'QueryPerformanceCounter', 'WideCharToMultiByte', 'GetCurrentProcess', 'GetComputerNameW', 'ProcessIdToSessionId', 'GetVersionExW', 'LocalFree', 'ReleaseMutex', 'VirtualAlloc', 'CreateThread', 'GetSystemInfo', 'LCMapStringW', 'TerminateProcess', 'LoadResource', 'LeaveCriticalSection', 'SetEvent', 'lstrlenW', 'MultiByteToWideChar', 'GetProcAddress', 'RaiseException', 'IsDebuggerPresent', 'WaitForMultipleObjects', 'GetStartupInfoW', 'HeapSetInformation', 'FlushInstructionCache', 'CloseHandle', 'GetVersionExA', 'LoadLibraryW', 'LockResource', 'GetModuleHandleA', 'FindResourceW', 'GetProcessId', 'GetThreadLocale', 'GetSystemDirectoryW', 'GetModuleFileNameW', 'VirtualFree', 'GlobalFree', 'GetLocaleInfoW', 'CreateMutexW', 'DeleteCriticalSection', 'FormatMessageW', 'OpenProcess', 'SetLastError', 'LocalAlloc', 'GetSystemTimeAsFileTime', 'GetTickCount', 'LoadLibraryExW', 'FreeLibrary', 'FindResourceExW', 'InitializeCriticalSection', 'MulDiv', 'lstrlenA', 'WaitForSingleObject', 'GetCurrentThreadId', 'InterlockedDecrement', 'ResetEvent', 'VirtualLock', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetLocaleInfoA', 'lstrcmpW', 'GlobalUnlock', 'LoadLibraryA', 'UnhandledExceptionFilter', 'CreateFileW', 'GetLastError', 'HeapAlloc', 'InterlockedExchange', 'EnterCriticalSection', 'GlobalLock', 'SizeofResource', 'InterlockedIncrement', 'IsProcessorFeaturePresent', 'CreateEventW', 'GetACP', 'Sleep', 'HeapDestroy', 'GetModuleHandleW', '_controlfp', '_amsg_exit', '_initterm', '__wgetmainargs', 'exit', 'log', '__setusermatherr', '_wtoi64', '__set_app_type', 'iswdigit', '_exit', 'memset', '_cexit', '_initterm', '__p__fmode', '?terminate@@YAXXZ', '_wcmdln', 'memcpy', '__p__commode', '_XcptFilter'], ['WriteConsoleA', 'lstrlenW', 'GetCommandLineW', 'SizeofResource', 'HeapDestroy', 'SetUnhandledExceptionFilter', 'RtlUnwind', 'HeapFree', 'InitializeCriticalSection', 'CreateThread', 'CreateEventW', 'TlsGetValue', 'RaiseException', 'FindResourceW', 'FindResourceExW', 'LoadLibraryExW', 'UnhandledExceptionFilter', 'FreeLibrary', 'GetSystemInfo', 'FlushFileBuffers', 'GetLocaleInfoA', 'GetStartupInfoA', 'TerminateProcess', 'GetConsoleMode', 'InterlockedIncrement', 'TlsAlloc', 'LoadLibraryW', 'SetLastError', 'SetEvent', 'VirtualAlloc', 'LoadResource', 'LockResource', 'GetExitCodeThread', 'Sleep', 'SetStdHandle', 'GetCurrentProcess', 'GetLastError', 'OpenProcess', 'GetCurrentProcessId', 'FlushInstructionCache', 'ExpandEnvironmentStringsA', 'IsDebuggerPresent', 'DeleteCriticalSection', 'lstrcpynW', 'GlobalAlloc', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'HeapSize', 'OpenEventW', 'TerminateThread', 'GetOEMCP', 'CreateProcessW', 'GetFileType', 'GetFileAttributesW', 'GlobalFree', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'CreateFileA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetConsoleCP', 'OpenMutexW', 'HeapReAlloc', 'lstrcmpA', 'VirtualProtectEx', 'AddAtomA', 'GetVersionExA', 'GetVersion', 'GetStartupInfoW', 'HeapAlloc', 'GlobalLock', 'GetProcessHeap', 'GetStdHandle', 'CloseHandle', 'GetModuleHandleW', 'LCMapStringA', 'ExitThread', 'InterlockedDecrement', 'LeaveCriticalSection', 'lstrcmpiW', 'GetModuleHandleA', 'WaitForSingleObject', 'GetCurrentThreadId', 'GetModuleFileNameW', 'IsValidCodePage', 'CreateMutexW', 'GetConsoleOutputCP', 'SetFilePointer', 'EnterCriticalSection', 'WriteFile', 'WriteConsoleW', 'GetTickCount', 'GetFullPathNameW', 'GetCPInfo', 'VirtualFree', 'InterlockedExchange', 'MulDiv', 'LCMapStringW', 'CreateIoCompletionPort', 'IsProcessorFeaturePresent', 'lstrcmpW', 'ResetEvent', 'GetStringTypeW', 'GetQueuedCompletionStatus', 'GetModuleFileNameA', 'InterlockedCompareExchange', 'GetSystemTimeAsFileTime', 'TlsFree', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'HeapCreate', 'TlsSetValue', 'GetStringTypeA', 'WideCharToMultiByte', 'GetProcAddress', 'ExitProcess', 'GetACP', 'GlobalUnlock', 'SendMessageW', 'InvalidateRgn', 'RegisterWindowMessageW', 'EnumChildWindows', 'GetWindowLongW', 'PostQuitMessage', 'CreateWindowExW', 'SetMenuItemInfoW', 'MonitorFromPoint', 'SetForegroundWindow', 'CreateDialogParamW', 'GetDlgCtrlID', 'ClientToScreen', 'CharNextW', 'GetDesktopWindow', 'SetWindowPlacement', 'SetCapture', 'GetWindowPlacement', 'IsDialogMessageW', 'CopyRect', 'GetMenuItemInfoW', 'GetWindowThreadProcessId', 'CheckDlgButton', 'GetWindowRect', 'AttachThreadInput', 'IsMenu', 'GetDlgItem', 'IsWindow', 'GetFocus', 'LoadCursorW', 'GetDC', 'GetClassNameW', 'GetClientRect', 'ReleaseDC', 'GetSysColor', 'SetFocus', 'TrackPopupMenu', 'DefWindowProcW', 'CreateAcceleratorTableW', 'GetWindow', 'BringWindowToTop', 'GetClassInfoExW', 'RedrawWindow', 'LoadImageW', 'GetSubMenu', 'DispatchMessageW', 'GetParent', 'DestroyMenu', 'MapWindowPoints', 'DrawIconEx', 'SetWindowTextW', 'MoveWindow', 'GetSystemMetrics', 'SetWindowLongW', 'MonitorFromWindow', 'GetWindowTextLengthW', 'EndDialog', 'GetCursorPos', 'DestroyAcceleratorTable', 'InflateRect', 'DestroyIcon', 'ReleaseCapture', 'PtInRect', 'TranslateAcceleratorW', 'TranslateMessage', 'GetWindowTextW', 'OffsetRect', 'SetWindowPos', 'EndPaint', 'RegisterClassExW', 'BeginPaint', 'IsChild', 'InvalidateRect', 'UnregisterClassA', 'IsIconic', 'GetForegroundWindow', 'DrawTextW', 'GetMessagePos', 'LoadMenuW', 'LoadBitmapW', 'PostMessageW', 'DrawFocusRect', 'GetMonitorInfoW', 'MessageBoxW', 'ModifyMenuW', 'EnableWindow', 'ShowWindow', 'CallWindowProcW', 'GetMessageW', 'GetMenuItemCount', 'DialogBoxParamW', 'FillRect', 'PeekMessageW', 'IsWindowVisible', 'DestroyWindow', 'LoadAcceleratorsW', 'ScreenToClient', 'IsWindowEnabled', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'DeleteObject', 'GetTextMetricsW', 'TextOutW', 'Rectangle', 'CreateFontW', 'SetTextColor', 'StretchBlt', 'RestoreDC', 'CreateCompatibleBitmap', 'CreatePen', 'EnumFontFamiliesExW', 'BitBlt', 'GetTextExtentPoint32W', 'DeleteDC', 'CreateFontIndirectW', 'SetBkMode', 'CreateSolidBrush', 'GetObjectW', 'GetStockObject', 'SetBkColor', 'CreatePatternBrush', 'SaveDC', 'ChooseColorW', 'RegCreateKeyW', 'RegCloseKey', 'RegQueryValueExA', 'RegDeleteKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegOpenKeyW', 'RegCreateKeyExW', 'RegOpenKeyExA', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFolderLocation', 'SHFileOperationW', 'SHGetPathFromIDListW', 'OleUninitialize', 'CoTaskMemRealloc', 'CreateStreamOnHGlobal', 'CoUninitialize', 'CLSIDFromProgID', 'OleInitialize', 'CoTaskMemFree', 'OleLockRunning', 'CoInitialize', 'CoGetClassObject', 'CoCreateInstance', 'CoTaskMemAlloc', 'StringFromGUID2', 'CLSIDFromString', 'SysFreeString', 'LoadTypeLib', 'SysStringLen', 'VariantClear', 'LoadRegTypeLib', 'OleCreateFontIndirect', 'VariantInit', 'SysAllocString', 'SysAllocStringLen', 'VarUI4FromStr', 'ImageList_Remove', 'ImageList_Draw', 'ImageList_LoadImageW', 'ImageList_AddMasked', 'InitCommonControlsEx', 'ImageList_Create', 'ImageList_ReplaceIcon', 'PathFindFileNameW', 'PathFileExistsW', 'PathRemoveBackslashW', 'StrStrIW', 'PathAddBackslashW', 'PathRemoveFileSpecW', 'StrCpyNW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'GdipDrawLineI', 'GdipDeleteStringFormat', 'GdipCreateLineBrushFromRect', 'GdipCreateStringFormat', 'GdipCreateBitmapFromStreamICM', 'GdipFree', 'GdipDrawString', 'GdipCreateBitmapFromStream', 'GdipGetImageGraphicsContext', 'GdipDeleteBrush', 'GdipDisposeImage', 'GdipDeleteFont', 'GdipCreateFont', 'GdipCreateBitmapFromScan0', 'GdipDrawImageI', 'GdipCreateSolidFill', 'GdiplusStartup', 'GdipCreateFromHDC', 'GdipSetStringFormatAlign', 'GdipDeleteFontFamily', 'GdipCreateFontFamilyFromName', 'GdipCreateHBITMAPFromBitmap', 'GdipSetPenDashStyle', 'GdipDeleteGraphics', 'GdipCloneBrush', 'GdipGetGenericFontFamilySansSerif', 'GdiplusShutdown', 'GdipCloneImage', 'GdipDeletePen', 'GdipAlloc', 'GdipCreatePen1', 'GdipFillRectangle', 'GdipSetTextRenderingHint', 'GdipGetImageHeight', 'GdipGetImageWidth', '_CIsin'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetFocus'], ['CreateFileW', 'LoadLibraryA', 'lstrlenA', 'lstrcpyA', 'lstrcmpW', 'WriteFile', 'WriteConsoleInputW', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjects', 'UnhandledExceptionFilter', 'TerminateProcess', 'TerminateJobObject', 'Sleep', 'SetUnhandledExceptionFilter', 'SetThreadPriority', 'SetThreadLocale', 'SetThreadExecutionState', 'SetPriorityClass', 'SetLastError', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ReleaseMutex', 'ReadConsoleOutputCharacterA', 'RaiseException', 'QueryPerformanceCounter', 'OutputDebugStringW', 'OutputDebugStringA', 'OpenEventW', 'MultiByteToWideChar', 'MoveFileExW', 'LocalFree', 'LocalAlloc', 'LoadLibraryW', 'LeaveCriticalSection', 'IsDebuggerPresent', 'InterlockedIncrement', 'InterlockedCompareExchange', 'InitializeCriticalSection', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'GetWindowsDirectoryW', 'GetWindowsDirectoryA', 'GetVersionExW', 'GetVersionExA', 'GetTickCount', 'GetThreadLocale', 'GetSystemTimeAsFileTime', 'GetSystemTime', 'GetStartupInfoA', 'GetProcessPriorityBoost', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetLastError', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleAliasExesLengthA', 'GetComputerNameW', 'FreeLibrary', 'FormatMessageW', 'FormatMessageA', 'ExitProcess', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateProcessW', 'CreateMutexA', 'CreateJobObjectA', 'CreateFileA', 'CloseHandle', 'CreateEventW', 'CreateEventA', 'InterlockedExchange', 'SetKeyboardState', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SendMessageW', 'SendIMEMessageExW', 'RegisterDeviceNotificationW', 'RegisterClassW', 'PostMessageW', 'PeekMessageW', 'OpenWindowStationW', 'MessageBoxW', 'MessageBoxA', 'MessageBeep', 'MapDialogRect', 'LoadMenuA', 'LoadCursorW', 'KillTimer', 'IMPGetIMEW', 'GetWindowTextW', 'GetWindowRect', 'SetTimer', 'GetMenuItemID', 'GetKeyboardLayout', 'GetForegroundWindow', 'GetDlgItemTextW', 'GetDlgItem', 'GetDesktopWindow', 'EnumDesktopWindows', 'EndDialog', 'EnableMenuItem', 'DrawStateA', 'DispatchMessageW', 'DispatchMessageA', 'DialogBoxParamW', 'DestroyWindow', 'DestroyAcceleratorTable', 'DefWindowProcW', 'DdeQueryStringW', 'DdeGetLastError', 'CreateWindowExW', 'CreateDialogIndirectParamA', 'CreateAcceleratorTableW', 'SetWindowLongW', 'SetWindowTextW', 'ShowWindowAsync', 'TranslateMessage', 'UnregisterClassW', 'UnregisterDeviceNotification', 'wvsprintfW', 'IsWindowEnabled', 'LoadIconA', 'GetClipboardData', 'GetDlgCtrlID', 'GetOpenClipboardWindow', 'IsMenu', 'CreatePopupMenu', 'GetMenuItemCount', 'GetKBCodePage', 'GetMenuContextHelpId', 'GetFocus', 'GetInputState', 'GetShellWindow', 'GetAsyncKeyState', 'GetCapture', 'GetClipboardSequenceNumber', 'OemKeyScan', 'GetActiveWindow', 'CharUpperA', 'GetWindowDC', 'IsWindowUnicode', 'GetKeyboardType', 'EnumClipboardFormats', 'CopyIcon', 'GetMenuCheckMarkDimensions', 'EndMenu', 'GetListBoxInfo', 'ReleaseCapture', 'GetMessageExtraInfo', 'GetWindowLongW', 'CharToOemW', 'CharLowerW', 'BroadcastSystemMessageA', 'GetWindowContextHelpId', 'SelectObject', 'SetBrushOrgEx', 'SetDCBrushColor', 'SetICMMode', 'SetPixelV', 'CancelDC', 'PathToRegion', 'CloseFigure', 'GetBkColor', 'AbortDoc', 'FlattenPath', 'GetObjectType', 'PlayMetaFileRecord', 'RealizePalette', 'WidenPath', 'SaveDC', 'BeginPath', 'SetMetaRgn', 'UnrealizeObject', 'AbortPath', 'EndPage', 'CreateMetaFileA', 'AddFontResourceA', 'SwapBuffers', 'OffsetWindowOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextCharset', 'GetMetaRgn', 'GetKerningPairsW', 'GetCurrentObject', 'GetCharWidth32A', 'GdiSwapBuffers', 'GdiStartPageEMF', 'GdiQueryTable', 'GdiGradientFill', 'GdiComment', 'GdiCleanCacheDC', 'FixBrushOrgEx', 'EngGradientFill', 'EngDeletePath', 'DescribePixelFormat', 'DeleteObject', 'DeleteDC', 'CreatePolygonRgn', 'CreateICA', 'CreateHatchBrush', 'CreateEllipticRgn', 'CreateDIBSection', 'CreateDCW', 'ChoosePixelFormat', 'AngleArc', 'BRUSHOBJ_pvAllocRbrush', 'GetTextColor', 'RegEnumValueW', 'RegOpenKeyW', 'StartServiceCtrlDispatcherW', 'SetServiceStatus', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorDacl', 'SetEntriesInAclW', 'ReportEventW', 'RegisterServiceCtrlHandlerExW', 'RegisterEventSourceW', 'RegSetValueExW', 'RegQueryValueExW', 'RegOpenKeyExW', 'AllocateAndInitializeSid', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyW', 'RegCloseKey', 'OpenServiceW', 'OpenSCManagerW', 'InitializeSecurityDescriptor', 'GetUserNameW', 'FreeSid', 'DeregisterEventSource', 'DeleteService', 'CreateServiceW', 'CloseServiceHandle', 'Shell_NotifyIconW', 'ShellExecuteExA', 'SHPathPrepareForWriteW', 'SHLoadNonloadedIconOverlayIdentifiers', 'SHInvokePrinterCommandW', 'SHGetSpecialFolderPathA', 'SHGetSpecialFolderLocation', 'SHGetSettings', 'SHGetPathFromIDListW', 'SHGetMalloc', 'CommandLineToArgvW', 'DoEnvironmentSubstA', 'DoEnvironmentSubstW', 'DragQueryFileA', 'DragQueryFileAorW', 'DragQueryFileW', 'ExtractAssociatedIconW', 'ExtractIconA', 'ExtractIconEx', 'SHAddToRecentDocs', 'SHBindToParent', 'SHBrowseForFolderW', 'SHCreateProcessAsUserW', 'SHEmptyRecycleBinW', 'SHGetFolderPathA', 'SHGetFolderPathW', 'ShellExecuteExW', 'StrChrW', 'StrCmpNIA', 'StrCmpNIW', 'StrCmpNW', 'StrRChrA', 'StrRChrIA', 'StrRStrIW', 'StrStrIA', 'StrChrA', 'InitCommonControlsEx', '__p__commode', '__p__fmode', '__set_app_type', '__setusermatherr', '_abnormal_termination', '_acmdln', '_adjust_fdiv', '_c_exit', '_cexit', '_controlfp', '_except_handler3', '_exit', '_initterm', '_iob', '_mbscmp', '_mbscpy', '_mbsicmp', '_mbsinc', '_mbslwr', '_mbsnbcmp', '_mbsnbicmp', '_snwprintf', '_vsnwprintf', '_wcsicmp', '_wcsnicmp', 'exit', 'fwprintf', 'iswctype', 'memmove', 'setlocale', 'wcschr', 'wcscmp', 'wcscpy', 'wcslen', 'wcsncmp', 'wcsrchr', '_XcptFilter', '__getmainargs', 'ImmDisableIME'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegFlushKey', 'ImageList_Add', 'SaveDC', 'AlphaBlend', 'OleDraw', 'VariantCopy', 'Shell_NotifyIconW', 'GetDC', 'VerQueryValueW', 'timeGetTime'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpyA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetSystemTime', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysFreeString', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCreateKeyExA', 'RegCloseKey', 'WriteFile', 'VirtualQuery', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'GetVersionExA', 'GetThreadLocale', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentThreadId', 'GetCPInfo', 'FormatMessageA', 'EnumCalendarInfoA', 'CreateFileA', 'CompareStringA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpyA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'VariantChangeTypeEx', 'VariantCopyInd', 'VariantClear', 'SysStringLen', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'GetModuleFileNameA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetThreadLocale', 'GetSystemInfo', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetCurrentPositionEx', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'EnumFontsA', 'EnumFontFamiliesExA', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowRgn', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClassA', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapVirtualKeyA', 'LoadStringA', 'LoadIconA', 'LoadCursorA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColor', 'GetSubMenu', 'GetScrollPos', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreateWindowExA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharLowerBuffA', 'CharLowerA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA'], ['GetModuleHandleA', 'GetProcAddress', 'SysFreeString', 'RegCloseKey', 'CharNextW', 'Pie', 'VerQueryValueW', 'NetWkstaGetInfo', 'IsEqualGUID', 'ImageList_Add', 'memset', 'ShellExecuteW', 'ChooseColorW', 'OpenPrinterW'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'CreateWindowExA', 'SafeArrayPtrOfIndex', 'ImageList_SetIconSize', 'ShellExecuteA', 'GetOpenFileNameA', 'PlaySoundA'], ['WriteFile', 'CloseHandle', 'lstrcmpA', 'lstrcmpW', 'LoadLibraryA', 'GetModuleFileNameW', 'GetCommandLineW', 'Sleep', 'SetPriorityClass', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'GlobalAlloc', 'GlobalFree', 'lstrlenW', 'GetCurrentThreadId', 'CreateThread', 'ExitProcess', 'GetCurrentProcess', 'OpenProcess', 'LocalFree', 'LocalAlloc', 'CreateFileA', 'GetProcAddress', 'GetWindowRect', 'MessageBoxW', 'SetCursorPos', 'GetCursorPos', 'GetDesktopWindow', 'EnumChildWindows', 'CallNextHookEx', 'LoadIconW', 'ReleaseDC', 'UnhookWindowsHookEx', 'MessageBoxA', 'GetSystemMetrics', 'CreateWindowExA', 'RegisterClassExA', 'DefWindowProcW', 'ExitWindowsEx', 'DispatchMessageW', 'TranslateMessage', 'GetWindowDC', 'DrawIcon', 'SendInput', 'SendMessageTimeoutW', 'GetMessageW', 'SetWindowsHookExW', 'BitBlt', 'StretchBlt', 'OpenProcessToken', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'CryptAcquireContextW', 'CryptGenRandom', 'CommandLineToArgvW', 'ShellExecuteW', 'ShellExecuteA', 'ShellExecuteExW', 'PlaySoundA', 'GetProcessImageFileNameA'], ['InitializeSListHead', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsBadHugeReadPtr', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'LCMapStringA', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExA', 'LoadResource', 'LocalAlloc', 'LocalFileTimeToFileTime', 'LocalFree', 'LocalReAlloc', 'LockResource', 'MoveFileExA', 'MulDiv', 'MultiByteToWideChar', 'OpenFileMappingW', 'OutputDebugStringA', 'OutputDebugStringW', 'QueryDosDeviceW', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleInputW', 'ReadConsoleW', 'ReadFile', 'InitializeCriticalSectionAndSpinCount', 'RtlMoveMemory', 'RtlUnwind', 'SetCalendarInfoA', 'SetComputerNameA', 'SetEvent', 'SetHandleCount', 'SetLastError', 'SetThreadExecutionState', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcmpA', 'lstrcmpW', 'lstrcmpiW', 'lstrlenA', 'InitializeCriticalSection', 'HeapReAlloc', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalMemoryStatusEx', 'GlobalLock', 'GlobalHandle', 'GlobalGetAtomNameA', 'GlobalFree', 'GlobalFlags', 'GlobalFix', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryW', 'GetVolumePathNamesForVolumeNameW', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetTempFileNameA', 'GetTapePosition', 'GetSystemTimes', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'GetStdHandle', 'GetStartupInfoW', 'GetStartupInfoA', 'GetProcessHeap', 'GetProcAddress', 'GetPrivateProfileStringA', 'GetPrivateProfileIntW', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GetLongPathNameW', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameW', 'GetFileType', 'GetFileSizeEx', 'GetFileSize', 'GetFileAttributesExW', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetDiskFreeSpaceExW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleAliasExesLengthA', 'GetCommandLineW', 'GetCommandLineA', 'GetBinaryTypeA', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FormatMessageA', 'FlushFileBuffers', 'FindVolumeClose', 'FindResourceA', 'FindNextVolumeW', 'FindFirstVolumeW', 'FindFirstVolumeMountPointW', 'FindFirstFileA', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'ExitProcess', 'EnumResourceLanguagesA', 'EnumDateFormatsW', 'EnterCriticalSection', 'DosDateTimeToFileTime', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'DeleteAtom', 'CreateThread', 'CreateFileW', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CopyFileA', 'ConvertDefaultLocale', 'CompareStringW', 'CompareStringA', 'CommConfigDialogW', 'CloseHandle', 'Beep', 'GetModuleHandleA', 'RtlFillMemory', 'VirtualAlloc', 'MessageBoxW', 'ModifyMenuA', 'OpenClipboard', 'PeekMessageA', 'PostMessageA', 'PostMessageW', 'PostQuitMessage', 'PostThreadMessageA', 'PostThreadMessageW', 'PtInRect', 'RedrawWindow', 'RegisterClassA', 'RegisterClassExW', 'RegisterClipboardFormatA', 'RegisterClipboardFormatW', 'RegisterWindowMessageA', 'RegisterWindowMessageW', 'ReleaseDC', 'RemovePropA', 'RemovePropW', 'SendDlgItemMessageA', 'SendMessageA', 'SendMessageCallbackA', 'SendMessageTimeoutW', 'SendMessageW', 'SetActiveWindow', 'SetCursor', 'SetFocus', 'SetForegroundWindow', 'SetMenuInfo', 'SetMenuItemBitmaps', 'SetPropA', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetTimer', 'SetWindowLongA', 'SetWindowLongW', 'SetWindowPos', 'SetWindowRgn', 'SetWindowTextA', 'SetWindowsHookExA', 'ShowWindow', 'SystemParametersInfoA', 'SystemParametersInfoW', 'TabbedTextOutA', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnregisterClassA', 'UnregisterDeviceNotification', 'UpdateLayeredWindow', 'UpdateWindow', 'ValidateRect', 'WINNLSGetEnableStatus', 'WaitMessage', 'WinHelpA', 'keybd_event', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadCursorW', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsWindowEnabled', 'IsWindow', 'IsDialogMessageA', 'IsCharAlphaNumericW', 'InvalidateRect', 'InflateRect', 'GrayStringA', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowModuleFileNameW', 'GetWindowModuleFileName', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetWindow', 'GetUserObjectSecurity', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetScrollBarInfo', 'GetPropA', 'GetParent', 'GetNextDlgTabItem', 'GetMonitorInfoA', 'GetMessageW', 'GetMessageTime', 'GetMessagePos', 'GetMessageA', 'GetMenuState', 'GetMenuItemID', 'GetMenu', 'GetLastActivePopup', 'GetKeyState', 'GetInputState', 'GetIconInfo', 'GetFocus', 'GetDlgItemTextW', 'GetDlgItemInt', 'GetDlgItem', 'GetCursorPos', 'GetComboBoxInfo', 'GetClientRect', 'GetClassNameW', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoExW', 'GetClassInfoExA', 'GetClassInfoA', 'GetCapture', 'FrameRect', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumDesktopWindows', 'EndPaint', 'EndDialog', 'EnableWindow', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExA', 'DrawTextA', 'DrawMenuBar', 'DrawFrameControl', 'DlgDirListComboBoxA', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DeregisterShellHookWindow', 'DefWindowProcA', 'DdeCmpStringHandles', 'CreateWindowExA', 'CreateDialogIndirectParamA', 'CopyRect', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharNextA', 'ChangeMenuA', 'CallWindowProcW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'AppendMenuW', 'AllowSetForegroundWindow', 'AdjustWindowRectEx', 'CloseDesktop', 'GetCursor', 'GetWindowTextLengthW', 'PaintDesktop', 'GetDesktopWindow', 'CreatePopupMenu', 'GetKeyboardType', 'DestroyCursor', 'EndMenu', 'AnyPopup', 'OemKeyScan', 'GetTopWindow', 'IsCharUpperA', 'GetKBCodePage', 'GetSysColor', 'GetOpenClipboardWindow', 'GetForegroundWindow', 'GetDoubleClickTime', 'GetActiveWindow', 'CreateMenu', 'LoadIconA', 'IsWindowVisible', 'CopyIcon', 'GetDC', 'CharLowerW', 'IsCharLowerA', 'ShowCaret', 'IsIconic', 'GetMenuCheckMarkDimensions', 'OpenIcon', 'GetKeyboardLayout', 'GetWindowTextLengthA', 'ReleaseCapture', 'GetDlgCtrlID', 'CharNextW', 'GetDialogBaseUnits', 'CharUpperW', 'CharUpperA', 'LoadCursorFromFileA', 'GetAsyncKeyState', 'GetMenuItemCount', 'PolyTextOutA', 'PtVisible', 'RectVisible', 'RemoveFontResourceExA', 'RestoreDC', 'STROBJ_bEnum', 'SaveDC', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'SelectObject', 'SetBkColor', 'PlayMetaFile', 'SetEnhMetaFileBits', 'SetICMMode', 'SetMapMode', 'SetPaletteEntries', 'SetRectRgn', 'SetTextColor', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'TextOutA', 'XLATEOBJ_piVector', 'OffsetViewportOrgEx', 'GetTextFaceA', 'GetOutlineTextMetricsA', 'GetObjectA', 'GetGraphicsMode', 'GetGlyphOutlineWow', 'GetFontData', 'GetEnhMetaFilePaletteEntries', 'GetDeviceCaps', 'GetClipBox', 'GdiValidateHandle', 'GdiResetDCEMF', 'GdiProcessSetup', 'GdiInitializeLanguagePack', 'GdiGetLocalDC', 'SetDIBits', 'EndDoc', 'GdiEntry10', 'FrameRgn', 'ExtTextOutA', 'Escape', 'EqualRgn', 'EngStretchBltROP', 'EngCreateClip', 'EngCreateBitmap', 'DeleteObject', 'DeleteDC', 'CreatePalette', 'CreateICA', 'CreateFontIndirectA', 'CreateDIBSection', 'CreateBitmap', 'CopyMetaFileA', 'CLIPOBJ_ppoGetPath', 'AddFontMemResourceEx', 'RealizePalette', 'StrokePath', 'DeleteMetaFile', 'GetLayout', 'GetStretchBltMode', 'GetPixelFormat', 'AddFontResourceW', 'GetFontLanguageInfo', 'GetStockObject', 'UnrealizeObject', 'CloseEnhMetaFile', 'GetMapMode', 'AbortPath', 'SwapBuffers', 'GetEnhMetaFileW', 'DeleteColorSpace', 'SetMetaRgn', 'DeleteEnhMetaFile', 'GetSystemPaletteUse', 'GetTextAlign', 'CreateMetaFileA', 'AbortDoc', 'CancelDC', 'GdiFlush', 'RegQueryValueExA', 'RegQueryValueA', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'CryptReleaseContext', 'CryptGenRandom', 'CryptAcquireContextW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegSetValueExA', 'ShellExecuteW', 'ShellExecuteEx', 'ShellAboutW', 'SHQueryRecycleBinW', 'SHPathPrepareForWriteA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHGetPathFromIDListA', 'SHGetPathFromIDList', 'SHGetFolderPathW', 'SHGetFolderPathA', 'SHGetFolderLocation', 'SHGetFileInfoW', 'SHGetFileInfo', 'SHGetDiskFreeSpaceExW', 'SHGetDiskFreeSpaceA', 'SHGetDesktopFolder', 'SHGetDataFromIDListA', 'SHFileOperationW', 'SHFileOperationA', 'SHEmptyRecycleBinA', 'SHCreateDirectoryExA', 'ExtractIconExW', 'ExtractIconA', 'DuplicateIcon', 'DragQueryFileW', 'DragQueryFile', 'DragFinish', 'DragAcceptFiles', 'DoEnvironmentSubstW', 'CommandLineToArgvW', 'OleFlushClipboard', 'OleInitialize', 'OleIsCurrentClipboard', 'OleUninitialize', 'CoSuspendClassObjects', 'CoRevokeClassObject', 'CoResumeClassObjects', 'CoRegisterMessageFilter', 'CoInitializeSecurity', 'CoInitializeEx', 'CoInitialize', 'CoFreeUnusedLibraries', 'CoCreateInstance', 'CoUninitialize', 'PathFindExtensionA', 'PathFindFileNameA', 'PathFindFileNameW', 'PathIsUNCA', 'PathStripToRootA', 'StrChrW', 'StrCmpNA', 'StrCmpNIA', 'StrCmpNIW'], ['GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'CreateSemaphoreW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindResourceExW', 'LocalFree', 'CreateDirectoryW', 'DeleteFileW', 'GetCurrentThread', 'WaitForMultipleObjects', 'LoadLibraryW', 'WaitForSingleObject', 'GetExitCodeProcess', 'DuplicateHandle', 'ReleaseMutex', 'GetEnvironmentVariableW', 'lstrcmpiW', 'VirtualQuery', 'GetTempPathW', 'GetLocalTime', 'OutputDebugStringA', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'lstrcmpW', 'lstrlenW', 'SetFilePointer', 'CreateMutexW', 'InitializeCriticalSection', 'TryEnterCriticalSection', 'SetEvent', 'ResetEvent', 'GetFileAttributesExW', 'SetLastError', 'VerifyVersionInfoW', 'VerSetConditionMask', 'MoveFileExW', 'GetFileTime', 'ReadFile', 'DeviceIoControl', 'SetProcessWorkingSetSize', 'OpenProcess', 'CreateProcessW', 'ReadProcessMemory', 'lstrcpynW', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'CreateThread', 'DebugActiveProcess', 'GetThreadContext', 'DebugActiveProcessStop', 'VirtualQueryEx', 'GetProcessId', 'GetSystemInfo', 'ContinueDebugEvent', 'WaitForDebugEvent', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetModuleHandleExW', 'ExitProcess', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'EncodePointer', 'LeaveCriticalSection', 'WaitNamedPipeW', 'TransactNamedPipe', 'SetNamedPipeHandleState', 'RtlCaptureContext', 'ReleaseSemaphore', 'EnterCriticalSection', 'OutputDebugStringW', 'DeleteCriticalSection', 'DecodePointer', 'HeapSize', 'GetProcAddress', 'GetLastError', 'RaiseException', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'GetModuleHandleW', 'HeapFree', 'IsDebuggerPresent', 'GetUserDefaultLangID', 'GetSystemDefaultLangID', 'GetComputerNameExW', 'GetOverlappedResult', 'ConnectNamedPipe', 'CreateNamedPipeW', 'DisconnectNamedPipe', 'UnregisterWait', 'GetProcessTimes', 'UnregisterWaitEx', 'RegisterWaitForSingleObject', 'VirtualProtect', 'VirtualAlloc', 'HeapAlloc', 'RemoveDirectoryW', 'HeapReAlloc', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'GetProcessWindowStation', 'CloseDesktop', 'CloseClipboard', 'CharUpperW', 'CharLowerW', 'PostThreadMessageW', 'DispatchMessageW', 'GetMessageW', 'PeekMessageW', 'EnumWindows', 'IsWindowVisible', 'GetWindowThreadProcessId', 'SetThreadDesktop', 'CreateWindowStationW', 'CloseWindowStation', 'GetThreadDesktop', 'SetProcessWindowStation', 'CreateDesktopW', 'wvsprintfW', 'wsprintfW', 'MessageBoxW', 'GetSecurityDescriptorSacl', 'GetSecurityDescriptorDacl', 'GetSecurityDescriptorGroup', 'GetSecurityDescriptorOwner', 'GetSecurityDescriptorControl', 'GetLengthSid', 'CopySid', 'IsValidSid', 'GetSidSubAuthority', 'InitializeSid', 'GetSidLengthRequired', 'SetSecurityDescriptorDacl', 'AddAce', 'InitializeAcl', 'GetAclInformation', 'InitializeSecurityDescriptor', 'MakeAbsoluteSD', 'OpenProcessToken', 'GetTokenInformation', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'GetAce', 'MakeSelfRelativeSD', 'GetSecurityDescriptorLength', 'EqualSid', 'SetNamedSecurityInfoW', 'ConvertStringSidToSidW', 'OpenThreadToken', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegQueryInfoKeyW', 'ConvertSidToStringSidW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'SetSecurityDescriptorSacl', 'GetTraceLoggerHandle', 'GetTraceEnableFlags', 'GetTraceEnableLevel', 'RegisterTraceGuidsW', 'UnregisterTraceGuids', 'TraceEvent', 'SetTokenInformation', 'CoCreateGuid', 'StringFromGUID2', 'SHGetFolderPathW', 'NetApiBufferFree', 'NetWkstaGetInfo', 'UuidCreate', 'PathRemoveExtensionW', 'PathRemoveFileSpecW', 'PathStripPathW', 'PathCanonicalizeW', 'PathIsRelativeW', 'SHQueryValueExW', 'PathAppendW', 'UnloadUserProfile', 'GetFileVersionInfoW', 'VerQueryValueW', 'GetFileVersionInfoSizeW'], ['AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'sprintf', 'CreateProcessA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GetVersion', 'GetTempPathA', 'GetTickCount', 'ExitProcess', 'GetModuleFileNameA', 'CopyFileA', 'Sleep', 'CloseHandle', 'GetModuleHandleA', 'GetCurrentProcess', 'CreateFileA', 'ReadFile', 'SetFilePointer', 'WriteFile', 'GetFileSize', 'GlobalAlloc', 'DeleteFileA', 'ExitWindowsEx', 'ShellExecuteA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcessImageFileNameA', 'GetUserNameA', 'GetFileVersionInfoSizeW', 'WSACleanup', 'ClosePrinter', 'FlatSB_GetScrollInfo', 'AbortDoc', 'AlphaBlend', 'ExtractIconA', 'SHGetFolderPathA', 'ActivateKeyboardLayout', 'sndPlaySoundA', 'CLSIDFromString', 'GetActiveObject', 'GdipAddPathArc', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'CreateWindowExA', 'SafeArrayPtrOfIndex', 'StgIsStorageFile', 'GetErrorInfo', 'ImageList_SetIconSize', 'ShellExecuteA', 'SHGetSpecialFolderLocation', 'GetUpdateRect', 'PlaySoundA', 'WSACleanup'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'InternetOpenA', 'GetProcessImageFileNameW', 'GdipGetImagePaletteSize', 'GradientFill', '_TrackMouseEvent', 'PathIsUNCW', 'GetFileVersionInfoSizeW', 'RemovePropW', 'Escape', 'OpenPrinterW', 'GetFileTitleW', 'RegQueryValueW', 'ShellExecuteExW', 'CoTaskMemAlloc', 'SafeArrayGetLBound', 'CreateStdAccessibleObject', 'OleUIBusyW', 'VariantChangeTypeEx', 'RaiseException'], ['CreateToolhelp32Snapshot', 'EndUpdateResourceA', 'UpdateResourceA', 'BeginUpdateResourceA', 'WriteFile', 'CreateFileA', 'GetSystemDirectoryA', 'GetProcAddress', 'Process32First', 'lstrlenA', 'TerminateProcess', 'GetCurrentProcess', 'Sleep', 'GetTickCount', 'ExitProcess', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersionExA', 'HeapFree', 'HeapAlloc', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetModuleFileNameA', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'Process32Next', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsAlloc', 'SetLastError', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'LoadLibraryA', 'RtlUnwind', 'InterlockedExchange', 'VirtualQuery', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'InitializeCriticalSection', 'HeapSize', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'VirtualProtect', 'GetSystemInfo', 'CloseHandle', 'GetModuleHandleA', 'FindResourceA', 'LoadResource', 'SizeofResource', 'GetEnvironmentStringsW', 'LockResource', 'GetModuleFileNameExA', 'CloseServiceHandle', 'QueryServiceStatusEx', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'ChangeServiceConfigA', 'ControlService', 'OpenServiceA', 'OpenSCManagerA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegFlushKey', 'ImageList_Add', 'SaveDC', 'CoInitialize', 'VariantCopy', 'ShellExecuteA', 'GetDC', 'VerQueryValueA'], ['GetModuleHandleA', '__C_specific_handler'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'SysFreeString', 'RegQueryValueExA', 'GetKeyboardType', 'CreateWindowExA', 'UnrealizeObject', 'VerQueryValueA', 'WNetGetConnectionA', 'ReportEventA', 'GetErrorInfo', 'CoTaskMemFree', 'SafeArrayPtrOfIndex', '_TrackMouseEvent', 'Shell_NotifyIconA', 'OpenPrinterA', 'StartServiceCtrlDispatcherA', 'WSAStartup', 'VariantChangeTypeEx', 'RaiseException'], ['GetProcessHeap', 'GetFileSize', 'CloseHandle', 'ExitProcess', 'DeleteFileA', 'GetModuleFileNameA', 'ReadFile', 'LoadResource', 'FindClose', 'HeapAlloc', 'CompareFileTime', 'SetFileAttributesA', 'SizeofResource', 'SetFileTime', 'CreateFileA', 'FindNextFileA', 'LockResource', 'FindFirstFileA', 'CreateThread', 'HeapReAlloc', 'HeapFree', 'FindResourceA', 'WriteFile', 'CreateWindowExA', 'UpdateWindow', 'SendMessageA', 'TranslateMessage', 'ShowWindow', 'SetWindowTextA', 'RegisterClassExA', 'PostQuitMessage', 'PostMessageA', 'LoadIconA', 'LoadCursorA', 'GetWindowTextA', 'GetMessageA', 'GetDlgItem', 'MessageBoxA', 'DispatchMessageA', 'DefWindowProcA', 'MakeSureDirectoryPathExists', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHChangeNotify', 'SHBrowseForFolderA', 'InitCommonControlsEx', 'GetStockObject'], ['WriteProcessMemory', 'VirtualProtect', 'GetCurrentProcess', 'VirtualAlloc', 'lstrlenA', 'CreateMutexA', 'GetModuleHandleA', 'OpenProcess', 'Sleep', 'OpenMutexA', 'CreateFileA', 'LoadLibraryA', 'CloseHandle', 'GetModuleFileNameA', 'FreeConsole', 'LoadLibraryW', 'HeapAlloc', 'K32EnumProcesses', 'GetProcAddress', 'ReadProcessMemory', 'GetProcessHeap', 'FreeLibrary', 'K32EnumProcessModules', 'GetSystemTime', 'GetTickCount', 'IsDebuggerPresent', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'K32GetModuleBaseNameA', 'ReadFile', 'QueryPerformanceCounter', 'GetModuleHandleW', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'LCMapStringEx', 'MultiByteToWideChar', 'DecodePointer', 'EncodePointer', 'DeleteCriticalSection', 'InitializeCriticalSectionEx', 'LeaveCriticalSection', 'EnterCriticalSection', 'WideCharToMultiByte', 'InitializeSListHead', 'GetUserNameA', '_chdir', 'localeconv', 'strlen', 'free', 'frexp', '_invalid_parameter_noinfo_noreturn', '_lock_locales', '_unlock_locales', '__acrt_iob_func', '_get_stream_buffer_pointers', 'fclose', 'fflush', 'fgetc', 'fgetpos', 'fputc', 'fread', 'fsetpos', '_fseeki64', 'fwrite', 'setvbuf', 'strcspn', '_lock_file', '_unlock_file', 'malloc', 'setlocale', 'rand_s', '__pctype_func', 'isupper', '___lc_locale_name_func', '___lc_codepage_func', '_wcsdup', '___mb_cur_max_func', 'islower', 'abort', '__strncnt', 'strcmp', '_callnewh', 'terminate', '_configure_narrow_argv', '_initialize_narrow_environment', '_initialize_onexit_table', '_register_onexit_function', '_crt_atexit', '_cexit', '_seh_filter_exe', '_set_app_type', '__setusermatherr', '_get_initial_narrow_environment', '_initterm', '_initterm_e', '_exit', '_set_fmode', '__p___argc', '__p___argv', '_c_exit', '_register_thread_local_exe_atexit_callback', '_configthreadlocale', '_set_new_mode', '__p__commode', '_controlfp_s', 'fopen', 'abs', 'calloc', 'exit', 'fabs', '_except_handler4_common', '__current_exception_context', '__current_exception', '__uncaught_exceptions', '_CxxThrowException', 'strstr', '__std_terminate', 'memset', '_purecall', '__std_exception_copy', 'memcpy', 'memmove', '__std_exception_destroy', '__CxxFrameHandler3', '__stdio_common_vsprintf_s', 'ungetc'], ['GetModuleHandleA', 'PathFindFileNameA', 'malloc'], ['GetEnvironmentVariableW', 'LoadLibraryW', 'GetProcAddress', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'DecodePointer'], ['DecodePointer', 'CreateThread', 'SetEvent', 'WaitForSingleObject', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'Sleep', 'CreateTimerQueue', 'CreateEventW', 'CreateTimerQueueTimer', 'DeleteTimerQueueTimer', 'DeleteTimerQueue', 'GetCurrentProcessId', 'CreateToolhelp32Snapshot', 'Process32NextW', 'CopyFileW', 'SetConsoleCtrlHandler', 'SetErrorMode', 'SetUnhandledExceptionFilter', 'CreateFileW', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'MultiByteToWideChar', 'LocalFileTimeToFileTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'SetFileTime', 'CloseHandle', 'DeleteFileW', 'FindFirstFileW', 'GetModuleFileNameW', 'CreateProcessW', 'GetConsoleWindow', 'FindNextFileW', 'FindClose', 'OpenProcess', 'TerminateProcess', 'GetFileAttributesA', 'GetWindowsDirectoryW', 'FileTimeToSystemTime', 'GetFileInformationByHandle', 'GetFileSize', 'UnmapViewOfFile', 'GetLocalTime', 'GetTickCount', 'SetEndOfFile', 'LoadLibraryW', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'GetTimeZoneInformation', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetLastError', 'RaiseException', 'WideCharToMultiByte', 'InitializeSListHead', 'ReleaseSemaphore', 'DuplicateHandle', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'GetVersionExW', 'GetModuleHandleA', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'OutputDebugStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'FlushFileBuffers', 'SetFilePointerEx', 'GetFileType', 'MoveFileExW', 'LoadLibraryExW', 'FreeLibrary', 'GetStdHandle', 'GetCurrentThread', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetConsoleMode', 'GetConsoleCP', 'SetEnvironmentVariableA', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'CreateSemaphoreW', 'GetStartupInfoW', 'SetLastError', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlCaptureContext', 'UnregisterWait', 'RegisterWaitForSingleObject', 'GetCurrentThreadId', 'GetStringTypeW', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'GetCPInfo', 'GetCommandLineA', 'RtlPcToFileHeader', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'WaitForSingleObjectEx', 'SignalObjectAndWait', 'GetCurrentProcess', 'SwitchToThread', 'SetThreadPriority', 'GetThreadPriority', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetLogicalProcessorInformation', 'ChangeTimerQueueTimer', 'GetModuleHandleW', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'TranslateMessage', 'GetSystemMetrics', 'GetDC', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'wsprintfW', 'ReleaseDC', 'DispatchMessageW', 'GetDesktopWindow', 'GetMessageW', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'DeleteObject', 'SHGetFolderPathW', 'SHGetSpecialFolderPathW', 'CoCreateGuid', 'StringFromGUID2', 'GdipDisposeImage', 'GdipSaveImageToFile', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipGetImageEncoders', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipFree', 'GdiplusShutdown', 'recvfrom', 'inet_addr', 'htons', 'socket', 'WSAStartup', 'WSACleanup', 'closesocket', 'select', 'sendto', 'QueryWorkingSet'], ['FreeLibrary', 'CreateFileW', 'CloseHandle', 'ReadFile', 'WriteFile', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetProcAddress', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GetModuleHandleW', 'GetCommandLineW', 'HeapReAlloc', 'LoadLibraryA', 'VirtualAlloc', 'VirtualFree', 'GetCurrentProcess', 'VirtualProtect', 'HeapSize', 'GetConsoleCP', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlPcToFileHeader', 'EncodePointer', 'RaiseException', 'RtlUnwindEx', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'SetFilePointerEx', 'GetFileType', 'GetConsoleMode', 'ReadConsoleW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'WriteConsoleW', 'LookupPrivilegeNameW', 'OpenProcessToken', 'GetTokenInformation', 'AdjustTokenPrivileges', 'CommandLineToArgvW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'MessageBoxW', 'GetWindowThreadProcessId', 'FindWindowW', 'FindWindowA', 'CharLowerW', 'lstrcpyW', 'lstrcpyA', 'lstrcmpiW', 'lstrcmpW', 'lstrcatW', 'WriteProcessMemory', 'WriteFile', 'WaitForSingleObject', 'VirtualFreeEx', 'VirtualAllocEx', 'Sleep', 'SizeofResource', 'SetFileTime', 'SetFileAttributesW', 'OpenProcess', 'OpenMutexA', 'LockResource', 'LoadResource', 'LoadLibraryW', 'HeapFree', 'HeapAlloc', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetSystemDirectoryW', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLastError', 'GetFileTime', 'GetFileAttributesW', 'GetCurrentProcess', 'FreeResource', 'FreeLibrary', 'FindResourceW', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'DeleteFileW', 'CreateRemoteThread', 'CreateProcessW', 'CreateFileW', 'CreateDirectoryW', 'CopyFileW', 'CloseHandle', 'RegSetValueExW', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'SHGetFolderLocation', 'SHGetPathFromIDListW', 'GetLongPathNameW', 'GetStartupInfoW', 'FindExecutableW', '_snwprintf'], ['LoadLibraryA', 'WriteConsoleW', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'GetProcAddress', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'HeapFree', 'WideCharToMultiByte', 'MultiByteToWideChar', 'HeapAlloc', 'GetFileType', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'SetStdHandle', 'GetStringTypeW', 'SetFilePointerEx', 'HeapSize', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'DecodePointer', 'CreateFileW', 'VirtualQuery'], ['GetCurrentProcessId', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'ExitProcess', 'SetUnhandledExceptionFilter', 'GetModuleHandleW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'RegDeleteKeyExW', 'recv', 'WSAStartup', 'socket', 'send', 'gethostbyname', 'WSACleanup', 'htons', 'closesocket', 'gethostbyaddr', 'connect', 'inet_addr', '?_Xlength_error@std@@YAXPBD@Z', 'memcpy', '__CxxFrameHandler3', 'strstr', '__std_exception_copy', '__std_exception_destroy', '_CxxThrowException', 'memset', '_except_handler4_common', 'memmove', '_set_fmode', '__p__commode', '__stdio_common_vsprintf', '_initialize_wide_environment', '_exit', '_configure_wide_argv', '_crt_atexit', '_controlfp_s', 'terminate', '_cexit', '_set_app_type', '_register_thread_local_exe_atexit_callback', '_seh_filter_exe', '_register_onexit_function', '_c_exit', 'exit', '_initterm_e', '_initterm', '_initialize_onexit_table', '_invalid_parameter_noinfo_noreturn', '_get_wide_winmain_command_line', 'malloc', 'realloc', '_callnewh', 'free', '_set_new_mode', 'strncpy', '__setusermatherr', '_configthreadlocale'], ['CreateFileA', 'WriteFile', 'CreateProcessA', 'GetStartupInfoA', 'GetLastError', 'CreateMutexA', 'ReleaseMutex', 'CloseHandle', 'lstrcpyA', 'GetTickCount', 'Sleep', 'FreeConsole', 'LocalAlloc', 'GetTempPathA', 'GetModuleHandleA', 'InternetConnectA', 'InternetReadFile', 'InternetSetOptionA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'HttpQueryInfoA', 'sprintf', 'atoi', 'rand', 'srand', '_stricmp', '_c_exit', '_exit', '_XcptFilter', '_cexit', 'exit', '__initenv', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp', '_except_handler3', '??2@YAPAXI@Z', 'memcpy', 'memset'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SearchPathA', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'OpenFileMappingA', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'IsDBCSLeadByte', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProfileStringA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentDirectoryA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'FatalAppExitA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'StartPage', 'StartDocA', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateICA', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharBuffA', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'IsEqualGUID', 'CoTaskMemFree', 'StringFromCLSID', 'CoCreateGuid', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'OpenPrinterA', 'EnumPrintersA', 'DocumentPropertiesA', 'ClosePrinter', 'ShellExecuteExW', 'mciSendCommandA', 'mciGetErrorStringA'], ['LoadPerfCounterTextStringsA', 'LoadPerfCounterTextStringsW', 'UnloadPerfCounterTextStringsA', 'UnloadPerfCounterTextStringsW', 'CreateBindCtx', 'HENHMETAFILE_UserUnmarshal', 'OleQueryCreateFromData', 'StgIsStorageFile', 'StringFromIID', 'UtGetDvtd32Info', 'WSAGetServiceClassInfoA', 'WSAGetServiceClassNameByClassIdW', 'WSAStringToAddressA', 'getsockopt', 'CoInternetCombineUrl', 'URLOpenPullStreamA', 'MultinetGetConnectionPerformanceW', 'WNetGetProviderNameA', 'WNetGetUserW', 'CharNextA', 'DdeEnableCallback', 'EnumDisplayMonitors', 'GetMenuContextHelpId', 'GetTitleBarInfo', 'LoadMenuA', 'SetClassLongW', 'SetUserObjectInformationA', 'TranslateMessage', 'MgmDeInitialize', 'MgmRegisterMProtocol', 'MgmTakeInterfaceOwnership', 'RtmBlockSetRouteEnable', 'RtmCreateEnumerationHandle', 'RtmGetRouteAge', 'RtmIsRoute', 'RtmRegisterClient', 'GetAddressByNameW', 'rexec', 'CreateFileW', 'GetCommandLineW', 'GetFileSize', 'ReadFile', 'VirtualAlloc', 'CommandLineToArgvW'], ['ReadConsoleA', 'SetMailslotInfo', 'FreeEnvironmentStringsA', 'GetConsoleAliasesLengthA', 'CreateDirectoryExW', 'GlobalAlloc', 'LoadLibraryW', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'WriteConsoleW', 'GetBinaryTypeA', 'ReplaceFileW', 'LocalHandle', 'GetSystemDirectoryA', 'lstrlenW', 'GetStdHandle', 'GetCPInfoExW', 'SetFilePointer', 'BindIoCompletionCallback', 'GetProcAddress', 'AttachConsole', 'VirtualAlloc', 'MoveFileW', 'LoadLibraryA', 'CreateEventW', 'WriteProfileSectionW', 'SetConsoleWindowInfo', 'GetModuleHandleA', 'GetConsoleTitleW', 'SetCalendarInfoA', 'SetLastError', 'FindFirstChangeNotificationW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapReAlloc', 'HeapAlloc', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'WriteFile', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapSize', 'EnterCriticalSection', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetConsoleCP', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'MultiByteToWideChar', 'RtlUnwind', 'SetStdHandle', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'FlushFileBuffers', 'CreateFileA', 'CloseHandle', 'ClientToScreen'], ['GetModuleHandleA', 'CreateWindowExA', 'RegisterEventSourceW', '_CorExeMain', 'SHChangeNotifyRegister', 'DrawStatusTextW'], ['VirtualAlloc', 'GetModuleHandleW', 'SetErrorMode', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'lstrcpyA', 'lstrcmpA', 'WritePrivateProfileStringA', 'WaitForSingleObject', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MulDiv', 'MoveFileExA', 'LockResource', 'LoadResource', 'LoadLibraryA', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetPrivateProfileStringA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentProcessId', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FormatMessageA', 'FindResourceA', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsA', 'EnumCalendarInfoA', 'DeleteFileA', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'LoadIconW', 'GetStockObject', 'GetUserNameW', 'RegOpenKeyA', 'RegQueryValueExA'], ['OpenProcessToken', 'GetTokenInformation', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'EnumDisplayDevicesA', 'SetEndOfFile', 'WriteConsoleW', 'CloseHandle', 'SetLastError', 'WaitForSingleObject', 'GetCurrentProcess', 'ResumeThread', 'CreateProcessA', 'SetPriorityClass', 'GetThreadContext', 'SetThreadContext', 'VirtualAlloc', 'VirtualAllocEx', 'WriteProcessMemory', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'WinExec', 'lstrlenA', 'FreeConsole', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'HeapSize', 'RtlPcToFileHeader', 'RaiseException', 'RtlUnwindEx', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'WriteFile', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'CreateFileW', 'RtlUnwind', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'SetCurrentDirectoryA', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'NotifyWinEvent', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawStateA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExtFloodFill', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SuspendThread', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalMemoryStatus', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'CloseEventLog', 'GetErrorInfo', 'VariantInit', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'LresultFromObject', 'sndPlaySoundA'], ['GetModuleHandleA', 'ShowWindow', 'GetUserNameA', 'CreateStatusWindowA', 'rand', 'memset', 'exit', 'accept', '_configthreadlocale', '__setusermatherr', 'free', 'ShellAboutA', '??1_Lockit@std@@QAE@XZ', '_time64', 'fputc', '_lock_file'], ['GetVersionExA', 'GetTempPathA', 'GetModuleFileNameA', 'GetDiskFreeSpaceA', 'lstrlenA', 'GetDriveTypeA', 'GetCurrentProcess', 'WinExec', 'GlobalUnlock', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'CloseHandle', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'SetCurrentDirectoryA', 'MoveFileExA', 'FormatMessageA', 'lstrcatA', 'CopyFileA', 'SetFileTime', 'GetShortPathNameA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetSystemTime', 'GetTickCount', 'GetExitCodeProcess', 'CreateProcessA', 'GetFullPathNameA', 'MultiByteToWideChar', 'GlobalHandle', 'FindClose', 'FindFirstFileA', 'UnhandledExceptionFilter', 'GetACP', 'GetCPInfo', 'GetOEMCP', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'HeapReAlloc', 'VirtualAlloc', 'IsBadWritePtr', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetVersion', 'GetCommandLineA', 'GetEnvironmentVariableA', 'GetModuleHandleA', 'RaiseException', 'GetStartupInfoA', 'CreateDirectoryA', 'SetUnhandledExceptionFilter', 'RtlUnwind', 'HeapCompact', 'MoveFileA', 'TerminateProcess', 'ExitProcess', 'GetLastError', 'DeleteFileA', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'SetFileAttributesA', 'HeapAlloc', 'HeapFree', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStringTypeA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'IsBadReadPtr', 'IsBadCodePtr', 'IsDlgButtonChecked', 'SetTimer', 'CloseClipboard', 'GetWindowRect', 'GetDlgItem', 'KillTimer', 'CheckRadioButton', 'MessageBoxA', 'CreateDialogIndirectParamA', 'IsDialogMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'DestroyWindow', 'EnableWindow', 'SetFocus', 'GetClipboardData', 'ShowWindow', 'wsprintfA', 'OpenClipboard', 'IsClipboardFormatAvailable', 'GetDlgItemTextA', 'SendDlgItemMessageA', 'SetDlgItemTextA', 'PeekMessageA', 'SendMessageA', 'EndPaint', 'BeginPaint', 'GetQueueStatus', 'CheckDlgButton', 'SetWindowLongA', 'GetWindowLongA', 'RegisterWindowMessageA', 'SetWindowTextA', 'GetParent', 'GetDC', 'ReleaseDC', 'DrawTextA', 'FillRect', 'GetWindow', 'LoadCursorA', 'CreateWindowExA', 'LoadIconA', 'GetLastActivePopup', 'RegisterClassA', 'FindWindowA', 'AdjustWindowRectEx', 'BringWindowToTop', 'GetSystemMetrics', 'ExitWindowsEx', 'UpdateWindow', 'DialogBoxIndirectParamA', 'IsIconic', 'DefWindowProcA', 'PostQuitMessage', 'EndDialog', 'RedrawWindow', 'PostMessageA', 'ScreenToClient', 'GetClientRect', 'SetWindowPos', 'GetSysColor', 'OemToCharA', 'GetStockObject', 'DeleteObject', 'CreateFontIndirectA', 'GetObjectA', 'ExtTextOutA', 'SetBkColor', 'CreatePalette', 'GetSystemPaletteEntries', 'GetDeviceCaps', 'StretchDIBits', 'RealizePalette', 'SelectPalette', 'IntersectClipRect', 'CreateDIBPatternBrush', 'SetTextColor', 'SetBkMode', 'SelectObject', 'DeleteDC', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateSolidBrush', 'AddFontResourceA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegCreateKeyA', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegQueryValueA', 'SHGetPathFromIDListA', 'DragQueryFileA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'DragFinish', 'DragAcceptFiles', 'CoCreateInstance', 'OleInitialize', 'OleUninitialize', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA', 'VerFindFileA'], ['BufferedPaintRenderAnimation', 'GetThemeBitmap', 'DrawThemeTextEx', 'GetThemeDocumentationProperty', 'GetThemeSysString', 'SetWindowTheme', 'DrawThemeText', 'RasEnumEntriesA', 'RasSetCustomAuthDataW', 'RasGetCustomAuthDataW', 'RasGetAutodialEnableA', 'RasSetAutodialAddressA', 'RasValidateEntryNameA', 'RasSetEntryPropertiesW', 'RasGetEntryDialParamsW', 'RasGetErrorStringA', 'ExitProcess', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetProcessHeap', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'lstrcpyA', 'lstrcmpA', 'WriteProcessMemory', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFreeEx', 'VirtualAllocEx', 'VirtualAlloc', 'TerminateProcess', 'SuspendThread', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixelV', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RoundRect', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapDimensionEx', 'GetBitmapBits', 'GdiFlush', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CombineRgn', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WindowFromDC', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowRgn', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MoveWindow', 'MessageBoxIndirectA', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExA', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CopyRect', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'OleUninitialize', 'OleInitialize', 'CoUninitialize', 'CoInitialize', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder'], ['GetModuleHandleA', 'GetLocaleInfoA', 'OpenProcess', 'SetFileAttributesW', 'CreateToolhelp32Snapshot', 'Sleep', 'CopyFileA', 'GetLastError', 'Process32NextW', 'GetDiskFreeSpaceExW', 'GetCurrentThread', 'LoadLibraryA', 'lstrcatW', 'DeleteFileW', 'Process32FirstW', 'CloseHandle', 'GetSystemInfo', 'HeapAlloc', 'GetThreadContext', 'GetProcAddress', 'SetFilePointerEx', 'LocalFree', 'ReadProcessMemory', 'GetCurrentProcessId', 'GetProcessHeap', 'GlobalMemoryStatusEx', 'GetModuleHandleW', 'ReleaseMutex', 'GetConsoleWindow', 'lstrcpyW', 'CreateDirectoryA', 'GetSystemTime', 'OpenMutexW', 'GetTickCount', 'lstrcmpW', 'GetDriveTypeW', 'IsDebuggerPresent', 'GetComputerNameA', 'WriteConsoleW', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetVersionExW', 'GetFileAttributesW', 'CreateFileW', 'LocalAlloc', 'WaitForSingleObject', 'CreateMutexW', 'SetProcessShutdownParameters', 'GetModuleFileNameW', 'TerminateProcess', 'DeviceIoControl', 'WriteFile', 'lstrlenW', 'GetCurrentProcess', 'FindNextFileW', 'SetPriorityClass', 'HeapFree', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetFileSizeEx', 'FindFirstFileW', 'ReadFile', 'MultiByteToWideChar', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'CopyFileW', 'SetProcessPriorityBoost', 'FindFirstFileExW', 'FindClose', 'GetConsoleOutputCP', 'GetFileAttributesExW', 'CreateProcessW', 'GetExitCodeProcess', 'ReadConsoleInputW', 'SetConsoleMode', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'CreateEventW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'InitializeCriticalSectionEx', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetConsoleCP', 'MoveFileExW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleMode', 'ReadConsoleW', 'GetFileType', 'CompareStringW', 'LCMapStringW', 'DecodePointer', 'OpenSCManagerW', 'CryptGenKey', 'QueryServiceStatusEx', 'OpenServiceW', 'CryptImportKey', 'CryptDestroyKey', 'CryptAcquireContextW', 'CloseServiceHandle', 'CryptEncrypt', 'CryptGenRandom', 'CryptReleaseContext', 'GetUserNameA', 'ControlService', 'CryptExportKey', 'EnumDependentServicesW', 'CryptBinaryToStringA', 'CryptStringToBinaryA', 'GetIpNetTable', 'NetShareEnum', 'NetApiBufferFree', 'RmRegisterResources', 'RmEndSession', 'RmGetList', 'RmStartSession', 'ShellExecuteW', 'SHEmptyRecycleBinA', 'ShellExecuteA', 'SystemParametersInfoW', 'ExitWindowsEx', 'ShowWindow', 'MessageBoxW', 'CharUpperW', 'GetKeyboardLayoutList', 'gethostbyname', 'connect', 'socket', 'recv', 'WSAStartup', 'send', 'WSACleanup', 'htons', 'inet_ntoa', 'WSAGetLastError', 'closesocket'], ['GetModuleHandleA', 'BeginPaint', 'RegQueryValueW', 'InitMUILanguage', 'ShellAboutW', '_CorExeMain'], ['GetTextExtentPoint32A', 'GetICMProfileA', 'CreateFontIndirectA', 'CreateDIBSection', 'ExtTextOutW', 'GetGlyphOutlineW', 'BitBlt', 'TextOutA', 'GetGlyphOutlineA', 'DeleteObject', 'ExtTextOutA', 'CreateCompatibleDC', 'GetDeviceCaps', 'SelectObject', 'GetKerningPairsA', 'Rectangle', 'GetTextExtentPoint32W', 'GetStockObject', 'TextOutW', 'DeleteDC', 'SetBkMode', 'CreatePen', 'waveOutReset', 'waveInStop', 'PlaySoundA', 'SHGetPathFromIDListW', 'SHFileOperationW', 'Shell_NotifyIconW', 'DragQueryFileA', 'SHBrowseForFolderW', 'DragQueryFileW', 'ShellExecuteW', 'SHBrowseForFolderA', 'ShellExecuteExW', 'SHGetFileInfoW', 'SHGetPathFromIDListA', 'Shell_NotifyIconA', 'SHGetMalloc', 'SHGetSpecialFolderPathW', 'GetFileVersionInfoSizeW', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoW', 'RegCloseKey', 'DeregisterEventSource', 'RegisterEventSourceA', 'CryptAcquireContextA', 'RegSetValueExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegEnumKeyExW', 'CryptCreateHash', 'CheckTokenMembership', 'RegEnumValueW', 'CryptDeriveKey', 'ReportEventA', 'RegSetValueExW', 'RegCreateKeyExW', 'CryptReleaseContext', 'CryptDecrypt', 'RegEnumKeyExA', 'CryptEncrypt', 'PropertySheetA', 'PropertySheetW', 'InitCommonControlsEx', 'GetSaveFileNameA', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetOpenFileNameA', 'InternetOpenA', 'InternetReadFile', 'InternetWriteFile', 'InternetConnectA', 'InternetCloseHandle', 'HttpEndRequestA', 'HttpOpenRequestA', 'HttpAddRequestHeadersA', 'HttpQueryInfoA', 'InternetQueryOptionA', 'EnterCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'MoveFileA', 'WriteConsoleW', 'FindResourceA', 'GetTimeFormatA', 'LeaveCriticalSection', 'TzSpecificLocalTimeToSystemTime', 'ExitProcess', 'SetEvent', 'FreeLibrary', 'GetSystemInfo', 'GetLongPathNameA', 'CreateDirectoryA', 'MapViewOfFile', 'HeapSize', 'LockResource', 'RaiseException', 'GetFileAttributesW', 'InterlockedExchange', 'CreateToolhelp32Snapshot', 'GetSystemDirectoryA', 'CopyFileExW', 'GetFileAttributesA', 'GetConsoleMode', 'RemoveDirectoryW', 'FindFirstChangeNotificationA', 'CreateFileW', 'LoadLibraryA', 'FormatMessageA', 'GetCurrentProcess', 'GetTempPathA', 'FreeEnvironmentStringsW', 'FlushFileBuffers', 'HeapDestroy', 'FindFirstFileW', 'HeapReAlloc', 'GetModuleHandleA', 'FreeEnvironmentStringsA', 'GetFileAttributesExA', 'FindNextFileA', 'ResetEvent', 'HeapCreate', 'GetEnvironmentStringsW', 'VirtualFree', 'SystemTimeToTzSpecificLocalTime', 'ReadFile', 'InterlockedIncrement', 'Module32First', 'TlsSetValue', 'LCMapStringW', 'DebugBreak', 'DeleteCriticalSection', 'GetLocaleInfoA', 'SetErrorMode', 'CompareStringW', 'GetThreadPriority', 'CreateFileA', 'SetEnvironmentVariableA', 'CopyFileA', 'CreateDirectoryExW', 'GetCurrentProcessId', 'RtlUnwind', 'GetCPInfo', 'SetFilePointer', 'GetLongPathNameW', 'LoadResource', 'CreateThread', 'GetVersionExA', 'MoveFileExA', 'GlobalAlloc', 'GetLastError', 'SearchPathA', 'WriteFile', 'LoadLibraryExW', 'GetShortPathNameA', 'VirtualQuery', 'GetVersion', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'SetFileAttributesW', 'GlobalFree', 'TlsFree', 'FindClose', 'GetDriveTypeA', 'Sleep', 'GetSystemDefaultLCID', 'OpenEventA', 'GetStringTypeW', 'SetThreadPriority', 'FindFirstChangeNotificationW', 'GetStdHandle', 'DeleteFileA', 'CreateEventA', 'FindFirstFileExW', 'CloseHandle', 'GetACP', 'SizeofResource', 'SetEndOfFile', 'GetUserDefaultLCID', 'GetModuleHandleW', 'OpenMutexA', 'CopyFileExA', 'FindNextFileW', 'CompareStringA', 'DeviceIoControl', 'GetFileAttributesExW', 'UnmapViewOfFile', 'GetConsoleOutputCP', 'SetStdHandle', 'CopyFileW', 'QueryPerformanceFrequency', 'GetConsoleCP', 'GetTimeFormatW', 'WaitForMultipleObjects', 'CreateMutexA', 'GetFileSize', 'GetOEMCP', 'RemoveDirectoryA', 'WaitForSingleObject', 'SetLastError', 'GetCurrentThread', 'GetTempPathW', 'DeleteFileW', 'HeapFree', 'FindFirstFileExA', 'FindFirstFileA', 'CreateFileMappingA', 'HeapAlloc', 'LoadLibraryW', 'LoadLibraryExA', 'GetProcAddress', 'Module32Next', 'GetCurrentThreadId', 'OutputDebugStringA', 'InterlockedDecrement', 'MoveFileWithProgressA', 'QueryPerformanceCounter', 'InitializeCriticalSection', 'IsDebuggerPresent', 'CreateProcessW', 'GetProcessTimes', 'TlsAlloc', 'GetShortPathNameW', 'GetCommandLineA', 'SetWindowsHookExA', 'PeekMessageA', 'GetAsyncKeyState', 'RedrawWindow', 'MoveWindow', 'GetDesktopWindow', 'AppendMenuW', 'DefWindowProcW', 'InsertMenuItemA', 'CreateWindowExW', 'LoadCursorA', 'LoadImageA', 'ClientToScreen', 'SetWindowLongA', 'SetDlgItemTextA', 'AdjustWindowRectEx', 'IsWindow', 'FindWindowExA', 'PostMessageA', 'IsDialogMessageA', 'EndDialog', 'DispatchMessageA', 'GetMenu', 'ReleaseDC', 'MsgWaitForMultipleObjects', 'DialogBoxIndirectParamA', 'EndPaint', 'SetActiveWindow', 'GetClassNameA', 'AppendMenuA', 'PostQuitMessage', 'DestroyWindow', 'GetWindowLongW', 'GetClassInfoA', 'GetFocus', 'SetWindowLongW', 'GetWindowTextLengthA', 'IsIconic', 'UnhookWindowsHookEx', 'InsertMenuItemW', 'SetWindowTextW', 'MessageBeep', 'SendMessageA', 'GetTopWindow', 'GetWindow', 'SetDlgItemTextW', 'CreateWindowExA', 'ScreenToClient', 'FlashWindowEx', 'MessageBoxA', 'GetParent', 'SendMessageW', 'GetDC', 'SetCursor', 'GetClientRect', 'UnregisterClassA', 'GetWindowLongA', 'LoadIconA', 'SetCapture', 'EnableWindow', 'GetDlgItem', 'CallNextHookEx', 'RegisterClassW', 'GetMenuItemInfoA', 'GetWindowTextA', 'SetWindowPos', 'GetWindowTextW', 'DialogBoxParamW', 'CallWindowProcW', 'RegisterClassA', 'DefWindowProcA', 'CallWindowProcA', 'BeginPaint', 'SystemParametersInfoA', 'MessageBoxW', 'SetForegroundWindow', 'ReleaseCapture', 'GetCursor', 'SetWindowTextA', 'IsWindowVisible', 'SetFocus', 'GetWindowRect', 'GetActiveWindow', 'UnregisterClassW', 'EnumThreadWindows', 'ShowWindow'], ['GetModuleHandleA', 'ScrollDC', 'RegQueryValueA', 'SHGetDiskFreeSpaceA', '_CorExeMain', 'DSA_Create'], ['ReportEventA', 'SetBkMode', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetOpenEnumW', 'NetRemoteTOD', 'ShellExecuteW', 'GetDC', 'gethostbyname'], ['GetModuleHandleA', 'OffsetRect', 'RegisterEventSourceA', 'DrawStatusTextW', 'ShellAboutA', '_CorExeMain'], ['CreateMutexW', 'SetLocaleInfoA', 'EnumDateFormatsExW', 'VirtualQuery', 'SetEndOfFile', 'ClearCommError', 'DeleteVolumeMountPointA', 'EnumCalendarInfoW', 'GetLogicalDriveStringsW', 'SetCommBreak', 'LockFile', 'GetModuleHandleW', 'GetTickCount', 'GetConsoleAliasesA', 'EscapeCommFunction', 'ReadConsoleW', 'FormatMessageA', 'GetCompressedFileSizeW', 'TlsSetValue', 'GetVolumePathNameW', 'FindResourceExA', 'GetSystemWindowsDirectoryA', 'FindNextVolumeW', 'GetACP', 'ReleaseSemaphore', 'ReplaceFileA', 'GetDateFormatW', 'GetProfileIntA', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'GetLongPathNameA', 'BeginUpdateResourceW', 'CopyFileA', 'CreateMemoryResourceNotification', 'LoadLibraryA', 'CreateHardLinkW', 'BeginUpdateResourceA', 'OpenSemaphoreW', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'GetCurrentProcessId', 'CreateFileA', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'CloseHandle', 'SetFilePointer', 'FlushFileBuffers', 'GetStringTypeExA', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'RtlUnwind', 'RaiseException', 'HeapAlloc', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsFree', 'GetCurrentThreadId', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'InitializeCriticalSectionAndSpinCount', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'HeapSize', 'VirtualAlloc', 'HeapReAlloc', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'CharToOemBuffA', 'DdeCreateStringHandleA', 'LoadMenuA', 'CharUpperBuffA', 'LoadMenuW', 'GetSysColorBrush', 'DdeQueryStringA', 'SetCaretPos', 'GetClipboardOwner', 'InitializeAcl'], ['memcpy', 'LocaleNameToLCID', 'GetFileSize', 'AssignProcessToJobObject', 'TerminateJobObject', 'ClearCommBreak', 'GetModuleHandleA', 'GetProcessShutdownParameters', 'CreateTimerQueue', 'IsSystemResumeAutomatic', 'PdhCollectQueryData'], ['InterlockedIncrement', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'FindActCtxSectionStringA', 'GlobalAlloc', 'ReadConsoleInputA', 'GetStringTypeExW', 'LeaveCriticalSection', 'WriteConsoleW', 'GetMailslotInfo', 'RaiseException', 'LCMapStringA', 'EnumSystemLocalesA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetProcAddress', 'VirtualAlloc', 'SetStdHandle', 'EnterCriticalSection', 'GetAtomNameA', 'LoadLibraryA', 'SetCalendarInfoW', 'GetFileType', 'LoadLibraryExA', 'ContinueDebugEvent', 'UpdateResourceW', 'CreateMailslotA', 'GetStringTypeW', 'GetConsoleTitleW', 'GetFileTime', 'GetVersionExA', 'GetVolumeNameForVolumeMountPointW', 'LocalFree', 'SetFileAttributesW', 'CreateThread', 'GetLocaleInfoA', 'GetDefaultCommConfigW', 'SetThreadContext', 'GetComputerNameA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringW', 'GetCPInfo', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapSize', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'IsValidLocale', 'GetStringTypeA', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'GetLocaleInfoW', 'CreateFileA', 'ScreenToClient', 'GetCharWidthFloatW', 'ClearEventLogW'], ['RaiseException', 'GetLastError', 'IsBadReadPtr', 'VirtualProtect', 'GetProcAddress', 'GetModuleHandleA', 'MultiByteToWideChar', 'lstrlenA', 'WideCharToMultiByte', 'lstrlenW', 'GetModuleFileNameW', 'GetModuleFileNameA', 'LoadLibraryA', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'Module32Next', 'CloseHandle', 'Module32First', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'CreateFileA', 'CreateFileW', 'GetModuleHandleW', 'VirtualAlloc', 'VirtualFree', 'HeapFree', 'GetProcessHeap', 'FreeLibrary', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapCreate', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'ReadFile', 'HeapSize', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'FlushFileBuffers', 'SetFilePointer', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'RtlUnwind', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetLocaleInfoA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetEndOfFile'], ['GetProcessHeap', 'GetProcAddress', 'LoadLibraryA', 'lstrcmpA', 'MultiByteToWideChar', 'FindNextFileW', 'HeapAlloc', 'SetEndOfFile', 'CreateFileW', 'CreateFileA', 'SetStdHandle', 'FindFirstFileW', 'VirtualProtect', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'GetLastError', 'HeapFree', 'RaiseException', 'RtlUnwind', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'LCMapStringW', 'GetCPInfo', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'ReadFile', 'SetFilePointer', 'CloseHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetStringTypeW', 'GetLocaleInfoW', 'HeapReAlloc', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'LoadLibraryW', 'WriteConsoleW', 'ShellExecuteA', 'CryptStringToBinaryA'], ['CopyFileA', 'IsDBCSLeadByte', 'WriteFile', 'ReadFile', 'GetTempFileNameA', 'GetTempPathA', 'DeleteFileA', 'SetFileAttributesA', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'SetEndOfFile', 'SetFilePointer', 'GetComputerNameA', 'SetFileTime', 'GetTickCount', 'CreateProcessA', 'GetSystemDirectoryA', 'GetCurrentProcess', 'GetVersionExA', 'GetVersion', 'WaitForSingleObject', 'GetCommandLineA', 'ExpandEnvironmentStringsA', 'GetDriveTypeA', 'CreateThread', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCurrentProcessId', 'LocalAlloc', 'LocalFree', 'GetLastError', 'GetLocalTime', 'UnmapViewOfFile', 'FreeLibrary', 'CreateFileA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'Process32First', 'Process32Next', 'GetModuleFileNameA', 'CreateToolhelp32Snapshot', 'Module32First', 'OpenProcess', 'ReadProcessMemory', 'TerminateProcess', 'Sleep', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'GetFileTime', 'SetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'GetStringTypeW', 'GetStringTypeA', 'RtlUnwind', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'GetModuleHandleA', 'GetStartupInfoA', 'ExitProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'LCMapStringA', 'LCMapStringW', 'HeapFree', 'HeapAlloc', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'FlushFileBuffers', 'StartServiceCtrlDispatcherA', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegCreateKeyA', 'RegSetValueExA', 'RegQueryValueExA', 'StartServiceA', 'RegConnectRegistryA', 'OpenProcessToken', 'GetTokenInformation', 'AllocateAndInitializeSid', 'EqualSid', 'FreeSid', 'RegisterServiceCtrlHandlerA', 'OpenServiceA', 'SetServiceStatus', 'OpenSCManagerA', 'CreateServiceA', 'CloseServiceHandle', 'RegEnumValueA', 'RegDeleteValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegCloseKey', 'gethostbyname', 'closesocket', 'WSACleanup', 'send', 'htons', 'connect', 'WSAGetLastError', 'WSAStartup', 'socket', 'recv', 'WNetOpenEnumA', 'WNetEnumResourceA', 'WNetCloseEnum'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'ChooseColorA', 'mciSendCommandA', 'mciGetErrorStringA'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrlenW', 'lstrcpynW', 'lstrcpyW', 'lstrcpyA', 'lstrcmpiW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReleaseMutex', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'HeapFree', 'HeapAlloc', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetComputerNameA', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateMutexW', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueW', 'VerQueryValueA', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoW', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExW', 'CreateWindowExA', 'wvsprintfW', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'TrackMouseEvent', 'SystemParametersInfoW', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExW', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRectEmpty', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxW', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringW', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadImageW', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDlgItem', 'GetDlgCtrlID', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongW', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EndDialog', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextW', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DialogBoxParamW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcW', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemFree', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'GetActiveObject', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_LoadImageW', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'PropertySheetW', 'CreatePropertySheetPageW', 'InitCommonControls', 'GetVersionExW', 'QueryServiceStatusEx', 'CloseServiceHandle', 'OpenServiceW', 'OpenSCManagerW', 'WSACleanup', 'WSAStartup', 'gethostbyname', 'inet_ntoa', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHGetMalloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'RasSetCredentialsW', 'RasSetEntryDialParamsW', 'RasGetEntryPropertiesW', 'RasSetEntryPropertiesW', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit'], ['WNetEnumResourceW', 'WNetUseConnectionW', 'WNetOpenEnumW', 'WNetCloseEnum', 'ioctlsocket', 'getpeername', 'ntohl', 'select', 'WSAGetLastError', 'htons', 'recv', 'socket', 'closesocket', 'getsockopt', 'WSAAddressToStringW', 'htonl', 'connect', 'GetIpAddrTable', 'WinHttpReceiveResponse', 'WinHttpOpenRequest', 'WinHttpConnect', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpSendRequest', 'SystemTimeToFileTime', 'QueryPerformanceCounter', 'GetLocalTime', 'ReadProcessMemory', 'FindNextFileW', 'SetFileAttributesW', 'MoveFileW', 'GetFileSizeEx', 'GetFileAttributesW', 'SetFilePointerEx', 'SetEndOfFile', 'ExitProcess', 'SetFilePointer', 'WaitForSingleObject', 'GetComputerNameW', 'SetEvent', 'GetLogicalDrives', 'GetTickCount', 'Sleep', 'CopyFileW', 'ReadFile', 'CreateFileW', 'MultiByteToWideChar', 'CreateEventW', 'WaitForMultipleObjects', 'CloseHandle', 'CreateThread', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'EnterCriticalSection', 'ResetEvent', 'DeleteCriticalSection', 'AllocConsole', 'WriteFile', 'WideCharToMultiByte', 'WriteConsoleW', 'GetStdHandle', 'CreateMutexW', 'CreateProcessW', 'GetCurrentProcess', 'SetHandleInformation', 'OpenProcess', 'GetLocaleInfoW', 'FindClose', 'TerminateProcess', 'GetModuleFileNameW', 'FlushFileBuffers', 'OpenMutexW', 'GetLastError', 'GetProcAddress', 'Process32FirstW', 'GetExitCodeThread', 'CreatePipe', 'Process32NextW', 'GetModuleHandleA', 'CreateToolhelp32Snapshot', 'ReleaseMutex', 'GetVersion', 'DeleteFileW', 'GetCurrentProcessId', 'GetVolumeInformationW', 'ExpandEnvironmentStringsW', 'HeapAlloc', 'GetProcessHeap', 'HeapReAlloc', 'HeapFree', 'FindFirstFileW', 'GetCurrentThreadId', 'GetWindowThreadProcessId', 'GetShellWindow', 'FreeSid', 'LookupPrivilegeValueW', 'OpenProcessToken', 'GetTokenInformation', 'EqualSid', 'RegSetValueExW', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'LookupAccountSidW', 'AllocateAndInitializeSid', 'DuplicateTokenEx', 'RegQueryValueExW', 'ShellExecuteExW', 'CoGetObject', 'CoInitializeEx', 'CoUninitialize'], ['GetModuleHandleA', 'IsChild', 'GetUserNameW', 'CreateStatusWindowA', 'PathMakeUniqueName', '_CorExeMain'], ['GetModuleHandleA', 'CreateWindowExW', 'RegisterEventSourceA', '_CorExeMain', 'InitCommonControlsEx', 'SHChangeNotifyRegister'], ['ExitProcess', 'Sleep', 'CreateProcessW', 'CloseHandle', 'GetProcAddress', 'LoadLibraryA', 'socket', 'gethostbyname', 'accept', 'listen', 'bind', 'htons', 'WSAStartup', 'shutdown', 'closesocket', 'recv', 'send', 'connect', 'RasEnumDevicesW', 'RasSetEntryPropertiesW', 'RasGetEntryDialParamsW', 'RasDialW'], ['??1type_info@@UAE@XZ', 'wcstoul', '_vsnwprintf', '_CxxThrowException', '_except_handler3', '_onexit', '_lock', '_unlock', '_amsg_exit', '_initterm', '_XcptFilter', 'memcpy', 'memset', 'realloc', '_vsnprintf', 'wcsstr', '_snprintf', 'wcsncpy', 'malloc', '_snwprintf', 'swscanf', 'sprintf', '_wcsicmp', 'atoi', 'strchr', 'strstr', 'wcschr', 'strncpy', 'calloc', 'free', '_strlwr', '__dllonexit', 'memcmp', 'CryptUnprotectData', 'listen', 'accept', 'WSAEventSelect', 'htons', 'inet_addr', 'WSASocketA', 'getsockopt', 'WSAIoctl', 'gethostbyname', 'WSAStartup', 'WSACreateEvent', 'recv', 'WSAConnect', 'socket', 'WSAGetLastError', 'select', 'bind', 'send', 'shutdown', 'WSACloseEvent', 'inet_ntoa', 'closesocket', 'SetLastError', 'GetSystemDefaultUILanguage', 'CreateMutexW', 'GetModuleHandleW', 'VirtualAllocEx', 'VirtualProtectEx', 'VirtualFreeEx', 'TlsFree', 'GetLocaleInfoW', 'EnumUILanguagesW', 'GetUserDefaultUILanguage', 'GetNativeSystemInfo', 'GetSystemTime', 'TlsAlloc', 'TlsSetValue', 'TlsGetValue', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InterlockedCompareExchange', 'InterlockedExchange', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'HeapSize', 'GetCurrentProcess', 'VirtualFree', 'RtlZeroMemory', 'Sleep', 'WaitForSingleObject', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetLastError', 'ExitProcess', 'FindResourceA', 'FreeLibrary', 'LoadResource', 'GetModuleFileNameW', 'GetExitCodeThread', 'GetModuleFileNameA', 'CloseHandle', 'DeleteFileW', 'CreateThread', 'lstrlenA', 'OpenProcess', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'LocalFree', 'lstrcpyA', 'GetCurrentThread', 'PeekMessageW', 'wsprintfW', 'wsprintfA', 'GetSystemMetrics', 'OpenProcessToken', 'RegQueryValueExW', 'RegCreateKeyExA', 'RegOpenKeyExA', 'LookupAccountSidW', 'RegOpenKeyExW', 'ImpersonateLoggedOnUser', 'AllocateAndInitializeSid', 'RevertToSelf', 'FreeSid', 'RegOpenKeyA', 'RegEnumKeyExW', 'RegCloseKey', 'RegQueryValueExA', 'GetErrorInfo', 'StrStrIW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueA'], ['WriteConsoleOutputW', 'GetStringTypeExA', 'GetProcAddress', 'LoadLibraryW', 'OpenFileMappingW', 'GetModuleHandleW', 'GlobalAlloc', 'GetLocaleInfoW', 'CompareStringW', 'CompareStringA', 'RtlUnwind', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'GetLastError', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetStartupInfoW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetCurrentThread', 'GetModuleHandleA', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'FatalAppExitA', 'EnterCriticalSection', 'VirtualAlloc', 'CloseHandle', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetConsoleCtrlHandler', 'FreeLibrary', 'InterlockedExchange', 'LoadLibraryA', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'GetTimeZoneInformation', 'CreateFileA', 'SetEnvironmentVariableA', 'TransparentBlt'], ['GlobalHandle', 'GlobalReAlloc', 'GlobalUnlock', 'InitializeCriticalSection', 'ReadFile', 'ResetEvent', 'SetEndOfFile', 'SetEvent', 'SetFilePointer', 'SetLastError', 'SystemTimeToFileTime', 'WaitForSingleObject', 'TlsSetValue', 'RaiseException', 'WriteFile', 'ExitProcess', 'FindFirstFileA', 'GetCommandLineA', 'GetStartupInfoA', 'LoadLibraryExA', 'lstrcpynA', 'lstrlenA', 'MultiByteToWideChar', 'VirtualQuery', 'InterlockedIncrement', 'GetVersion', 'LocalAlloc', 'VirtualAlloc', 'EnterCriticalSection', 'DisableThreadLibraryCalls', 'UnhandledExceptionFilter', 'InterlockedExchange', 'GetModuleHandleA', 'GetWindowsDirectoryW', 'FindFirstFileW', 'FindNextFileW', 'GlobalAlloc', 'GetFullPathNameW', 'GetFileAttributesW', 'LoadLibraryW', 'FileTimeToSystemTime', 'GetDateFormatW', 'CloseHandle', 'LocalFree', 'TlsAlloc', 'TlsGetValue', 'TlsFree', 'GetModuleHandleW', 'GetLastError', 'InterlockedDecrement', 'HeapFree', 'Sleep', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetModuleFileNameA', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'GetModuleFileNameW', 'RtlUnwind', 'LCMapStringW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GetTimeZoneInformation', 'GetThreadLocale', 'GetStringTypeExA', 'GetLocaleInfoA', 'GetLocalTime', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'CreateFileA', 'CreateEventA', 'CompareStringW', 'FindClose', 'CompareStringA', 'GetSystemMetrics', 'CharNextA', 'LoadStringA', 'GetKeyboardType', 'CharNextW', 'CharToOemA', 'RegSetValueExW', 'OpenServiceW', 'OpenSCManagerW', 'RegQueryValueExA', 'RegDeleteValueW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'InitiateSystemShutdownExW', 'CloseServiceHandle', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'SysAllocStringLen', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SysFreeString', 'wcschr', 'towlower', 'towupper', 'iswalpha', 'wcsrchr', 'wprintf', 'memset', 'fputs', 'fputws', 'printf', 'SetupDiDestroyDeviceInfoList', 'SetupDiCallClassInstaller', 'SetupDiOpenDevRegKey', 'SetupScanFileQueueW', 'SetupOpenFileQueue', 'SetupDiSetSelectedDriverW', 'SetupDiGetDriverInstallParamsW', 'SetupDiOpenClassRegKeyExW', 'SetupDiEnumDeviceInfo', 'SetupDiGetDriverInfoDetailW', 'SetupDiCreateDeviceInfoList', 'SetupDiCreateDeviceInfoW', 'SetupDiBuildClassInfoListExW', 'SetupDiClassNameFromGuidExW', 'SetupCopyOEMInfW', 'SetupDiSetDeviceRegistryPropertyW', 'SetupDiSetClassInstallParamsW', 'SetupOpenInfFileW', 'SetupFindFirstLineW', 'SetupGetStringFieldW', 'SetupDiGetClassDescriptionExW', 'SetupDiGetDeviceInfoListDetailW', 'SetupDiOpenDeviceInfoW', 'SetupDiClassGuidsFromNameExW', 'SetupDiDestroyDriverInfoList', 'SetupDiSetDeviceInstallParamsW', 'SetupDiBuildDriverInfoList', 'SetupCloseInfFile', 'shutdown', 'setsockopt', 'send', 'getsockname', 'getpeername', 'ioctlsocket', 'closesocket', 'WSAStartup', 'WSACleanup', 'WSAGetLastError', 'gethostbyname'], ['GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'DisableThreadLibraryCalls', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetCurrentThreadId', 'WaitForSingleObject', 'ReleaseMutex', 'CloseHandle', 'CreateMutexA', 'GetLastError', 'GetSystemTimeAsFileTime'], ['GetAdaptersAddresses', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'HttpQueryInfoA', 'InternetOpenA', 'InternetOpenUrlA', 'HttpOpenRequestA', 'InternetCloseHandle', 'GetCommandLineA', 'GetOEMCP', 'GetModuleFileNameA', 'GetVolumeInformationA', 'Sleep', 'CopyFileA', 'CreateProcessA', 'AllocConsole', 'LocalFree', 'FormatMessageA', 'GetCurrentDirectoryW', 'CreateFileW', 'DeleteFileW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'GetFileInformationByHandle', 'GetFullPathNameW', 'SetEndOfFile', 'SetFilePointerEx', 'AreFileApisANSI', 'CloseHandle', 'GetLastError', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'GetCurrentThreadId', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'GetACP', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'HeapSize', 'WriteConsoleW', 'GetCommandLineW', 'SetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'InitializeSListHead', 'SetEvent', 'CreateThread', 'GetCurrentThread', 'GetThreadTimes', 'FreeLibrary', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'RaiseException', 'ExitThread', 'GetModuleHandleExW', 'GetDriveTypeW', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'ExitProcess', 'GetStdHandle', 'WriteFile', 'GetFileSizeEx', 'HeapAlloc', 'HeapFree', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapReAlloc', 'SetStdHandle', 'ReadFile', 'ReadConsoleW', 'GetTimeZoneInformation', 'IsValidCodePage', 'RegCloseKey', 'RegOpenKeyA', 'RegGetValueA', 'RegQueryValueExA', 'RegSetValueExA', 'RegOpenKeyExA'], ['GetStringTypeW', 'CompareStringW', 'WriteConsoleW', 'GetLocaleInfoW', 'IsValidLocale', 'GetDriveTypeW', 'SetEnvironmentVariableA', 'LCMapStringW', 'GetCurrentDirectoryW', 'GetTimeZoneInformation', 'IsValidCodePage', 'GetConsoleMode', 'GetConsoleCP', 'HeapCreate', 'IsProcessorFeaturePresent', 'GetStartupInfoW', 'SetHandleCount', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'SetStdHandle', 'ExitProcess', 'HeapQueryInformation', 'GetLastError', 'HeapSize', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'RaiseException', 'RtlUnwind', 'HeapSetInformation', 'GetCommandLineA', 'CreateFileW', 'FindFirstFileExA', 'GetDriveTypeA', 'GetFileInformationByHandle', 'QueryPerformanceCounter', 'HeapAlloc', 'CreateThread', 'ExitThread', 'GetSystemTimeAsFileTime', 'GetDateFormatA', 'GetTimeFormatA', 'DecodePointer', 'EncodePointer', 'HeapFree', 'FindResourceExW', 'GetUserDefaultLCID', 'VirtualProtect', 'SearchPathA', 'GetProfileIntA', 'InitializeCriticalSectionAndSpinCount', 'GetTempPathA', 'GetTempFileNameA', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'lstrcpyA', 'GetCurrentDirectoryA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetUserDefaultUILanguage', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'GetProcessHeap', 'GetLocaleInfoA', 'InterlockedExchange', 'GlobalFlags', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'CreateFileA', 'lstrcmpiA', 'FindResourceA', 'FreeResource', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryW', 'lstrcmpW', 'FileTimeToSystemTime', 'lstrcmpA', 'GlobalGetAtomNameA', 'InterlockedIncrement', 'GetModuleHandleW', 'CompareStringA', 'GetModuleHandleA', 'GetCurrentThreadId', 'ResumeThread', 'SetThreadPriority', 'CopyFileA', 'GlobalSize', 'lstrlenW', 'MultiByteToWideChar', 'MulDiv', 'lstrlenA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'WideCharToMultiByte', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedDecrement', 'GetModuleFileNameW', 'ActivateActCtx', 'ReleaseActCtx', 'DeactivateActCtx', 'TlsFree', 'GlobalFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalAlloc', 'GlobalHandle', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalLock', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'DeleteFileA', 'GetTickCount', 'WaitForMultipleObjects', 'GetFileType', 'LoadLibraryA', 'GetProcAddress', 'GetStdHandle', 'ReadFile', 'FreeLibrary', 'PeekNamedPipe', 'FormatMessageA', 'Sleep', 'ExpandEnvironmentStringsA', 'CloseHandle', 'WaitForSingleObject', 'GetVersionExA', 'SleepEx', 'DeleteCriticalSection', 'EnterCriticalSection', 'SetLastError', 'LeaveCriticalSection', 'InitializeCriticalSection', 'EnumSystemLocalesA', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'WaitMessage', 'PostThreadMessageA', 'IsMenu', 'MonitorFromPoint', 'UpdateLayeredWindow', 'UnionRect', 'MapVirtualKeyExA', 'IsCharLowerA', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'GetKeyNameTextA', 'LockWindowUpdate', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToAsciiEx', 'CopyAcceleratorTableA', 'DrawFrameControl', 'DrawEdge', 'DrawStateA', 'GetSystemMenu', 'LoadMenuW', 'SetClassLongA', 'DestroyAcceleratorTable', 'SetParent', 'SetWindowRgn', 'IsZoomed', 'WindowFromPoint', 'SetRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'LoadAcceleratorsA', 'InsertMenuItemA', 'BringWindowToTop', 'TranslateAcceleratorA', 'CreateDialogIndirectParamA', 'EndDialog', 'DrawIconEx', 'GetNextDlgGroupItem', 'LoadImageA', 'CopyImage', 'GetIconInfo', 'OffsetRect', 'GetNextDlgTabItem', 'MessageBeep', 'NotifyWinEvent', 'EnableScrollBar', 'HideCaret', 'DrawFocusRect', 'InvertRect', 'ReleaseCapture', 'GetAsyncKeyState', 'SetCapture', 'MapVirtualKeyA', 'CreatePopupMenu', 'GetMenuDefaultItem', 'RedrawWindow', 'LoadCursorW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'KillTimer', 'SetTimer', 'DeleteMenu', 'ShowOwnedPopups', 'SetCursor', 'IntersectRect', 'InvalidateRect', 'SetRectEmpty', 'IsIconic', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'CreateMenu', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'GetDesktopWindow', 'RealChildWindowFromPoint', 'ClientToScreen', 'CharUpperA', 'DestroyIcon', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckDlgButton', 'RegisterWindowMessageA', 'LoadIconW', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'SetFocus', 'GetForegroundWindow', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetClientRect', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetWindowRect', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'FrameRect', 'GetUpdateRect', 'RegisterClipboardFormatA', 'CopyIcon', 'CharUpperBuffA', 'GetDoubleClickTime', 'SubtractRect', 'PtInRect', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'GetWindow', 'GetWindowRgn', 'DestroyCursor', 'DrawIcon', 'MapDialogRect', 'GrayStringA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetWindowTextLengthA', 'GetWindowTextA', 'LoadCursorA', 'GetSystemMetrics', 'GetDC', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetWindowThreadProcessId', 'SendMessageA', 'GetParent', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxA', 'UnhookWindowsHookEx', 'IsRectEmpty', 'SetRectRgn', 'CombineRgn', 'PatBlt', 'DPtoLP', 'CreateDIBitmap', 'GetTextMetricsA', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'GetBkColor', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'CreateDIBSection', 'CreateRoundRectRgn', 'CreatePolygonRgn', 'GetTextColor', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'SetDIBColorTable', 'StretchBlt', 'SetPixel', 'Rectangle', 'OffsetRgn', 'GetRgnBox', 'CreateRectRgnIndirect', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetTextFaceA', 'TextOutA', 'RectVisible', 'PtVisible', 'EnumFontFamiliesExA', 'CreateCompatibleBitmap', 'Escape', 'CreateHatchBrush', 'CreateSolidBrush', 'CreatePen', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'GetDeviceCaps', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'ExtTextOutA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'DeleteObject', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'SelectObject', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegEnumKeyExA', 'CryptReleaseContext', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'CryptGetHashParam', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'SHGetFileInfoA', 'SHGetDesktopFolder', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'SHAppBarMessage', 'SHBrowseForFolderA', 'DragQueryFileA', 'DragFinish', 'ShellExecuteA', 'ImageList_GetIconSize', 'PathIsUNCA', 'PathFindFileNameA', 'PathFindExtensionA', 'PathStripToRootA', 'PathRemoveFileSpecW', 'recvfrom', 'sendto', 'select', '__WSAFDIsSet', 'inet_ntoa', 'listen', 'accept', 'getpeername', 'ntohs', 'getsockname', 'setsockopt', 'bind', 'WSASetLastError', 'getsockopt', 'WSAGetLastError', 'gethostname', 'connect', 'WSAStartup', 'htons', 'WSACleanup', 'send', 'gethostbyname', 'closesocket', 'socket', 'recv', 'getaddrinfo', 'freeaddrinfo', 'WSAIoctl', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'OleGetClipboard', 'CoInitializeEx', 'DoDragDrop', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'SysFreeString', 'SysAllocString', 'VariantInit', 'VarBstrFromDate', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SysAllocStringLen', 'VariantChangeType', 'VariantClear', 'SysStringLen', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GdipFree', 'GdipAlloc', 'GdipDeleteGraphics', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCreateFromHDC', 'GdipSetInterpolationMode', 'GdipDrawImageRectI', 'GdipCloneImage', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipBitmapLockBits', 'GdipBitmapUnlockBits', 'GdipGetImageGraphicsContext', 'GdipDrawImageI', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'LPtoDP', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetROP2', 'GetPolyFillMode', 'GetPixelFormat', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetMapMode', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetDCBrushColor', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'lstrcmpA', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FlushInstructionCache', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls'], ['GetForegroundWindow', 'GetCursorPos', 'MessageBoxA', 'CreateWindowExA', 'GetWindowRect', 'SetWindowPos', 'LoadBitmapA', 'CallWindowProcA', 'GetDlgItemTextA', 'PeekMessageA', 'CreateDialogParamA', 'SetWindowTextA', 'ShowWindow', 'BeginPaint', 'EndPaint', 'InternetOpenA', 'InternetOpenUrlA', 'InternetReadFile', 'InternetConnectA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetCloseHandle', 'IsUserAnAdmin', 'OpenProcessToken', 'AllocateAndInitializeSid', 'GetTokenInformation', 'EqualSid', 'GetUserNameA', 'RegOpenKeyA', 'RegDeleteValueA', 'RegCloseKey', 'FreeSid', 'strcat', 'strcpy', 'sprintf', 'strlen', 'fopen', 'fseek', 'ftell', 'fread', 'fwrite', 'fclose', 'memset', 'time', 'gmtime', 'memcpy', 'free', 'malloc', 'GetTickCount', 'Sleep', 'VirtualProtect', 'ExitProcess', 'ExpandEnvironmentStringsA', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'FindFirstFileA', 'GetSystemWow64DirectoryA', 'GetVersionExA', 'GetCurrentProcessId', 'OpenProcess', 'MultiByteToWideChar', 'WideCharToMultiByte', 'RtlZeroMemory', 'CreatePipe', 'GetStartupInfoA', 'CreateProcessA', 'PeekNamedPipe', 'ReadFile', 'CreateFileA', 'SetFilePointer', 'GetFileSize', 'CloseHandle', 'GetVolumeInformationA', 'GetComputerNameA', 'GetModuleHandleA', 'GetProcAddress'], ['LoadLibraryA', 'GetProcAddress', 'GetCommandLineA', 'HeapSetInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'GetLastError', 'InterlockedDecrement', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapFree', 'HeapAlloc', 'RtlUnwind', 'LoadLibraryW', 'Sleep', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'HeapReAlloc', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'IsProcessorFeaturePresent', 'RaiseException'], ['GetCurrentProcess', 'LoadLibraryA', 'CloseHandle', 'GetProcAddress', 'ReadFile', 'WriteFile', 'GetCommandLineA', 'GetLastError', 'SetEndOfFile', 'WriteConsoleW', 'HeapReAlloc', 'HeapSize', 'CreateFileW', 'ReadConsoleW', 'FlushFileBuffers', 'GetStringTypeW', 'SetStdHandle', 'GetProcessHeap', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'DecodePointer', 'GetDesktopWindow', 'ShellExecuteA', 'PathFileExistsW', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'HttpOpenRequestA', 'InternetOpenA', 'InternetReadFile'], ['CloseHandle', 'ConnectNamedPipe', 'CreateFileA', 'CreateNamedPipeA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'QueryPerformanceCounter', 'ReadFile', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'WriteFile', '__getmainargs', '__initenv', '__lconv_init', '__p__acmdln', '__p__fmode', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_initterm', '_iob', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcpy', 'signal', 'sprintf', 'strlen', 'strncmp', 'vfprintf'], ['FormatMessageW', 'GetAtomNameW', 'LocalHandle', 'ReadFile', 'CreateFileW', 'lstrcatA', 'lstrlenW', 'IsBadStringPtrA', 'WritePrivateProfileStringW', 'GetLastError', 'GetProcAddress', 'SizeofResource', 'BuildCommDCBW', 'LoadLibraryA', 'WriteConsoleA', 'RegisterWaitForSingleObjectEx', 'GlobalWire', 'SetConsoleTitleW', 'DebugBreakProcess', 'OpenFileMappingW', 'SetProcessShutdownParameters', 'GetCurrentProcessId', 'EnumSystemLocalesW', 'GetProcessTimes', 'GetDriveTypeA', 'BackupSeek', 'GetSystemDefaultLCID', 'GetCurrentProcess', 'FindResourceW', 'MapViewOfFile', 'CreateTimerQueue', 'HeapReAlloc', 'GetCommandLineW', 'GetCommandLineA', 'GetStartupInfoA', 'RaiseException', 'RtlUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'VirtualAlloc', 'GetModuleHandleA', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'CreateFileA', 'CloseHandle', 'FlushFileBuffers', 'FreeSid', 'NotifyChangeEventLog', 'CopySid', 'SetServiceObjectSecurity', 'AccessCheckAndAuditAlarmW'], ['FindAtomA', 'lstrlenA', 'ExitThread', 'LocalAlloc', 'GetProcAddress', 'GetModuleHandleW', 'GlobalMemoryStatus', 'GetSystemTimes', 'GetMailslotInfo', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'UpdateWindow', 'FindWindowW', 'ShowWindow'], ['GetFileType', 'ExitProcess', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'Sleep', 'GetTimeZoneInformation', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'SetStdHandle', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'SizeofResource', 'GetStartupInfoA', 'GetProcessHeap', 'GetCommandLineA', 'VirtualAlloc', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'RaiseException', 'GetDateFormatA', 'GetTimeFormatA', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'SetErrorMode', 'WritePrivateProfileStringA', 'GetFileTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetProfileIntA', 'GetTickCount', 'CloseHandle', 'GetCurrentProcessId', 'InterlockedDecrement', 'GetModuleFileNameW', 'lstrcmpA', 'GlobalFree', 'CopyFileA', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'GetStringTypeExA', 'lstrlenA', 'lstrcmpiA', 'CompareStringW', 'CompareStringA', 'lstrlenW', 'GetVersion', 'MultiByteToWideChar', 'InterlockedExchange', 'MulDiv', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalReAlloc', 'GetLastError', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'FreeEnvironmentStringsW', 'CopyAcceleratorTableA', 'CreateMenu', 'PostThreadMessageA', 'GetTabbedTextExtentA', 'GetDCEx', 'LockWindowUpdate', 'RegisterClipboardFormatA', 'UnregisterClassA', 'GetSysColorBrush', 'DestroyCursor', 'GetMenuItemInfoA', 'ShowOwnedPopups', 'PostQuitMessage', 'GetMessageA', 'ValidateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetWindowThreadProcessId', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GetMenuState', 'GetMenuStringA', 'InsertMenuA', 'RemoveMenu', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'GetDlgCtrlID', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'IsIconic', 'GetWindowPlacement', 'GetWindow', 'WindowFromPoint', 'IsWindow', 'GetKeyState', 'GetSysColor', 'PtInRect', 'SetRect', 'InflateRect', 'OffsetRect', 'IsWindowVisible', 'ClientToScreen', 'IsRectEmpty', 'CopyRect', 'CharUpperA', 'GetSystemMetrics', 'EnumChildWindows', 'LoadIconA', 'GetWindowRect', 'GetSystemMenu', 'AppendMenuA', 'TranslateMessage', 'DispatchMessageA', 'SetWindowRgn', 'DrawIcon', 'FindWindowA', 'DestroyIcon', 'SetParent', 'RemovePropA', 'IntersectRect', 'FillRect', 'InvertRect', 'DrawEdge', 'SendMessageA', 'PostMessageA', 'GetClientRect', 'ScreenToClient', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'SetTimer', 'KillTimer', 'GetCapture', 'SetCapture', 'GetFocus', 'GetParent', 'LoadCursorA', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'DefWindowProcA', 'GetClassInfoA', 'SetCursor', 'IsClipboardFormatAvailable', 'GetCursorPos', 'ClipCursor', 'ReleaseCapture', 'EnableWindow', 'SystemParametersInfoA', 'IsDialogMessageW', 'IsDialogMessageA', 'GetWindowExtEx', 'GetPixel', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'DeleteDC', 'CreatePatternBrush', 'CreateBitmap', 'GetStockObject', 'GetViewportExtEx', 'CreateRectRgnIndirect', 'PatBlt', 'DPtoLP', 'SetRectRgn', 'CombineRgn', 'GetViewportOrgEx', 'GetCharWidthA', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'CreateRectRgn', 'SelectClipRgn', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'CreateSolidBrush', 'CreatePen', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateDCA', 'CopyMetaFileA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'DeleteObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetCurrentObject', 'EndDoc', 'AbortDoc', 'EndPage', 'StartPage', 'StartDocA', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'BitBlt', 'Rectangle', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetObjectA', 'CreateFontA', 'CreateFontIndirectA', 'GetFileTitleA', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'RegCreateKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyA', 'RegSetValueA', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'DragQueryFileA', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'PathFindFileNameA', 'PathFindExtensionA', 'PathStripToRootA', 'PathIsUNCA', 'CreateStreamOnHGlobal', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'DoDragDrop', 'OleSetClipboard', 'OleGetClipboard', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'VirtualProtect', 'GetCurrentProcess', 'GetProcessId', 'InitCommonControls', 'CheckDlgButton', 'GetGUIThreadInfo', 'CheckMenuRadioItem', 'GetCursorPos', 'CheckRadioButton', 'CheckMenuItem', 'PrintDlgW', 'DllCanUnloadNow', 'SafeArrayUnlock'], ['GetModuleHandleA', 'GetProcAddress', 'GetDC', 'BitBlt', 'FreeSid', 'SHChangeNotify', 'VerQueryValueW', 'CM_Get_Parent', 'StrChrW'], ['AllocConsole', 'GetDefaultCommConfigW', 'InterlockedIncrement', 'ReadConsoleA', 'GetEnvironmentStringsW', 'GetComputerNameW', 'GetConsoleAliasesLengthA', 'GetConsoleTitleA', 'SetFileTime', 'GetLocaleInfoW', 'FreeConsole', 'ReadProcessMemory', 'GetVersionExW', 'GetConsoleAliasW', 'WriteConsoleW', 'CreateActCtxA', 'GetTempPathW', 'LCMapStringA', 'VerifyVersionInfoW', 'GetStdHandle', 'GetCPInfoExW', 'GetProcAddress', 'GetLongPathNameA', 'VirtualAlloc', 'HeapSize', 'BeginUpdateResourceW', 'GetStringTypeA', 'WriteProfileSectionA', 'GetFirmwareEnvironmentVariableW', 'EnterCriticalSection', 'SetFileAttributesA', 'FindClose', 'GetAtomNameA', 'LoadLibraryA', 'LocalAlloc', 'DnsHostnameToComputerNameA', 'MoveFileA', 'BeginUpdateResourceA', 'GlobalGetAtomNameW', 'SetConsoleWindowInfo', 'GetModuleFileNameA', 'SetConsoleTitleW', 'LoadLibraryExA', 'GetConsoleTitleW', 'GetFileTime', 'PeekConsoleInputA', 'SetCalendarInfoA', 'GetFileInformationByHandle', 'DebugBreak', 'ReadConsoleOutputCharacterW', 'LocalFree', 'EnumSystemLocalesW', 'CreateThread', 'GetVolumeNameForVolumeMountPointA', 'GetLocaleInfoA', 'GetSystemDefaultLangID', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'DeleteCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'VirtualFree', 'HeapReAlloc', 'HeapCreate', 'GetModuleHandleW', 'Sleep', 'ExitProcess', 'WriteFile', 'SetHandleCount', 'GetFileType', 'GetLastError', 'SetFilePointer', 'CloseHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeW', 'WriteConsoleA', 'GetConsoleOutputCP', 'CreateFileA', 'GetCharWidthFloatW', 'WinHttpSetDefaultProxyConfiguration'], ['LocalFree', 'LocalAlloc', 'GetLastError', 'QueryDosDeviceA', 'GetLogicalDriveStringsA', 'OpenProcess', 'WideCharToMultiByte', 'FlushFileBuffers', 'GetFileSizeEx', 'GetCurrentProcessId', 'Sleep', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetComputerNameW', 'CloseHandle', 'GetVersionExW', 'GetExitCodeThread', 'GetTickCount', 'SetErrorMode', 'GetProcAddress', 'LoadLibraryA', 'ReadFile', 'CreateFileW', 'GetFileAttributesW', 'GetFileSize', 'WriteFile', 'DeleteFileW', 'MoveFileW', 'ProcessIdToSessionId', 'CompareStringW', 'CompareStringA', 'GetSystemInfo', 'GetModuleHandleA', 'TerminateThread', 'GetCurrentProcess', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'SetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'HeapAlloc', 'SetFilePointer', 'SetEnvironmentVariableA', 'HeapFree', 'VirtualFree', 'RtlUnwind', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCommandLineA', 'GetVersion', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'TerminateProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'HeapDestroy', 'HeapCreate', 'GetSystemMetrics', 'GetTokenInformation', 'LookupAccountSidA', 'OpenProcessToken', 'setsockopt', 'shutdown', 'recv', 'send', 'WSAGetLastError', 'ioctlsocket', 'select', '__WSAFDIsSet', 'closesocket', 'WSAStartup', 'socket', 'htons', 'bind', 'listen', 'inet_addr', 'connect', 'GetTcpTable', 'VerQueryValueW', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA'], ['InterlockedIncrement', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteFileW', 'WriteFile', 'SetFilePointer', 'GetLastError', 'CreateFileW', 'GetSystemInfo', 'GetComputerNameW', 'InitializeCriticalSection', 'ReadFile', 'WaitForSingleObject', 'CreateProcessW', 'GetProcAddress', 'GetModuleHandleW', 'InterlockedDecrement', 'GetTickCount', 'GetFileAttributesW', 'CreateDirectoryW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'GetSystemTime', 'FileTimeToSystemTime', 'GetFileSize', 'MoveFileW', 'FlushFileBuffers', 'GetFileSizeEx', 'CompareStringW', 'CompareStringA', 'LocalAlloc', 'LocalFree', 'Sleep', 'CloseHandle', 'GetVersionExW', 'CreateThread', 'LCMapStringW', 'LCMapStringA', 'SetStdHandle', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'RtlUnwind', 'SetEnvironmentVariableA', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'GetTimeZoneInformation', 'GetLocalTime', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetCommandLineA', 'GetVersion', 'HeapFree', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'HeapReAlloc', 'HeapAlloc', 'HeapSize', 'DeleteCriticalSection', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'TlsFree', 'SetLastError', 'TlsGetValue', 'GetModuleHandleA', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'GetSystemMetrics', 'RegQueryValueExW', 'RegCloseKey', 'RegisterServiceCtrlHandlerW', 'SetServiceStatus', 'RegOpenKeyExW', 'SystemTimeToVariantTime', 'recv', 'send', 'WSAGetLastError', 'ioctlsocket', 'connect', 'socket', 'setsockopt', 'shutdown', 'closesocket', 'listen', 'WSAStartup', 'WSACleanup', 'select', '__WSAFDIsSet', 'accept', 'htons', 'bind', 'GetAdaptersInfo'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'memcpy'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetFileAttributesA', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetDriveTypeA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA'], ['Sleep', 'WaitForSingleObject', 'CreateThread', 'lstrlenW', 'VirtualProtect', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'GetLastError', 'CreateMutexW', 'GetConsoleWindow', 'GetModuleHandleA', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetModuleHandleW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SetFilePointer', 'CloseHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'CreateFileA', 'ShowWindow'], ['GetCurrentProcessId', 'FindAtomA', 'HeapCreate', 'GetStdHandle', 'GetCommandLineA', 'GetModuleFileNameA', 'DeleteAtom', 'IsBadCodePtr', 'GetEnvironmentVariableA', 'GetFileAttributesA', 'CreateMailslotW', 'HeapDestroy', 'DeleteFileA', 'GetModuleHandleA', 'CloseHandle', 'GetProcessTimes', 'GetPriorityClass', 'SuspendThread', 'GetStartupInfoA', 'ReadFile', 'DrawTextW', 'GetKeyState', 'DispatchMessageA', 'GetSysColor', 'GetClassInfoA', 'DestroyMenu', 'GetWindowLongA', 'SetFocus', 'IsZoomed', 'GetClientRect', 'CallWindowProcW', 'GetWindowInfo', 'DispatchMessageA', 'DllCanUnloadNow', 'DllCanUnloadNow', 'DllCanUnloadNow', 'DllCanUnloadNow', 'DestroyMenu'], ['GetModuleHandleW', 'GetLastError', 'FindActCtxSectionStringW', 'SetVolumeMountPointW', 'VirtualProtect', 'LocalAlloc', 'FindAtomW', 'LoadLibraryW', 'CreateIoCompletionPort', 'DeleteAtom', 'GlobalDeleteAtom', 'GetCPInfoExA', 'lstrlenW', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapFree', 'GetCommandLineA', 'GetStartupInfoA', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'CloseHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'GetProcAddress', 'GetModuleHandleA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetFilePointer', 'InitializeCriticalSectionAndSpinCount', 'CreateFileA', 'LoadLibraryA', 'GetLocaleInfoW', 'SetEndOfFile', 'GetProcessHeap', 'ReadFile', 'CoGetCurrentProcess'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'lstrcmpiA', 'LoadLibraryA', 'LocalFree', 'LocalAlloc', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'IsValidLocale', 'GetSystemDefaultUILanguage', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExW', 'WindowFromPoint', 'WindowFromDC', 'WaitMessage', 'UpdateWindow', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MoveWindow', 'MessageBoxIndirectW', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetWindowRgn', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemRect', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameW', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIconIndirect', 'CreateIcon', 'CreateAcceleratorTableW', 'CopyRect', 'CopyImage', 'CopyIcon', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CharUpperBuffW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcW', 'CallNextHookEx', 'BeginPaint', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'AlphaBlend', 'UnrealizeObject', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixelV', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SaveDC', 'RoundRect', 'RestoreDC', 'ResizePalette', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'Polygon', 'PolyBezierTo', 'PolyBezier', 'PlayEnhMetaFile', 'Pie', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectW', 'GetNearestPaletteIndex', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapDimensionEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'Chord', 'BitBlt', 'Arc', 'AbortDoc', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'lstrcpyW', 'lstrcmpW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFreeEx', 'VirtualFree', 'VirtualAllocEx', 'VirtualAlloc', 'TryEnterCriticalSection', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'IsDebuggerPresent', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryW', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileAttributesW', 'GetExitCodeThread', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageW', 'FindResourceW', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeviceIoControl', 'DeleteCriticalSection', 'CreateThread', 'CreateFileW', 'CreateEventW', 'CreateDirectoryW', 'CompareStringW', 'CloseHandle', 'RegUnLoadKeyW', 'RegSetValueExW', 'RegSaveKeyW', 'RegRestoreKeyW', 'RegReplaceKeyW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegOpenKeyExW', 'RegLoadKeyW', 'RegFlushKey', 'RegEnumValueW', 'RegEnumKeyExW', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegConnectRegistryW', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_GetImageInfo', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_LoadImageW', 'ImageList_GetIcon', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_SetOverlayImage', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'SHGetFileInfoW', 'ShellExecuteExW', 'ExtractIconW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'GetDefaultPrinterW'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'MessageBoxW', 'ntohl'], ['WriteFile', 'UnmapViewOfFile', 'GetWindowsDirectoryA', 'GetModuleHandleA', 'CopyFileA', 'GetProcAddress', 'ExitProcess', 'GetFileSize', 'GetModuleFileNameA', 'LocalAlloc', 'CreateFileMappingA', 'GetVersionExA', 'GetSystemDirectoryA', 'CreateFileA', 'CloseHandle', 'LocalFree', 'MapViewOfFile', 'ReadFile', 'RegSetValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'ReleaseDC', 'RegisterClassA', 'PostQuitMessage', 'PeekMessageA', 'GetDC', 'DispatchMessageA', 'DefWindowProcA', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'TranslateMessage', 'SetPixelV'], ['FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'CloseHandle', 'WriteConsoleW', 'ExitProcess', 'CreateThread', 'Sleep', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'DecodePointer', 'GetSystemMetrics', 'DrawIcon', 'GetWindowRect', 'GetDesktopWindow', 'MessageBoxW', 'SetProcessDPIAware', 'LoadIconW', 'GetDC', 'CreateEllipticRgn', 'BitBlt', 'SelectObject', 'PatBlt', 'StretchBlt', 'PlgBlt', 'CreateRectRgn', 'CreatePen', 'Rectangle', 'SelectClipRgn', 'Ellipse', 'CreateSolidBrush'], ['AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegSetValueExA', 'AddAtomA', 'CloseHandle', 'CopyFileA', 'CreateEventA', 'CreateFileA', 'CreateMutexA', 'CreateSemaphoreA', 'CreateToolhelp32Snapshot', 'DefineDosDeviceA', 'DeleteCriticalSection', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemDirectoryA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'OpenProcess', 'Process32First', 'Process32Next', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WinExec', 'WriteFile', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strchr', 'strcmp', 'strcoll', 'strcpy', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'system', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm', 'GetForegroundWindow', 'MessageBoxA', 'ShowWindow'], ['LoadLibraryA', 'GetModuleHandleA', 'GetTickCount', 'GetStdHandle', 'GetProcAddress', 'Sleep', 'RaiseException', 'CreateFileW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'WriteFile', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'HeapFree', 'HeapAlloc', 'CloseHandle', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'WriteConsoleW', 'DecodePointer', 'VirtualProtect', 'SystemFunction036', 'AbortSystemShutdownW', 'VarNeg'], ['FlushFileBuffers', 'SetStdHandle', 'SetEnvironmentVariableA', 'CompareStringW', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'CompareStringA', 'Sleep', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'GetProcAddress', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'RtlUnwind', 'GetLastError', 'SetConsoleCtrlHandler', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RaiseException', 'MultiByteToWideChar', 'CloseHandle', 'MessageBoxA', 'LoadIconA', 'ReleaseDC', 'GetDC', 'GetSystemMetrics', 'RedrawWindow', 'LoadIconW', 'DrawIcon', 'InvalidateRect', 'DeleteObject'], ['OutputDebugStringA', 'lstrcpynW', 'UnmapViewOfFile', 'MultiByteToWideChar', 'MapViewOfFile', 'CloseHandle', 'CreateFileMappingW', 'GetFileSize', 'CreateFileW', 'lstrlenW', 'GetCommandLineW', 'ExitProcess', 'Sleep', 'DeleteFileW', 'SetFileAttributesW', 'GetFileAttributesW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetTempPathW', 'GetModuleHandleW', 'GetLastError', 'GetModuleFileNameW', 'GetTickCount', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'ReadFile', 'WriteFile', 'SetFileTime', 'SetFilePointer', 'MessageBoxA', 'wvsprintfA', 'wsprintfW', 'PostMessageW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW'], ['GetLocaleInfoW', 'SetEndOfFile', 'CreateFileA', 'LoadLibraryA', 'GetOEMCP', 'GetACP', 'ReadFile', 'FindResourceA', 'IsBadReadPtr', 'SetStdHandle', 'GetStringTypeW', 'GetStringTypeA', 'GetTimeZoneInformation', 'GetProcAddress', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'LoadResource', 'SizeofResource', 'GetTickCount', 'GetModuleFileNameA', 'IsBadCodePtr', 'GetLastError', 'IsValidCodePage', 'IsValidLocale', 'IsBadWritePtr', 'EnterCriticalSection', 'Sleep', 'InitializeCriticalSection', 'InterlockedExchange', 'DeleteCriticalSection', 'LeaveCriticalSection', 'InterlockedDecrement', 'InterlockedIncrement', 'WideCharToMultiByte', 'MultiByteToWideChar', 'CreateThread', 'GetCurrentThreadId', 'TlsSetValue', 'TlsGetValue', 'ExitThread', 'RtlUnwind', 'GetFileAttributesA', 'RaiseException', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'CompareStringA', 'CompareStringW', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'TlsAlloc', 'SetLastError', 'UnhandledExceptionFilter', 'CloseHandle', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'SetUnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'SetEnvironmentVariableA', 'GetAsyncKeyState', 'LoadImageA', 'GetDC', 'SetCursorPos', 'DefWindowProcA', 'LoadIconA', 'LoadCursorA', 'MessageBoxA', 'GetSystemMetrics', 'CreateWindowExA', 'SetWindowPos', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'RegisterClassExA', 'SelectObject', 'BitBlt', 'DeleteObject', 'DeleteDC', 'CreateCompatibleDC', 'ShellExecuteA', 'SHGetSpecialFolderPathA'], ['BitBlt', 'SetPixel', 'StretchBlt', 'AddAtomA', 'Beep', 'EnumResourceNamesA', 'ExitProcess', 'FindAtomA', 'GetAtomNameA', 'GetCommandLineA', 'GetModuleHandleA', 'GetStartupInfoA', 'LoadLibraryA', 'LocalAlloc', 'SetUnhandledExceptionFilter', 'Sleep', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_assert', '_beginthreadex', '_cexit', '_iob', '_onexit', '_setmode', 'abort', 'atexit', 'free', 'malloc', 'memset', 'rand', 'signal', 'sin', 'system', 'DrawIcon', 'FindWindowA', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetForegroundWindow', 'GetSystemMetrics', 'GetWindowDC', 'GetWindowRect', 'LoadIconA', 'MessageBoxA', 'ShowWindow'], ['GetModuleHandleA', 'LoadLibraryA', 'AllocConsole', 'CloseHandle', 'HeapCreate', 'HeapDestroy', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'Sleep', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'OpenThread', 'SuspendThread', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'FlushInstructionCache', 'VirtualProtect', 'GetModuleHandleW', 'GetProcAddress', 'CreateToolhelp32Snapshot', 'Thread32First', 'Thread32Next', 'GetSystemInfo', 'VirtualAlloc', 'VirtualFree', 'VirtualQuery', 'RaiseException', 'MultiByteToWideChar', 'IsDebuggerPresent', 'FreeLibrary', 'WideCharToMultiByte', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetLastError', 'GetProcessHeap', '?_Xlength_error@std@@YAXPEBD@Z', '__std_type_info_destroy_list', '_CxxThrowException', '__C_specific_handler_noexcept', 'memset', 'memcpy', '__std_exception_copy', '__std_exception_destroy', '__vcrt_GetModuleFileNameW', '__C_specific_handler', '__vcrt_LoadLibraryExW', 'memmove', '_execute_onexit_table', '_initialize_onexit_table', '_initialize_narrow_environment', '_configure_narrow_argv', '_seh_filter_dll', '_cexit', '_invalid_parameter_noinfo_noreturn', '_initterm_e', '_initterm', 'malloc', 'free', '_callnewh', 'strcat_s', 'strcpy_s'], ['GetObjectA', 'GetTextMetricsA', 'SelectObject', 'GetStockObject', 'CreateFontIndirectA', 'DispatchMessageA', 'GetWindowLongA', 'GetKeyState', 'PostMessageA', 'CallWindowProcA', 'GetDC', 'ReleaseDC', 'GetSystemMetrics', 'SetWindowPos', 'GetClientRect', 'SendMessageA', 'SetWindowLongA', 'SetFocus', 'SetWindowTextA', 'PostQuitMessage', 'DefWindowProcA', 'LoadIconA', 'LoadCursorA', 'LoadImageA', 'RegisterClassExA', 'CreateWindowExA', 'ShowWindow', 'UpdateWindow', 'GetMessageA', 'TranslateMessage', 'TerminateProcess', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'CloseHandle', 'FlushFileBuffers', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'SetStdHandle', 'LoadLibraryA', 'GetProcAddress', 'HeapReAlloc', 'VirtualAlloc', 'HeapAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'SetFilePointer', 'GetLastError', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'GetEnvironmentStringsW', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'WriteFile', 'GetStdHandle', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'HeapDestroy', 'SetHandleCount', 'GetFileType', 'HeapFree', 'HeapCreate', 'VirtualFree', 'RtlUnwind'], ['FreeLibrary', 'GetModuleHandleA', 'RtlUnwind', 'VirtualFree', 'lstrcmpiA', 'lstrlenA', '__GetMainArgs', '_sleep', 'exit', 'raise', 'signal'], ['GetACP', 'GetCPInfo', 'GetOEMCP', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'MultiByteToWideChar', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'SetFilePointer', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'LocalAlloc', 'LocalFree', 'ExitProcess', 'WinExec', 'CreateThread', 'TerminateThread', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'GetProcessHeap', 'HeapAlloc', 'Sleep', 'VirtualAlloc', 'HeapFree', 'GetLastError', 'FlushFileBuffers', 'RtlUnwind', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetVersionExA', 'GetEnvironmentVariableA', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'InterlockedIncrement', 'GetModuleFileNameA', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'ShowWindow', 'FindWindowA', 'ChangeDisplaySettingsA', 'EnumDisplaySettingsA', 'ReleaseDC', 'LoadIconA', 'LoadCursorA', 'DrawIcon', 'FindWindowExA', 'SendMessageA', 'GetWindowRect', 'SetWindowPos', 'MessageBoxA', 'GetSystemMetrics', 'GetDC', 'CreateEllipticRgn', 'DeleteDC', 'Ellipse', 'CreateSolidBrush', 'FillRgn', 'StretchBlt', 'CreateFontIndirectA', 'SetBkMode', 'CreatePen', 'PolyBezier', 'SetBkColor', 'SetTextColor', 'CreateFontA', 'TextOutA', 'CreatePolygonRgn', 'SelectClipRgn', 'PatBlt', 'PlgBlt', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'BitBlt', 'DeleteObject', 'CreateRectRgn', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutReset', 'waveOutUnprepareHeader', 'AlphaBlend'], ['GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'GetCommandLineA', 'GetVersionExA', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetLastError', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'RtlUnwind', 'GetLocaleInfoA', 'VirtualProtect', 'GetSystemInfo', 'VirtualQuery'], ['LoadLibraryA', 'GetProcAddress', 'GetModuleHandleA', 'OpenClipboard', 'GetClipRgn', 'midiStreamRestart', 'ClosePrinter', 'RegCloseKey', 'ShellExecuteA', 'OleUninitialize', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ioctlsocket', 'GetFileTitleA', 'GetModuleInformation'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'ExitProcess', 'MessageBoxA'], ['ExpandEnvironmentStringsA', 'GetTickCount', 'ExitProcess', 'GetModuleFileNameA', 'GetVersionExA', 'GetVersion', 'CreateFileA', 'GetFileSize', 'WriteFile', 'GetCurrentProcess', 'CloseHandle', 'GetLocalTime', 'GlobalAlloc', 'GlobalFree', 'GetModuleHandleA', 'GetLastError', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'SetStdHandle', 'ReadFile', 'GetStringTypeW', 'GetStringTypeA', 'LoadLibraryA', 'GetProcAddress', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'MultiByteToWideChar', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapReAlloc', 'SetEnvironmentVariableA', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetCommandLineA', 'GetStartupInfoA', 'WideCharToMultiByte', 'GetSystemTime', 'GetTimeZoneInformation', 'HeapAlloc', 'HeapFree', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'OpenSCManagerA', 'CreateServiceA', 'OpenServiceA', 'CloseServiceHandle', 'RegSetValueExA', 'StartServiceA', 'RegCreateKeyA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'StartServiceCtrlDispatcherA', 'NtReadVirtualMemory', 'NtQueryVirtualMemory', 'RtlUnwind', '_stricmp', 'NtEnumerateValueKey', 'NtQuerySystemInformation', 'NtCreateSection', 'NtMapViewOfSection', 'NtUnmapViewOfSection', 'NtCreateFile', 'NtOpenKey', 'NtQueryObject', 'RtlCompareUnicodeString', 'NtOpenThread', 'NtSuspendThread', 'NtClose', 'NtOpenProcess', 'NtResumeThread', 'NtQueryInformationThread', 'RtlRunDecodeUnicodeString', 'RtlInitUnicodeString', 'NtFlushInstructionCache', 'NtProtectVirtualMemory', 'NtAllocateVirtualMemory', 'NtWriteVirtualMemory', 'NtFreeVirtualMemory', 'NtQueryInformationProcess', 'LdrGetProcedureAddress', 'RtlAnsiStringToUnicodeString', 'LdrGetDllHandle', 'RtlFreeUnicodeString', 'RtlFreeAnsiString', 'RtlUnicodeStringToAnsiString', 'LdrFindResource_U', 'LdrAccessResource', 'RtlInitAnsiString'], ['Sleep', 'GetCurrentThreadId', 'GetModuleFileNameA', 'SetEndOfFile', 'WriteConsoleW', 'HeapSize', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'CloseHandle', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'GetTimeZoneInformation', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'SetFilePointerEx', 'ReadFile', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetFileType', 'EnumSystemLocalesW', 'WriteFile', 'CreateThread', 'CreateFileA', 'ExitProcess', 'GetCurrentProcess', 'GetConsoleWindow', 'lstrlenW', 'GlobalFree', 'GetACP', 'GlobalAlloc', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetCommandLineW', 'GetCommandLineA', 'GetStdHandle', 'GetModuleHandleExW', 'ResumeThread', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'DuplicateHandle', 'WaitForSingleObjectEx', 'SwitchToThread', 'GetCurrentThread', 'GetExitCodeThread', 'GetNativeSystemInfo', 'GetLastError', 'FormatMessageW', 'WideCharToMultiByte', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetModuleHandleW', 'GetProcAddress', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'IsDebuggerPresent', 'RaiseException', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'InitializeSListHead', 'GetStartupInfoW', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'CreateTimerQueue', 'SetEvent', 'SignalObjectAndWait', 'SetThreadPriority', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'RegisterWaitForSingleObject', 'UnregisterWait', 'OutputDebugStringW', 'GetThreadTimes', 'FreeLibraryAndExitThread', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryExW', 'GetVersionExW', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'SetProcessAffinityMask', 'ReleaseSemaphore', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'UnregisterWaitEx', 'WaitForMultipleObjectsEx', 'LoadLibraryW', 'WaitForSingleObject', 'RtlUnwind', 'ExitThread', 'GetDesktopWindow', 'EnumChildWindows', 'ShowWindow', 'SendMessageTimeoutW', 'ExitWindowsEx', 'ReleaseDC', 'MoveWindow', 'GetWindowRect', 'SystemParametersInfoA', 'LoadIconA', 'UnhookWindowsHookEx', 'SetWindowsHookExA', 'GetCursorPos', 'SetCursorPos', 'GetActiveWindow', 'GetDC', 'GetForegroundWindow', 'DrawIcon', 'GetSystemMetrics', 'SetWindowPos', 'CloseWindow', 'MessageBoxA', 'IsWindowVisible', 'BitBlt', 'StretchBlt', 'RegOpenKeyExA', 'RegCloseKey', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'OpenProcessToken', 'RegSetValueExA', 'SHGetSpecialFolderPathA', 'NtSetInformationProcess', 'RtlCaptureStackBackTrace', 'RtlAdjustPrivilege', 'URLDownloadToFileA', 'mciSendCommandA'], ['GetModuleHandleA', 'GetProcAddress', 'NetUserAdd', 'RtlGetVersion', 'GetDC', 'BitBlt', 'FreeSid', 'ShellExecuteW', 'CoTaskMemFree', 'BCryptGenRandom', 'wcsstr', 'wmemcpy_s', 'exit', '__setusermatherr', '_set_fmode', '_configthreadlocale', '_set_new_mode'], ['SHGetFolderPathA', 'DeleteFileA', 'GetModuleFileNameA', 'CopyFileA', 'RtlUnwind', 'RtlZeroMemory', 'Sleep', 'CreateProcessA', 'MessageBoxA', 'wsprintfA', 'PathAppendA', 'PathFindFileNameA', 'WSCWriteProviderOrder', 'WSCInstallProvider', 'WSCEnumProtocols', '_iob', '_itoa', '__GetMainArgs', 'abort', 'exit', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'raise', 'signal', 'strcat', 'wcscpy'], ['AddAtomA', '__C_specific_handler', 'MessageBoxW', 'GetInterfaceInfo', 'GetMappedFileNameW', 'RegSetValueExA', 'SHGetFolderPathW'], ['GetLocalTime', 'GetTimeZoneInformation', 'ReadFile', 'DeleteFileA', 'VirtualAlloc', 'VirtualFree', 'TerminateThread', 'GetProcAddress', 'ExitProcess', 'GetLastError', 'GetSystemTime', 'Sleep', 'CreateMutexA', 'LoadLibraryA', 'GetModuleHandleA', 'GetCommandLineA', 'SetCurrentDirectoryA', 'WriteFile', 'CloseHandle', 'GetTickCount', 'CreateFileA', 'ExitThread', 'GetModuleFileNameA', 'ExpandEnvironmentStringsA', 'ReleaseMutex', 'SetFilePointer', 'HttpOpenRequestA', 'HttpSendRequestA', 'HttpQueryInfoA', 'InternetReadFile', 'InternetConnectA', 'InternetCloseHandle', 'InternetOpenA', 'ControlService', 'OpenSCManagerA', 'OpenServiceW', 'CloseServiceHandle', 'RtlRandom', 'strstr', 'atoi', 'strncpy', '_chkstk', 'memset', 'memcpy', '_itoa', 'sprintf', '_stricmp', 'inet_addr', 'gethostname'], ['exit', 'printf', 'fclose', 'fwrite', 'fopen', 'strtoul', 'strncpy', '_exit', '_XcptFilter', '__p___initenv', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_controlfp'], ['CloseHandle', 'CreateThread', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'GetCurrentProcess', 'GetStdHandle', 'FillConsoleOutputCharacterW', 'FillConsoleOutputAttribute', 'GetProcAddress', 'GetModuleHandleW', 'CreateFileW', 'SetConsoleTitleW', 'Sleep', 'ExitProcess', 'GetConsoleWindow', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'LocalAlloc', 'SetFilePointer', 'SetConsoleCursorPosition', 'WriteFile', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'DrawMenuBar', 'MessageBoxW', 'GetSystemMenu', 'DeleteMenu', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LookupPrivilegeValueW', '?id@?$ctype@D@std@@2V0locale@2@A', '?_Xlength_error@std@@YAXPBD@Z', '?_Ipfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE_N_N@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?sgetc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?getloc@ios_base@std@@QBE?AVlocale@2@XZ', '?_Getcat@?$ctype@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', '??Bid@locale@std@@QAEIXZ', '?cin@std@@3V?$basic_istream@DU?$char_traits@D@std@@@1@A', '??1_Lockit@std@@QAE@XZ', '??0_Lockit@std@@QAE@H@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ', '?snextc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ', '__CxxFrameHandler3', '__std_terminate', 'memcpy', '_except_handler4_common', '__std_exception_copy', 'memset', '__std_exception_destroy', '_CxxThrowException', 'memmove', '__stdio_common_vfprintf', '__acrt_iob_func', '_set_fmode', '__p__commode', '_c_exit', '_initterm', 'system', '_initialize_onexit_table', '_register_onexit_function', '_cexit', '_crt_atexit', '_exit', '_controlfp_s', 'terminate', '_get_initial_narrow_environment', '_invalid_parameter_noinfo_noreturn', '__p___argv', '_register_thread_local_exe_atexit_callback', '_initialize_narrow_environment', '_configure_narrow_argv', '__p___argc', '_set_app_type', '_seh_filter_exe', 'exit', '_initterm_e', '_callnewh', 'malloc', 'free', '_set_new_mode', '__setusermatherr', '_configthreadlocale'], ['GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'SetConsoleTitleA', 'GetStdHandle', 'GetModuleHandleA', 'FillConsoleOutputAttribute', 'GetProcAddress', 'GetConsoleWindow', 'SetConsoleCursorPosition', 'FillConsoleOutputCharacterA', 'ExitProcess', 'SetFileAttributesA', 'CreateThread', 'CloseHandle', 'DeleteFileA', 'GetSystemDirectoryA', 'CreateFileA', 'Sleep', 'GetCurrentThreadId', 'FindClose', 'LocalAlloc', 'SetFilePointer', 'FindNextFileA', 'DeviceIoControl', 'WriteFile', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'GetLastError', 'SetLastError', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'InitializeSListHead', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'RtlPcToFileHeader', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'ReadFile', 'GetConsoleMode', 'ReadConsoleW', 'GetFileSizeEx', 'SetFilePointerEx', 'GetFileType', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'FlushFileBuffers', 'GetConsoleOutputCP', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateProcessW', 'GetFileAttributesExW', 'HeapReAlloc', 'HeapSize', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'GetProcessHeap', 'SetStdHandle', 'CreateFileW', 'SetEndOfFile', 'WriteConsoleW', 'FindFirstFileA', 'RtlUnwind', 'GetDC', 'DeleteMenu', 'RedrawWindow', 'DrawMenuBar', 'GetSystemMenu', 'GetDesktopWindow', 'CallNextHookEx', 'GetSystemMetrics', 'SetWindowsHookExA', 'MessageBoxA', 'UnhookWindowsHookEx', 'GetWindowDC', 'BitBlt', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'CreatePatternBrush', 'SetTextColor', 'TextOutA', 'SetBkColor', 'Ellipse', 'DeleteObject', 'AdjustTokenPrivileges', 'CryptAcquireContextA', 'CryptGenRandom', 'LookupPrivilegeValueA', 'OpenProcessToken', 'SHGetSpecialFolderPathA'], ['lstrcmpiA', 'GetProcAddress', 'RemoveDirectoryA', 'CopyFileA', 'FindClose', 'LoadLibraryA', 'Process32Next', 'LocalAlloc', 'GetModuleFileNameA', 'FindNextFileA', 'CreateToolhelp32Snapshot', 'GetCurrentThreadId', 'CloseHandle', 'LocalFree', 'GetLastError', 'CreateThread', 'SetStdHandle', 'WriteConsoleW', 'LoadLibraryW', 'HeapReAlloc', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'lstrlenW', 'FindFirstFileA', 'lstrcmpW', 'ReadFile', 'TerminateProcess', 'Sleep', 'OpenProcess', 'WriteFile', 'Process32First', 'SetFilePointerEx', 'GetCurrentProcess', 'lstrlenA', 'SetPriorityClass', 'lstrcmpA', 'CreateFileA', 'GetCommandLineW', 'DeleteFileA', 'ExitProcess', 'GetACP', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'CreateFileW', 'GetConsoleCP', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'GetLocaleInfoW', 'HeapSize', 'LoadIconA', 'CallNextHookEx', 'GetWindowDC', 'ExitWindowsEx', 'MessageBoxA', 'SetWindowsHookExA', 'GetDesktopWindow', 'GetCursorPos', 'UnhookWindowsHookEx', 'GetSystemMetrics', 'DrawIcon', 'StretchBlt', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyA', 'RegEnumValueA', 'CryptGenRandom', 'RegOpenKeyExA', 'CryptAcquireContextA', 'RegCreateKeyExA', 'LookupPrivilegeValueA', 'RegEnumKeyExA', 'RegOpenKeyW', 'RegSetValueExA', 'RegCreateKeyW', 'OpenProcessToken', 'RegSetValueExW', 'ShellExecuteExA', 'ShellExecuteA', 'CommandLineToArgvW', 'GetProcessImageFileNameA'], ['GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueA', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'DeleteFileW', 'CloseHandle', 'GetFileType', 'GetSystemInfo', 'GetStringTypeW', 'GetCommandLineA', 'MoveFileA', 'VirtualFree', 'GetConsoleMode', 'RemoveDirectoryW', 'GetFileAttributesA', 'SetLastError', 'SizeofResource', 'CreateProcessW', 'Module32Next', 'GetStartupInfoA', 'InterlockedIncrement', 'GetDriveTypeA', 'CopyFileW', 'TlsFree', 'CopyFileExA', 'SetErrorMode', 'DeleteFileA', 'RemoveDirectoryA', 'CompareStringA', 'FileTimeToSystemTime', 'MapViewOfFile', 'InterlockedCompareExchange', 'HeapReAlloc', 'FindFirstFileExW', 'GetModuleHandleW', 'QueryPerformanceFrequency', 'GetLongPathNameW', 'CopyFileExW', 'SetHandleCount', 'GetProcessTimes', 'InitializeCriticalSection', 'GetFileSize', 'GetFileAttributesExW', 'InterlockedExchange', 'SetEnvironmentVariableA', 'WriteConsoleW', 'GetStdHandle', 'IsDebuggerPresent', 'FindClose', 'LeaveCriticalSection', 'SetFilePointer', 'FindFirstChangeNotificationA', 'MoveFileW', 'FindResourceA', 'GetFileAttributesW', 'TzSpecificLocalTimeToSystemTime', 'SetUnhandledExceptionFilter', 'MoveFileExW', 'GetTempPathW', 'CreateDirectoryExA', 'GetProcAddress', 'GetEnvironmentStringsW', 'EnterCriticalSection', 'MoveFileWithProgressA', 'LoadLibraryA', 'FlushFileBuffers', 'QueryPerformanceCounter', 'LocalFree', 'SetEndOfFile', 'FreeEnvironmentStringsA', 'WriteFile', 'CreateFileA', 'CopyFileA', 'FindFirstFileExA', 'CreateDirectoryA', 'CreateThread', 'FindFirstFileW', 'LoadLibraryExA', 'SearchPathA', 'SetStdHandle', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'TlsGetValue', 'GetDateFormatW', 'GlobalFree', 'FindNextFileW', 'Module32First', 'VirtualQuery', 'CreateDirectoryExW', 'GetStringTypeA', 'FindFirstFileA', 'OpenEventA', 'GetTimeFormatW', 'DeleteCriticalSection', 'FreeLibrary', 'CreateEventA', 'GetCPInfo', 'MoveFileWithProgressW', 'WaitForSingleObject', 'SetFileAttributesW', 'GetVersion', 'GetSystemDirectoryA', 'HeapAlloc', 'GetCurrentProcess', 'GetCurrentThreadId', 'LoadLibraryW', 'GetCurrentProcessId', 'GetOEMCP', 'GetVersionExA', 'OutputDebugStringA', 'TlsAlloc', 'GetModuleFileNameW', 'FindNextFileA', 'ReleaseMutex', 'FormatMessageA', 'GetUserDefaultLCID', 'ReadFile', 'LockResource', 'RtlUnwind', 'GetConsoleCP', 'SetFileAttributesA', 'GetCurrentThread', 'GetShortPathNameA', 'ExitProcess', 'IsValidCodePage', 'DeviceIoControl', 'SetThreadPriority', 'CreateFileW', 'TlsSetValue', 'LoadResource', 'RaiseException', 'LCMapStringW', 'HeapDestroy', 'CompareStringW', 'SystemTimeToTzSpecificLocalTime', 'GetLocaleInfoA', 'GetThreadPriority', 'LCMapStringA', 'GetProcessHeap', 'GetTempPathA', 'FindFirstChangeNotificationW', 'GetShortPathNameW', 'WaitForMultipleObjects', 'ResetEvent', 'DebugBreak', 'HeapSize', 'HeapFree', 'SetEvent', 'GetEnvironmentStringsA', 'OpenMutexA', 'InterlockedDecrement', 'LoadLibraryExW', 'GetTimeFormatA', 'GetLastError', 'GetLongPathNameA', 'GetFileAttributesExA', 'GetSystemDefaultLCID', 'GetACP', 'GetModuleFileNameA', 'CreateFileMappingA', 'CreateToolhelp32Snapshot', 'MoveFileExA', 'CreateMutexA', 'HeapCreate', 'GlobalAlloc', 'CreateProcessA', 'GetConsoleOutputCP', 'Sleep', 'UnmapViewOfFile', 'CreateFontIndirectA', 'SetBkMode', 'GetKerningPairsA', 'CreateCompatibleDC', 'DeleteDC', 'GetGlyphOutlineW', 'DeleteObject', 'TextOutW', 'GetTextExtentPoint32W', 'CreateDIBSection', 'TextOutA', 'GetGlyphOutlineA', 'GetICMProfileA', 'Rectangle', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'CreatePen', 'SelectObject', 'ExtTextOutA', 'GetStockObject', 'ExtTextOutW', 'GetSaveFileNameW', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetOpenFileNameW', 'CryptAcquireContextA', 'ReportEventA', 'RegSetValueExA', 'CryptDeriveKey', 'CryptDecrypt', 'RegCreateKeyExW', 'RegEnumKeyExA', 'RegQueryValueExA', 'RegOpenKeyExW', 'RegisterEventSourceA', 'CryptCreateHash', 'CryptHashData', 'RegSetValueExW', 'RegCloseKey', 'RegEnumValueA', 'RegOpenKeyExA', 'CryptReleaseContext', 'RegEnumKeyExW', 'DeregisterEventSource', 'RegEnumValueW', 'CryptEncrypt', 'RegCreateKeyExA', 'RegQueryValueExW', 'CheckTokenMembership', 'DefWindowProcA', 'SendMessageA', 'ReleaseCapture', 'SetFocus', 'GetWindowTextLengthA', 'GetClientRect', 'CallWindowProcA', 'FlashWindowEx', 'SetCursor', 'EnumThreadWindows', 'DefWindowProcW', 'GetWindowLongA', 'MessageBoxA', 'GetWindowTextLengthW', 'CallWindowProcW', 'CreateWindowExA', 'MsgWaitForMultipleObjects', 'SetMenuItemInfoW', 'IsDialogMessageA', 'LoadCursorA', 'EnableWindow', 'SetWindowLongA', 'GetMenuItemInfoW', 'RegisterClassW', 'UnhookWindowsHookEx', 'GetAsyncKeyState', 'CreateDialogParamA', 'SystemParametersInfoA', 'PostQuitMessage', 'InsertMenuItemA', 'SetWindowPos', 'DialogBoxIndirectParamA', 'GetDC', 'GetDlgItem', 'SetForegroundWindow', 'LoadImageA', 'GetActiveWindow', 'EndPaint', 'IsWindowVisible', 'RedrawWindow', 'DialogBoxParamW', 'AdjustWindowRectEx', 'AppendMenuA', 'BeginPaint', 'SetWindowLongW', 'GetFocus', 'GetWindowTextW', 'ShowWindow', 'IsIconic', 'GetWindowRect', 'SetDlgItemTextA', 'SetWindowTextA', 'SetDlgItemTextW', 'GetDesktopWindow', 'GetMenuItemInfoA', 'RegisterClassA', 'MessageBoxW', 'InsertMenuItemW', 'GetWindowLongW', 'GetClassInfoA', 'CreateDialogParamW', 'DispatchMessageA', 'ScreenToClient', 'AppendMenuW', 'GetSystemMetrics', 'GetTopWindow', 'GetWindowTextA', 'SendMessageW', 'SetCapture', 'EndDialog', 'SetWindowTextW', 'SetClassLongA', 'DialogBoxParamA', 'CallNextHookEx', 'PostMessageA', 'PeekMessageA', 'ReleaseDC', 'SetParent', 'SetWindowsHookExA', 'FindWindowExA', 'ClientToScreen', 'TranslateAcceleratorA', 'SetClassLongW', 'MessageBeep', 'GetClassNameA', 'GetCursor', 'UnregisterClassW', 'TranslateMessage', 'DestroyWindow', 'CreateWindowExW', 'SetActiveWindow', 'SetMenuItemInfoA', 'GetWindow', 'MoveWindow', 'GetParent', 'IsWindow', 'LoadIconA', 'UnregisterClassA', 'GetForegroundWindow', 'GetMenu', 'gethostbyname', 'FindMimeFromData', 'PropertySheetA', 'CreatePropertySheetPageW', 'InitCommonControlsEx', 'PropertySheetW', 'CreatePropertySheetPageA', 'mciSendCommandA', 'ShellExecuteA', 'ShellExecuteExA', 'SHGetMalloc', 'Shell_NotifyIconA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'DragQueryFileA', 'SHGetFileInfoW', 'SHFileOperationA', 'Shell_NotifyIconW', 'SHFileOperationW', 'SHGetPathFromIDListA', 'ShellExecuteW', 'SHGetPathFromIDListW', 'SHGetSpecialFolderPathW', 'DragQueryFileW', 'ShellExecuteExW', 'SHBrowseForFolderW', 'SHGetSpecialFolderPathA', 'InternetGetConnectedState', 'InternetSetOptionA', 'InternetCloseHandle', 'InternetOpenA', 'HttpQueryInfoA', 'InternetGetConnectedStateExA', 'InternetErrorDlg', 'HttpAddRequestHeadersA', 'HttpSendRequestA', 'InternetWriteFile', 'HttpSendRequestExA', 'HttpEndRequestA', 'HttpOpenRequestA', 'InternetReadFile', 'InternetCrackUrlA', 'InternetQueryOptionA', 'InternetSetStatusCallbackA', 'InternetConnectA'], ['CreateFileA', 'CreateFileW', 'SetFilePointer', 'WriteFile', 'CloseHandle', 'LocalAlloc', 'ReadFile', 'DecodePointer', 'GetConsoleMode', 'GetCurrentThreadId', 'IsDebuggerPresent', 'RaiseException', 'MultiByteToWideChar', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'FreeLibrary', 'GetProcAddress', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'GetModuleHandleExW', 'GetStdHandle', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'HeapValidate', 'GetSystemInfo', 'GetFileType', 'OutputDebugStringW', 'WriteConsoleW', 'SetConsoleCtrlHandler', 'GetCurrentThread', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'GetConsoleOutputCP', 'ReadConsoleW', 'MessageBoxA'], ['CloseHandle', 'WriteFile', 'SetFilePointer', 'CreateFileA', 'lstrcpynA', 'lstrcmpA', 'lstrcpyA', 'lstrlenA', 'GetProcAddress', 'LoadLibraryA', 'LocalFree', 'wsprintfA', 'IsCharAlphaNumericA', 'GetErrorInfo', 'exit', '_controlfp', '??1type_info@@UAE@XZ', '_except_handler3', '__set_app_type', '__p__fmode', 'strlen', '__p__commode', 'strstr', '__CxxFrameHandler', '_CxxThrowException', '??3@YAXPAX@Z', '_exit', '_XcptFilter', 'memset', '__p___initenv', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv'], ['GetTickCount', 'GetLastError', 'LocalAlloc', 'VirtualProtect', 'CloseHandle', 'CreateFileA', 'HeapSize', 'GetCommandLineA', 'GetStartupInfoA', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointer', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'HeapCreate', 'VirtualFree', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RaiseException', 'SetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'RtlUnwind', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'GetModuleHandleA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'SendMessageA', 'DlgDirListA', 'GetAltTabInfoW', 'GetSysColorBrush', 'UpdateWindow', 'DestroyWindow'], ['GetCommandLineW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'LoadLibraryExW', 'SetConsoleCtrlHandler', 'FindClose', 'FindFirstFileExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'SetEndOfFile', 'GetProcAddress', 'GetModuleFileNameW', 'SetDllDirectoryW', 'FreeLibrary', 'GetLastError', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetModuleHandleW', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'GetCommandLineA', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindNextFileW', 'SetStdHandle', 'DeleteFileW', 'ReadFile', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'GetCurrentDirectoryW', 'FlushFileBuffers', 'HeapReAlloc', 'GetFileAttributesExW', 'GetStringTypeW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'WriteConsoleW', 'DecodePointer', 'ConvertSidToStringSidW', 'GetTokenInformation', 'OpenProcessToken', 'ConvertStringSecurityDescriptorToSecurityDescriptorW'], ['GetVersion', 'GetVersionExA', 'LoadIconA', 'GetTextMetricsA', 'waveOutUnprepareHeader', 'OpenPrinterA', 'RegSetValueExA', 'ShellExecuteA', 'CLSIDFromString', 'UnRegisterTypeLib', 'ImageList_Destroy', 'inet_ntoa', 'ChooseColorA', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetModuleHandleA', 'GetProcAddress', 'SysFreeString', 'RegCloseKey', 'CharNextA', 'SHGetFolderPathA'], ['WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum', 'htonl', 'WaitForMultipleObjects', 'CloseHandle', 'CreateThread', 'SetEvent', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'EnterCriticalSection', 'ResetEvent', 'CreateEventW', 'DeleteCriticalSection', 'CreateMutexW', 'CreateProcessW', 'GetCurrentProcess', 'SetHandleInformation', 'OpenProcess', 'GetLocaleInfoW', 'TerminateProcess', 'OpenMutexW', 'GetProcAddress', 'Process32FirstW', 'GetExitCodeThread', 'CreatePipe', 'Process32NextW', 'CreateFileW', 'CreateToolhelp32Snapshot', 'ReleaseMutex', 'GetVersion', 'GetVolumeInformationW', 'ExpandEnvironmentStringsW', 'GetLastError', 'GetModuleFileNameW', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'SetEndOfFile', 'SetFilePointerEx', 'GetFileAttributesW', 'ReadFile', 'GetFileSizeEx', 'MoveFileW', 'DeleteFileW', 'SetFileAttributesW', 'IsDebuggerPresent', 'CopyFileW', 'Sleep', 'HeapSize', 'TerminateThread', 'WriteFile', 'GetTickCount', 'GetLogicalDrives', 'GetComputerNameW', 'WaitForSingleObject', 'LoadLibraryW', 'MultiByteToWideChar', 'RtlUnwind', 'GetModuleHandleA', 'UnhandledExceptionFilter', 'GetSystemTimeAsFileTime', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapCreate', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'GetStdHandle', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'IsProcessorFeaturePresent', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetShellWindow', 'GetWindowThreadProcessId', 'RegQueryValueExW', 'CryptDecrypt', 'CryptDestroyKey', 'CryptEncrypt', 'CryptImportKey', 'CryptGenRandom', 'CryptSetKeyParam', 'CryptAcquireContextW', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'DuplicateTokenEx', 'GetTokenInformation', 'OpenProcessToken', 'ShellExecuteExW'], ['OpenProcess', 'CreateToolhelp32Snapshot', 'Sleep', 'GetLastError', 'Process32NextW', 'GetCurrentThread', 'LoadLibraryA', 'GlobalAlloc', 'DeleteFileW', 'Process32FirstW', 'GetModuleHandleA', 'CloseHandle', 'HeapAlloc', 'GetWindowsDirectoryW', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetProcessHeap', 'FreeLibrary', 'CreateRemoteThread', 'VirtualFreeEx', 'GetVersionExW', 'CreateFileW', 'GetModuleFileNameW', 'GetCurrentProcess', 'GetCommandLineW', 'SetLastError', 'HeapFree', 'GlobalFree', 'DecodePointer', 'WriteConsoleW', 'SetFilePointerEx', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'RtlUnwind', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetACP', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetStdHandle', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'WriteProcessMemory', 'SystemFunction036', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'ImpersonateSelf', 'OpenProcessToken', 'OpenThreadToken', 'LookupAccountSidW', 'GetTokenInformation', 'CommandLineToArgvW', 'ShellExecuteW'], ['FindAtomA', 'lstrlenA', 'ExitThread', 'GlobalAlloc', 'GetProcAddress', 'GetModuleHandleW', 'GlobalMemoryStatus', 'GetMailslotInfo', 'GetCPInfo', 'GetSystemTimeAdjustment', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapAlloc', 'GetLastError', 'HeapFree', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'Sleep', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LoadLibraryA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoA', 'GetStringTypeA', 'MultiByteToWideChar', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'UpdateWindow', 'FindWindowW', 'ShowWindow'], ['GetFileType', 'GetFileInformationByHandle', 'GetThreadTimes', 'GetProcessTimes', 'TerminateThread', 'GetProcessId', 'GetLongPathNameA', 'GetThreadSelectorEntry', 'GetProcessHandleCount', 'lstrlenA', 'GetMailslotInfo', 'GetModuleHandleA', 'GlobalAlloc', 'VirtualProtect', 'CloseHandle', 'GetTickCount', 'GetProcessWorkingSetSize', 'TerminateProcess', 'FlushFileBuffers', 'WriteConsoleW', 'RaiseException', 'RtlUnwind', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'EncodePointer', 'DecodePointer', 'IsProcessorFeaturePresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetProcAddress', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EnterCriticalSection', 'LeaveCriticalSection', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'Sleep', 'HeapSize', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LoadLibraryW', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'HeapReAlloc', 'SetStdHandle', 'CreateFileW', 'SetScrollRange', 'EnableScrollBar', 'PostMessageA', 'FillPath', 'StretchBlt', 'SetRectRgn', 'BeginPath', 'InitiateSystemShutdownA', 'OpenEventLogW', 'GradientFill'], ['GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'FlushFileBuffers', 'GetLocaleInfoA', 'MultiByteToWideChar', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetConsoleMode', 'GetConsoleCP', 'SetFilePointer', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'CreateFileA', 'CloseHandle', 'CreateToolhelp32Snapshot', 'GetModuleHandleA', 'Process32NextW', 'LocalAlloc', 'GetLocalTime', 'GetProcAddress', 'GetLastError', 'lstrcatA', 'GetModuleFileNameW', 'FileTimeToSystemTime', 'LoadLibraryW', 'FreeEnvironmentStringsA', 'Sleep', 'GetFileType', 'SetHandleCount', 'InitializeCriticalSection', 'LoadLibraryA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'GetCurrentThreadId', 'SetLastError', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetVersionExA', 'HeapFree', 'GetCommandLineA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'GetProcessHeap', 'SystemTimeToFileTime', 'HeapAlloc', 'lstrlenA', 'ExitProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'TerminateProcess', 'EndDeferWindowPos', 'GetClassLongA', 'SetClipboardData', 'UpdateWindow', 'GetDialogBaseUnits', 'BroadcastSystemMessageA', 'IsWindow', 'ShowWindow', 'SetWindowPos', 'GetDesktopWindow', 'DefWindowProcA', 'MoveWindow', 'CharToOemA', 'OpenClipboard', 'GetWindow', 'LoadCursorA', 'EndPaint', 'CloseClipboard', 'SetWindowRgn', 'GetWindowRect', 'SendDlgItemMessageA', 'GetKeyState', 'CopyImage', 'GetParent', 'LoadIconA', 'GetClientRect', 'GetDC', 'MessageBoxA', 'GetWindowLongA', 'CreateWindowExA', 'ReleaseDC', 'EmptyClipboard', 'SetClassLongA', 'EndDialog', 'CreateEllipticRgn', 'PatBlt', 'DeleteDC', 'CreateHalftonePalette', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CombineRgn', 'CreateCompatibleBitmap', 'Rectangle', 'SetStretchBltMode', 'CreateRectRgn', 'CreatePatternBrush', 'CreatePen', 'GetStockObject', 'CreateSolidBrush', 'RegOpenKeyExW', 'GetTokenInformation', 'InitializeSecurityDescriptor', 'AllocateAndInitializeSid', 'GetUserNameW', 'SetEntriesInAclW', 'SHGetDesktopFolder', 'SHFileOperationA', 'SHChangeNotify', 'SHGetMalloc', 'StgOpenStorage', 'WSASocketA', 'getsockopt', 'closesocket', 'WSALookupServiceEnd', 'WSACleanup', 'WSAGetLastError', 'WSAStartup', 'NetUserGetInfo', 'NetApiBufferFree', 'waveInGetNumDevs', 'waveInGetDevCapsA', 'PathRemoveFileSpecW', 'StrRetToBufA', 'glBlendFunc', 'glLightfv', 'glEnable', 'DCICreateOverlay', 'DCICreateOffscreen', 'DCIBeginAccess'], ['VirtualAlloc', 'GetCPInfo', 'GetOEMCP', 'HeapAlloc', 'lstrcmpiW', 'GetCurrentProcess', 'lstrcpynW', 'GetCommandLineA', 'lstrcmpW', 'FreeEnvironmentStringsA', 'HeapFree', 'GetProcessHeap', 'GetStartupInfoA', 'GetEnvironmentVariableW', 'GetEnvironmentStringsA', 'ShowStartGlass', 'EndPaint', 'IsIconic', 'GetWindowTextA', 'SetCursor', 'BeginPaint', 'GetCursorPos', 'SysStringLen', 'VariantChangeTypeEx', 'SysAllocStringLen', 'VarI1FromR8', 'SafeArrayGetDim', 'VarDecMul', 'VarBstrFromR8', 'VarUI8FromI2', 'VarDateFromI1', 'VariantClear', 'UnRegisterTypeLib', 'VarTokenizeFormatString', 'VariantCopyInd', 'CreateTypeLib2', 'VarI2FromI8', 'VarR8Round', 'VarUI4FromUI8'], ['GetDeviceCaps', 'SetTextAlign', 'GetStretchBltMode', 'GetFontLanguageInfo', 'SetTextJustification', 'GetRandomRgn', 'GetPixelFormat', 'GetCurrentObject', 'UpdateColors', 'GetTextAlign', 'GetTextCharset', 'GetTextCharsetInfo', 'GetFontUnicodeRanges', 'SetSystemPaletteUse', 'SetTextColor', 'GetBkColor', 'GetNearestColor', 'GetDCBrushColor', 'GetTextColor', 'GetSystemPaletteUse', 'SetPixel', 'GetPolyFillMode', 'GetDCPenColor', 'GetMapMode', 'GetClipRgn', 'GetNearestPaletteIndex', 'GetMetaRgn', 'SetTextCharacterExtra', 'GetTextCharacterExtra', 'GetGraphicsMode', 'GetModuleHandleA', 'GetProcAddress', 'LoadResource', 'FindResourceA', 'GetDriveTypeA', 'WriteFile', 'LocalFlags', 'IsProcessorFeaturePresent', 'GetFileTime', 'LockResource', 'DeleteFileA', 'GlobalSize', 'SizeofResource', 'MoveFileA', 'GetProcessId', 'GlobalFlags', 'FindClose', 'GetProcessHeap', 'SetFilePointer', 'GetFileType', 'GetVersion', 'GlobalHandle', 'GetCurrentThreadId', 'GetTickCount', 'GetCurrentProcessId', 'IsDebuggerPresent', 'GetCurrentProcess', 'GetLastError', 'QueryPerformanceCounter', 'LocalAlloc', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetEndOfFile', 'CreateProcessA', 'WaitForSingleObject', 'GetExitCodeProcess', 'CreateFileA', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetLocaleInfoW', 'GetStringTypeW', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'HeapSize', 'GetFileAttributesA', 'GetTimeZoneInformation', 'SetHandleCount', 'ReadFile', 'CloseHandle', 'GetConsoleMode', 'GetConsoleCP', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'FreeLibrary', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'Sleep', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'MultiByteToWideChar', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FindFirstFileA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'HeapAlloc', 'GetModuleHandleW', 'ExitProcess', 'HeapReAlloc', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetFullPathNameA', 'GetCurrentDirectoryA', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'GetStdHandle', 'GetModuleFileNameA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'CheckDlgButton', 'GetWindowContextHelpId', 'IsWindowEnabled', 'ShowWindow', 'GetPropA', 'GetDialogBaseUnits', 'GetDlgItemInt', 'WindowFromDC', 'GetDlgItem', 'EndPaint', 'PostMessageA', 'GetMenuContextHelpId', 'GetDC', 'GetMenuState', 'IsWindowUnicode', 'GetWindowDC', 'EnableWindow', 'GetForegroundWindow', 'GetCursor', 'BeginPaint', 'EndDialog', 'GetScrollPos', 'GetKeyboardType', 'GetWindowLongA', 'GetMenuItemCount', 'GetMenuCheckMarkDimensions', 'GetMenuItemID', 'RemovePropA', 'GetMenu', 'SetFocus', 'DrawTextA', 'LoadIconA', 'GetQueueStatus', 'CallWindowProcA', 'GetInputState', 'SendMessageA', 'MoveWindow', 'SetWindowTextA', 'SetDlgItemTextA'], ['htonl', 'sendto', 'ioctlsocket', 'gethostbyname', 'WSAStartup', 'htons', 'socket', 'bind', 'select', 'WSAGetLastError', 'closesocket', '__WSAFDIsSet', 'recvfrom', 'ntohl', 'GetStringTypeA', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetEndOfFile', 'LoadLibraryA', 'CreateFileA', 'SetFilePointer', 'ReadFile', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringW', 'LCMapStringA', 'RtlUnwind', 'GetEnvironmentStringsW', 'GetModuleFileNameA', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetSystemTimeAsFileTime', 'GetLastError', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'HeapFree', 'GetCommandLineA', 'GetVersion', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'HeapAlloc', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'MultiByteToWideChar', 'GetStringTypeW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'CloseHandle', 'WriteFile', 'UnhandledExceptionFilter', 'GetProcAddress', 'GetModuleHandleA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings'], ['GetComputerNameA', 'IsDBCSLeadByte', 'WriteFile', 'ReadFile', 'GetTempFileNameA', 'MultiByteToWideChar', 'CopyFileA', 'SetFileAttributesA', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'SetEndOfFile', 'LocalAlloc', 'GetTempPathA', 'DeleteFileA', 'WideCharToMultiByte', 'CreateProcessA', 'GetSystemDirectoryA', 'GetCurrentProcess', 'SystemTimeToFileTime', 'GetSystemTime', 'GetVersionExA', 'GetVersion', 'WaitForSingleObject', 'GetCommandLineA', 'ExpandEnvironmentStringsA', 'GetDriveTypeA', 'CreateThread', 'GetCurrentProcessId', 'GetLocalTime', 'LocalFree', 'GetLastError', 'SetFilePointer', 'GetFileTime', 'GetFileSize', 'FreeLibrary', 'LoadLibraryA', 'UnmapViewOfFile', 'CreateFileA', 'Process32First', 'CreateFileMappingA', 'MapViewOfFile', 'CreateToolhelp32Snapshot', 'Process32Next', 'GetModuleFileNameA', 'ReadProcessMemory', 'Module32First', 'OpenProcess', 'CloseHandle', 'TerminateProcess', 'Sleep', 'SetFileTime', 'GetTickCount', 'GetProcAddress', 'LCMapStringW', 'LCMapStringA', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'GetStringTypeW', 'GetStringTypeA', 'RtlUnwind', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'GetModuleHandleA', 'GetStartupInfoA', 'ExitProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'SetHandleCount', 'HeapFree', 'HeapAlloc', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'OpenSCManagerA', 'StartServiceCtrlDispatcherA', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegSetValueExA', 'RegQueryValueExA', 'RegCreateKeyA', 'RegConnectRegistryA', 'OpenProcessToken', 'StartServiceA', 'AllocateAndInitializeSid', 'EqualSid', 'GetTokenInformation', 'RegisterServiceCtrlHandlerA', 'OpenServiceA', 'FreeSid', 'CloseServiceHandle', 'RegEnumValueA', 'CreateServiceA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteValueA', 'SetServiceStatus', 'RegCloseKey', 'gethostbyname', 'closesocket', 'WSACleanup', 'recv', 'send', 'htons', 'connect', 'WSAGetLastError', 'WSAStartup', 'socket', 'WNetOpenEnumA', 'WNetEnumResourceA', 'WNetCloseEnum'], ['ExitProcess', 'LoadLibraryA', 'lstrlenA', 'GetCurrentProcess', 'GetProcAddress', 'lstrcmpiA', 'CloseHandle', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'OpenProcessToken'], ['CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'SetStdHandle', 'FlushFileBuffers', 'Sleep', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'GetProcAddress', 'LoadLibraryA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'VirtualFree', 'RtlUnwind', 'GetLastError', 'SetConsoleCtrlHandler', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'HeapAlloc', 'VirtualAlloc', 'HeapReAlloc', 'RaiseException', 'MultiByteToWideChar', 'GetStringTypeA', 'GetStringTypeW', 'CloseHandle', 'GetSystemMetrics', 'ReleaseDC', 'RedrawWindow', 'GetDC', 'MessageBoxA', 'BitBlt', 'PlgBlt', 'StretchBlt', 'CreateSolidBrush', 'PatBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'DeleteObject', 'AlphaBlend'], ['CloseHandle', 'TerminateThread', 'CreateThread', 'ExitProcess', 'GetProcessHeap', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetFilePointer', 'LCMapStringW', 'LCMapStringA', 'HeapAlloc', 'Sleep', 'HeapFree', 'LoadLibraryA', 'GetProcAddress', 'SetStdHandle', 'FreeLibrary', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'RaiseException', 'HeapReAlloc', 'VirtualAlloc', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'InterlockedIncrement', 'GetModuleFileNameA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'GetLastError', 'SetConsoleCtrlHandler', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'FlushFileBuffers', 'GetSystemMetrics', 'GetDC', 'DrawIcon', 'LoadIconA', 'RedrawWindow', 'MessageBoxA', 'PatBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'BitBlt', 'CreateSolidBrush', 'waveOutReset', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutUnprepareHeader'], ['GetProcAddress', 'MessageBoxA', 'strncpy', 'GetInterfaceInfo', 'GetMappedFileNameW', 'RegDeleteKeyA', 'SHGetFolderPathW'], ['GetCurrentProcess', 'WriteFile', 'DeviceIoControl', 'Thread32Next', 'Thread32First', 'GetCurrentDirectoryA', 'CreateToolhelp32Snapshot', 'Sleep', 'Process32NextW', 'CreateFileA', 'DefineDosDeviceA', 'TerminateThread', 'Process32FirstW', 'CreateThread', 'VirtualFreeEx', 'lstrcmpW', 'OpenThread', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'GetModuleHandleW', 'SetLastError', 'CreateRemoteThread', 'GetCurrentProcessId', 'VirtualAllocEx', 'GetProcAddress', 'CloseHandle', 'LoadLibraryA', 'OpenProcess', 'WaitForSingleObject', 'TerminateProcess', 'SetFileAttributesA', 'WriteProcessMemory', 'MessageBoxW', 'GetWindowThreadProcessId', 'SendMessageW', 'GetSystemMetrics', 'ShowWindow', 'RegisterWindowMessageA', 'FindWindowA', 'SetCursorPos', 'GetWindowRect', 'PostThreadMessageW', 'EnumWindows', 'MoveWindow', 'MessageBoxA', 'AdjustTokenPrivileges', 'CloseServiceHandle', 'OpenSCManagerW', 'RegCreateKeyExW', 'RegSetValueExW', 'OpenProcessToken', 'StartServiceW', 'OpenServiceA', 'CreateServiceA', 'LookupPrivilegeValueW', 'RegCloseKey', '__current_exception', '__current_exception_context', 'memset', '__C_specific_handler', '__acrt_iob_func', '__p__commode', '__stdio_common_vfprintf', '_set_fmode', '_set_new_mode', 'free', 'malloc', 'rand', '_cexit', '_initialize_onexit_table', '_register_onexit_function', '_exit', '_crt_atexit', '_initialize_narrow_environment', 'terminate', '_get_narrow_winmain_command_line', 'exit', '_initterm_e', 'system', '_initterm', '_c_exit', '_configure_narrow_argv', '_register_thread_local_exe_atexit_callback', '_set_app_type', '_seh_filter_exe', '_itoa', '__setusermatherr', '_configthreadlocale'], ['GetTickCount', 'GetACP', 'GetComputerNameW', 'GetDriveTypeW', 'LocalAlloc', 'Sleep', 'MoveFileA', 'GetModuleFileNameA', 'GetProcAddress', 'LoadLibraryA', 'lstrcpyA', 'lstrlenA', 'CompareStringW', 'CompareStringA', 'GetStringTypeW', 'GetStringTypeA', 'GetOEMCP', 'GetCPInfo', 'FlushFileBuffers', 'SetStdHandle', 'LCMapStringW', 'LCMapStringA', 'IsBadCodePtr', 'IsBadReadPtr', 'SetUnhandledExceptionFilter', 'WriteFile', 'GetEnvironmentStringsW', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'RtlUnwind', 'GetLastError', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFileAttributesW', 'HeapAlloc', 'HeapFree', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'HeapReAlloc', 'TerminateProcess', 'GetCurrentProcess', 'HeapSize', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'CloseHandle', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetFilePointer', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'SetEnvironmentVariableA', 'GetSystemMetrics', 'SHGetSpecialFolderPathA', 'WSAGetLastError', 'setsockopt', 'send', 'shutdown', 'recv', 'ioctlsocket', 'connect', 'select', 'closesocket', 'htons', 'ntohs', 'htonl', 'socket'], ['Process32First', 'Process32Next', 'CreateMutexA', 'CreateRemoteThread', 'VirtualAllocEx', 'WriteProcessMemory', 'OpenMutexA', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'SetThreadPriority', 'GetProcessId', 'CreateToolhelp32Snapshot', 'VirtualQueryEx', 'ReadProcessMemory', 'GetCurrentProcess', 'IsWow64Process', 'GetFileSize', 'ReadFile', 'WriteFile', 'ConnectNamedPipe', 'DisconnectNamedPipe', 'TerminateThread', 'CreateNamedPipeA', 'CallNamedPipeA', 'WaitNamedPipeA', 'GetComputerNameA', 'GetVolumeInformationA', 'CopyFileA', 'GetModuleFileNameA', 'OpenProcess', 'CreateProcessA', 'TerminateProcess', 'GetCurrentProcessId', 'Sleep', 'GetLastError', 'CloseHandle', 'GetFileAttributesA', 'DeleteFileA', 'CreateFileA', 'GetTickCount', 'CreateDirectoryA', 'CreateFileW', 'SetEnvironmentVariableA', 'FlushFileBuffers', 'SetStdHandle', 'GetStringTypeW', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'EnumSystemLocalesEx', 'IsValidLocaleName', 'LCMapStringEx', 'GetUserDefaultLocaleName', 'GetLocaleInfoEx', 'InterlockedIncrement', 'InterlockedDecrement', 'InitializeCriticalSectionEx', 'InterlockedExchange', 'EncodePointer', 'DecodePointer', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'AreFileApisANSI', 'MultiByteToWideChar', 'GetModuleFileNameW', 'GetSystemTimeAsFileTime', 'RaiseException', 'RtlUnwind', 'LoadLibraryExW', 'lstrlenA', 'LoadLibraryW', 'WideCharToMultiByte', 'GetCommandLineA', 'InitializeCriticalSectionAndSpinCount', 'FatalAppExitA', 'GetStdHandle', 'HeapValidate', 'GetSystemInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetStartupInfoW', 'GetModuleHandleW', 'FreeLibrary', 'SetConsoleCtrlHandler', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointer', 'SetFilePointerEx', 'GetFileType', 'InitOnceExecuteOnce', 'GetConsoleCP', 'OutputDebugStringW', 'WaitForSingleObjectEx', 'OutputDebugStringA', 'WriteConsoleW', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'QueryPerformanceCounter', 'GetTickCount64', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetTimeFormatEx', 'GetDateFormatEx', 'CompareStringEx', 'SetEndOfFile', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'CreateServiceA', 'ControlService', 'CloseServiceHandle', 'FreeSid', 'CheckTokenMembership', 'AllocateAndInitializeSid', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'StartServiceA', 'SHGetSpecialFolderPathA', 'SHGetFolderPathA', 'HttpOpenRequestA', 'HttpQueryInfoA', 'InternetConnectA', 'InternetCloseHandle', 'InternetOpenA', 'InternetReadFile', 'HttpSendRequestA', 'URLDownloadToFileA'], ['CreateMutexA', 'ExitProcess', 'GetLastError', 'GetStdHandle', 'WaitForSingleObject', 'WriteConsoleA', 'CreateEventA'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegCloseKey', 'memset', 'wsprintfA', 'WSAStartup'], ['GetFocus', 'MessageBoxA', '_onexit', '_decode_pointer', '_lock', '_invoke_watson', '_strdup', '_crt_debugger_hook', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '__set_app_type', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_initterm', '_acmdln', 'exit', '_ismbblead', '_XcptFilter', '_exit', '_cexit', '__getmainargs', '_amsg_exit', 'realloc', 'bsearch', 'qsort', 'memset', 'memcpy', 'fprintf', '__iob_func', 'setbuf', 'getenv', 'atoi', 'malloc', 'free', 'strncmp', 'strrchr', '__argv', '__argc', 'strncpy', '_snprintf', '_stricmp', '_except_handler4_common', '_controlfp_s', 'IsDebuggerPresent', 'GetCurrentProcess', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'HeapAlloc', 'IsBadReadPtr', 'SetLastError', 'GetProcessHeap', 'HeapFree', 'VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'FreeLibrary', 'GetModuleHandleA', 'OutputDebugStringA', 'GetFullPathNameA', 'LoadLibraryA', 'GetProcAddress', 'UnmapViewOfFile', 'CreateFileA', 'GetFileSize', 'CreateFileMappingA', 'CloseHandle', 'MapViewOfFile', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetLastError', 'FormatMessageA', 'LocalFree', 'lstrlenA', 'UnhandledExceptionFilter'], ['GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'CompareStringA', 'CompareStringW', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'CreateThread', 'Sleep', 'CloseHandle', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'SetStdHandle', 'ReadFile', 'IsBadCodePtr', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'MultiByteToWideChar', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'RtlUnwind', 'RaiseException', 'IsBadWritePtr', 'IsBadReadPtr', 'HeapValidate', 'TerminateProcess', 'GetCurrentProcess', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'InterlockedDecrement', 'OutputDebugStringA', 'InterlockedIncrement', 'GetModuleFileNameA', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetLastError', 'SetFilePointer', 'FlushFileBuffers', 'SetUnhandledExceptionFilter', 'HeapReAlloc', 'VirtualAlloc', 'SetConsoleCtrlHandler', 'SetEnvironmentVariableA', 'RedrawWindow', 'MessageBoxA', 'ReleaseDC', 'GetDC', 'GetSystemMetrics', 'PatBlt', 'SetBkMode', 'SetTextColor', 'CreateFontA', 'TextOutA', 'StretchBlt', 'CreateDIBSection', 'DeleteDC', 'Pie', 'Ellipse', 'Rectangle', 'PlgBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SelectObject', 'BitBlt', 'DeleteObject', 'CreateSolidBrush', 'waveOutReset', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutOpen', 'waveOutUnprepareHeader'], ['HeapReAlloc', 'GetStringTypeW', 'MultiByteToWideChar', 'LoadLibraryW', 'HeapSize', 'CreateThread', 'DeleteFileA', 'CloseHandle', 'GetCurrentThreadId', 'FindNextFileA', 'LocalAlloc', 'LoadLibraryA', 'FindClose', 'RemoveDirectoryA', 'GetProcAddress', 'FindFirstFileA', 'GetSystemDirectoryA', 'Sleep', 'SetFilePointer', 'WriteFile', 'CreateFileA', 'LCMapStringW', 'ExitProcess', 'RtlUnwind', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'EnterCriticalSection', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapAlloc', 'GetLastError', 'HeapFree', 'IsProcessorFeaturePresent', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'DecodePointer', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'SetLastError', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'DeleteCriticalSection', 'HeapCreate', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'UnhookWindowsHookEx', 'GetSystemMetrics', 'mouse_event', 'keybd_event', 'FillRect', 'LoadIconA', 'CallNextHookEx', 'DrawIcon', 'GetDC', 'GetCursorInfo', 'MessageBoxA', 'SetWindowsHookExA', 'PatBlt', 'Polygon', 'StretchBlt', 'SetPixel', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Ellipse', 'PlgBlt', 'CreatePatternBrush', 'GetPixel', 'CreateSolidBrush', 'BitBlt', 'CryptAcquireContextA', 'CryptGenRandom', 'SHDeleteKeyA', 'waveOutOpen', 'waveOutWrite', 'waveOutPrepareHeader'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'GetThreadLocale', 'GetStartupInfoA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteProcessMemory', 'VirtualFreeEx', 'VirtualAllocEx', 'VirtualAlloc', 'Sleep', 'LoadLibraryA', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetCommandLineW', 'ExitProcess', 'CreateRemoteThread', 'CreateProcessW', 'CloseHandle', 'MessageBoxW', 'MessageBoxA', 'CharNextW'], ['HeapDestroy', 'ExitProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetCommandLineA', 'GetVersion', 'HeapFree', 'GetLastError', 'CloseHandle', 'HeapAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'SetFilePointer', 'UnhandledExceptionFilter', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'LoadLibraryA', 'HeapCreate', 'VirtualFree', 'RtlUnwind', 'WriteFile', 'VirtualAlloc', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'ReadFile', 'CreateFileA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetProcAddress', 'SetEndOfFile', 'MultiByteToWideChar', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW'], ['AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'RegCloseKey', 'RegDeleteValueA', 'RegOpenKeyExA', 'CloseHandle', 'CreateFileA', 'CreateThread', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FreeConsole', 'GetConsoleWindow', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LocalAlloc', 'QueryPerformanceCounter', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetConsoleTitleA', 'SetUnhandledExceptionFilter', 'Sleep', 'TerminateProcess', 'TlsGetValue', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WriteFile', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_cexit', '_fmode', '_initterm', '_onexit', '_pgmptr', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'getenv', 'malloc', 'memcpy', 'printf', 'putchar', 'puts', 'signal', 'strlen', 'strncmp', 'strncpy', 'strrchr', 'system', 'vfprintf', 'ShellExecuteA', 'ShellExecuteExA', 'ShellExecuteW', 'DeleteMenu', 'DrawMenuBar', 'FindWindowA', 'GetSystemMenu', 'MessageBoxA', 'MessageBoxTimeoutA', 'PostMessageA', 'SetWindowPos'], ['GetStdHandle', 'DeviceIoControl', 'SetFilePointer', 'LocalAlloc', 'Sleep', 'FillConsoleOutputCharacterW', 'LoadLibraryW', 'CreateThread', 'FillConsoleOutputAttribute', 'GetProcAddress', 'ExitProcess', 'GetModuleHandleW', 'FreeLibrary', 'GetCurrentProcess', 'WriteConsoleW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'HeapReAlloc', 'HeapSize', 'GetProcessHeap', 'LCMapStringW', 'CompareStringW', 'GetConsoleScreenBufferInfo', 'SetConsoleTextAttribute', 'CloseHandle', 'CreateFileW', 'SetConsoleCursorPosition', 'WriteFile', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'RaiseException', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'DecodePointer', 'SendMessageTimeoutW', 'MessageBoxW', 'EnumChildWindows', 'SendMessageW', 'GetSystemMetrics', 'FindWindowExW', 'LoadIconW', 'FindWindowW', 'GetWindowDC', 'GetDesktopWindow', 'GetCursorPos', 'DrawIcon', 'BitBlt', 'AdjustTokenPrivileges', 'OpenProcessToken', 'LookupPrivilegeValueW'], ['InitializeCriticalSection', 'PostQuitMessage', 'RegOpenKeyExA', '?_Getcat@?$ctype@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', 'PlaySoundA', '_CxxThrowException', '_itoa_s', '__stdio_common_vsprintf', '_initialize_narrow_environment', 'strcat_s', '_callnewh', 'srand', '_getch', '_time64', '_mbsrchr', '_CIcos', '_configthreadlocale', 'SetPixelV', 'ExtractIconA', 'CoInitialize', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['CreateFileA', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'VirtualAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'RtlUnwind', 'HeapSize', 'ExitProcess', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetFilePointer', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'GetACP', 'IsValidCodePage', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'WriteFile', 'GetOEMCP', 'GetCPInfo', 'GetLocaleInfoA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpW', 'GetVersionExA', 'GetThreadLocale', 'GlobalGetAtomNameA', 'GlobalFlags', 'lstrcmpA', 'GetCurrentThreadId', 'InterlockedIncrement', 'InterlockedDecrement', 'GetModuleHandleA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'SetLastError', 'InterlockedExchange', 'LoadLibraryA', 'SizeofResource', 'FreeLibrary', 'FlushFileBuffers', 'PrepareTape', 'Sleep', 'GetCurrentProcess', 'GetVersion', 'CompareStringA', 'LockResource', 'SetEvent', 'GetProcAddress', 'CloseHandle', 'VirtualProtect', 'lstrlenA', 'DeleteFileA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetLastError', 'FindResourceA', 'LocalFree', 'LocalAlloc', 'CreateProcessA', 'FindResourceExA', 'GetStartupInfoA', 'LoadResource', 'IsDebuggerPresent', 'GetTickCount', 'SetForegroundWindow', 'GetMenu', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetFocus', 'ClientToScreen', 'GetWindow', 'GetDlgCtrlID', 'GetClassNameA', 'PtInRect', 'GetWindowTextA', 'SetWindowTextA', 'UnregisterClassA', 'SetWindowsHookExA', 'GetKeyState', 'LoadCursorA', 'GetSystemMetrics', 'GetDC', 'GetSysColor', 'UnhookWindowsHookEx', 'GetWindowThreadProcessId', 'SendMessageA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'MessageBoxA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'DrawTextA', 'InflateRect', 'GetWindowRect', 'CreatePopupMenu', 'GetForegroundWindow', 'CallNextHookEx', 'DispatchMessageA', 'EnumWindows', 'CreateDialogIndirectParamA', 'SetParent', 'GetSysColorBrush', 'GetClientRect', 'IntersectRect', 'DefWindowProcA', 'GetWindowLongA', 'ExitWindowsEx', 'DialogBoxIndirectParamA', 'EndDeferWindowPos', 'GetClassInfoExA', 'ReleaseDC', 'MapWindowPoints', 'ValidateRect', 'PostQuitMessage', 'GrayStringA', 'DrawTextExA', 'TabbedTextOutA', 'DestroyMenu', 'RegisterWindowMessageA', 'LoadIconA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'PeekMessageA', 'GetMessagePos', 'ExtTextOutA', 'SaveDC', 'RestoreDC', 'SetMapMode', 'ScaleViewportExtEx', 'PtVisible', 'SelectObject', 'SetViewportOrgEx', 'SetWindowExtEx', 'DeleteDC', 'GetStockObject', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'DeleteObject', 'GetDeviceCaps', 'SetViewportExtEx', 'ScaleWindowExtEx', 'OffsetViewportOrgEx', 'Escape', 'TextOutA', 'RectVisible', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'CoInitialize', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoUninitialize', 'CoTaskMemFree', 'VariantClear', 'OleLoadPicture', 'OleCreatePictureIndirect', 'OleCreateFontIndirect', 'SysReAllocStringLen', 'SysFreeString', 'SysStringLen', 'OleCreatePropertyFrame', 'OleTranslateColor', 'SysAllocStringLen', 'SysReAllocString', 'OleIconToCursor', 'OleCreatePropertyFrameIndirect', 'SysAllocString', 'VariantChangeType', 'VariantInit', 'LresultFromObject', 'CreateStdAccessibleObject'], ['NetApiBufferFree', 'NetApiBufferAllocate', 'NetRemoteTOD', 'NetScheduleJobDel', 'WSAStartup', 'inet_ntoa', 'gethostbyname', 'gethostname', 'WSACleanup', 'LocalAlloc', 'GetLastError', 'MoveFileExW', 'DeleteFileW', 'GetProcAddress', 'GetModuleHandleW', 'WriteFile', 'CreateFileW', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'GetCommandLineW', 'GetFileTime', 'GetWindowsDirectoryW', 'Sleep', 'CreateThread', 'CreateProcessW', 'CopyFileW', 'MoveFileW', 'ReadFile', 'GetSystemTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'WaitForSingleObject', 'InitializeCriticalSection', 'GetStringTypeW', 'IsValidCodePage', 'LocalFree', 'VirtualAlloc', 'VirtualFree', 'GetCurrentProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'CloseHandle', 'GetTickCount', 'HeapReAlloc', 'HeapSize', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'CreateFileA', 'SetEndOfFile', 'SetFileTime', 'GetOEMCP', 'GetACP', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'HeapFree', 'ExitProcess', 'HeapSetInformation', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'HeapAlloc', 'IsProcessorFeaturePresent', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'SetLastError', 'GetCurrentThreadId', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetFilePointer', 'LoadLibraryW', 'GetLocaleInfoW', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LoadImageW', 'StartServiceCtrlDispatcherW', 'RegisterServiceCtrlHandlerW', 'SetServiceStatus', 'RegQueryValueExW', 'OpenSCManagerW', 'OpenServiceW', 'QueryServiceConfigW', 'ChangeServiceConfigW', 'CloseServiceHandle', 'CreateServiceW', 'ChangeServiceConfig2W', 'RegOpenKeyExW', 'RegDeleteValueW', 'RegCloseKey', 'StartServiceW', 'CommandLineToArgvW'], ['GetTempPathA', 'GetPrivateProfileStringA', 'GetTickCount', 'UnmapViewOfFile', 'Sleep', 'SetEvent', 'WaitForSingleObjectEx', 'CreateEventA', 'FlushViewOfFile', 'GetProfileStringA', 'GetPrivateProfileIntA', 'GetWindowsDirectoryA', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalDeleteAtom', '_lclose', 'OpenFile', 'CreateThread', 'GetLastError', 'GetTempFileNameA', 'lstrcpyA', 'lstrcatA', 'CreateFileA', 'WriteFile', 'FlushFileBuffers', 'GlobalHandle', 'GlobalSize', 'SetFilePointer', 'ReadFile', 'CloseHandle', 'DeleteFileA', 'lstrlenA', 'GlobalUnlock', 'GlobalAlloc', 'CreateFileMappingA', 'MapViewOfFile', 'GlobalFree', 'HeapFree', 'HeapAlloc', 'SetStdHandle', 'InterlockedIncrement', 'InterlockedDecrement', 'RaiseException', 'GetStringTypeA', 'LCMapStringW', 'GetStringTypeW', 'MultiByteToWideChar', 'LoadLibraryA', 'LCMapStringA', 'GetFileType', 'GetStdHandle', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'SetHandleCount', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'WideCharToMultiByte', 'GlobalLock', 'HeapReAlloc', 'VirtualAlloc', 'InitializeCriticalSection', 'VirtualFree', 'DeleteCriticalSection', 'HeapDestroy', 'RtlUnwind', 'HeapCreate', 'GetCurrentProcess', 'TerminateProcess', 'UnhandledExceptionFilter', 'TlsGetValue', 'SetLastError', 'TlsAlloc', 'GetProcAddress', 'GetACP', 'GetCPInfo', 'GetModuleFileNameA', 'GetFileSize', 'GlobalReAlloc', 'GetDiskFreeSpaceA', 'GetCurrentThreadId', 'TlsSetValue', 'ExitThread', 'GetOEMCP', 'LeaveCriticalSection', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'GetVersion', 'ExitProcess', 'EnterCriticalSection', 'IsDialogMessageA', 'DispatchMessageA', 'TranslateMessage', 'RegisterClassA', 'GetMessageA', 'CreateDialogParamA', 'PeekMessageA', 'LoadCursorA', 'LoadIconA', 'ReleaseDC', 'SetFocus', 'EnableWindow', 'ClientToScreen', 'GetDC', 'ScreenToClient', 'SetDlgItemTextA', 'GetClientRect', 'GetDlgItem', 'GetWindowRect', 'PostQuitMessage', 'GetParent', 'GetActiveWindow', 'MoveWindow', 'FindWindowA', 'MessageBoxA', 'GetSysColor', 'CharUpperA', 'SetCursor', 'IsWindow', 'ShowWindow', 'SetWindowTextA', 'InvalidateRect', 'UpdateWindow', 'BringWindowToTop', 'CopyRect', 'DestroyWindow', 'BeginPaint', 'LoadStringA', 'OffsetRect', 'FillRect', 'InSendMessage', 'wsprintfA', 'EndPaint', 'GetDeviceCaps', 'DeleteDC', 'CreateICA', 'GetTextExtentPoint32A', 'DeleteObject', 'BitBlt', 'TextOutA', 'SetBkMode', 'SelectObject', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateSolidBrush', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiDestroyDeviceInfoList'], ['SetEndOfFile', 'DeleteFileA', 'ReadFile', 'GetFileSize', 'FreeResource', 'LoadResource', 'CreateFileA', 'SizeofResource', 'FindResourceA', 'GetModuleFileNameA', 'GetSystemTime', 'GetComputerNameA', 'SetErrorMode', 'GetVersionExA', 'GetWindowsDirectoryA', 'CreateThread', 'WriteFile', 'SetFilePointer', 'DeleteCriticalSection', 'lstrlenA', 'GetTickCount', 'CreateProcessA', 'GetDriveTypeA', 'GetLogicalDrives', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'GetFileAttributesA', 'CopyFileA', 'MoveFileA', 'CreateDirectoryA', 'GetTempPathA', 'GetShortPathNameA', 'ResetEvent', 'EnterCriticalSection', 'InitializeCriticalSection', 'CreateEventA', 'LoadLibraryA', 'LCMapStringW', 'GetACP', 'GetCPInfo', 'GetStringTypeW', 'GetStringTypeA', 'MultiByteToWideChar', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetLastError', 'TlsGetValue', 'SetLastError', 'TlsAlloc', 'TlsSetValue', 'CloseHandle', 'HeapSize', 'HeapReAlloc', 'SetEvent', 'Sleep', 'LeaveCriticalSection', 'GetProcAddress', 'FreeLibrary', 'GetModuleHandleA', 'ExitProcess', 'OpenProcess', 'WaitForSingleObject', 'TerminateProcess', 'GetCurrentThreadId', 'HeapFree', 'HeapAlloc', 'GetVersion', 'GetCurrentProcess', 'LCMapStringA', 'GetOEMCP', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'CharLowerA', 'wsprintfA', 'EnumWindows', 'PostMessageA', 'DispatchMessageA', 'GetWindowThreadProcessId', 'GetParent', 'ExitWindowsEx', 'CreateDialogParamA', 'PeekMessageA', 'IsDialogMessageA', 'UpdateWindow', 'GetDC', 'GetClientRect', 'SetWindowTextA', 'ReleaseDC', 'SetFocus', 'DefWindowProcA', 'PostQuitMessage', 'EndDialog', 'GetDlgItemTextA', 'GetDlgItem', 'EnableWindow', 'ShowWindow', 'DialogBoxParamA', 'FindWindowA', 'RegisterClassExA', 'CreateWindowExA', 'SetTimer', 'GetMessageA', 'MessageBoxA', 'CharUpperA', 'GetStockObject', 'DeleteObject', 'Rectangle', 'SelectObject', 'CreateSolidBrush', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyExA', 'GetUserNameA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'ShellExecuteA', 'htons', 'WSACleanup', 'WSAStartup', 'send', 'ioctlsocket', 'gethostbyname', 'connect', 'WSAAsyncSelect', 'closesocket', 'socket', 'recv', 'GetFileVersionInfoA', 'VerQueryValueA', 'LZCopy', 'LZClose', 'LZOpenFileA'], ['GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'OutputDebugStringW', 'EncodePointer', 'IsDebuggerPresent', 'Sleep', 'DeleteCriticalSection', 'DecodePointer', 'GetLastError', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'GetWindow', 'FindWindowExW', 'FindWindowW', '?_Xout_of_range@std@@YAXPBD@Z', '?_Syserror_map@std@@YAPBDH@Z', '?_Xbad_alloc@std@@YAXXZ', '?_Xlength_error@std@@YAXPBD@Z', '?_Winerror_map@std@@YAPBDH@Z', '__CxxFrameHandler3', '_CxxThrowException', '_controlfp_s', '_invoke_watson', '__crtSetUnhandledExceptionFilter', '_except_handler4_common', '?terminate@@YAXXZ', '__crtTerminateProcess', '__crtUnhandledException', '_crt_debugger_hook', '_commode', '_fmode', '__winitenv', '??3@YAXPAX@Z', 'free', '??2@YAPAXI@Z', 'memmove', 'wcstok_s', 'wcsncmp', 'swscanf', 'wcstoul', 'printf', '_purecall', 'memset', '??1type_info@@UAE@XZ', '_lock', '_unlock', '_calloc_crt', '__dllonexit', '_onexit', '_XcptFilter', '_amsg_exit', '__wgetmainargs', '__set_app_type', 'exit', '_exit', '_cexit', '_configthreadlocale', '__setusermatherr', '_initterm_e', '_initterm', 'memcpy', 'SetHook', 'UnsetHook', 'GetLoadStatus'], ['IoDeleteDevice', 'IoFreeWorkItem', 'MmUnmapIoSpace', 'MmGetPhysicalAddress', 'ExAllocatePool', 'IoAllocateWorkItem', 'MmMapIoSpace', 'IoAttachDeviceToDeviceStack', 'IoCreateSymbolicLink', 'IoInitializeRemoveLockEx', 'IoCreateDevice', 'IoQueueWorkItem', 'RtlInitUnicodeString', 'ZwClose', 'ZwOpenFile', 'ZwQueryInformationFile', 'KdDebuggerEnabled', 'InitSafeBootMode', 'IofCompleteRequest', 'RtlDeleteElementGenericTable', 'KeGetCurrentThread', 'RtlLookupElementGenericTable', 'RtlInitializeGenericTable', 'RtlInsertElementGenericTable', 'RtlUpcaseUnicodeChar', 'IoRegisterDriverReinitialization', 'ExFreePoolWithTag', 'ZwReadFile', 'IoDeleteSymbolicLink', 'ZwAllocateVirtualMemory', 'KeInitializeMutex', 'KeReleaseMutex', 'KeWaitForSingleObject', 'ZwQueryValueKey', 'ZwOpenKey', '_stricmp', 'MmGetSystemRoutineAddress', 'PsGetVersion', 'ZwQueryInformationProcess', 'ObOpenObjectByPointer', 'PsLookupProcessByProcessId', 'ObfDereferenceObject', 'memcpy', '_except_handler3', 'memset', 'KfAcquireSpinLock', 'KeGetCurrentIrql', 'KfReleaseSpinLock'], ['HeapAlloc', 'GetProcAddress', 'GetProcessHeap', 'GetCurrentProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'LoadLibraryW', 'lstrcmpiW', 'LocalAlloc', 'GetLastError', 'LocalFree', 'WriteFile', 'WideCharToMultiByte', 'CloseHandle', 'DeleteFileW', 'lstrcatW', 'GetEnvironmentVariableW', 'Process32FirstW', 'HeapFree', 'WriteConsoleW', 'DecodePointer', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'GetStdHandle', 'GetModuleFileNameA', 'MultiByteToWideChar', 'ExitProcess', 'GetModuleHandleExW', 'GetACP', 'GetFileType', 'FindClose', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'CompareStringW', 'LCMapStringW', 'SetStdHandle', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'FlushFileBuffers', 'CreateFileW', 'GetSidSubAuthority', 'GetTokenInformation', 'AdjustTokenPrivileges', 'OpenProcessToken', 'GetSidSubAuthorityCount', 'ShellExecuteW'], ['WideCharToMultiByte', 'MultiByteToWideChar', 'WriteFile', 'SetFilePointer', 'TerminateProcess', 'OpenProcess', 'GetVersionExA', 'GetSystemInfo', 'GetModuleHandleA', 'Process32Next', 'lstrcatA', 'HeapFree', 'HeapAlloc', 'Process32First', 'CreateToolhelp32Snapshot', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteFileA', 'GetComputerNameA', 'SetEvent', 'Sleep', 'WaitForSingleObject', 'lstrlenW', 'DeleteFileW', 'CopyFileW', 'CreateDirectoryW', 'CreateEventA', 'VirtualFreeEx', 'WriteProcessMemory', 'VirtualAllocEx', 'lstrlenA', 'ExitProcess', 'CreateRemoteThread', 'DuplicateHandle', 'CreateProcessW', 'GetProcessVersion', 'CreateThread', 'MapViewOfFile', 'CreateFileMappingA', 'InitializeCriticalSection', 'VirtualQuery', 'lstrcpyW', 'GetModuleFileNameW', 'lstrcatW', 'GetProcessHeap', 'GetCurrentProcessId', 'CreateMutexA', 'GetCommandLineA', 'ReadProcessMemory', 'VirtualQueryEx', 'lstrcmpA', 'lstrcmpiA', 'LockResource', 'LoadResource', 'SizeofResource', 'FindResourceA', 'GetCurrentDirectoryA', 'TerminateThread', 'CreateFileW', 'ResumeThread', 'SuspendThread', 'VirtualFree', 'SetLastError', 'CreateFileA', 'GetLastError', 'GetFileSize', 'VirtualAlloc', 'ReadFile', 'LoadLibraryA', 'GetProcAddress', 'GetCurrentProcess', 'CloseHandle', 'lstrcpyA', 'IsBadReadPtr', 'GetTickCount', 'CreateWindowExA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'RegisterClassExA', 'GetSystemMetrics', 'SetWindowsHookExA', 'wsprintfA', 'wsprintfW', 'DefWindowProcA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'RegCloseKey', 'RegSetValueExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegDeleteValueA', 'GetUserNameA', 'RegCreateKeyExA', 'RegSetValueExW', 'RegNotifyChangeKeyValue', 'RegDeleteKeyA', 'LookupPrivilegeValueA', 'SHGetFolderPathW', 'CoCreateGuid', 'StrStrA', 'StrCmpNIA', 'HttpSendRequestA', 'InternetCloseHandle', 'HttpOpenRequestA', 'InternetOpenA', 'InternetGetCookieA', 'InternetReadFile', 'InternetOpenUrlA', 'InternetConnectA', 'ObtainUserAgentString', 'gethostname', 'inet_ntoa', 'gethostbyname', 'UuidToStringA'], ['WriteFile', 'SetFilePointer', 'LocalAlloc', 'CreateFileW', 'CloseHandle', 'ExitProcess', 'WriteConsoleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwindEx', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'FreeSid', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'TerminateProcess', 'Sleep', 'SizeofResource', 'SetThreadPriority', 'SetThreadLocale', 'SetFileTime', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'ReadFile', 'OpenProcess', 'MulDiv', 'MoveFileA', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileTime', 'GetFileAttributesA', 'GetExitCodeThread', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateMutexA', 'CreateFileA', 'CreateEventA', 'CreateDirectoryA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPointA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectType', 'GetObjectA', 'GetNearestPaletteIndex', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'OemToCharA', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'ExitWindowsEx', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CopyImage', 'CloseClipboard', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'timeGetTime', 'sndPlaySoundA', 'PlaySoundA', 'RtlSetProcessIsCritical', 'CheckTokenMembership'], ['GetModuleHandleA', 'GetProcAddress', 'wsprintfW', 'RegOpenKeyExW', 'ShellExecuteExW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetThreadLocale', 'GetStartupInfoA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'CreateThread', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'WriteFile', 'WinExec', 'TerminateProcess', 'Sleep', 'SetFilePointer', 'SetFileAttributesA', 'OpenProcess', 'LoadLibraryA', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetTempPathA', 'GetSystemDirectoryA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocalTime', 'GetLastError', 'GetFileAttributesA', 'GetDriveTypeA', 'GetCurrentProcess', 'FreeLibrary', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'DeleteFileA', 'CreateThread', 'CreateFileA', 'CopyFileA', 'CompareStringA', 'CloseHandle', 'WNetCancelConnectionA', 'WNetAddConnection2A', 'keybd_event', 'SetTimer', 'PostMessageA', 'MapVirtualKeyA', 'KillTimer', 'GetWindowTextA', 'GetMessageA', 'GetDesktopWindow', 'FindWindowExA', 'FindWindowA', 'DispatchMessageA', 'CharUpperBuffA', 'WSACleanup', 'WSAStartup', 'gethostname', 'gethostbyname', 'socket', 'inet_ntoa', 'inet_addr', 'htons', 'connect', 'closesocket', 'InternetGetConnectedState', 'InternetReadFile', 'InternetOpenUrlA', 'InternetOpenA', 'InternetCloseHandle', 'OpenServiceA', 'OpenSCManagerA', 'DeleteService', 'ControlService', 'CloseServiceHandle', 'NetRemoteTOD', 'NetScheduleJobAdd', 'URLDownloadToFileA'], ['LoadLibraryA', 'Process32Next', 'LocalAlloc', 'GetModuleFileNameA', 'FindNextFileA', 'CreateToolhelp32Snapshot', 'GetCurrentThreadId', 'CloseHandle', 'LocalFree', 'DeleteFileA', 'CreateThread', 'SetStdHandle', 'WriteConsoleW', 'LoadLibraryW', 'FindClose', 'HeapReAlloc', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'SetFilePointer', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'GetLocaleInfoW', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GlobalFree', 'RemoveDirectoryA', 'GetProcAddress', 'FindFirstFileA', 'lstrlenW', 'lstrcmpW', 'Sleep', 'ReadFile', 'GlobalAlloc', 'OpenProcess', 'WriteFile', 'Process32First', 'SetFilePointerEx', 'GetCurrentProcess', 'SetPriorityClass', 'lstrcmpA', 'CreateFileA', 'GetCommandLineW', 'ExitProcess', 'GetCurrentProcessId', 'CreateFileW', 'GetTickCount', 'QueryPerformanceCounter', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'EncodePointer', 'DecodePointer', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetLastError', 'HeapFree', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'GetCPInfo', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'LCMapStringW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'HeapCreate', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'SetLastError', 'GetStdHandle', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'SetCursorPos', 'GetWindowRect', 'SendInput', 'GetWindowDC', 'LoadIconA', 'CallNextHookEx', 'DrawIcon', 'ExitWindowsEx', 'MoveWindow', 'GetForegroundWindow', 'MessageBoxA', 'GetDC', 'ReleaseDC', 'SetWindowsHookExA', 'GetDesktopWindow', 'GetCursorPos', 'EnumChildWindows', 'SendMessageTimeoutW', 'UnhookWindowsHookEx', 'MessageBoxW', 'GetSystemMetrics', 'DeleteDC', 'StretchBlt', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'RegCloseKey', 'AdjustTokenPrivileges', 'RegOpenKeyA', 'CryptGenRandom', 'CryptAcquireContextA', 'LookupPrivilegeValueA', 'RegOpenKeyW', 'RegSetValueExA', 'RegCreateKeyW', 'OpenProcessToken', 'RegSetValueExW', 'ShellExecuteExA', 'ShellExecuteA', 'CommandLineToArgvW', 'GetProcessImageFileNameA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'LookupPrivilegeValueA', 'VariantChangeTypeEx', 'RaiseException'], ['LeaveCriticalSection', 'FileTimeToLocalFileTime', 'Sleep', 'WaitForMultipleObjects', 'GetTickCount', 'SetPriorityClass', 'GetCurrentProcess', 'lstrlenA', 'lstrcatA', 'GetLastError', 'ReadFile', 'GetStdHandle', 'WriteFile', 'MoveFileW', 'DeleteFileW', 'FreeLibrary', 'LoadLibraryExA', 'LoadLibraryA', 'AreFileApisANSI', 'LoadLibraryExW', 'LoadLibraryW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'LocalFree', 'FormatMessageA', 'FormatMessageW', 'SetCurrentDirectoryA', 'CloseHandle', 'SetFileTime', 'CreateFileW', 'SetLastError', 'SetFileAttributesA', 'RemoveDirectoryA', 'MoveFileA', 'CreateDirectoryA', 'DeleteFileA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetWindowsDirectoryW', 'GetSystemDirectoryW', 'SetFileAttributesW', 'RemoveDirectoryW', 'CreateDirectoryW', 'GetShortPathNameA', 'GetFullPathNameA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'SearchPathA', 'GetTempPathA', 'GetTempPathW', 'GetTempFileNameA', 'GetTempFileNameW', 'GetFullPathNameW', 'SearchPathW', 'FindClose', 'FindCloseChangeNotification', 'FindFirstChangeNotificationA', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'FindNextFileW', 'FindFirstChangeNotificationW', 'GetLogicalDriveStringsA', 'GetLogicalDriveStringsW', 'GetFileSize', 'SetFilePointer', 'GetFileInformationByHandle', 'SetEndOfFile', 'CreateFileA', 'CompareFileTime', 'FileTimeToSystemTime', 'EnterCriticalSection', 'GetModuleHandleW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'VirtualAlloc', 'VirtualFree', 'WaitForSingleObject', 'CreateEventA', 'SetEvent', 'ResetEvent', 'CreateSemaphoreA', 'ReleaseSemaphore', 'InitializeCriticalSection', 'GetVersionExA', 'UnmapViewOfFile', 'ExpandEnvironmentStringsW', 'MapViewOfFile', 'CreateFileMappingA', 'GetFileSizeEx', 'GetCommandLineW', 'CompareStringW', 'CompareStringA', 'GetTimeZoneInformation', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetDateFormatA', 'GetTimeFormatA', 'InitializeCriticalSectionAndSpinCount', 'InterlockedExchange', 'GetLocaleInfoA', 'GetLocaleInfoW', 'IsValidCodePage', 'SetEnvironmentVariableA', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'SetConsoleCtrlHandler', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'HeapDestroy', 'HeapCreate', 'HeapReAlloc', 'FatalAppExitA', 'ExitProcess', 'HeapSize', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentThread', 'InterlockedDecrement', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStartupInfoA', 'GetCommandLineA', 'CreateThread', 'GetCurrentThreadId', 'GetProcAddress', 'DeleteCriticalSection', 'ExitThread', 'HeapFree', 'HeapAlloc', 'RtlUnwind', 'RaiseException', 'CharPrevExA', 'MoveWindow', 'InvalidateRect', 'SetFocus', 'CharToOemA', 'CharLowerW', 'CharUpperW', 'CharLowerA', 'CharUpperA', 'DialogBoxParamW', 'CreateDialogParamW', 'DialogBoxParamA', 'CreateDialogParamA', 'GetDialogBaseUnits', 'SystemParametersInfoA', 'GetDlgCtrlID', 'GetWindowLongA', 'SetWindowLongA', 'GetWindowTextLengthW', 'GetWindowTextW', 'SetWindowTextW', 'SetWindowTextA', 'CreateWindowExW', 'RegisterClassW', 'RegisterClassA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CreateWindowExA', 'SendMessageW', 'LoadStringW', 'LoadStringA', 'CharPrevA', 'CharNextA', 'MessageBoxW', 'LoadIconA', 'LoadCursorA', 'wsprintfA', 'SetDlgItemTextA', 'ShowWindow', 'KillTimer', 'SetTimer', 'PostMessageA', 'ScreenToClient', 'IsDlgButtonChecked', 'IsWindow', 'EndDialog', 'SendMessageA', 'GetWindowRect', 'MapDialogRect', 'GetDlgItem', 'SetCursor', 'GetStockObject', 'DragFinish', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'DragQueryFileA', 'DragQueryFileW', 'SHGetMalloc', 'SHGetFileInfoA', 'CoInitialize', 'CoUninitialize', 'VariantCopy', 'SysAllocStringByteLen', 'VariantClear', 'SysAllocString', 'SysFreeString', 'PathFileExistsW'], ['sprintf', 'WriteFile', 'CloseHandle', 'GetCommandLineW', 'CreateFileA', 'GetFileSize', 'SetFilePointer', 'lstrlenA', 'lstrcmpiW', 'ReadFile', 'CommandLineToArgvW'], ['VirtualAlloc', 'VirtualProtect', 'WideCharToMultiByte', 'CreateFileA', 'GetFileSize', 'WriteFile', 'ReadFile', 'WaitForSingleObject', 'CreateRemoteThread', 'ReadProcessMemory', 'CloseHandle', 'WriteProcessMemory', 'DeviceIoControl', 'GetLastError', 'GetComputerNameA', 'FindResourceA', 'LoadResource', 'SizeofResource', 'Module32First', 'LockResource', 'Module32Next', 'CreateToolhelp32Snapshot', 'LoadLibraryA', 'Process32Next', 'Sleep', 'OpenProcess', 'Process32First', 'FindNextFileA', 'GetModuleFileNameA', 'FindFirstFileA', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetModuleHandleA', 'GetProcessId', 'GetProcAddress', 'VirtualAllocEx', 'GetCurrentProcess', 'ExitWindowsEx', 'MessageBoxA', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CryptDecrypt', 'CryptDestroyKey', 'CryptImportKey', 'CryptGenRandom', 'CryptAcquireContextA', 'CryptReleaseContext', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'GetUserNameA', 'AdjustTokenPrivileges', 'StrStrIA', 'PathCombineA', 'StrCmpNA', 'StrCmpNIA', 'CryptStringToBinaryA', 'CryptBinaryToStringA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'InternetConnectA'], ['CreateErrorInfo', 'DispGetIDsOfNames', 'BstrFromVector', 'OleLoadPictureEx', 'GetErrorInfo', 'GetVersionExW', 'GlobalLock', 'GlobalAlloc', 'GlobalReAlloc', 'GetModuleHandleW', 'GlobalSize', 'FreeResource', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'LocalAlloc', 'LocalFree', 'CreateFileA', 'lstrcmpA', 'GetFileAttributesA', 'GetProcAddress', 'GetModuleFileNameA', 'GetTempPathA', 'DeleteFileA', 'CloseHandle', 'GetCurrentDirectoryA', 'GetLocalTime', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'EnumResourceLanguagesA', 'WideCharToMultiByte', 'ReadFile', 'WriteFile', 'SetFilePointer', 'GlobalHandle', 'IsDBCSLeadByte', 'GetModuleHandleA', 'VirtualProtect', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetProcessHeap', 'CreateProcessA', 'GetTempFileNameA', 'HeapFree', 'HeapAlloc', 'LoadLibraryW', 'InterlockedExchange', 'Sleep', 'InterlockedCompareExchange', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetLastError', 'GlobalFree', 'GlobalUnlock', 'GetCurrentThread', 'lstrlenA', 'MulDiv', 'MultiByteToWideChar', 'FreeLibrary', 'RaiseException', 'LoadLibraryA', 'FormatMessageA', 'GetSystemDirectoryW', 'CM_Get_DevNode_Status', 'SetupDiGetDeviceRegistryPropertyW', 'CMP_WaitNoPendingInstallEvents', 'SetWindowLongA', 'SetWindowTextA', 'SendMessageA', 'GetDlgItem', 'wsprintfA', 'WaitForInputIdle', 'CharUpperA', 'MessageBoxA'], ['_allshl', '_chkstk', 'strlen', 'memcpy', 'memset', 'strcmp', '_allmul', '_aulldiv', '_aullshr', 'strrchr', 'strcpy', '__dllonexit', 'printf', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '__p___initenv', 'exit', '_XcptFilter', '_exit', '_onexit', 'FindClose', 'WriteFile', 'GetLastError', 'GetTickCount', 'WaitForSingleObject', 'Sleep', 'FindNextFileW', 'GetFileAttributesW', 'CreateDirectoryW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFileTime', 'DosDateTimeToFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'FindFirstFileW', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'GetFileSize', 'SetFilePointer', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapValidate', 'lstrlenA', 'GetCurrentDirectoryA', 'DeleteFileA', 'GetFileAttributesA', 'CloseHandle', 'ReadFile', 'CreateFileW', 'lstrlenW', 'wsprintfA', 'PathMatchSpecW', 'PathSkipRootW', 'PathCombineW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetLengthSid', 'InitCommonControlsEx', 'GetSaveFileNameW', 'CoUninitialize', 'ShellExecuteW', 'StrCmpNIA', 'EndDialog'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'CommandLineToArgvW', 'StrChrW', 'bind'], ['VirtualProtect', 'MessageBoxW', 'CryptReleaseContext', '_CxxThrowException', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_iob', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp3', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'atoi', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strchr', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'system', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm'], ['midiStreamOut', 'WSACleanup', 'GetVersion', 'GetVersionExA', 'DeleteMenu', 'GetViewportExtEx', 'OpenPrinterA', 'RegQueryValueExA', 'ShellExecuteA', 'CLSIDFromString', 'LoadTypeLib', 'ImageList_GetIcon', 'ChooseColorA', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetModuleHandleA', 'SetWindowsHookExA', 'RealizePalette', 'midiStreamRestart', 'ClosePrinter', 'RegCloseKey', 'Shell_NotifyIconA', 'OleInitialize', 'UnRegisterTypeLib', 'ImageList_Add', 'WSACleanup', 'GetFileTitleA'], ['InitCommonControlsEx', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'ShellExecuteExW', 'ShellExecuteW', 'CommandLineToArgvW', 'HeapAlloc', 'LocalFree', 'GetProcessHeap', 'GetFileAttributesW', 'LoadLibraryW', 'CloseHandle', 'GetProcAddress', 'FreeLibrary', 'GetCurrentProcess', 'GetVersionExW', 'GetModuleHandleW', 'ExpandEnvironmentStringsW', 'InitializeCriticalSectionAndSpinCount', 'WaitForSingleObject', 'CreateProcessW', 'GetModuleFileNameW', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'SetFileApisToOEM', 'SetPriorityClass', 'SetThreadPriority', 'GetEnvironmentVariableW', 'GetCurrentThread', 'GetCommandLineW', 'FindResourceW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'GetLongPathNameW', 'CreateFileW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetCurrentThreadId', 'LoadLibraryExW', 'WriteFile', 'SetFileTime', 'SetEndOfFile', 'FormatMessageW', 'InterlockedExchangeAdd', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'ResumeThread', 'GetACP', 'GetLastError', 'WideCharToMultiByte', 'CreateDirectoryW', 'GetFullPathNameW', 'lstrlenW', 'RemoveDirectoryW', 'GetTempPathW', 'SetFileAttributesW', 'DeleteFileW', 'GetWindowsDirectoryW', 'MoveFileExW', 'GetTempFileNameW', 'MoveFileW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'WaitForMultipleObjects', 'GetCurrentProcessId', 'FileTimeToSystemTime', 'WriteConsoleW', 'DecodePointer', 'FlushFileBuffers', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapReAlloc', 'HeapSize', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindFirstFileExW', 'LCMapStringW', 'HeapFree', 'MultiByteToWideChar', 'VirtualFree', 'VirtualAlloc', 'GetStringTypeW', 'ExitProcess', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'WaitForSingleObjectEx', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStdHandle', 'GetFileType', 'RtlUnwind', 'RaiseException', 'SetLastError', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'DispatchMessageW', 'SetTimer', 'IsDialogMessageW', 'TranslateMessage', 'LoadIconW', 'KillTimer', 'PostQuitMessage', 'EnableWindow', 'ScreenToClient', 'IsWindow', 'MessageBoxW', 'ShowWindow', 'PostMessageW', 'GetWindowRect', 'SetWindowPos', 'DialogBoxParamW', 'SendMessageW', 'EndDialog', 'SetWindowTextW', 'SetFocus', 'GetDlgItem', 'GetWindowTextW', 'IsWindowVisible', 'CreateDialogParamW', 'GetMessageW', 'GetDesktopWindow', 'LoadStringW', 'DestroyIcon', 'GetSystemMetrics', 'CreateSolidBrush', 'DeleteObject', 'CoCreateInstance', 'CoInitializeEx', 'CoUninitialize', 'CoInitialize'], ['GetModuleFileNameW', 'CreateProcessWithLogonW', 'WTSSendMessageW', 'GetSystemTimeAsFileTime', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'WideCharToMultiByte', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'SizeofResource', 'SetFilePointer', 'SetFileAttributesA', 'SetEnvironmentVariableA', 'SetEndOfFile', 'ReadFile', 'LockResource', 'LoadResource', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalAlloc', 'GetWindowsDirectoryA', 'GetVersionExA', 'GetThreadLocale', 'GetTempFileNameA', 'GetStringTypeExA', 'GetStdHandle', 'GetShortPathNameA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetFullPathNameA', 'GetFileAttributesA', 'GetExitCodeProcess', 'GetEnvironmentVariableA', 'GetDiskFreeSpaceA', 'GetCommandLineA', 'GetCPInfo', 'GetACP', 'FreeResource', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'DeleteFileA', 'CreateProcessA', 'CreateFileA', 'CloseHandle', 'MessageBoxA', 'LoadStringA', 'GetSystemMetrics', 'CharPrevA', 'CharNextA', 'CharToOemA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'wsprintfA'], ['FindFirstFileA', 'GetModuleHandleA', 'Sleep', 'GetLastError', 'LockResource', 'LoadResource', 'SizeofResource', 'FindResourceA', 'CopyFileA', 'GetModuleFileNameA', 'CreateThread', 'DeleteFileA', 'CreateFileA', 'SetStdHandle', 'FreeLibrary', 'VirtualQuery', 'GetProcessHeap', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoA', 'GetStringTypeW', 'GetLocaleInfoW', 'GetEnvironmentStringsW', 'FindNextFileA', 'FindClose', 'CreateFileW', 'RemoveDirectoryA', 'FreeEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'IsValidCodePage', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'RtlUnwind', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'HeapValidate', 'IsBadReadPtr', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'WideCharToMultiByte', 'LCMapStringW', 'MultiByteToWideChar', 'GetCPInfo', 'InitializeCriticalSectionAndSpinCount', 'FatalAppExitA', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'GetProcAddress', 'GetModuleHandleW', 'SetLastError', 'GetCurrentThread', 'lstrlenA', 'LoadLibraryW', 'CloseHandle', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'IsProcessorFeaturePresent', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'ExitProcess', 'ReadFile', 'SetFilePointer', 'FlushFileBuffers', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'SetConsoleCtrlHandler', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'HeapDestroy', 'GetACP', 'GetOEMCP', 'SetEndOfFile', 'mouse_event', 'GetDesktopWindow', 'GetWindowDC', 'FindWindowA', 'GetSystemMetrics', 'SystemParametersInfoA', 'GetCursorPos', 'DrawIcon', 'LoadIconA', 'MessageBoxA', 'GetForegroundWindow', 'ShowWindow', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyA', 'ShellExecuteA', 'ShellAboutA', 'SHFileOperationW', 'PlaySoundA'], ['AddAtomA', 'CloseHandle', 'CreateEventA', 'CreateMutexA', 'CreateSemaphoreA', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'FindAtomA', 'GetAtomNameA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetHandleInformation', 'GetLastError', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetStartupInfoA', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetThreadPriority', 'GetTickCount', 'InitializeCriticalSection', 'IsDBCSLeadByteEx', 'LeaveCriticalSection', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'RaiseException', 'ReleaseMutex', 'ReleaseSemaphore', 'ResetEvent', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetCriticalSectionSpinCount', 'SetEvent', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadContext', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'Sleep', 'SuspendThread', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', '__C_specific_handler', '___lc_codepage_func', '__dllonexit', '__doserrno', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__mb_cur_max', '__pioinfo', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fdopen', '_filelengthi64', '_fileno', '_fileno', '_fmode', '_fstat64', '_ftime', '_initterm', '_lock', '_lseeki64', '_onexit', '_read', '_setjmp', '_strnicmp', '_unlock', '_write', '_write', 'abort', 'calloc', 'exit', 'fclose', 'fflush', 'fgetpos', 'fopen', 'fprintf', 'fputc', 'fputs', 'fread', 'free', 'fsetpos', 'fwrite', 'getc', 'getenv', 'getwc', 'isspace', 'iswctype', 'localeconv', 'longjmp', 'malloc', 'memchr', 'memcmp', 'memcpy', 'memmove', 'memset', 'printf', 'putc', 'putwc', 'realloc', 'setlocale', 'setvbuf', 'signal', 'sprintf', 'strcmp', 'strcoll', 'strerror', 'strftime', 'strlen', 'strncmp', 'strxfrm', 'towlower', 'towupper', 'ungetc', 'ungetwc', 'vfprintf', 'wcscoll', 'wcsftime', 'wcslen', 'wcsxfrm'], ['midiStreamOut', 'inet_ntoa', 'GetVersion', 'GetVersionExA', 'GetWindowTextA', 'GetViewportExtEx', 'OpenPrinterA', 'RegCloseKey', 'Shell_NotifyIconA', 'OleInitialize', 'UnRegisterTypeLib', 'ImageList_Destroy', 'GetOpenFileNameA', 'WTSSendMessageW', 'VirtualQuery', 'GetUserObjectInformationW', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueA', 'CreateToolbarEx', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetBkColor', 'GetOpenFileNameA', 'GetSaveFileNameA', 'CreateFontIndirectA', 'DeleteObject', 'GetObjectA', 'GetStockObject', 'SelectObject', 'SetBkMode', 'SetPixel', 'SetTextColor', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeConsole', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'GetStdHandle', 'GetTickCount', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', '_strdup', '_stricoll', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_fpreset', '_fullpath', '_iob', '_isctype', '_onexit', '_pctype', '_setmode', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'malloc', 'mbstowcs', 'memcpy', 'realloc', 'setlocale', 'signal', 'strcoll', 'strlen', 'tolower', 'vfprintf', 'wcstombs', 'AppendMenuA', 'BeginPaint', 'CharLowerA', 'CheckRadioButton', 'ClientToScreen', 'CreatePopupMenu', 'DefWindowProcW', 'DestroyMenu', 'DispatchMessageA', 'EnableWindow', 'EndPaint', 'FindWindowA', 'GetClientRect', 'GetDlgItem', 'GetMessageA', 'GetSystemMetrics', 'GetWindowLongA', 'GetWindowTextA', 'IsWindow', 'RedrawWindow', 'RegisterClassA', 'SendDlgItemMessageA', 'SetCursor', 'SetWindowPos', 'TranslateMessage', 'UnregisterClassA', 'wvsprintfA', 'CreateEnvironmentBlock', 'DestroyEnvironmentBlock', 'GetUserProfileDirectoryW'], ['DeleteCriticalSection', '__getmainargs', 'NtCancelIoFileEx', 'AllocateAndInitializeSid', 'BCryptGenRandom', 'CertAddCertificateContextToStore', 'FreeMibTable', 'AcquireSRWLockExclusive', 'NetApiBufferFree', 'NtCreateFile', 'CoCreateInstance', 'GetErrorInfo', 'PdhAddEnglishCounterW', 'CallNtPowerInformation', 'AcceptSecurityContext', 'CommandLineToArgvW', 'MessageBoxW', 'WSACleanup', 'GetModuleFileNameExW', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress'], ['lstrlenW', 'CloseHandle', 'SetErrorMode', 'CreateThread', 'GetModuleHandleW', 'OutputDebugStringA', 'MessageBoxW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'SaveDC', 'OleDraw', 'VariantCopy', 'GetDC', 'VerQueryValueA', 'mciSendCommandA'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA'], ['MessageBoxA', 'FreeLibrary', 'lstrcatA', 'GetModuleFileNameA', 'ExitProcess', 'LoadLibraryA', 'GetProcAddress', 'lstrlenA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyExA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualAlloc', 'VirtualFree'], ['LoadLibraryA', 'GetProcAddress'], ['WriteFile', 'WriteConsoleW', 'WaitForMultipleObjects', 'WaitForSingleObject', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'TlsAlloc', 'SwitchToThread', 'SuspendThread', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetProcessPriorityBoost', 'SetEvent', 'SetErrorMode', 'SetConsoleCtrlHandler', 'ResumeThread', 'PostQueuedCompletionStatus', 'LoadLibraryA', 'LoadLibraryW', 'SetThreadContext', 'GetThreadContext', 'GetSystemInfo', 'GetSystemDirectoryA', 'GetStdHandle', 'GetQueuedCompletionStatusEx', 'GetProcessAffinityMask', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetConsoleMode', 'FreeEnvironmentStringsW', 'ExitProcess', 'DuplicateHandle', 'CreateWaitableTimerExW', 'CreateThread', 'CreateIoCompletionPort', 'CreateFileA', 'CreateEventA', 'CloseHandle', 'AddVectoredExceptionHandler'], ['MessageBoxW'], ['lstrlenW', 'CloseHandle', 'SetErrorMode', 'CreateThread', 'MessageBoxW'], ['GetModuleHandleA', 'FindWindowA'], ['MessageBoxA', '__current_exception', '__current_exception_context', 'memset', '_except_handler4_common', '_initialize_onexit_table', '_register_onexit_function', '__p___argc', '__p___argv', '_controlfp_s', 'terminate', '_exit', '_initterm', 'exit', '_register_thread_local_exe_atexit_callback', '_c_exit', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '_set_app_type', '_seh_filter_exe', '_cexit', '_crt_atexit', '_initterm_e', '__setusermatherr', '_set_fmode', '__p__commode', '_configthreadlocale', '_set_new_mode', 'GetCurrentProcessId', 'GetModuleHandleW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter'], ['lstrcpy'], ['MessageBoxA', 'wsprintfA', 'CloseHandle', 'CreateFileA', 'ExitProcess', 'SetEndOfFile', 'SetFilePointer', 'WriteFile', 'lstrcpyA', 'memset', 'memcpy'], ['LoadLibraryA', 'ExitProcess', 'GetProcAddress'], ['FindNextVolumeW', 'EnterCriticalSection', 'GetNamedPipeHandleStateW', 'GetQueuedCompletionStatus', 'FillConsoleOutputCharacterA', 'SetThreadAffinityMask', 'TerminateProcess', 'GetCurrentProcessId', 'GetVersionExA', 'EnumDateFormatsExA', 'EnumResourceNamesA', 'FindNextFileW', 'CopyFileExW', 'BuildCommDCBAndTimeoutsW', 'DebugSetProcessKillOnExit', 'WritePrivateProfileStructA', 'MapViewOfFileEx', 'CreateTimerQueue', 'ReadConsoleInputA', 'GetSystemDirectoryA', 'GetDriveTypeA', 'LoadLibraryA', 'GlobalAlloc', 'VerifyVersionInfoW', 'GetBinaryTypeA', 'InterlockedExchange', 'FindFirstChangeNotificationA', 'FormatMessageW', 'SetDllDirectoryW', 'GetNamedPipeHandleStateA', 'WritePrivateProfileStringA', 'GetConsoleAliasesLengthW', 'GetProcessHeap', 'OpenWaitableTimerW', 'UnlockFile', 'InterlockedIncrement', 'GetStartupInfoA', 'GetSystemWow64DirectoryW', 'SetLastError', 'GetConsoleAliasExesW', 'ContinueDebugEvent', 'EndUpdateResourceA', 'GetLastError', 'GetSystemTime', 'OpenFileMappingA', 'GetConsoleAliasExesLengthW', 'lstrcmpW', 'SetConsoleActiveScreenBuffer', 'SetDefaultCommConfigW', 'VirtualFree', 'InterlockedExchangeAdd', 'GlobalUnfix', 'GetSystemWindowsDirectoryA', 'CopyFileW', 'GetOEMCP', 'FindAtomA', 'HeapUnlock', 'SetMailslotInfo', 'CreateActCtxA', '_lread', 'CreateIoCompletionPort', 'CreateNamedPipeA', 'SetSystemTimeAdjustment', 'DefineDosDeviceW', 'GetAtomNameW', 'SetConsoleScreenBufferSize', 'EnumResourceTypesW', 'lstrlenA', 'LoadLibraryW', 'WriteConsoleW', 'VirtualProtect', 'lstrcpyA', 'GetModuleHandleA', 'ReadConsoleOutputW', 'GetThreadContext', 'BuildCommDCBA', 'AddRefActCtx', 'GetStringTypeA', 'WritePrivateProfileStringW', 'GetFileAttributesW', 'GetVolumePathNameA', 'MoveFileW', 'GetCommMask', 'SetFileShortNameA', 'LockFile', 'QueryActCtxW', 'GetNamedPipeInfo', 'FreeConsole', 'GlobalGetAtomNameW', 'SetComputerNameW', 'GetConsoleAliasesW', 'WriteConsoleInputW', 'CreateMailslotA', 'SystemTimeToTzSpecificLocalTime', 'SetLocalTime', 'EnumSystemLocalesA', 'CallNamedPipeW', 'GetConsoleAliasExesLengthA', 'FindActCtxSectionStringA', 'CopyFileExA', 'ResetWriteWatch', 'GetPrivateProfileIntW', 'GetModuleHandleExA', 'GetStringTypeExA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalWire', 'FillConsoleOutputCharacterW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'FreeUserPhysicalPages', 'WriteConsoleOutputCharacterA', 'EnumDateFormatsW', 'TerminateJobObject', 'CreateFileW', 'GetDateFormatW', 'BuildCommDCBAndTimeoutsA', 'GetBinaryTypeW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleFileNameW', 'RtlUnwind', 'GetStartupInfoW', 'HeapValidate', 'IsBadReadPtr', 'GetProcAddress', 'TlsGetValue', 'GetModuleHandleW', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'TlsFree', 'DebugBreak', 'GetStdHandle', 'WriteFile', 'OutputDebugStringA', 'GetFileType', 'OutputDebugStringW', 'ExitProcess', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'HeapDestroy', 'HeapCreate', 'HeapFree', 'GetModuleFileNameA', 'FlushFileBuffers', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'HeapAlloc', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'GetACP', 'GetCPInfo', 'IsValidCodePage', 'InitializeCriticalSectionAndSpinCount', 'MultiByteToWideChar', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'SetFilePointer', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeW', 'GetLocaleInfoA', 'CloseHandle', 'CreateFileA', 'GetCaretBlinkTime'], ['GetModuleHandleA', 'MessageBoxA'], ['GetModuleHandleA'], ['GetModuleHandleA', 'MessageBoxA', 'RegOpenKeyExA'], ['MessageBoxA', 'TlsAlloc', 'WinExec', 'MultiByteToWideChar', 'GetWindowsDirectoryW', 'WideCharToMultiByte', 'GetModuleFileNameW', 'GetLastError', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoW', 'CloseHandle', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'HeapCreate', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'DeleteCriticalSection', 'SetFilePointer', 'IsProcessorFeaturePresent', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'GetModuleFileNameA', 'GlobalAddAtomW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'CreateDirectoryA', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetStdHandle', 'FlushFileBuffers', 'Sleep', 'CreateFileA', 'GetCPInfo', 'GetACP', 'VirtualProtect', 'GetOEMCP', 'IsValidCodePage', 'CreateFileW', 'LoadLibraryW', 'WriteConsoleW', 'HeapReAlloc', 'SetEndOfFile', 'GetProcessHeap', 'LCMapStringW', 'GetStringTypeW', 'HeapSize'], ['GetProcAddress'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'ShellExecuteA', 'ShowWindow'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect'], ['MessageBoxA', 'LoadAcceleratorsA', 'GetMessageA', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'LoadIconA', 'LoadCursorA', 'RegisterClassExA', 'LoadStringA', 'SetScrollInfo', 'PostQuitMessage', 'GetDC', 'ReleaseDC', 'BeginPaint', 'GetClientRect', 'DrawTextA', 'EndPaint', 'DefWindowProcA', 'ScrollWindowEx', 'DestroyWindow', 'DialogBoxParamA', 'EndDialog', 'CreateWindowExA', 'UpdateWindow', 'ShowWindow', 'CreateFontIndirectA', 'SelectObject', 'GetTextMetricsA', 'CryptAcquireContextA', 'memcpy', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter', '_ismbblead', 'exit', '_acmdln', '_initterm', '_initterm_e', '_configthreadlocale', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '_encode_pointer', '__set_app_type', '_crt_debugger_hook', '?terminate@@YAXXZ', '_unlock', '__dllonexit', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', '_invoke_watson', '_controlfp_s', 'memset', '_wcslwr', '__CxxFrameHandler3', '_invalid_parameter_noinfo', '_mbsnbcpy', 'malloc', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Unlock@_Mutex@std@@QAEXXZ', '?_Lock@_Mutex@std@@QAEXXZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@PB_W@Z', '??0?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z', '??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QAE@XZ', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'QueryPerformanceCounter', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA', 'OleInitialize'], ['GetCurrentThreadId', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'GetModuleFileNameW', 'WriteFile', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'CreateEventW', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetTickCount', 'CreateSemaphoreW', 'FreeLibrary', 'LoadLibraryExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'RtlUnwind', 'LCMapStringW', 'GetStringTypeW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindResourceExW', 'LocalFree', 'CreateDirectoryW', 'DeleteFileW', 'GetCurrentThread', 'WaitForMultipleObjects', 'LoadLibraryW', 'WaitForSingleObject', 'GetExitCodeProcess', 'DuplicateHandle', 'ReleaseMutex', 'GetEnvironmentVariableW', 'lstrcmpiW', 'VirtualQuery', 'GetTempPathW', 'GetLocalTime', 'OutputDebugStringA', 'GetPrivateProfileIntW', 'GetPrivateProfileStringW', 'lstrcmpW', 'lstrlenW', 'SetFilePointer', 'CreateMutexW', 'InitializeCriticalSection', 'TryEnterCriticalSection', 'SetEvent', 'ResetEvent', 'GetFileAttributesExW', 'SetLastError', 'VerifyVersionInfoW', 'VerSetConditionMask', 'MoveFileExW', 'GetFileTime', 'ReadFile', 'DeviceIoControl', 'SetProcessWorkingSetSize', 'OpenProcess', 'CreateProcessW', 'ReadProcessMemory', 'lstrcpynW', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'CreateThread', 'DebugActiveProcess', 'GetThreadContext', 'DebugActiveProcessStop', 'VirtualQueryEx', 'GetProcessId', 'GetSystemInfo', 'ContinueDebugEvent', 'WaitForDebugEvent', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetModuleHandleExW', 'ExitProcess', 'IsProcessorFeaturePresent', 'GetCommandLineW', 'EncodePointer', 'LeaveCriticalSection', 'WaitNamedPipeW', 'TransactNamedPipe', 'SetNamedPipeHandleState', 'RtlCaptureContext', 'ReleaseSemaphore', 'EnterCriticalSection', 'OutputDebugStringW', 'DeleteCriticalSection', 'DecodePointer', 'HeapSize', 'GetProcAddress', 'GetLastError', 'RaiseException', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'GetModuleHandleW', 'HeapFree', 'IsDebuggerPresent', 'GetUserDefaultLangID', 'GetSystemDefaultLangID', 'GetComputerNameExW', 'GetOverlappedResult', 'ConnectNamedPipe', 'CreateNamedPipeW', 'DisconnectNamedPipe', 'UnregisterWait', 'GetProcessTimes', 'UnregisterWaitEx', 'RegisterWaitForSingleObject', 'VirtualProtect', 'VirtualAlloc', 'HeapAlloc', 'RemoveDirectoryW', 'HeapReAlloc', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'GetProcessWindowStation', 'CloseDesktop', 'CloseClipboard', 'CharUpperW', 'CharLowerW', 'PostThreadMessageW', 'DispatchMessageW', 'GetMessageW', 'PeekMessageW', 'EnumWindows', 'IsWindowVisible', 'GetWindowThreadProcessId', 'SetThreadDesktop', 'CreateWindowStationW', 'CloseWindowStation', 'GetThreadDesktop', 'SetProcessWindowStation', 'CreateDesktopW', 'wvsprintfW', 'wsprintfW', 'MessageBoxW'], ['SetErrorMode'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'wcscmp', 'SHSetValueA', 'GetModuleFileNameExA', 'WSAGetLastError', 'GetAdaptersInfo', 'WNetOpenEnumA', 'DestroyEnvironmentBlock', 'GdipGetImageEncodersSize', 'GetDC', 'BitBlt', 'SetEntriesInAclA', 'SHGetSpecialFolderPathA'], ['InterlockedDecrement', 'GetModuleFileNameW', 'lstrcmpA', 'lstrcmpiA', 'GetProcAddress', 'InterlockedIncrement', 'GetModuleHandleA', 'ExitProcess', 'TerminateProcess', 'HeapAlloc', 'HeapFree', 'GetSystemTimeAsFileTime', 'DeleteFileW', 'GetModuleHandleW', 'CreateFileA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetEndOfFile', 'SetStdHandle', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetConsoleMode', 'GetConsoleCP', 'GetStartupInfoA', 'GetFileType', 'SetHandleCount', 'GetModuleFileNameA', 'GetStdHandle', 'HeapReAlloc', 'VirtualAlloc', 'EnterCriticalSection', 'TlsFree', 'WriteFile', 'TlsAlloc', 'ReadFile', 'SetFileTime', 'SetFilePointer', 'CreateFileW', 'GetDiskFreeSpaceExW', 'SystemTimeToFileTime', 'SetWaitableTimer', 'CreateWaitableTimerW', 'WideCharToMultiByte', 'lstrlenW', 'GetTempFileNameW', 'GetTempPathW', 'GetLastError', 'ResetEvent', 'CancelWaitableTimer', 'WaitForMultipleObjects', 'GetTickCount', 'MultiByteToWideChar', 'lstrlenA', 'TlsSetValue', 'IsBadWritePtr', 'IsBadReadPtr', 'GetCurrentProcess', 'Sleep', 'WaitForSingleObject', 'SetEvent', 'CreateEventW', 'DeviceIoControl', 'LeaveCriticalSection', 'DeleteCriticalSection', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'LCMapStringW', 'LCMapStringA', 'SetLastError', 'TlsGetValue', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'CreateThread', 'GetCurrentThreadId', 'ExitThread', 'CloseHandle', 'FlushFileBuffers', 'RegQueryInfoKeyW', 'RegOpenKeyW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumKeyExW', 'RegCloseKey', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'SysAllocString', 'SysFreeString', 'SHSetValueW', 'PathAppendW', 'PathRemoveFileSpecW', 'SHDeleteKeyW', 'SHGetValueA', 'StrStrIW', 'PathGetDriveNumberW', 'SHGetValueW', 'FtpCommandW', 'InternetWriteFile', 'HttpEndRequestW', 'FtpOpenFileW', 'InternetReadFileExA', 'InternetGetLastResponseInfoW', 'InternetSetStatusCallbackW', 'InternetCloseHandle', 'InternetOpenW', 'FtpGetFileSize', 'InternetSetOptionW', 'InternetConnectW', 'InternetQueryOptionW', 'InternetCrackUrlW', 'InternetReadFile', 'HttpQueryInfoW', 'HttpSendRequestExW', 'HttpOpenRequestW', 'InternetSetOptionA', 'ObtainUserAgentString', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'Netbios'], ['TlsAlloc', 'TlsFree', 'MultiByteToWideChar', 'DebugBreak', 'OutputDebugStringA', 'TerminateProcess', 'GetCurrentProcess', 'InterlockedIncrement', 'lstrcpynA', 'lstrlenW', 'WideCharToMultiByte', 'GetFileAttributesExA', 'CloseHandle', 'GetLastError', 'CreateFileA', 'ReadFile', 'GetFileSize', 'WriteFile', 'GetLongPathNameA', 'RaiseException', 'VirtualQuery', 'SearchPathW', 'GetLongPathNameW', 'LocalFree', 'GetSystemDirectoryW', 'GetCurrentProcessId', 'DeviceIoControl', 'LoadLibraryA', 'GetProcAddress', 'GetFileAttributesW', 'LocalAlloc', 'GetVersionExA', 'SetFilePointer', 'CreateFileW', 'GetPrivateProfileStringA', 'GetSystemWindowsDirectoryA', 'GetEnvironmentVariableA', 'GetSystemInfo', 'GlobalMemoryStatusEx', 'OpenProcess', 'LoadLibraryExW', 'GetShortPathNameA', 'GetPrivateProfileIntA', 'FindResourceA', 'LoadResource', 'WaitForSingleObject', 'SizeofResource', 'IsDBCSLeadByte', 'DisableThreadLibraryCalls', 'LoadLibraryExA', 'CreateThread', 'CreateDirectoryA', 'GetCurrentThreadId', 'SetEndOfFile', 'GetTickCount', 'SetUnhandledExceptionFilter', 'CreateRemoteThread', 'GetCommandLineW', 'SetErrorMode', 'VirtualFree', 'GetModuleFileNameW', 'TlsGetValue', 'GlobalAlloc', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'GetPrivateProfileSectionA', 'CreateEventA', 'SetEvent', 'WaitForMultipleObjects', 'GetModuleHandleW', 'LoadLibraryW', 'lstrcpynW', 'lstrcmpA', 'IsBadCodePtr', 'SetLastError', 'GetFileAttributesExW', 'GetSystemTime', 'SystemTimeToFileTime', 'VirtualProtect', 'Sleep', 'GetPrivateProfileStringW', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'FlushInstructionCache', 'lstrcmpW', 'GetExitCodeThread', 'ResetEvent', 'GetProcessHeap', 'IsBadReadPtr', 'TlsSetValue', 'GetModuleFileNameA', 'GetModuleHandleA', 'lstrcmpiA', 'FreeLibrary', 'InterlockedDecrement', 'CompareStringW', 'CompareStringA', 'FlushFileBuffers', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'GetLocaleInfoA', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetStartupInfoA', 'SetHandleCount', 'lstrlenA', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCurrentThread', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedExchange', 'VirtualAlloc', 'InterlockedCompareExchange', 'HeapFree', 'OpenThread', 'SetEnvironmentVariableA', 'CreateMutexA', 'FormatMessageW', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'ReleaseMutex', 'HeapDestroy', 'HeapCreate', 'LCMapStringW', 'LCMapStringA', 'GetStringTypeW', 'SetFilePointerEx', 'GetFileSizeEx', 'LocalFileTimeToFileTime', 'GetFileType', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'SuspendThread', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapReAlloc', 'GetCommandLineA', 'RtlUnwind', 'ExitProcess', 'HeapSize', 'GetStdHandle', 'GetCPInfo', 'GetACP', 'GetStringTypeA', 'IsValidCodePage', 'GetOEMCP', 'HeapAlloc', 'EnumThreadWindows', 'GetActiveWindow', 'MessageBoxW', 'FindWindowA', 'IsWindow', 'SendMessageTimeoutA', 'PostMessageA', 'DestroyWindow', 'KillTimer', 'DefWindowProcA', 'RegisterClassA', 'CreateWindowExA', 'SetTimer', 'GetMessageA', 'TranslateMessage', 'LoadStringA', 'CharNextA', 'CallNextHookEx', 'SetWindowsHookExA', 'BroadcastSystemMessageA', 'UnhookWindowsHookEx', 'CharLowerA', 'RegisterWindowMessageA', 'ScreenToClient', 'GetClassNameA', 'DispatchMessageA', 'FindWindowExA', 'RegDeleteValueA', 'RegQueryInfoKeyA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegEnumKeyExA', 'RegDeleteKeyA', 'RegSetValueExA', 'RegOpenKeyExW', 'RegEnumKeyExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegCloseKey', 'SHGetFolderPathA', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderPathA', 'CommandLineToArgvW', 'ShellExecuteW', 'CoTaskMemRealloc', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CreateStreamOnHGlobal', 'StringFromGUID2', 'CoCreateInstance', 'StringFromCLSID', 'SysStringByteLen', 'SysAllocStringByteLen', 'UnRegisterTypeLib', 'VarBstrCmp', 'SysAllocString', 'SysAllocStringLen', 'LoadRegTypeLib', 'VarUI4FromStr', 'VariantInit', 'LoadTypeLib', 'SysStringLen', 'DispCallFunc', 'SysFreeString', 'VariantClear', 'StrToIntA', 'PathRemoveExtensionA', 'SHGetValueW', 'PathIsPrefixW', 'PathIsRootW', 'PathRemoveFileSpecW', 'StrCpyNW', 'PathFileExistsA', 'PathCombineA', 'PathFindFileNameW', 'StrCmpW', 'StrChrW', 'PathCombineW', 'StrStrIW', 'StrCmpIW', 'StrDupW', 'PathFileExistsW', 'PathIsDirectoryW', 'SHGetValueA', 'StrCmpNIA', 'PathFindFileNameA', 'PathRemoveFileSpecA', 'StrStrIA', 'StrCmpNA', 'StrChrA', 'PathRemoveBackslashW', 'PathRemoveExtensionW', 'PathFindExtensionW', 'SHDeleteKeyA', 'SHSetValueA', 'UrlGetPartW', 'UrlGetPartA', 'UrlCanonicalizeA', 'StrCmpNIW', 'StrStrW', 'PathAppendA', 'PathIsDirectoryA', 'GetModuleInformation', 'GetModuleBaseNameA', 'EnumProcessModules', 'GetModuleFileNameExA', 'GetFileVersionInfoA', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'HttpOpenRequestA', 'InternetSetStatusCallbackA', 'HttpAddRequestHeadersA', 'InternetCloseHandle', 'HttpSendRequestExA', 'InternetWriteFile', 'InternetReadFileExA', 'HttpEndRequestA', 'HttpQueryInfoA', 'InternetConnectA', 'InternetOpenA', 'InternetSetOptionA', 'WSASetLastError'], ['CloseHandle', 'VirtualAllocEx', 'GetLastError', 'IsDebuggerPresent', 'InitializeSListHead', 'OpenProcess', 'GetCurrentProcess', 'CreateRemoteThread', 'WriteProcessMemory', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'GetModuleHandleW', 'MessageBoxA', 'LookupPrivilegeValueA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'memset', '__current_exception_context', '__current_exception', '__C_specific_handler', '_register_onexit_function', '__p___argv', '_initialize_onexit_table', '_cexit', '_c_exit', '__p___argc', '_get_initial_narrow_environment', '_initialize_narrow_environment', '_configure_narrow_argv', '_register_thread_local_exe_atexit_callback', '_set_app_type', '_seh_filter_exe', 'terminate', '_exit', 'exit', '_initterm_e', '_crt_atexit', '_initterm', '__setusermatherr', '_set_fmode', '__p__commode', '_configthreadlocale', '_set_new_mode'], ['DisableThreadLibraryCalls', 'GetSystemDirectoryA', 'LoadLibraryA', 'DeleteFileA', 'lstrcpyA', 'FreeConsole', 'SetFileAttributesA', 'GetProcAddress', 'CopyFileA', 'FreeLibrary', 'Sleep', 'FindClose', 'FindNextFileA', 'GetCurrentProcess', 'FindFirstFileA', 'ExitProcess', 'MultiByteToWideChar', 'GetStringTypeW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetCPInfo', 'GetLastError', 'SetLastError', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'InitializeSListHead', 'CloseHandle', 'InitializeCriticalSectionAndSpinCount', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'IsProcessorFeaturePresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RaiseException', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetFileSizeEx', 'SetFilePointerEx', 'GetStdHandle', 'GetFileType', 'HeapAlloc', 'FlushFileBuffers', 'WriteFile', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapFree', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileAttributesExW', 'ReadFile', 'ReadConsoleW', 'HeapReAlloc', 'HeapSize', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'SetStdHandle', 'CreateFileW', 'WriteConsoleW', 'SetEndOfFile', 'GetModuleFileNameA', 'ExitWindowsEx', 'MessageBoxA', 'SystemParametersInfoA', 'MessageBoxW', 'wsprintfA', 'AdjustTokenPrivileges', 'CryptAcquireContextA', 'CryptGenRandom', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CryptReleaseContext', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'PathFileExistsA'], ['ChoosePixelFormat', 'CreateBitmap', 'CreateDCW', 'CreateDIBSection', 'CreateRectRgn', 'DeleteDC', 'DeleteObject', 'DescribePixelFormat', 'GetDeviceCaps', 'GetDeviceGammaRamp', 'SetDeviceGammaRamp', 'SetPixelFormat', 'SwapBuffers', 'AddVectoredExceptionHandler', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'CreateIoCompletionPort', 'CreateThread', 'CreateWaitableTimerExW', 'DeleteCriticalSection', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetEnvironmentStringsW', 'GetLastError', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetQueuedCompletionStatusEx', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetThreadContext', 'GetTickCount', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'MultiByteToWideChar', 'PostQueuedCompletionStatus', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetConsoleCtrlHandler', 'SetErrorMode', 'SetEvent', 'SetProcessPriorityBoost', 'SetThreadContext', 'SetThreadExecutionState', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'Sleep', 'SuspendThread', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VerSetConditionMask', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthread', '_cexit', '_errno', '_exit', '_fmode', '_initterm', '_onexit', '_snwprintf', '_vsnprintf', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwprintf', 'fwrite', 'malloc', 'memcpy', 'memmove', 'memset', 'qsort', 'raise', 'realloc', 'signal', 'sprintf', 'sscanf', 'strcmp', 'strcpy', 'strcspn', 'strlen', 'strncmp', 'strncpy', 'strspn', 'strstr', 'strtok', 'strtol', 'strtoul', 'vfprintf', 'wcscmp', 'wcscpy', 'wglGetProcAddress', 'DragAcceptFiles', 'DragFinish', 'DragQueryFileW', 'DragQueryPoint', 'AdjustWindowRectEx', 'BringWindowToTop', 'ChangeDisplaySettingsExW', 'ClientToScreen', 'ClipCursor', 'CloseClipboard', 'CreateIconIndirect', 'CreateWindowExW', 'DefWindowProcW', 'DestroyIcon', 'DestroyWindow', 'DispatchMessageW', 'EmptyClipboard', 'EnumDisplayDevicesW', 'EnumDisplayMonitors', 'EnumDisplaySettingsExW', 'EnumDisplaySettingsW', 'FlashWindow', 'GetActiveWindow', 'GetClassLongPtrW', 'GetClientRect', 'GetClipboardData', 'GetCursorPos', 'GetDC', 'GetKeyState', 'GetLayeredWindowAttributes', 'GetMessageTime', 'GetMonitorInfoW', 'GetPropW', 'GetRawInputData', 'GetRawInputDeviceInfoA', 'GetRawInputDeviceList', 'GetSystemMetrics', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'IsIconic', 'IsWindowVisible', 'IsZoomed', 'LoadCursorW', 'LoadImageW', 'MapVirtualKeyW', 'MessageBoxW', 'MonitorFromWindow', 'MoveWindow', 'MsgWaitForMultipleObjects', 'OffsetRect', 'OpenClipboard', 'PeekMessageW', 'PostMessageW', 'PtInRect', 'RegisterClassExW', 'RegisterDeviceNotificationW', 'RegisterRawInputDevices', 'ReleaseCapture', 'ReleaseDC', 'RemovePropW', 'ScreenToClient', 'SendMessageW', 'SetCapture', 'SetClipboardData', 'SetCursor', 'SetCursorPos', 'SetFocus', 'SetForegroundWindow', 'SetLayeredWindowAttributes', 'SetPropW', 'SetRect', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowTextW', 'ShowWindow', 'SystemParametersInfoW', 'ToUnicode', 'TrackMouseEvent', 'TranslateMessage', 'UnregisterClassW', 'UnregisterDeviceNotification', 'WaitMessage', 'WindowFromPoint'], ['GlobalFlags', 'GetVersionExA', 'lstrcmpW', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GetLocaleInfoA', 'GetCPInfo', 'GetOEMCP', 'FlushFileBuffers', 'SetEndOfFile', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapReAlloc', 'RaiseException', 'RtlUnwind', 'GetCommandLineA', 'GetStartupInfoA', 'HeapSize', 'ExitProcess', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetConsoleCP', 'GetConsoleMode', 'GetACP', 'LCMapStringA', 'LCMapStringW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoW', 'GetCurrentThreadId', 'lstrcmpA', 'GlobalGetAtomNameA', 'InterlockedIncrement', 'InterlockedDecrement', 'GetModuleHandleA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetCurrentProcessId', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'GetCurrentProcess', 'SetFileAttributesA', 'TerminateProcess', 'UnmapViewOfFile', 'CreateFileMappingA', 'MapViewOfFile', 'GetFileInformationByHandle', 'GetFileSize', 'GetLocalTime', 'FileTimeToSystemTime', 'WriteFile', 'SetFileTime', 'LocalFileTimeToFileTime', 'GetCurrentDirectoryA', 'CreateDirectoryA', 'ReadFile', 'CloseHandle', 'CreateFileA', 'SystemTimeToFileTime', 'SetFilePointer', 'GetTickCount', 'Sleep', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'HeapAlloc', 'GetThreadLocale', 'GetProcessHeap', 'HeapFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'VirtualFree', 'VirtualAlloc', 'IsBadReadPtr', 'SetLastError', 'VirtualProtect', 'MoveFileA', 'GetModuleFileNameA', 'DeleteFileA', 'RemoveDirectoryA', 'GetFileAttributesA', 'CopyFileA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'CreateFileW', 'GetEnvironmentVariableA', 'lstrlenA', 'CompareStringA', 'GetVersion', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'GetClientRect', 'GetMenu', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'CopyRect', 'DefWindowProcA', 'CallWindowProcA', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'SetWindowPos', 'SetWindowLongA', 'IsWindow', 'GetDlgItem', 'GetFocus', 'GetWindow', 'GetDlgCtrlID', 'GetClassNameA', 'PtInRect', 'SetWindowTextA', 'UnregisterClassA', 'SetWindowsHookExA', 'CallNextHookEx', 'DispatchMessageA', 'GetKeyState', 'PeekMessageA', 'ValidateRect', 'GetWindowTextA', 'LoadCursorA', 'GetSystemMetrics', 'GetDC', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'UnhookWindowsHookEx', 'GetWindowThreadProcessId', 'SendMessageA', 'GetParent', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'EnableWindow', 'PostQuitMessage', 'DestroyMenu', 'MessageBoxA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetDesktopWindow', 'GetWindowRect', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'RegisterWindowMessageA', 'LoadIconA', 'WinHelpA', 'GetCapture', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ClientToScreen', 'SetForegroundWindow', 'SetMapMode', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'DeleteObject', 'SetViewportExtEx', 'GetDeviceCaps', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetSetOptionA', 'InternetOpenA', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'VariantClear', 'VariantChangeType', 'VariantInit', 'LoadLibraryA', 'VirtualProtect', 'GetModuleFileNameA', 'ExitProcess', 'MessageBoxA'], ['GetFileTime', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GlobalSize', 'CopyFileA', 'RtlUnwind', 'HeapReAlloc', 'FindNextFileA', 'RaiseException', 'GetCommandLineA', 'ExitThread', 'TerminateProcess', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'FatalAppExitA', 'IsBadWritePtr', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'SetUnhandledExceptionFilter', 'GetFileSize', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'UnhandledExceptionFilter', 'IsBadCodePtr', 'SetStdHandle', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'GetProfileStringA', 'InterlockedExchange', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenW', 'GetStringTypeExA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'LocalAlloc', 'SizeofResource', 'GlobalFlags', 'GetLastError', 'GlobalAlloc', 'lstrcmpA', 'GetCurrentThread', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'CloseHandle', 'FormatMessageA', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedIncrement', 'lstrcpynA', 'MulDiv', 'InterlockedDecrement', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'lstrcmpiA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcpyA', 'GetModuleHandleA', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'InitializeCriticalSection', 'ExitProcess', 'CreateThread', 'CreateProcessA', 'WaitForSingleObject', 'CreateDirectoryA', 'GetSystemTimeAsFileTime', 'GetTickCount', 'Sleep', 'GetShortPathNameA', 'GetModuleFileNameA', 'lstrlenA', 'GetThreadLocale', 'HeapFree', 'IsBadReadPtr', 'VirtualProtect', 'GetSystemInfo', 'GetProcessHeap', 'HeapAlloc', 'SetLastError', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'VirtualFree', 'SetHandleCount', 'VirtualAlloc', 'GetNextDlgGroupItem', 'MessageBeep', 'SetRectEmpty', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'BringWindowToTop', 'CharUpperA', 'RegisterClipboardFormatA', 'RemoveMenu', 'PostThreadMessageA', 'DestroyIcon', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'PostMessageA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'PeekMessageA', 'DispatchMessageA', 'GetFocus', 'SetFocus', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'WinHelpA', 'GetClassInfoA', 'RegisterClassA', 'GetMenuItemCount', 'GetMenuItemID', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'GetKeyState', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'CopyAcceleratorTableA', 'GetDialogBaseUnits', 'RemovePropA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'SetWindowLongA', 'SetWindowPos', 'RegisterWindowMessageA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetNextDlgTabItem', 'EndDialog', 'GetSysColorBrush', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'wsprintfA', 'MessageBoxA', 'GetParent', 'ScreenToClient', 'LoadMenuA', 'GetSubMenu', 'WindowFromPoint', 'SetCapture', 'GetCapture', 'ClientToScreen', 'ReleaseCapture', 'GetMenu', 'CheckMenuItem', 'EnableWindow', 'HideCaret', 'ShowCaret', 'ExcludeUpdateRgn', 'DrawFocusRect', 'DefDlgProcA', 'IsWindowUnicode', 'LoadIconA', 'KillTimer', 'IsWindowVisible', 'InvalidateRect', 'PtInRect', 'ReleaseDC', 'GetDC', 'IsIconic', 'DrawIcon', 'GetSystemMetrics', 'SendMessageA', 'SetTimer', 'GetClientRect', 'GetWindowRect', 'CharNextA', 'GetMenuStringA', 'DeleteMenu', 'InsertMenuA', 'GetWindowThreadProcessId', 'GetPropA', 'WaitMessage', 'GetSystemMenu', 'AppendMenuA', 'SetRect', 'GetDesktopWindow', 'GetClassNameA', 'MapDialogRect', 'SetWindowContextHelpId', 'SetCursor', 'ShowOwnedPopups', 'PostQuitMessage', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'DestroyMenu', 'LoadStringA', 'OemToCharA', 'CharToOemA', 'InflateRect', 'wvsprintfA', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GetCursorPos', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'EnableMenuItem', 'ShowWindow', 'GetDlgItemTextA', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'GetActiveWindow', 'LoadCursorA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'CallWindowProcA', 'SetDlgItemInt', 'MoveWindow', 'StartDocA', 'SaveDC', 'RestoreDC', 'SelectPalette', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'DeleteDC', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'GetViewportExtEx', 'GetWindowExtEx', 'ExtCreatePen', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetMapMode', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'CreateRectRgnIndirect', 'CreateFontIndirectA', 'DPtoLP', 'CreateCompatibleDC', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'GetTextColor', 'GetBkColor', 'LPtoDP', 'CopyMetaFileA', 'CreateDCA', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'BitBlt', 'SetPixelV', 'SelectObject', 'CreateCompatibleBitmap', 'CreatePen', 'GetStockObject', 'DeleteObject', 'GetClipRgn', 'CreateDIBitmap', 'GetTextExtentPointA', 'CreateSolidBrush', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegDeleteKeyA', 'RegCreateKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegSetValueA', 'RegOpenKeyA', 'RegCloseKey', 'RegDeleteValueA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'SHGetFileInfoA', 'DragFinish', 'DragAcceptFiles', 'DragQueryFileA', 'ExtractAssociatedIconA', 'ExtractIconA', 'OleDuplicateData', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'CoDisconnectObject', 'OleRun', 'CoCreateInstance', 'CreateBindCtx', 'CoTaskMemFree', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'SetConvertStg', 'WriteFmtUserTypeStg', 'WriteClassStg', 'OleRegGetUserType', 'ReadFmtUserTypeStg', 'ReadClassStg', 'StringFromCLSID', 'CoTreatAsClass', 'ReleaseStgMedium', 'CLSIDFromProgID', 'CoRegisterMessageFilter', 'CoRegisterClassObject', 'CoRevokeClassObject', 'OleSetClipboard', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CreateStreamOnHGlobal', 'CoTaskMemAlloc', 'SysFreeString', 'VariantCopy', 'VariantChangeType', 'SysReAllocStringLen', 'SysAllocString', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'SysAllocStringByteLen', 'SysStringByteLen', 'VarCyFromStr', 'SysAllocStringLen', 'VarDateFromStr', 'VarBstrFromDate', 'SafeArrayCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'SysStringLen', 'LoadTypeLib', 'VarBstrFromCy', 'VariantTimeToSystemTime', 'VariantClear', 'mixerGetLineInfoA', 'mixerGetDevCapsA', 'mixerOpen', 'mixerGetNumDevs', 'mixerSetControlDetails', 'mixerGetControlDetailsA', 'mixerClose', 'mixerGetLineControlsA', 'MCIWndCreateA'], ['GetFileAttributesA', 'GetFileSize', 'GetFileTime', 'FormatMessageA', 'ExitProcess', 'TerminateProcess', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetCommandLineA', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetTickCount', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'GetThreadLocale', 'GetProcessVersion', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedIncrement', 'WritePrivateProfileStringA', 'GlobalFlags', 'lstrlenA', 'lstrcpynA', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalFree', 'LocalAlloc', 'MulDiv', 'SetLastError', 'InterlockedExchange', 'InterlockedDecrement', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'GetModuleHandleA', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'VirtualAlloc', 'CreateThread', 'ResetEvent', 'WaitForSingleObject', 'CreateMutexA', 'GetLastError', 'ReleaseMutex', 'CloseHandle', 'GetProcAddress', 'LoadLibraryA', 'Sleep', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetFileAttributesExA', 'SetFileAttributesA', 'CopyFileA', 'GetEnvironmentStrings', 'CreateProcessA', 'SetRect', 'GetNextDlgGroupItem', 'MessageBeep', 'DestroyMenu', 'CharUpperA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'PtInRect', 'GetClassNameA', 'GetDesktopWindow', 'LoadCursorA', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'SetFocus', 'CopyAcceleratorTableA', 'CopyRect', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'GetClassInfoA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetWindowTextA', 'GetDlgCtrlID', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'SetWindowLongA', 'RegisterWindowMessageA', 'OffsetRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'MapDialogRect', 'SetWindowPos', 'GetWindow', 'SetWindowContextHelpId', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CharNextA', 'LoadStringA', 'GetSysColorBrush', 'AdjustWindowRectEx', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'GetCursorPos', 'SetWindowsHookExA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'MessageBoxA', 'SetCursor', 'PostQuitMessage', 'PostMessageA', 'wsprintfA', 'EnableWindow', 'IsIconic', 'SendMessageA', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'RegisterClassA', 'UnregisterClassA', 'GetWindowExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextColor', 'GetViewportExtEx', 'DPtoLP', 'LPtoDP', 'GetMapMode', 'GetDeviceCaps', 'DeleteObject', 'GetBkColor', 'CreateBitmap', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'DeleteDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CreateILockBytesOnHGlobal', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'CoTaskMemAlloc', 'OleFlushClipboard', 'SysStringLen', 'SysAllocStringByteLen', 'SysAllocString', 'VariantChangeType', 'VariantCopy', 'VariantTimeToSystemTime', 'VariantClear', 'SysAllocStringLen', 'SysFreeString', 'htons', 'WSACleanup', 'gethostbyname', 'socket', 'recv', 'closesocket', 'connect', 'send'], ['GetTickCount', 'GetFileAttributesA', 'GetFileSize', 'GetFileTime', 'FormatMessageA', 'ExitProcess', 'TerminateProcess', 'RtlUnwind', 'RaiseException', 'GetStartupInfoA', 'GetCommandLineA', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'FileTimeToLocalFileTime', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'FileTimeToSystemTime', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'GetThreadLocale', 'GetProcessVersion', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedIncrement', 'WritePrivateProfileStringA', 'GlobalFlags', 'lstrlenA', 'lstrcpynA', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalFree', 'LocalAlloc', 'MulDiv', 'SetLastError', 'InterlockedDecrement', 'InterlockedExchange', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'GetModuleHandleA', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'VirtualAlloc', 'CreateThread', 'ResetEvent', 'WaitForSingleObject', 'CreateMutexA', 'GetLastError', 'ReleaseMutex', 'CloseHandle', 'GetProcAddress', 'LoadLibraryA', 'GetLocalTime', 'Sleep', 'GetModuleFileNameA', 'CreateDirectoryA', 'GetFileAttributesExA', 'SetFileAttributesA', 'CopyFileA', 'GetEnvironmentStrings', 'CreateProcessA', 'SetRect', 'GetNextDlgGroupItem', 'MessageBeep', 'DestroyMenu', 'CharUpperA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'PtInRect', 'GetClassNameA', 'GetDesktopWindow', 'LoadCursorA', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'SetFocus', 'CopyAcceleratorTableA', 'CopyRect', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'GetClassInfoA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetWindowTextA', 'GetDlgCtrlID', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'SetWindowLongA', 'RegisterWindowMessageA', 'OffsetRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'MapDialogRect', 'SetWindowPos', 'GetWindow', 'SetWindowContextHelpId', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CharNextA', 'LoadStringA', 'GetSysColorBrush', 'AdjustWindowRectEx', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'GetCursorPos', 'SetWindowsHookExA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'SetCursor', 'PostQuitMessage', 'PostMessageA', 'wsprintfA', 'EnableWindow', 'IsIconic', 'SendMessageA', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'MessageBoxA', 'LoadIconA', 'RegisterClassA', 'UnregisterClassA', 'GetWindowExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextColor', 'GetViewportExtEx', 'DPtoLP', 'LPtoDP', 'GetMapMode', 'GetDeviceCaps', 'DeleteObject', 'GetBkColor', 'CreateBitmap', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'DeleteDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CreateILockBytesOnHGlobal', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'CoTaskMemAlloc', 'OleFlushClipboard', 'SysStringLen', 'SysAllocStringByteLen', 'SysAllocString', 'VariantChangeType', 'VariantCopy', 'VariantTimeToSystemTime', 'VariantClear', 'SysAllocStringLen', 'SysFreeString', 'htons', 'WSACleanup', 'gethostbyname', 'socket', 'recv', 'closesocket', 'connect', 'send'], ['QueryPerformanceCounter', 'CertCloseStore', 'BCryptGenRandom', 'getsockname', 'NtDeviceIoControlFile', 'ApplyControlToken', 'RegCloseKey', 'MessageBoxW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['FindClose', 'ReadFile', 'WriteFile', 'VirtualProtect', 'HeapAlloc', 'GetProcessHeap', 'WriteConsoleW', 'CloseHandle', 'GetLastError', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetProcAddress', 'CreateFileW', 'HeapSize', 'SetStdHandle', 'SetEnvironmentVariableW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'InitializeSListHead', 'RtlUnwindEx', 'RtlPcToFileHeader', 'RaiseException', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'FindFirstFileExW', 'FindNextFileW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'RtlUnwind', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptAcquireContextA', 'CryptDecrypt', 'CryptCreateHash', 'CryptDeriveKey', 'CryptHashData', 'CryptReleaseContext'], ['CloseHandle', 'CompareStringW', 'CreateEventW', 'CreateFileA', 'CreateFileW', 'CreateThread', 'DecodePointer', 'DeleteCriticalSection', 'EncodePointer', 'EnterCriticalSection', 'EnumSystemLocalesW', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleCP', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetFileInformationByHandle', 'GetFileSizeEx', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocaleInfoW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeCriticalSectionEx', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringEx', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryExW', 'MultiByteToWideChar', 'PeekNamedPipe', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ResetEvent', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlPcToFileHeader', 'RtlUnwind', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetEndOfFile', 'SetEnvironmentVariableW', 'SetEvent', 'SetFilePointerEx', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'Sleep', 'SystemTimeToTzSpecificLocalTime', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'VirtualAlloc', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'WSAStartup', 'connect', 'htons', 'inet_addr', 'recv', 'send', 'socket', 'CoCreateGuid', 'CryptStringToBinaryA', 'EnumChildWindows', 'MessageBoxW', 'UuidFromStringA'], ['IsValidLocale', 'WriteConsoleW', 'LCMapStringW', 'SetEnvironmentVariableA', 'CompareStringW', 'GetStringTypeW', 'IsValidCodePage', 'GetLocaleInfoW', 'SetConsoleCtrlHandler', 'FatalAppExitA', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'HeapDestroy', 'HeapCreate', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetFileType', 'SetStdHandle', 'HeapSize', 'HeapQueryInformation', 'LoadLibraryA', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'RaiseException', 'ExitProcess', 'RtlUnwind', 'GetStartupInfoW', 'EnumSystemLocalesA', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'HeapFree', 'DecodePointer', 'EncodePointer', 'LocalLock', 'LocalUnlock', 'FindResourceExW', 'GetDiskFreeSpaceA', 'ReplaceFileA', 'GetUserDefaultLCID', 'VirtualProtect', 'SearchPathA', 'GetProfileIntA', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetTickCount', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetFileAttributesA', 'GetFileAttributesExA', 'GetTempPathA', 'GetTempFileNameA', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'GetConsoleMode', 'GetConsoleCP', 'HeapSetInformation', 'GetTimeZoneInformation', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MoveFileA', 'CreateFileA', 'lstrcmpiA', 'GetStringTypeExA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetAtomNameA', 'GetACP', 'GetThreadLocale', 'DeleteFileA', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GlobalFlags', 'lstrcpyA', 'GetSystemDirectoryW', 'GetCurrentDirectoryA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'GetVersionExA', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryW', 'lstrcmpW', 'InterlockedDecrement', 'GetModuleFileNameW', 'ReleaseActCtx', 'CreateActCtxW', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'MulDiv', 'GetCurrentProcessId', 'GlobalUnlock', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetModuleHandleA', 'lstrlenA', 'FindResourceA', 'FreeResource', 'GlobalFree', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'GetModuleFileNameA', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetLocaleInfoA', 'LoadLibraryExA', 'MultiByteToWideChar', 'CompareStringA', 'ActivateActCtx', 'GetLastError', 'DeactivateActCtx', 'SetLastError', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'InterlockedExchange', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'GetCommandLineA', 'GetEnvironmentVariableA', 'FlsAlloc', 'Sleep', 'GetProcAddress', 'CreateFileW', 'GetKeyNameTextA', 'PostThreadMessageA', 'CharUpperBuffA', 'CopyIcon', 'FrameRect', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'GetIconInfo', 'HideCaret', 'InvertRect', 'RegisterClipboardFormatA', 'LockWindowUpdate', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'MapVirtualKeyA', 'ToAsciiEx', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'SetClassLongA', 'DestroyAcceleratorTable', 'SetParent', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'GetMenuBarInfo', 'LoadImageA', 'LoadAcceleratorsA', 'InsertMenuItemA', 'BringWindowToTop', 'TranslateAcceleratorA', 'CopyImage', 'UnregisterClassA', 'DestroyIcon', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'CreatePopupMenu', 'IsMenu', 'MonitorFromPoint', 'UpdateLayeredWindow', 'EnableScrollBar', 'UnionRect', 'CharUpperA', 'IsZoomed', 'GetAsyncKeyState', 'NotifyWinEvent', 'SetWindowRgn', 'LoadMenuW', 'GetDialogBaseUnits', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'IntersectRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'OffsetRect', 'CharNextA', 'KillTimer', 'RealChildWindowFromPoint', 'GetSysColorBrush', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'SetRectEmpty', 'DeleteMenu', 'WaitMessage', 'ReleaseCapture', 'LoadCursorA', 'LoadCursorW', 'WindowFromPoint', 'SetCapture', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'DefFrameProcA', 'CheckRadioButton', 'CheckDlgButton', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'RedrawWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'CopyRect', 'GetClassNameA', 'InvalidateRect', 'UpdateWindow', 'DrawStateA', 'ShowOwnedPopups', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'SetWindowsHookExA', 'UnhookWindowsHookEx', 'DefMDIChildProcA', 'DrawMenuBar', 'TranslateMDISysAccel', 'InSendMessage', 'GetTabbedTextExtentA', 'GetTabbedTextExtentW', 'GetWindowRgn', 'WindowFromDC', 'GetDCEx', 'EnumChildWindows', 'DestroyCursor', 'SubtractRect', 'MapVirtualKeyExA', 'GetCursorPos', 'CallNextHookEx', 'GetFocus', 'GetWindowRect', 'PtInRect', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'IsCharLowerA', 'GetDoubleClickTime', 'GetUpdateRect', 'SendNotifyMessageA', 'IsClipboardFormatAvailable', 'GetDlgItemInt', 'CreateMenu', 'ClientToScreen', 'ScreenToClient', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetMenuState', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetWindowThreadProcessId', 'GetLastActivePopup', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'RegisterWindowMessageA', 'GetWindow', 'SetWindowContextHelpId', 'GetParent', 'MapDialogRect', 'SetWindowPos', 'PostQuitMessage', 'PostMessageA', 'EnableWindow', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'SendMessageA', 'AppendMenuA', 'GetSystemMenu', 'MessageBoxA', 'LoadIconW', 'SetTimer', 'CreateCompatibleBitmap', 'CreateRectRgnIndirect', 'GetTextMetricsA', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'CreateRoundRectRgn', 'CreateDIBSection', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetCurrentObject', 'CreatePolygonRgn', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'OffsetRgn', 'SetDIBColorTable', 'GetDIBits', 'StretchBlt', 'CreateDIBitmap', 'CreateFontIndirectA', 'RoundRect', 'EnumFontFamiliesExA', 'ExtFloodFill', 'SetPaletteEntries', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextAlign', 'GetTextFaceA', 'GetTextExtentPointA', 'GetTextExtentPoint32W', 'CreateMetaFileA', 'CloseMetaFile', 'DeleteMetaFile', 'SetPixelV', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetPixel', 'GetTextExtentPoint32A', 'SelectObject', 'CreateHatchBrush', 'CreateSolidBrush', 'ExtCreatePen', 'CreatePen', 'ScaleViewportExtEx', 'PlayMetaFile', 'EnumMetaFile', 'GetObjectType', 'PlayMetaFileRecord', 'SelectPalette', 'GetStockObject', 'CreateCompatibleDC', 'CreateBitmap', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'DeleteDC', 'ExtSelectClipRgn', 'PolyBezierTo', 'PolylineTo', 'PolyDraw', 'ArcTo', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'Rectangle', 'GetDeviceCaps', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectA', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetLayout', 'GetLayout', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateDCA', 'CopyMetaFileA', 'SetWindowOrgEx', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'ClosePrinter', 'GetJobA', 'OpenPrinterA', 'DocumentPropertiesA', 'RegEnumKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegSetValueA', 'RegEnumKeyA', 'RegQueryValueA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegCloseKey', 'RegOpenKeyExW', 'RegEnumValueA', 'DragQueryFileA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHAddToRecentDocs', 'ShellExecuteExA', 'SHAppBarMessage', 'ShellExecuteA', 'SHGetDesktopFolder', 'DragFinish', 'SHGetFileInfoA', 'ExtractIconA', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'ImageList_ReplaceIcon', 'ImageList_GetIcon', 'ImageList_Create', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_AddMasked', 'ImageList_Remove', 'ImageList_DrawEx', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'OleSetMenuDescriptor', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'StgIsStorageFile', 'StgOpenStorage', 'CreateFileMoniker', 'StgCreateDocfile', 'CoInitializeEx', 'DoDragDrop', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'OleSetClipboard', 'CreateStreamOnHGlobal', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleRun', 'CoDisconnectObject', 'CoRegisterClassObject', 'PropVariantCopy', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'RevokeDragDrop', 'CoLockObjectExternal', 'CreateDataAdviseHolder', 'CreateOleAdviseHolder', 'CoGetMalloc', 'GetRunningObjectTable', 'OleIsRunning', 'OleQueryLinkFromData', 'OleQueryCreateFromData', 'OleRegGetMiscStatus', 'OleRegEnumVerbs', 'CreateGenericComposite', 'CreateItemMoniker', 'OleGetIconOfClass', 'OleCreateLinkToFile', 'OleCreateFromFile', 'OleSetContainedObject', 'GetHGlobalFromILockBytes', 'OleLoad', 'OleCreate', 'OleCreateStaticFromData', 'OleCreateLinkFromData', 'OleCreateFromData', 'OleSaveToStream', 'WriteClassStm', 'StringFromGUID2', 'OleSave', 'CLSIDFromString', 'CLSIDFromProgID', 'CoCreateGuid', 'RegisterDragDrop', 'OleGetClipboard', 'CoRegisterMessageFilter', 'CreateILockBytesOnHGlobal', 'CoRevokeClassObject', 'SysFreeString', 'VarBstrFromDate', 'VarCyFromStr', 'VarDecFromStr', 'VarBstrFromDec', 'VarBstrFromCy', 'VarDateFromStr', 'SysReAllocStringLen', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayCopy', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'VariantCopy', 'SafeArrayCreate', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'LoadRegTypeLib', 'LoadTypeLib', 'RegisterTypeLib', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysStringByteLen', 'SysAllocStringByteLen', 'SysAllocStringLen', 'SafeArrayRedim', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromFileICM', 'GdipCreateBitmapFromFile', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipDrawImageI', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundA'], ['CreateWindowExW', 'MessageBoxW', 'MessageBoxA', 'SystemParametersInfoW', 'DestroyIcon', 'SetWindowLongPtrW', 'GetWindowLongPtrW', 'GetClientRect', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'DrawTextW', 'GetDialogBaseUnits', 'EndDialog', 'DialogBoxIndirectParamW', 'MoveWindow', 'SendMessageW', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetFileAttributesExW', 'FlushFileBuffers', 'GetCurrentDirectoryW', 'GetCPInfo', 'GetEnvironmentStringsW', 'GetModuleHandleW', 'MulDiv', 'GetLastError', 'SetDllDirectoryW', 'GetModuleFileNameW', 'GetProcAddress', 'GetCommandLineW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'FreeLibrary', 'LoadLibraryExW', 'CloseHandle', 'GetCurrentProcess', 'LoadLibraryA', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStringTypeW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'GetEnvironmentVariableW', 'RtlUnwindEx', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RaiseException', 'GetCommandLineA', 'ReadFile', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'SetStdHandle', 'SetConsoleCtrlHandler', 'DeleteFileW', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'OpenProcessToken', 'GetTokenInformation', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ConvertSidToStringSidW', 'SelectObject', 'DeleteObject', 'CreateFontIndirectW'], ['OpenProcessToken', 'SystemFunction036', 'BCryptGenRandom', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CancelIo', 'CloseHandle', 'CompareStringOrdinal', 'CopyFileExW', 'CreateDirectoryW', 'CreateEventW', 'CreateFileMappingA', 'CreateFileMappingW', 'CreateFileW', 'CreateHardLinkW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateSymbolicLinkW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteCriticalSection', 'DeleteFileW', 'DeviceIoControl', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetExitCodeProcess', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileInformationByHandleEx', 'GetFileType', 'GetFinalPathNameByHandleW', 'GetFullPathNameW', 'GetLastError', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessHeap', 'GetProcessId', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitOnceBeginInitialize', 'InitOnceComplete', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ReadFileEx', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RemoveDirectoryW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SetCurrentDirectoryW', 'SetEnvironmentVariableW', 'SetFileAttributesW', 'SetFileInformationByHandle', 'SetFilePointerEx', 'SetFileTime', 'SetHandleInformation', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SleepEx', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryAcquireSRWLockExclusive', 'UnmapViewOfFile', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WakeConditionVariable', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFileEx', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_commode', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf', 'GetUserProfileDirectoryW', 'WSACleanup', 'WSADuplicateSocketW', 'WSAGetLastError', 'WSARecv', 'WSASend', 'WSASocketW', 'WSAStartup', 'accept', 'bind', 'closesocket', 'connect', 'freeaddrinfo', 'getaddrinfo', 'getpeername', 'getsockname', 'getsockopt', 'ioctlsocket', 'listen', 'recv', 'recvfrom', 'select', 'send', 'sendto', 'setsockopt', 'shutdown'], ['SetFilePointerEx', 'ReadConsoleW', 'GetDriveTypeW', 'GetConsoleMode', 'GetConsoleCP', 'GetTimeZoneInformation', 'EnumSystemLocalesW', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetStdHandle', 'GetFileType', 'SetStdHandle', 'QueryPerformanceFrequency', 'FindFirstFileExA', 'VirtualQuery', 'GetCommandLineW', 'GetCommandLineA', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'RtlUnwind', 'GetStringTypeW', 'LCMapStringW', 'OutputDebugStringW', 'IsValidCodePage', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetEnvironmentVariableA', 'CreateFileW', 'WriteConsoleW', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetStartupInfoW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'CreateEventW', 'WaitForSingleObjectEx', 'ResetEvent', 'GetUserDefaultLCID', 'GetProfileIntA', 'SearchPathA', 'FindResourceExW', 'GetWindowsDirectoryA', 'GetTempFileNameA', 'GetTempPathA', 'GetCPInfo', 'GetOEMCP', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'CompareStringW', 'GlobalFlags', 'GetACP', 'SetErrorMode', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesExA', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'CopyFileA', 'FormatMessageA', 'SetThreadPriority', 'VerifyVersionInfoA', 'VerSetConditionMask', 'GetCurrentThread', 'lstrcmpA', 'FileTimeToLocalFileTime', 'GetVersionExA', 'MulDiv', 'GetCurrentProcessId', 'InitializeCriticalSectionAndSpinCount', 'CompareStringA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'GlobalAddAtomA', 'lstrcmpW', 'GlobalDeleteAtom', 'LoadLibraryExW', 'FreeLibrary', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'EncodePointer', 'GetThreadLocale', 'GetVolumeInformationA', 'LoadLibraryW', 'lstrcmpiA', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetLastError', 'DuplicateHandle', 'UnlockFile', 'SetEndOfFile', 'LockFile', 'GetFullPathNameA', 'FlushFileBuffers', 'DeleteFileA', 'GetProcessHeap', 'DecodePointer', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionEx', 'HeapFree', 'FreeResource', 'FindResourceA', 'ExitProcess', 'DeleteCriticalSection', 'GetLocalTime', 'GetTickCount', 'GetQueuedCompletionStatus', 'GetSystemInfo', 'CreateIoCompletionPort', 'PostQueuedCompletionStatus', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'GetModuleFileNameA', 'OutputDebugStringA', 'LocalSize', 'LocalReAlloc', 'MultiByteToWideChar', 'GlobalSize', 'GlobalFree', 'VirtualProtect', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'FindNextFileA', 'FileTimeToSystemTime', 'SystemTimeToTzSpecificLocalTime', 'SetFilePointer', 'FindClose', 'FindFirstFileA', 'GetCurrentDirectoryA', 'GetLastError', 'CreateDirectoryA', 'GetFileAttributesA', 'lstrcpyA', 'lstrlenA', 'CreateEventA', 'LoadLibraryA', 'GetProcAddress', 'lstrcatA', 'GetSystemDirectoryA', 'MoveFileW', 'LocalFree', 'WriteFile', 'LocalAlloc', 'ReadFile', 'GetFileSize', 'CreateFileA', 'CancelIo', 'VirtualAlloc', 'VirtualFree', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'RaiseException', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'WaitForMultipleObjects', 'WaitForSingleObject', 'ResumeThread', 'CreateThread', 'CloseHandle', 'SetEvent', 'Sleep', 'HeapQueryInformation', 'GetCurrentDirectoryW', 'DestroyMenu', 'GetMenuStringA', 'SetRectEmpty', 'ClientToScreen', 'GetWindowDC', 'TabbedTextOutA', 'GrayStringA', 'DrawTextExA', 'GetWindowThreadProcessId', 'DrawStateA', 'LoadBitmapW', 'SetMenuItemInfoA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'GetMonitorInfoA', 'MonitorFromWindow', 'WinHelpA', 'GetScrollInfo', 'SetScrollInfo', 'CallNextHookEx', 'SetWindowsHookExA', 'GetLastActivePopup', 'GetTopWindow', 'GetClassNameA', 'GetClassLongA', 'PtInRect', 'EqualRect', 'GetSysColor', 'MapWindowPoints', 'AdjustWindowRectEx', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'RedrawWindow', 'ValidateRect', 'GetForegroundWindow', 'TrackPopupMenu', 'GetMenuItemID', 'SetMenu', 'GetMenu', 'GetCapture', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'IsChild', 'IsMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetMenuItemInfoA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'RegisterWindowMessageA', 'IsDialogMessageA', 'GetWindow', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetWindowTextA', 'GetFocus', 'SetFocus', 'GetDlgCtrlID', 'SendDlgItemMessageA', 'CheckDlgButton', 'SetDlgItemTextA', 'SetWindowPos', 'MoveWindow', 'SetCapture', 'SetActiveWindow', 'IsWindowEnabled', 'GetActiveWindow', 'GetNextDlgTabItem', 'ReleaseCapture', 'DeleteMenu', 'NotifyWinEvent', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'IsWindow', 'DestroyWindow', 'GetDlgItem', 'EndDialog', 'CreateDialogIndirectParamA', 'CharUpperA', 'UnhookWindowsHookEx', 'UnregisterClassA', 'SetForegroundWindow', 'GetDesktopWindow', 'CopyRect', 'DestroyIcon', 'DrawIcon', 'IsIconic', 'SetLayeredWindowAttributes', 'MessageBeep', 'OffsetRect', 'InflateRect', 'IsZoomed', 'TrackMouseEvent', 'GetKeyNameTextA', 'MapVirtualKeyA', 'PostQuitMessage', 'SetWindowContextHelpId', 'MapDialogRect', 'DrawEdge', 'DrawFrameControl', 'SetWindowRgn', 'GetSysColorBrush', 'DrawFocusRect', 'IsRectEmpty', 'EnumDisplayMonitors', 'ShowOwnedPopups', 'SetTimer', 'KillTimer', 'SetParent', 'UpdateWindow', 'InvalidateRect', 'SystemParametersInfoA', 'WindowFromPoint', 'InsertMenuA', 'RemoveMenu', 'RealChildWindowFromPoint', 'CopyImage', 'GetAsyncKeyState', 'CallWindowProcA', 'SetRect', 'EnableWindow', 'SendMessageA', 'LoadCursorA', 'SetClassLongA', 'GetSystemMenu', 'AppendMenuA', 'GetDC', 'InvalidateRgn', 'ReleaseDC', 'BeginPaint', 'GetClientRect', 'FillRect', 'EndPaint', 'CheckMenuItem', 'GetMenuState', 'GetKeyState', 'LoadIconA', 'CharNextA', 'MessageBoxA', 'IsWindowVisible', 'GetParent', 'LoadMenuW', 'GetSubMenu', 'GetCursorPos', 'GetMenuItemCount', 'EnableMenuItem', 'wsprintfA', 'PostMessageA', 'OpenClipboard', 'GetKeyboardState', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'DestroyCursor', 'CheckMenuRadioItem', 'GetIconInfo', 'CreatePopupMenu', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'UpdateLayeredWindow', 'GetWindowRect', 'IntersectRect', 'DrawIconEx', 'ShowScrollBar', 'LoadCursorW', 'EnableScrollBar', 'DrawTextA', 'UnionRect', 'MonitorFromPoint', 'LoadImageW', 'BringWindowToTop', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'LoadMenuA', 'InsertMenuItemA', 'GetSystemMetrics', 'GetClipboardData', 'LoadIconW', 'SetCursor', 'LoadImageA', 'GetWindowLongA', 'SetWindowLongA', 'ScreenToClient', 'GetScrollBarInfo', 'ClipCursor', 'SendMessageTimeoutA', 'UnpackDDElParam', 'ReuseDDElParam', 'WaitMessage', 'CopyAcceleratorTableA', 'GetNextDlgGroupItem', 'SetCursorPos', 'LockWindowUpdate', 'GetDoubleClickTime', 'CopyIcon', 'ModifyMenuA', 'DestroyAcceleratorTable', 'GetUpdateRect', 'GetKeyboardLayout', 'GetWindowRgn', 'CreateMenu', 'GetComboBoxInfo', 'TranslateMDISysAccel', 'DefMDIChildProcA', 'DefFrameProcA', 'DrawMenuBar', 'MapVirtualKeyExA', 'IsCharLowerA', 'IsClipboardFormatAvailable', 'SubtractRect', 'InvertRect', 'HideCaret', 'PostThreadMessageA', 'FrameRect', 'CharUpperBuffA', 'RegisterClipboardFormatA', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'ToAsciiEx', 'ShowWindow', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectPalette', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetTextAlign', 'MoveToEx', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'PatBlt', 'CreateFontA', 'GetCharWidthA', 'CombineRgn', 'GetMapMode', 'SetRectRgn', 'CreateRectRgn', 'CreateEllipticRgn', 'Ellipse', 'GetBkColor', 'GetTextColor', 'CreatePolygonRgn', 'Polygon', 'Polyline', 'GetPixel', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'CopyMetaFileA', 'CreateDCA', 'CreateRoundRectRgn', 'GetRgnBox', 'RealizePalette', 'SetPixel', 'SetDIBColorTable', 'Rectangle', 'OffsetRgn', 'RoundRect', 'CreatePalette', 'GetPaletteEntries', 'EnumFontFamiliesExA', 'GetNearestPaletteIndex', 'GetSystemPaletteEntries', 'LPtoDP', 'ExtFloodFill', 'SetPaletteEntries', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'PtInRegion', 'GetViewportOrgEx', 'GetWindowOrgEx', 'SetPixelV', 'GetTextFaceA', 'CreatePatternBrush', 'CreatePen', 'CreateHatchBrush', 'GetStockObject', 'CreateBitmap', 'GetObjectA', 'TextOutA', 'SetBkMode', 'StretchBlt', 'SetStretchBltMode', 'ExtTextOutA', 'SetTextColor', 'SetBkColor', 'StretchDIBits', 'CreateDIBSection', 'GetDeviceCaps', 'GetClipBox', 'ExcludeClipRect', 'CreateDIBitmap', 'Escape', 'BitBlt', 'CreateSolidBrush', 'DeleteObject', 'DeleteDC', 'SetDIBits', 'SelectObject', 'CreateCompatibleBitmap', 'DPtoLP', 'GetObjectType', 'CreateCompatibleDC', 'TransparentBlt', 'AlphaBlend', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'RegEnumKeyExA', 'RegCloseKey', 'RegQueryValueA', 'RegEnumKeyA', 'ExtractIconA', 'SHGetFileInfoA', 'DragQueryFileA', 'SHAppBarMessage', 'Shell_NotifyIconA', 'SHGetMalloc', 'SHGetPathFromIDListA', 'ShellExecuteA', 'DragFinish', 'SHGetDesktopFolder', 'SHBrowseForFolderA', 'SHGetSpecialFolderLocation', 'DragQueryFileW', 'InitCommonControlsEx', 'ImageList_ReplaceIcon', 'ImageList_AddMasked', 'PathRemoveFileSpecW', 'PathIsUNCA', 'PathStripToRootA', 'StrFormatKBSizeA', 'PathFindExtensionA', 'PathFindFileNameA', 'DrawThemeBackground', 'GetCurrentThemeName', 'DrawThemeParentBackground', 'GetThemePartSize', 'IsThemeBackgroundPartiallyTransparent', 'DrawThemeText', 'GetWindowTheme', 'GetThemeSysColor', 'CloseThemeData', 'OpenThemeData', 'IsAppThemed', 'GetThemeColor', 'OleUninitialize', 'OleInitialize', 'OleGetClipboard', 'CoLockObjectExternal', 'RegisterDragDrop', 'RevokeDragDrop', 'OleLockRunning', 'OleCreateMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'OleDestroyMenuDescriptor', 'CoFreeUnusedLibraries', 'DoDragDrop', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CreateStreamOnHGlobal', 'CreateILockBytesOnHGlobal', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CoGetClassObject', 'CoDisconnectObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'CLSIDFromString', 'CoCreateGuid', 'CoInitializeEx', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'CoCreateInstance', 'ReleaseStgMedium', 'SysFreeString', 'SysAllocStringByteLen', 'VarBstrFromDate', 'OleCreateFontIndirect', 'SysAllocString', 'LoadTypeLib', 'SysAllocStringLen', 'VariantInit', 'VariantClear', 'VariantChangeType', 'SysStringLen', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SafeArrayDestroy', 'VariantCopy', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdipCloneImage', 'GdipDisposeImage', 'GdipGetImageGraphicsContext', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateBitmapFromStream', 'GdipCreateFromHDC', 'GdipCreateBitmapFromHBITMAP', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdiplusShutdown', 'waveOutPrepareHeader', 'waveInReset', 'waveInUnprepareHeader', 'PlaySoundA', 'waveInClose', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutWrite', 'waveInStart', 'timeBeginPeriod', 'timeEndPeriod', 'waveInAddBuffer', 'waveInPrepareHeader', 'waveInOpen', 'waveOutClose', 'waveOutUnprepareHeader', 'waveOutReset', 'waveInStop', 'AvSetMmThreadCharacteristicsA', 'AvRevertMmThreadCharacteristics', 'AVIFileExit', 'AVIFileOpenA', 'AVIFileCreateStreamA', 'AVIStreamSetFormat', 'AVIStreamWrite', 'AVIStreamRelease', 'AVIFileInit', 'AVIFileRelease', 'ICClose', 'ICOpen', 'ICSeqCompressFrameStart', 'DrawDibOpen', 'DrawDibDraw', 'ICSendMessage', 'ICCompressorFree', 'ICSeqCompressFrameEnd', 'ICDecompress', 'inet_ntoa', 'closesocket', 'WSAStartup', 'socket', 'ioctlsocket', 'gethostbyname', 'htons', 'connect', 'select', 'WSACleanup', 'WSASocketA', 'WSACreateEvent', 'WSAEventSelect', 'bind', 'listen', 'WSAWaitForMultipleEvents', 'WSAEnumNetworkEvents', 'accept', 'WSAGetLastError', 'setsockopt', 'WSAIoctl', 'WSARecv', 'WSASend', 'WSACloseEvent', 'gethostname', 'getpeername', 'PdhOpenQueryA', 'PdhCloseQuery', 'PdhAddCounterA', 'PdhCollectQueryData', 'PdhGetFormattedCounterValue', 'ImmAssociateContext', 'ImmReleaseContext', 'ImmGetOpenStatus', 'ImmGetContext', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '__vbaRedimPreserve', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['CryptMemAlloc', 'GetStartupInfoA', 'HeapFree', 'Sleep', 'ExitProcess', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapCreate', 'GetStdHandle', 'GetACP', 'IsValidCodePage', 'LCMapStringW', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'LCMapStringA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'GetCommandLineA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetProcAddress', 'GetModuleHandleW', 'GetProcessHeap', 'WideCharToMultiByte', 'InterlockedDecrement', 'GetModuleHandleA', 'FreeLibrary', 'GlobalAlloc', 'lstrcmpA', 'GlobalLock', 'InterlockedExchange', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'CompareStringA', 'LoadLibraryA', 'GetLocaleInfoA', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'ConvertDefaultLocale', 'GetCurrentThreadId', 'GetCurrentThread', 'GlobalDeleteAtom', 'CloseHandle', 'GlobalAddAtomA', 'SetLastError', 'GetLastError', 'GetCurrentProcessId', 'FreeResource', 'GlobalFree', 'GlobalUnlock', 'lstrlenA', 'MulDiv', 'MultiByteToWideChar', 'LocalFree', 'FormatMessageA', 'RtlUnwind', 'RaiseException', 'HeapAlloc', 'GetTickCount', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'SetErrorMode', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringA', 'GetModuleFileNameW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'WriteConsoleW', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'CharNextA', 'CharUpperA', 'GetSysColorBrush', 'ReleaseCapture', 'LoadCursorA', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'UpdateWindow', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'DrawIcon', 'SendMessageA', 'IsIconic', 'GetClientRect', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetWindow', 'SetWindowContextHelpId', 'UnregisterClassA', 'SetPropA', 'DestroyMenu', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'SetWindowsHookExA', 'SetCursor', 'MessageBoxA', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongA', 'GetWindowThreadProcessId', 'EndDialog', 'GetNextDlgTabItem', 'GetDlgItem', 'IsWindow', 'DestroyWindow', 'CreateDialogIndirectParamA', 'SetActiveWindow', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetMapMode', 'DeleteObject', 'GetViewportExtEx', 'GetWindowExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'ScaleWindowExtEx', 'CreateBitmap', 'GetFileTitleA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'SetFileSecurityW', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'CoRevokeClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoTaskMemAlloc', 'OleIsCurrentClipboard', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'CoInitialize', 'CoCreateInstance', 'OleRun', 'CoUninitialize', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'SysAllocStringByteLen', 'SysStringByteLen', 'SysFreeString', 'VariantInit', 'VariantCopy', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysStringLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'GetErrorInfo', 'SysAllocString'], ['MethCallEngine', 'EVENT_SINK_AddRef', 'DllFunctionCall', 'EVENT_SINK_Release', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', 'ProcCallEngine'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaR8Sgn', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', 'DllFunctionCall', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['RegCreateKeyExW', 'RegEnumKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetFileSecurityW', 'RegOpenKeyExW', 'RegEnumValueW', 'SHGetSpecialFolderLocation', 'SHFileOperationW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'ShellExecuteExW', 'SHGetFileInfoW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'IIDFromString', 'CoTaskMemFree', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetClientRect', 'EndPaint', 'DrawTextW', 'IsWindowEnabled', 'DispatchMessageW', 'wsprintfA', 'CharNextA', 'CharPrevW', 'MessageBoxIndirectW', 'GetDlgItemTextW', 'SetDlgItemTextW', 'GetSystemMetrics', 'FillRect', 'AppendMenuW', 'TrackPopupMenu', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'IsWindowVisible', 'CallWindowProcW', 'GetMessagePos', 'CheckDlgButton', 'LoadCursorW', 'SetCursor', 'GetWindowLongW', 'GetSysColor', 'SetWindowPos', 'PeekMessageW', 'SetClassLongW', 'GetSystemMenu', 'EnableMenuItem', 'GetWindowRect', 'ScreenToClient', 'EndDialog', 'RegisterClassW', 'SystemParametersInfoW', 'CreateWindowExW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'wsprintfW', 'SendMessageTimeoutW', 'FindWindowExW', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'EmptyClipboard', 'CreatePopupMenu', 'SetBkMode', 'SetBkColor', 'GetDeviceCaps', 'CreateFontIndirectW', 'CreateBrushIndirect', 'DeleteObject', 'SetTextColor', 'SelectObject', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDirectoryW', 'lstrcatW', 'Sleep', 'lstrcpyA', 'WriteFile', 'GetTempFileNameW', 'lstrcmpiA', 'RemoveDirectoryW', 'CreateProcessW', 'CreateDirectoryW', 'GetLastError', 'CreateThread', 'GlobalLock', 'GlobalUnlock', 'GetDiskFreeSpaceW', 'WideCharToMultiByte', 'lstrcpynW', 'lstrlenW', 'SetErrorMode', 'GetVersion', 'GetCommandLineW', 'GetTempPathW', 'GetWindowsDirectoryW', 'SetEnvironmentVariableW', 'ExitProcess', 'CopyFileW', 'GetCurrentProcess', 'GetModuleFileNameW', 'GetFileSize', 'CreateFileW', 'GetTickCount', 'MulDiv', 'SetFileAttributesW', 'GetFileAttributesW', 'SetCurrentDirectoryW', 'MoveFileW', 'GetFullPathNameW', 'GetShortPathNameW', 'SearchPathW', 'CompareFileTime', 'SetFileTime', 'CloseHandle', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalFree', 'GlobalAlloc', 'GetModuleHandleW', 'LoadLibraryExW', 'MoveFileExW', 'FreeLibrary', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MultiByteToWideChar', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW'], ['SystemTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'RtlUnwind', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'RaiseException', 'TerminateProcess', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'LCMapStringA', 'LCMapStringW', 'FatalAppExitA', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'LocalFileTimeToFileTime', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'UnhandledExceptionFilter', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetVersionExA', 'SetConsoleCtrlHandler', 'SetStdHandle', 'GetLocaleInfoW', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetShortPathNameA', 'GetProfileStringA', 'GetThreadLocale', 'GetStringTypeExA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'SizeofResource', 'GetOEMCP', 'GetCPInfo', 'GetLastError', 'SetLastError', 'GetProcessVersion', 'GlobalFlags', 'MulDiv', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'GetModuleFileNameA', 'GlobalAlloc', 'GetCurrentThread', 'ExitProcess', 'lstrcmpA', 'GlobalFree', 'FormatMessageA', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'LoadLibraryA', 'FreeLibrary', 'FindResourceA', 'LoadResource', 'LockResource', 'GetCurrentThreadId', 'lstrcmpiA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'lstrcatA', 'lstrcpyA', 'lstrlenA', 'GlobalLock', 'lstrcpynA', 'GlobalUnlock', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GetVersion', 'SetHandleCount', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'CheckDlgButton', 'CheckRadioButton', 'GetDlgItemInt', 'GetDlgItemTextA', 'SetDlgItemInt', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'GetNextDlgTabItem', 'EnableMenuItem', 'CheckMenuItem', 'SetMenuItemBitmaps', 'ModifyMenuA', 'GetMenuState', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'CharToOemA', 'OemToCharA', 'LoadStringA', 'CreateDialogIndirectParamA', 'EndDialog', 'PostQuitMessage', 'ShowOwnedPopups', 'ValidateRect', 'TranslateMessage', 'GetMessageA', 'GetClassNameA', 'PtInRect', 'ClientToScreen', 'LoadCursorA', 'GetSysColorBrush', 'ReleaseDC', 'GetDC', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDialogBaseUnits', 'InsertMenuA', 'DeleteMenu', 'GetMenuStringA', 'CharUpperA', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'MessageBoxA', 'IsChild', 'RegisterClassA', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'DefWindowProcA', 'DestroyWindow', 'CreateWindowExA', 'DispatchMessageA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetMessagePos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetLastActivePopup', 'BringWindowToTop', 'IsWindowVisible', 'IsIconic', 'GetFocus', 'EqualRect', 'CopyRect', 'GetDlgItem', 'InvalidateRect', 'SetWindowLongA', 'wsprintfA', 'GetKeyState', 'SetWindowPos', 'GetDlgCtrlID', 'UpdateWindow', 'GetMenuItemCount', 'UnpackDDElParam', 'ReuseDDElParam', 'SetActiveWindow', 'WinHelpA', 'SetMenu', 'GetMenu', 'GetClassInfoA', 'DestroyMenu', 'SetFocus', 'GetParent', 'GetActiveWindow', 'ShowWindow', 'GetWindowLongA', 'GetDesktopWindow', 'GetWindow', 'IsWindowEnabled', 'SetCursor', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'IsWindow', 'LoadIconA', 'SendMessageA', 'GetMenuItemID', 'HideCaret', 'ShowCaret', 'ExcludeUpdateRgn', 'DrawFocusRect', 'DefDlgProcA', 'InflateRect', 'CharNextA', 'TranslateAcceleratorA', 'LoadAcceleratorsA', 'SetRectEmpty', 'RegisterWindowMessageA', 'EnableWindow', 'LoadMenuA', 'GetSubMenu', 'SetMenuDefaultItem', 'GetCursorPos', 'AdjustWindowRectEx', 'ScreenToClient', 'DeferWindowPos', 'GetClientRect', 'SetWindowsHookExA', 'BeginDeferWindowPos', 'SetForegroundWindow', 'TrackPopupMenu', 'PostMessageA', 'IsWindowUnicode', 'GetForegroundWindow', 'RestoreDC', 'SelectObject', 'GetStockObject', 'SelectPalette', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SaveDC', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontIndirectA', 'CreateDCA', 'StartDocA', 'DeleteDC', 'GetDeviceCaps', 'DeleteObject', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'SetArcDirection', 'CreateDIBitmap', 'PatBlt', 'GetTextExtentPointA', 'BitBlt', 'CreateCompatibleDC', 'GetDCOrgEx', 'GetFileTitleA', 'PrintDlgA', 'PageSetupDlgA', 'CommDlgExtendedError', 'GetSaveFileNameA', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegSetValueExA', 'RegOpenKeyA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'DragAcceptFiles', 'DragQueryFileA', 'DragFinish', 'Shell_NotifyIconA', 'SHGetFileInfoA'], ['RtlUnwind', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'TerminateProcess', 'HeapReAlloc', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'VirtualQuery', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'HeapFree', 'HeapAlloc', 'GetTickCount', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'GetShortPathNameA', 'CreateFileA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GlobalFlags', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'InterlockedDecrement', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcatA', 'lstrcmpW', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentThread', 'GetCurrentThreadId', 'FreeLibrary', 'GlobalDeleteAtom', 'lstrcmpA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'LoadLibraryA', 'FreeResource', 'SetLastError', 'GlobalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'MulDiv', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'lstrcpynA', 'LocalFree', 'ExitProcess', 'GetStringTypeExA', 'CompareStringW', 'CompareStringA', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'UnhandledExceptionFilter', 'InterlockedExchange', 'KillTimer', 'WindowFromPoint', 'GetDCEx', 'LockWindowUpdate', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'SetRect', 'CharNextA', 'DestroyIcon', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'LoadCursorA', 'GetSysColorBrush', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'GetDC', 'ReleaseDC', 'LoadMenuA', 'DestroyMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'InvalidateRect', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsChild', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'LoadIconA', 'MapWindowPoints', 'TrackPopupMenu', 'SetForegroundWindow', 'SetTimer', 'GetClientRect', 'GetMenu', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'DefWindowProcA', 'CallWindowProcA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'CopyRect', 'PtInRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'wsprintfA', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetWindowPos', 'CharUpperA', 'UpdateWindow', 'EnableWindow', 'SendMessageA', 'GetClassInfoExA', 'GetSubMenu', 'GetMenuItemCount', 'InsertMenuA', 'GetMenuItemID', 'AppendMenuA', 'SetFocus', 'ShowWindow', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'SetWindowTextA', 'IsDialogMessageA', 'SendDlgItemMessageA', 'GetMenuItemInfoA', 'InflateRect', 'SetMenuItemBitmaps', 'GetFocus', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'MessageBeep', 'GetNextDlgGroupItem', 'SetCapture', 'InvalidateRgn', 'CopyAcceleratorTableA', 'GetMenuStringA', 'GetMenuState', 'EndDialog', 'GetNextDlgTabItem', 'GetParent', 'IsWindowEnabled', 'GetDlgItem', 'GetWindowLongA', 'IsWindow', 'DestroyWindow', 'CreateDialogIndirectParamA', 'GetSystemMetrics', 'SetActiveWindow', 'GetActiveWindow', 'GetDesktopWindow', 'PostQuitMessage', 'PostMessageA', 'SetCursor', 'ShowOwnedPopups', 'GetLastActivePopup', 'MessageBoxA', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'DispatchMessageA', 'CreateSolidBrush', 'CreateFontIndirectA', 'GetBkColor', 'GetTextColor', 'GetStockObject', 'GetRgnBox', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'CreatePatternBrush', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'CreateRectRgnIndirect', 'GetDeviceCaps', 'CreateRectRgn', 'SelectClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontA', 'GetCharWidthA', 'DeleteObject', 'SelectObject', 'StretchDIBits', 'DeleteDC', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetViewportExtEx', 'GetSaveFileNameA', 'GetFileTitleA', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetFileSecurityA', 'RegSetValueA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegCreateKeyA', 'RegCloseKey', 'SetFileSecurityA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'ImageList_Draw', 'ImageList_GetImageInfo', 'ImageList_Destroy', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemFree', 'OleUninitialize', 'CoFreeUnusedLibraries', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'OleInitialize', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['WritePrivateProfileStringA', 'GetCurrentDirectoryA', 'FindResourceExA', 'GetTickCount', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'RaiseException', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'SetStdHandle', 'GetFileType', 'ExitThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetFileTime', 'IsValidCodePage', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'SetHandleCount', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'InitializeCriticalSectionAndSpinCount', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileSizeEx', 'GetFileAttributesA', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GetModuleHandleW', 'VirtualProtect', 'FileTimeToLocalFileTime', 'FindNextFileA', 'FileTimeToSystemTime', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'InterlockedExchange', 'CreateEventA', 'SetEvent', 'InterlockedDecrement', 'GetCurrentProcessId', 'GetFullPathNameA', 'FindFirstFileA', 'FindClose', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MoveFileA', 'lstrcmpA', 'GetThreadLocale', 'InterlockedIncrement', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'lstrcmpW', 'GetVersionExA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'lstrlenA', 'MultiByteToWideChar', 'ReadDirectoryChangesW', 'GetModuleFileNameA', 'GetVolumeInformationA', 'CreateThread', 'SetThreadPriority', 'GetDriveTypeA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetLogicalDriveStringsA', 'GetCurrentProcess', 'GetShortPathNameA', 'OpenProcess', 'ResumeThread', 'SuspendThread', 'GetExitCodeThread', 'TerminateThread', 'SetLastError', 'GetModuleHandleA', 'Sleep', 'CreateProcessA', 'WaitForSingleObject', 'GetLastError', 'ExitProcess', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'CreateFileA', 'CloseHandle', 'DeleteFileA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'GetACP', 'WideCharToMultiByte', 'GetNextDlgGroupItem', 'MessageBeep', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'GetSysColorBrush', 'GetAsyncKeyState', 'SetWindowContextHelpId', 'MapDialogRect', 'WaitMessage', 'SetRectEmpty', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'DestroyMenu', 'GetWindowThreadProcessId', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'CharUpperA', 'CharNextA', 'IsWindowEnabled', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'IsWindow', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'TrackPopupMenu', 'GetKeyState', 'SetMenu', 'SetForegroundWindow', 'MessageBoxA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetParent', 'EqualRect', 'EnableWindow', 'SendMessageA', 'CopyRect', 'InflateRect', 'DeferWindowPos', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'WindowFromPoint', 'ReleaseCapture', 'SetCapture', 'InvalidateRgn', 'IsRectEmpty', 'IsChild', 'CopyAcceleratorTableA', 'LoadBitmapA', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'ModifyMenuA', 'GetClientRect', 'UpdateWindow', 'InvalidateRect', 'RedrawWindow', 'SetTimer', 'KillTimer', 'SetCursor', 'GetSysColor', 'CreateWindowExA', 'ShowWindow', 'CreateWindowExW', 'GetWindowRect', 'ClipCursor', 'SetSystemCursor', 'ShowCursor', 'DrawIcon', 'LoadMenuA', 'IsIconic', 'ScreenToClient', 'IsWindowVisible', 'LoadCursorA', 'LoadIconA', 'GetSystemMetrics', 'FillRect', 'SetRect', 'GetCursorPos', 'LoadCursorFromFileA', 'CopyIcon', 'ExitWindowsEx', 'PeekMessageA', 'PostMessageA', 'GetWindow', 'GetMenuState', 'GetMenuStringA', 'GetNextDlgTabItem', 'ExtSelectClipRgn', 'DeleteDC', 'CreateRectRgnIndirect', 'GetMapMode', 'GetCharWidthA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetRgnBox', 'EnumFontFamiliesExA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateFontA', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'ExtTextOutA', 'GetTextColor', 'GetBkColor', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'BitBlt', 'SelectObject', 'GetStockObject', 'CreateFontIndirectA', 'DeleteObject', 'CreateSolidBrush', 'StretchBlt', 'Rectangle', 'CreateCompatibleDC', 'GetObjectA', 'GetFileTitleA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegCloseKey', 'RegCreateKeyA', 'RegSetValueExA', 'RegDeleteValueA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'SHBrowseForFolderA', 'ShellExecuteA', 'Shell_NotifyIconA', 'SHGetFileInfoA', 'SHGetPathFromIDListA', 'PathIsUNCA', 'PathRemoveFileSpecW', 'PathFindExtensionA', 'PathStripToRootA', 'PathFindFileNameA', 'CoTaskMemFree', 'CLSIDFromString', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoTaskMemAlloc', 'CoUninitialize', 'CoInitializeEx', 'CoGetClassObject', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CreateILockBytesOnHGlobal', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'CoRevokeClassObject', 'CoCreateInstance', 'CLSIDFromProgID', 'VariantChangeType', 'SysFreeString', 'SysStringLen', 'SysAllocString', 'SysAllocStringByteLen', 'VariantInit', 'SysAllocStringLen', 'OleCreateFontIndirect', 'VariantCopy', 'SafeArrayDestroy', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'VariantClear', 'WSACleanup', 'accept', 'select', 'htonl', 'WSAGetLastError', 'WSASetLastError', 'connect', 'sendto', 'recvfrom', 'WSAAsyncSelect', 'send', 'socket', 'gethostbyname', 'inet_addr', 'setsockopt', 'htons', 'bind', 'WSAIoctl', 'recv', 'ntohs', 'inet_ntoa', 'closesocket', 'WSAStartup', 'EnumProcessModules', 'EnumProcesses', 'GetModuleFileNameExA'], ['VirtualQuery', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapReAlloc', 'SetStdHandle', 'GetFileType', 'TerminateProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'IsBadWritePtr', 'GetTimeZoneInformation', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'GetSystemInfo', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetConsoleCtrlHandler', 'GetLocaleInfoW', 'SetEnvironmentVariableA', 'VirtualAlloc', 'VirtualProtect', 'HeapAlloc', 'RtlUnwind', 'HeapFree', 'GetDiskFreeSpaceA', 'GetTempFileNameA', 'LocalLock', 'LocalUnlock', 'SetErrorMode', 'GetCurrentDirectoryA', 'GetFileTime', 'GetFileAttributesA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'GlobalFlags', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GetShortPathNameA', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MoveFileA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'lstrcmpA', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'InterlockedDecrement', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'CopyFileA', 'MulDiv', 'GlobalSize', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'lstrcpynA', 'GetLastError', 'DeleteFileA', 'ExitProcess', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetVersionExA', 'FreeEnvironmentStringsW', 'InterlockedExchange', 'LockWindowUpdate', 'SetCapture', 'GetSystemMenu', 'SetParent', 'LoadCursorA', 'GetDialogBaseUnits', 'InflateRect', 'DestroyMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'ShowOwnedPopups', 'SetCursor', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'MapVirtualKeyA', 'GetKeyNameTextA', 'ReleaseDC', 'GetDC', 'wsprintfA', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'SetFocus', 'GetDCEx', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'MessageBoxA', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'PostMessageA', 'AdjustWindowRectEx', 'RegisterWindowMessageA', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'InvalidateRect', 'GetClientRect', 'DrawFocusRect', 'DrawStateA', 'LoadBitmapA', 'FillRect', 'GetSysColorBrush', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'WindowFromPoint', 'KillTimer', 'SetTimer', 'GetTabbedTextExtentA', 'SetRect', 'MessageBeep', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'PtInRect', 'GetWindow', 'GetMenuState', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'IsClipboardFormatAvailable', 'UnionRect', 'IsRectEmpty', 'DestroyIcon', 'IsChild', 'DeleteMenu', 'GetSysColor', 'GetFocus', 'CopyRect', 'UpdateWindow', 'GetParent', 'LoadIconA', 'SetMenuItemInfoA', 'GetMenuItemInfoA', 'AppendMenuA', 'GetSubMenu', 'LoadMenuA', 'GetCursorPos', 'EndDialog', 'GetNextDlgTabItem', 'IsWindowEnabled', 'GetDlgItem', 'GetWindowLongA', 'IsWindow', 'RemoveMenu', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'GetTextMetricsA', 'GetStockObject', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'StretchDIBits', 'GetCharWidthA', 'CreateFontA', 'GetBkColor', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'CreateCompatibleDC', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'DeleteDC', 'ExtSelectClipRgn', 'PolyBezierTo', 'PolylineTo', 'PolyDraw', 'ArcTo', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'GetPixel', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'SetRectRgn', 'GetBitmapDimensionEx', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'PatBlt', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'CreateRectRgnIndirect', 'StartDocA', 'PageSetupDlgA', 'FindTextA', 'ReplaceTextA', 'GetOpenFileNameA', 'CommDlgExtendedError', 'PrintDlgA', 'GetFileTitleA', 'GetSaveFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetJobA', 'SetFileSecurityA', 'RegSetValueA', 'RegOpenKeyA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'GetFileSecurityA', 'RegCloseKey', 'RegCreateKeyA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ExtractIconA', 'Shell_NotifyIconA', 'ImageList_Draw', 'ImageList_Read', 'ImageList_Write', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_LoadImageA', 'ImageList_Merge', 'ImageList_GetImageInfo', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'WriteClassStg', 'OleRegGetUserType', 'SetConvertStg', 'CoTaskMemFree', 'ReadFmtUserTypeStg', 'ReadClassStg', 'StringFromCLSID', 'CoTreatAsClass', 'CreateBindCtx', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'WriteFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysAllocString', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromCy', 'VarBstrFromDate'], ['__set_app_type', '_except_handler3', '_controlfp', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_setmbcp', '__CxxFrameHandler', 'malloc', '__p__fmode', '__dllonexit', '_onexit', '_exit', '_XcptFilter', 'GetStartupInfoA', 'GetModuleHandleA', 'GetVersion', 'lstrlenA', 'GetProcAddress', 'LoadLibraryW', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSystemMenu', 'SendMessageA', 'LoadIconA', 'EnableWindow', 'AppendMenuA', 'RegSetValueExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegCloseKey'], ['GetFileAttributesA', 'GetFileTime', 'GetTickCount', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapSize', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GlobalFlags', 'WritePrivateProfileStringA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'CloseHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'lstrcmpA', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'ExitProcess', 'GetCurrencyFormatW', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'lstrlenA', 'CompareStringW', 'CompareStringA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'SetHandleCount', 'InterlockedExchange', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'SetCapture', 'LoadCursorA', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'DestroyMenu', 'SetWindowContextHelpId', 'MapDialogRect', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'InvalidateRgn', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'CharUpperA', 'DrawIcon', 'AppendMenuA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'SetWindowsHookExA', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'CharNextA', 'ReleaseCapture', 'SendMessageA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'GetSubMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'GetClassLongA', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'GetDeviceCaps', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetWindowExtEx', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CLSIDFromProgID', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'VariantClear'], ['GetVolumeInformationA', 'GetFullPathNameA', 'CreateFileA', 'GetShortPathNameA', 'GetCPInfo', 'GetOEMCP', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileAttributesA', 'GetFileTime', 'HeapFree', 'RtlUnwind', 'HeapAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetCommandLineA', 'TerminateProcess', 'ExitThread', 'CreateThread', 'HeapReAlloc', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'FindFirstFileA', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'IsBadReadPtr', 'IsBadCodePtr', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetConsoleCtrlHandler', 'SetStdHandle', 'GetLocaleInfoW', 'SetEnvironmentVariableA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GlobalFlags', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'FreeResource', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GlobalAddAtomA', 'SetLastError', 'GlobalFree', 'CopyFileA', 'MulDiv', 'GlobalSize', 'GlobalUnlock', 'FormatMessageA', 'lstrcpynA', 'LocalFree', 'GetCurrentThread', 'GetCurrentThreadId', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcatA', 'WinExec', 'lstrcpyA', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetVersionExA', 'IsBadWritePtr', 'InterlockedExchange', 'GetSysColorBrush', 'DestroyIcon', 'GetDialogBaseUnits', 'GetMenuItemInfoA', 'DestroyMenu', 'FillRect', 'wsprintfA', 'ScrollWindowEx', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'SetFocus', 'IsChild', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'LoadIconA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'DeleteMenu', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'CopyRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetFocus', 'ModifyMenuA', 'EnableMenuItem', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'GetSysColor', 'SendMessageA', 'MessageBeep', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'WindowFromPoint', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ValidateRect', 'MessageBoxA', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'GetMenu', 'TabbedTextOutA', 'SetCapture', 'RedrawWindow', 'ReleaseCapture', 'PtInRect', 'GetClientRect', 'SetCursor', 'SetWindowLongA', 'IsWindow', 'InvalidateRect', 'InflateRect', 'ReleaseDC', 'GetDC', 'GetParent', 'GetWindowRect', 'CopyIcon', 'LoadCursorA', 'PostQuitMessage', 'PostMessageA', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'ShowOwnedPopups', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'SetScrollInfo', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'StartDocA', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'EnumMetaFile', 'GetStockObject', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateBitmap', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'GetObjectA', 'CreateFontIndirectA', 'PtVisible', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegDeleteKeyA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegEnumKeyA', 'RegCloseKey', 'RegOpenKeyA', 'RegSetValueA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegQueryValueA', 'ExtractIconA', 'SHGetFileInfoA', 'ShellExecuteA', 'PathFindExtensionA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'CreateBindCtx', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'OleRegGetUserType', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysAllocString', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromCy', 'VarBstrFromDate'], ['GetTempPathA', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'SetEnvironmentVariableA', 'Sleep', 'GetTickCount', 'GetCommandLineA', 'lstrlenA', 'GetVersion', 'SetErrorMode', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GetWindowsDirectoryA', 'SetFileAttributesA', 'GetLastError', 'CreateDirectoryA', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'ReadFile', 'WriteFile', 'lstrcpyA', 'MoveFileExA', 'lstrcatA', 'GetSystemDirectoryA', 'GetProcAddress', 'GetExitCodeProcess', 'WaitForSingleObject', 'CompareFileTime', 'SetFileTime', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'MoveFileA', 'GetFullPathNameA', 'GetShortPathNameA', 'SearchPathA', 'CloseHandle', 'lstrcmpiA', 'CreateThread', 'GlobalLock', 'lstrcmpA', 'DeleteFileA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'SetFilePointer', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'MulDiv', 'MultiByteToWideChar', 'FreeLibrary', 'LoadLibraryExA', 'GetModuleHandleA', 'GlobalAlloc', 'GlobalFree', 'ExpandEnvironmentStringsA', 'GetSystemMenu', 'SetClassLongA', 'EnableMenuItem', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'ScreenToClient', 'GetWindowRect', 'GetDlgItem', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'EndDialog', 'RegisterClassA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'ExitWindowsEx', 'LoadImageA', 'CreateDialogParamA', 'SetTimer', 'SetWindowTextA', 'SetForegroundWindow', 'ShowWindow', 'SetWindowLongA', 'SendMessageTimeoutA', 'FindWindowExA', 'IsWindow', 'AppendMenuA', 'TrackPopupMenu', 'CreatePopupMenu', 'DrawTextA', 'EndPaint', 'DestroyWindow', 'wsprintfA', 'PostQuitMessage', 'SelectObject', 'SetTextColor', 'SetBkMode', 'CreateFontIndirectA', 'CreateBrushIndirect', 'DeleteObject', 'GetDeviceCaps', 'SetBkColor', 'SHGetSpecialFolderLocation', 'ShellExecuteExA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'SHFileOperationA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'RegOpenKeyExA', 'SetFileSecurityA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'RegEnumValueA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'FreeSid', 'ImageList_Add', 'PrintDlgW', 'CertFreeCertificateContext', 'Pie', 'GetAdaptersInfo', 'QueryDepthSList', 'WNetCloseEnum', 'log', 'NetWkstaGetInfo', 'OleDraw', 'LresultFromObject', 'VariantInit', 'SHGetFolderPathW', 'StrRetToStrW', 'GetDC', 'LoadUserProfileW', 'VerQueryValueW', 'WinHttpOpen', 'timeGetTime', 'ClosePrinter', 'bind'], ['RegCreateKeyExW', 'RegEnumKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetFileSecurityW', 'RegOpenKeyExW', 'RegEnumValueW', 'SHGetSpecialFolderLocation', 'SHFileOperationW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'ShellExecuteExW', 'SHGetFileInfoW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'IIDFromString', 'CoTaskMemFree', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetClientRect', 'EndPaint', 'DrawTextW', 'IsWindowEnabled', 'DispatchMessageW', 'wsprintfA', 'CharNextA', 'CharPrevW', 'MessageBoxIndirectW', 'GetDlgItemTextW', 'SetDlgItemTextW', 'GetSystemMetrics', 'FillRect', 'AppendMenuW', 'TrackPopupMenu', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'IsWindowVisible', 'CallWindowProcW', 'GetMessagePos', 'CheckDlgButton', 'LoadCursorW', 'SetCursor', 'GetSysColor', 'SetWindowPos', 'GetWindowLongW', 'PeekMessageW', 'SetClassLongW', 'GetSystemMenu', 'EnableMenuItem', 'GetWindowRect', 'ScreenToClient', 'EndDialog', 'RegisterClassW', 'SystemParametersInfoW', 'CreateWindowExW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'wsprintfW', 'SendMessageTimeoutW', 'FindWindowExW', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'EmptyClipboard', 'CreatePopupMenu', 'SetBkMode', 'SetBkColor', 'GetDeviceCaps', 'CreateFontIndirectW', 'CreateBrushIndirect', 'DeleteObject', 'SetTextColor', 'SelectObject', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDirectoryW', 'lstrcatW', 'Sleep', 'lstrcpyA', 'WriteFile', 'GetTempFileNameW', 'CreateFileW', 'lstrcmpiA', 'RemoveDirectoryW', 'CreateProcessW', 'CreateDirectoryW', 'GetLastError', 'CreateThread', 'GlobalLock', 'GlobalUnlock', 'GetDiskFreeSpaceW', 'WideCharToMultiByte', 'lstrcpynW', 'lstrlenW', 'SetErrorMode', 'GetVersionExW', 'GetCommandLineW', 'GetTempPathW', 'GetWindowsDirectoryW', 'SetEnvironmentVariableW', 'CopyFileW', 'ExitProcess', 'GetCurrentProcess', 'GetModuleFileNameW', 'GetFileSize', 'GetTickCount', 'MulDiv', 'SetFileAttributesW', 'GetFileAttributesW', 'SetCurrentDirectoryW', 'MoveFileW', 'GetFullPathNameW', 'GetShortPathNameW', 'SearchPathW', 'CompareFileTime', 'SetFileTime', 'CloseHandle', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalFree', 'GlobalAlloc', 'GetModuleHandleW', 'LoadLibraryExW', 'MoveFileExW', 'FreeLibrary', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MultiByteToWideChar', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW'], ['HeapSize', 'VirtualFree', 'VirtualAlloc', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'Sleep', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetStdHandle', 'GetProcessHeap', 'CreateFileA', 'HeapReAlloc', 'RaiseException', 'RtlUnwind', 'GetCommandLineA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapFree', 'HeapAlloc', 'GetCurrentProcess', 'SetEndOfFile', 'FlushFileBuffers', 'SetFilePointer', 'WritePrivateProfileStringW', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'InterlockedIncrement', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetLocaleInfoW', 'InterlockedExchange', 'lstrlenA', 'lstrcmpA', 'InterlockedDecrement', 'GetCurrentProcessId', 'GetModuleHandleA', 'GetCurrentThreadId', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'CompareStringW', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'FreeResource', 'GlobalFree', 'FormatMessageW', 'LocalUnlock', 'LocalFree', 'LocalLock', 'LocalAlloc', 'GetModuleFileNameW', 'ReadFile', 'GetTickCount', 'lstrcmpiW', 'GetWindowsDirectoryW', 'lstrcpyW', 'WideCharToMultiByte', 'WinExec', 'lstrlenW', 'lstrcatW', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'MulDiv', 'GetProcAddress', 'GetModuleHandleW', 'LoadLibraryW', 'GetLastError', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'MultiByteToWideChar', 'GlobalLock', 'CloseHandle', 'WriteFile', 'CreateFileW', 'FindResourceW', 'LoadResource', 'LockResource', 'FreeEnvironmentStringsW', 'SizeofResource', 'DestroyMenu', 'GetSysColorBrush', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuW', 'CheckMenuItem', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'GetCapture', 'SetWindowsHookExW', 'CallNextHookEx', 'GetClassLongW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetFocus', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'PeekMessageW', 'MapWindowPoints', 'TrackPopupMenu', 'SetMenu', 'GetClassInfoExW', 'RegisterClassW', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'CallWindowProcW', 'GetMenu', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowTextLengthW', 'GetScrollPos', 'SetScrollPos', 'GetWindow', 'GetDesktopWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'GetNextDlgTabItem', 'DialogBoxIndirectParamW', 'EndDialog', 'SetWindowTextW', 'MoveWindow', 'SetForegroundWindow', 'SetWindowPos', 'SetFocus', 'CheckDlgButton', 'EnableMenuItem', 'GetDlgItem', 'GetDialogBaseUnits', 'EndPaint', 'BeginPaint', 'MessageBoxW', 'GetLastActivePopup', 'GetActiveWindow', 'GetSubMenu', 'LoadMenuW', 'MessageBeep', 'SetWindowLongW', 'TranslateAcceleratorW', 'CreatePopupMenu', 'IsIconic', 'AppendMenuW', 'GetSystemMenu', 'LoadAcceleratorsW', 'LoadIconW', 'UpdateWindow', 'DispatchMessageW', 'TranslateMessage', 'GetKeyState', 'DrawTextW', 'WindowFromDC', 'IsWindowVisible', 'InvalidateRect', 'ReleaseCapture', 'GetMessagePos', 'SetCapture', 'FrameRect', 'DrawEdge', 'InflateRect', 'DrawFocusRect', 'RedrawWindow', 'DrawIcon', 'GetClientRect', 'GetAsyncKeyState', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'CopyRect', 'PtInRect', 'GetWindowTextW', 'GetWindowLongW', 'IsWindowEnabled', 'ChildWindowFromPoint', 'GetParent', 'ClientToScreen', 'WindowFromPoint', 'GetMessageW', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'GetWindowDC', 'GrayStringW', 'SetWindowRgn', 'OffsetRect', 'SetRect', 'SetTimer', 'EqualRect', 'KillTimer', 'DrawTextExW', 'TabbedTextOutW', 'SetActiveWindow', 'IsDialogMessageW', 'ScreenToClient', 'GetCursorPos', 'IsWindow', 'DefWindowProcW', 'GetClassInfoW', 'SetRectEmpty', 'GetClassNameW', 'LoadCursorW', 'GetSystemMetrics', 'SetCursor', 'SystemParametersInfoW', 'LoadStringW', 'LoadImageW', 'DestroyCursor', 'DestroyIcon', 'CopyIcon', 'FillRect', 'CreateIconIndirect', 'ReleaseDC', 'GetDC', 'GetIconInfo', 'CreateWindowExW', 'ShowWindow', 'IsRectEmpty', 'DrawFrameControl', 'GetSysColor', 'SetClipboardData', 'EmptyClipboard', 'CloseClipboard', 'OpenClipboard', 'PostMessageW', 'GetWindowRect', 'SendMessageW', 'RegisterWindowMessageW', 'EnableWindow', 'WinHelpW', 'PtVisible', 'RectVisible', 'ExtTextOutW', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DPtoLP', 'SaveDC', 'SetMapMode', 'DeleteDC', 'GetCharWidthW', 'GetCurrentObject', 'GetClipBox', 'Rectangle', 'GetStockObject', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'OffsetRgn', 'CombineRgn', 'CreateRectRgn', 'SelectClipRgn', 'FillRgn', 'FrameRgn', 'TextOutW', 'GetTextExtentPoint32W', 'SetTextJustification', 'GetTextMetricsW', 'SetBkColor', 'SetBkMode', 'CreateFontIndirectW', 'LineTo', 'MoveToEx', 'CreatePen', 'SetTextColor', 'CreateSolidBrush', 'StretchBlt', 'CreateBitmap', 'GetObjectW', 'GetDeviceCaps', 'CreateDCW', 'CreateCompatibleBitmap', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'CreateDIBSection', 'DeleteObject', 'RestoreDC', 'ClosePrinter', 'OpenPrinterW', 'DocumentPropertiesW', 'RegOpenKeyW', 'RegQueryValueW', 'RegCloseKey', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegSetValueExW', 'ShellExecuteW', 'ImageList_GetImageCount', 'ImageList_GetIcon', 'PathFindExtensionW', 'VariantClear', 'VariantChangeType', 'VariantInit', 'PlaySoundW'], ['WideCharToMultiByte', 'SizeofResource', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'lstrcmpiA', 'GetModuleFileNameA', 'GetModuleHandleA', 'LoadLibraryExA', 'MapViewOfFile', 'GetCPInfo', 'GlobalAlloc', 'Sleep', 'GetFileAttributesA', 'CreateProcessA', 'FileTimeToSystemTime', 'GetStartupInfoA', 'LocalLock', 'CreateFileMappingA', 'GetCurrentDirectoryA', 'FileTimeToLocalFileTime', 'GetTempPathA', 'DeleteFileA', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'GetStringTypeW', 'SetEnvironmentVariableA', 'SetFilePointerEx', 'FlushFileBuffers', 'LCMapStringW', 'CompareStringW', 'VirtualQuery', 'GetEnvironmentStringsW', 'GetConsoleMode', 'GetConsoleCP', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LoadLibraryExW', 'GetModuleHandleW', 'GetStartupInfoW', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlUnwind', 'GetCommandLineA', 'AreFileApisANSI', 'ExitProcess', 'VirtualProtect', 'GetSystemInfo', 'WriteConsoleW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetFileType', 'GetStdHandle', 'EncodePointer', 'VirtualFree', 'VirtualAlloc', 'IsProcessorFeaturePresent', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'InitializeSListHead', 'OutputDebugStringW', 'IsDebuggerPresent', 'lstrcmpA', 'LockResource', 'GetLocalTime', 'FlushInstructionCache', 'LoadResource', 'lstrlenA', 'FindResourceA', 'DeviceIoControl', 'ReadFile', 'WriteFile', 'CreateFileA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'GetCurrentProcessId', 'GetVersionExA', 'ReleaseMutex', 'QueryPerformanceFrequency', 'CreateMutexA', 'IsWow64Process', 'CancelIoEx', 'GetOverlappedResult', 'VerifyVersionInfoA', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetCurrentProcess', 'VerSetConditionMask', 'CreateThread', 'CloseHandle', 'WaitForMultipleObjects', 'ResetEvent', 'SetLastError', 'CreateEventA', 'SetEvent', 'WaitForSingleObject', 'InterlockedDecrement', 'InterlockedIncrement', 'TlsFree', 'TlsAlloc', 'WakeAllConditionVariable', 'InitializeConditionVariable', 'TlsSetValue', 'SleepConditionVariableCS', 'TryEnterCriticalSection', 'GetCurrentThreadId', 'EnterCriticalSection', 'SetEndOfFile', 'InterlockedExchange', 'LeaveCriticalSection', 'InitializeCriticalSection', 'SleepEx', 'TlsGetValue', 'DeleteCriticalSection', 'DecodePointer', 'HeapSize', 'GetLastError', 'RaiseException', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'SetClipboardData', 'FindWindowA', 'EndPaint', 'BeginPaint', 'GetMessageA', 'GetClassNameA', 'ScreenToClient', 'MonitorFromPoint', 'PostQuitMessage', 'GetWindowDC', 'FillRect', 'GetMenuItemID', 'DrawTextA', 'GetKeyState', 'GetSubMenu', 'GetFocus', 'LoadMenuA', 'CallNextHookEx', 'MessageBeep', 'IsWindowEnabled', 'WindowFromPoint', 'CharNextA', 'SetFocus', 'DrawEdge', 'SetRectEmpty', 'EnableWindow', 'OpenClipboard', 'GetWindow', 'MapWindowPoints', 'SetWindowPos', 'EndDialog', 'MonitorFromWindow', 'GetWindowLongA', 'UnregisterClassA', 'GetMonitorInfoA', 'GetClientRect', 'GetParent', 'MessageBoxA', 'GetWindowTextA', 'GetWindowWord', 'GetForegroundWindow', 'GetCursorPos', 'GetDesktopWindow', 'RegisterWindowMessageA', 'GetDlgItem', 'TranslateMessage', 'InflateRect', 'OffsetRect', 'TrackPopupMenuEx', 'CheckMenuRadioItem', 'CharLowerA', 'PeekMessageA', 'DefWindowProcA', 'SetWindowsHookExA', 'GetSysColor', 'LoadStringW', 'GetWindowRect', 'DialogBoxParamA', 'LoadCursorA', 'DrawFocusRect', 'GetMenuCheckMarkDimensions', 'FindWindowExA', 'WaitForInputIdle', 'SendDlgItemMessageA', 'SetMenuItemInfoA', 'DestroyMenu', 'UpdateWindow', 'LoadImageA', 'EmptyClipboard', 'IsWindowVisible', 'PostMessageA', 'GetMenuItemCount', 'GetActiveWindow', 'SetMenu', 'ShowWindow', 'GetMenuItemInfoA', 'RedrawWindow', 'TranslateAcceleratorA', 'LoadAcceleratorsA', 'CreatePopupMenu', 'GetSysColorBrush', 'FrameRect', 'AppendMenuA', 'ReleaseDC', 'CreateWindowExA', 'InvalidateRect', 'SetWindowLongA', 'GetMenu', 'GetDC', 'SendMessageA', 'LoadBitmapA', 'LoadStringA', 'PtInRect', 'GetClipboardData', 'CreateDialogParamA', 'CloseClipboard', 'GetClassInfoExA', 'RegisterClassExA', 'IsWindow', 'RemoveMenu', 'DispatchMessageA', 'SetMenuDefaultItem', 'UnhookWindowsHookEx', 'SystemParametersInfoA', 'GetSystemMetrics', 'CallWindowProcA', 'DrawFrameControl', 'ModifyMenuA', 'GetMessagePos', 'GetWindowThreadProcessId', 'DestroyWindow', 'SetTimer', 'IsMenu', 'StartDocA', 'CombineRgn', 'SetAbortProc', 'CreateRectRgn', 'GetDeviceCaps', 'StartPage', 'EndPage', 'GetTextMetricsA', 'EndDoc', 'AbortDoc', 'TextOutA', 'MoveToEx', 'SetViewportOrgEx', 'LineTo', 'Ellipse', 'CreatePen', 'CreateSolidBrush', 'BitBlt', 'PatBlt', 'SetTextColor', 'CreateFontIndirectA', 'SetBrushOrgEx', 'SetBkColor', 'CreateBitmap', 'SetBkMode', 'CreateCompatibleBitmap', 'CreatePatternBrush', 'DeleteDC', 'CreateDIBSection', 'GetCurrentObject', 'DeleteObject', 'GetStockObject', 'GetObjectA', 'SelectObject', 'CreateCompatibleDC', 'RegSetValueExA', 'RegQueryInfoKeyW', 'RegEnumKeyExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegCloseKey', 'ClearEventLogA', 'RegDeleteKeyA', 'SHGetDesktopFolder', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CoLockObjectExternal', 'RevokeDragDrop', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoInitialize', 'CoTaskMemRealloc', 'CoUninitialize', 'VarUI4FromStr', 'VariantTimeToSystemTime', 'StrToIntExA', 'ImageList_AddMasked', 'ImageList_DrawIndirect', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_Draw', 'InitCommonControlsEx', 'CreateToolbarEx', 'ImageList_GetImageCount', 'ImageList_LoadImageA', 'IsAppThemed', 'IsThemeActive', 'wglGetCurrentDC', 'glGetIntegerv', 'glGetString', 'wglGetProcAddress', 'WSAEventSelect', 'accept', 'WSAWaitForMultipleEvents', 'listen', 'bind', 'socket', 'htons', 'WSAStartup', 'htonl', 'WSARecv', 'WSASend', 'WSAGetLastError', 'WSAEnumNetworkEvents', 'AVIStreamGetFrameClose', 'CryptDecodeObject', 'CertEnumSystemStore', 'GdipSaveImageToStream', 'GdipFree', 'GdipCreateBitmapFromStream', 'GdipAlloc', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'QuerySecurityPackageInfoA', 'SetActivePwrScheme', 'ReadPwrScheme', 'RegisterMediaTypes'], ['GetFileTime', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'RtlUnwind', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'RaiseException', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'FatalAppExitA', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'FreeEnvironmentStringsA', 'GetFileAttributesA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetACP', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'SetFileAttributesA', 'SetFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SetErrorMode', 'CreateFileA', 'GetShortPathNameA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'lstrcmpW', 'GetVersionExA', 'FreeLibrary', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetProcAddress', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'MulDiv', 'SetLastError', 'Beep', 'GetStringTypeExW', 'GetStringTypeExA', 'GetEnvironmentVariableW', 'GetEnvironmentVariableA', 'lstrlenA', 'lstrcmpiW', 'lstrcmpiA', 'CompareStringW', 'CompareStringA', 'lstrlenW', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetEnvironmentStrings', 'InterlockedExchange', 'GetDialogBaseUnits', 'TranslateAcceleratorA', 'SetMenu', 'BringWindowToTop', 'SetRectEmpty', 'CreatePopupMenu', 'InsertMenuItemA', 'LoadAcceleratorsA', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'GetKeyNameTextA', 'MapVirtualKeyA', 'IsRectEmpty', 'GetSystemMenu', 'SetParent', 'UnionRect', 'SetRect', 'SetTimer', 'KillTimer', 'GetDCEx', 'LockWindowUpdate', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'ScrollWindowEx', 'IsWindowEnabled', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'GetDlgItemTextA', 'CheckRadioButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'DestroyIcon', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'DefWindowProcA', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindow', 'UnhookWindowsHookEx', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'CharLowerA', 'CharLowerW', 'CharUpperA', 'CharUpperW', 'EnableWindow', 'SendMessageA', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetSystemMetrics', 'LoadIconA', 'GetClientRect', 'IsIconic', 'DrawIcon', 'DialogBoxParamA', 'EndDialog', 'GetDlgItemInt', 'GetDesktopWindow', 'SetWindowPos', 'WaitMessage', 'DeleteMenu', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'UnregisterClassA', 'ShowWindow', 'GetDC', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'EndDeferWindowPos', 'GrayStringA', 'LoadBitmapA', 'LoadCursorA', 'GetParent', 'IsWindow', 'SendDlgItemMessageA', 'SetCursorPos', 'GetWindowRect', 'GetDlgItem', 'SetCapture', 'SetCursor', 'RedrawWindow', 'UpdateWindow', 'InvalidateRect', 'ReleaseDC', 'GetWindowDC', 'SetWindowPlacement', 'IsDlgButtonChecked', 'GetWindowPlacement', 'OpenClipboard', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'CheckDlgButton', 'GetCursorPos', 'WindowFromPoint', 'GetClassNameA', 'GetDlgCtrlID', 'wsprintfA', 'SetDlgItemTextA', 'SetDlgItemInt', 'ReleaseCapture', 'DestroyWindow', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ArcTo', 'PolyDraw', 'PolylineTo', 'PolyBezierTo', 'ExtSelectClipRgn', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'OffsetViewportOrgEx', 'PlayMetaFile', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'GetBkColor', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'DeleteObject', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'EnumMetaFile', 'CreatePen', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'DeleteDC', 'SelectObject', 'GetStockObject', 'Rectangle', 'SelectClipRgn', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegOpenKeyExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'ShellExecuteA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'CoTaskMemAlloc', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'ReadFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromCy', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromDate'], ['LoadStringW', 'SysAllocStringLen', 'SysAllocStringByteLen', 'SysStringLen', 'GetProcAddress', 'VirtualAlloc', 'VirtualProtect', 'RtlMoveMemory', 'WideCharToMultiByte', 'GetSystemDefaultLCID', 'GetModuleHandleW', '__vbaVarSub', '_CIcos', '_adj_fptan', '__vbaStrI4', '__vbaVarMove', '__vbaVarVargNofree', '__vbaAryMove', '__vbaFreeVar', '__vbaLateIdCall', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaRaiseEvent', '__vbaFreeObjList', '_adj_fprem1', '__vbaRecAnsiToUni', '__vbaResume', '__vbaStrCat', '__vbaLsetFixstr', '__vbaSetSystemError', '__vbaLenBstrB', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaVarForInit', '__vbaForEachCollObj', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaBoolVar', '__vbaBoolVarNull', '_CIsin', '__vbaVarZero', '__vbaNextEachCollObj', '__vbaChkstk', '__vbaCyVar', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaAryConstruct2', '__vbaDateR8', '__vbaObjVar', '__vbaPrintObj', 'DllFunctionCall', '__vbaVarLateMemSt', '__vbaVarOr', '__vbaCastObjVar', '__vbaRedimPreserve', '_adj_fpatan', '__vbaR4Var', '__vbaFixstrConstruct', '__vbaLateIdCallLd', '__vbaRedim', '__vbaRecUniToAnsi', 'EVENT_SINK_Release', '__vbaNew', '_CIsqrt', '__vbaObjIs', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFailedFriend', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '__vbaDateVar', '__vbaI2Var', '_CIlog', '__vbaVarLateMemCallLdRf', '__vbaR8Str', '__vbaVar2Vec', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaVarNot', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaPowerR8', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarSetVar', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarAdd', '__vbaAryLock', '__vbaVarDup', '__vbaStrToAnsi', '__vbaFpI2', '__vbaVarLateMemCallLd', '__vbaUnkVar', '__vbaFpI4', '__vbaVarCopy', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '__vbaCastObj', '__vbaI4Cy', '__vbaMidStmtVar', '__vbaStrVarCopy', '_allmul', '__vbaLateIdSt', '_CItan', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['ImpersonateNamedPipeClient', 'RegCloseKey', 'RegConnectRegistryW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyExW', 'RegEnumValueW', 'RegFlushKey', 'RegLoadKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegQueryValueExW', 'RegReplaceKeyW', 'RegRestoreKeyW', 'RegSaveKeyW', 'RegSetValueExW', 'RegUnLoadKeyW', 'CloseHandle', 'CompareStringW', 'CreateEventW', 'CreateFileA', 'CreateFileW', 'CreateThread', 'DeleteCriticalSection', 'DeleteFileA', 'EnterCriticalSection', 'EnumCalendarInfoW', 'EnumResourceNamesW', 'EnumSystemLocalesW', 'ExitProcess', 'ExitThread', 'FindClose', 'FindFirstFileW', 'FindResourceW', 'FormatMessageW', 'FreeLibrary', 'FreeResource', 'GetACP', 'GetCPInfo', 'GetCPInfoExW', 'GetCommandLineW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatW', 'GetDiskFreeSpaceW', 'GetEnvironmentStringsW', 'GetExitCodeThread', 'GetFileAttributesA', 'GetFileAttributesW', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeW', 'GetSystemDefaultLangID', 'GetSystemDefaultUILanguage', 'GetSystemInfo', 'GetTapePosition', 'GetThreadLocale', 'GetThreadPriority', 'GetTickCount', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersion', 'GetVersionExA', 'GetVersionExW', 'GlobalAddAtomW', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomW', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapSize', 'InitializeCriticalSection', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsDBCSLeadByteEx', 'IsDebuggerPresent', 'IsValidLocale', 'LCMapStringA', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'RaiseException', 'ReadFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'SetConsoleCtrlHandler', 'SetEndOfFile', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetHandleCount', 'SetLastError', 'SetProcessAffinityMask', 'SetThreadLocale', 'SetThreadPriority', 'SizeofResource', 'Sleep', 'SuspendThread', 'SwitchToThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'VerSetConditionMask', 'VerifyVersionInfoW', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'VirtualQueryEx', 'WaitCommEvent', 'WaitForMultipleObjectsEx', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'WritePrivateProfileStringW', 'lstrcmpW', 'lstrlenW', 'NetWkstaGetInfo', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'ClosePrinter', 'DocumentPropertiesW', 'EnumPrintersW', 'OpenPrinterW', 'FlatSB_GetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollProp', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Copy', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_Draw', 'ImageList_DrawEx', 'ImageList_EndDrag', 'ImageList_GetBkColor', 'ImageList_GetDragImage', 'ImageList_GetIcon', 'ImageList_GetIconSize', 'ImageList_GetImageCount', 'ImageList_GetImageInfo', 'ImageList_LoadImageW', 'ImageList_Read', 'ImageList_Remove', 'ImageList_Replace', 'ImageList_ReplaceIcon', 'ImageList_SetBkColor', 'ImageList_SetIconSize', 'ImageList_SetImageCount', 'ImageList_SetOverlayImage', 'ImageList_Write', 'InitializeFlatSB', '_TrackMouseEvent', 'AbortDoc', 'AngleArc', 'Arc', 'ArcTo', 'BitBlt', 'Chord', 'CombineRgn', 'CopyEnhMetaFileW', 'CreateBitmap', 'CreateBrushIndirect', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateDCW', 'CreateDIBSection', 'CreateDIBitmap', 'CreateFontIndirectW', 'CreateHalftonePalette', 'CreateICW', 'CreatePalette', 'CreatePenIndirect', 'CreateRectRgn', 'CreateRectRgnIndirect', 'CreateSolidBrush', 'DeleteDC', 'DeleteEnhMetaFile', 'DeleteObject', 'Ellipse', 'EndDoc', 'EndPage', 'EnumFontFamiliesExW', 'EnumFontsW', 'ExcludeClipRect', 'ExtFloodFill', 'ExtTextOutW', 'FrameRgn', 'GdiFlush', 'GetBitmapBits', 'GetBrushOrgEx', 'GetClipBox', 'GetCurrentPositionEx', 'GetDIBColorTable', 'GetDIBits', 'GetDeviceCaps', 'GetEnhMetaFileBits', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileHeader', 'GetEnhMetaFilePaletteEntries', 'GetObjectW', 'GetPaletteEntries', 'GetPixel', 'GetRgnBox', 'GetStockObject', 'GetSystemPaletteEntries', 'GetTextExtentPoint32W', 'GetTextExtentPointW', 'GetTextMetricsW', 'GetWinMetaFileBits', 'GetWindowOrgEx', 'IntersectClipRect', 'LineTo', 'MaskBlt', 'MoveToEx', 'PatBlt', 'Pie', 'PlayEnhMetaFile', 'PolyBezier', 'PolyBezierTo', 'Polygon', 'Polyline', 'RealizePalette', 'RectVisible', 'Rectangle', 'RestoreDC', 'RoundRect', 'SaveDC', 'SelectClipRgn', 'SelectObject', 'SelectPalette', 'SetAbortProc', 'SetBkColor', 'SetBkMode', 'SetBrushOrgEx', 'SetDIBColorTable', 'SetDIBits', 'SetEnhMetaFileBits', 'SetMapMode', 'SetPixel', 'SetROP2', 'SetRectRgn', 'SetStretchBltMode', 'SetTextColor', 'SetViewportOrgEx', 'SetWinMetaFileBits', 'SetWindowOrgEx', 'StartDocW', 'StartPage', 'StretchBlt', 'StretchDIBits', 'UnrealizeObject', 'Shell_NotifyIconW', 'ActivateKeyboardLayout', 'AdjustWindowRectEx', 'BeginPaint', 'CallNextHookEx', 'CallWindowProcW', 'CascadeWindows', 'CharLowerBuffW', 'CharLowerW', 'CharNextW', 'CharUpperBuffW', 'CharUpperW', 'CheckMenuItem', 'ChildWindowFromPoint', 'ClientToScreen', 'CloseClipboard', 'CopyIcon', 'CopyImage', 'CreateAcceleratorTableW', 'CreateIcon', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExW', 'DefFrameProcW', 'DefMDIChildProcW', 'DefWindowProcW', 'DeleteMenu', 'DestroyCursor', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DispatchMessageA', 'DispatchMessageW', 'DrawEdge', 'DrawFocusRect', 'DrawFrameControl', 'DrawIcon', 'DrawIconEx', 'DrawMenuBar', 'DrawTextExW', 'DrawTextW', 'EmptyClipboard', 'EnableMenuItem', 'EnableScrollBar', 'EnableWindow', 'EndMenu', 'EndPaint', 'EnumChildWindows', 'EnumDisplayMonitors', 'EnumThreadWindows', 'EnumWindows', 'FillRect', 'FindWindowExW', 'FindWindowW', 'FrameRect', 'GetActiveWindow', 'GetCapture', 'GetClassInfoExW', 'GetClassInfoW', 'GetClassLongW', 'GetClassNameW', 'GetClientRect', 'GetClipboardData', 'GetCursor', 'GetCursorPos', 'GetDC', 'GetDCEx', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetFocus', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyNameTextW', 'GetKeyState', 'GetKeyboardLayout', 'GetKeyboardLayoutList', 'GetKeyboardLayoutNameW', 'GetKeyboardState', 'GetLastActivePopup', 'GetMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoW', 'GetMenuState', 'GetMenuStringW', 'GetMessageExtraInfo', 'GetMessagePos', 'GetMonitorInfoW', 'GetParent', 'GetPropW', 'GetScrollBarInfo', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMetrics', 'GetTopWindow', 'GetUpdateRect', 'GetWindow', 'GetWindowDC', 'GetWindowLongW', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowTextW', 'GetWindowThreadProcessId', 'HideCaret', 'InsertMenuItemW', 'InsertMenuW', 'InvalidateRect', 'IsChild', 'IsDialogMessageA', 'IsDialogMessageW', 'IsIconic', 'IsWindow', 'IsWindowEnabled', 'IsWindowUnicode', 'IsWindowVisible', 'IsZoomed', 'KillTimer', 'LoadBitmapW', 'LoadCursorW', 'LoadIconW', 'LoadKeyboardLayoutW', 'LoadStringW', 'LockWindowUpdate', 'MapVirtualKeyW', 'MapWindowPoints', 'MessageBeep', 'MessageBoxW', 'MonitorFromPoint', 'MonitorFromRect', 'MonitorFromWindow', 'MoveWindow', 'MsgWaitForMultipleObjects', 'MsgWaitForMultipleObjectsEx', 'OpenClipboard', 'PeekMessageA', 'PeekMessageW', 'PostMessageW', 'PostQuitMessage', 'RedrawWindow', 'RegisterClassW', 'RegisterClipboardFormatW', 'RegisterHotKey', 'RegisterWindowMessageW', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropW', 'ScreenToClient', 'ScrollWindow', 'SendMessageA', 'SendMessageW', 'SetActiveWindow', 'SetCapture', 'SetClassLongW', 'SetClipboardData', 'SetCursor', 'SetCursorPos', 'SetFocus', 'SetForegroundWindow', 'SetMenu', 'SetMenuItemInfoW', 'SetParent', 'SetPropW', 'SetRect', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowLongW', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowRgn', 'SetWindowTextW', 'SetWindowsHookExW', 'ShowCaret', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SystemParametersInfoW', 'TrackPopupMenu', 'TranslateMDISysAccel', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnregisterClassW', 'UpdateWindow', 'WaitMessage', 'WindowFromPoint', 'wsprintfA', 'GetSystemMenu', 'CoCreateInstance', 'CoInitialize', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoUninitialize', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'GetErrorInfo', 'SafeArrayCreate', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayPtrOfIndex', 'SysAllocStringLen', 'SysFreeString', 'SysReAllocStringLen', 'VariantChangeType', 'VariantClear', 'VariantCopy', 'VariantInit'], ['GetVersionExA', 'FindResourceExA', 'EnableMenuItem', 'GetObjectA', 'GetFileTitleA', 'ClosePrinter', 'RegCloseKey', 'InitCommonControlsEx', 'PathStripToRootA', 'CoTaskMemFree', 'SystemTimeToVariantTime', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['SHGetSpecialFolderPathW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteExW', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'DeleteDC', 'GetCurrentObject', 'StretchBlt', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'SetStretchBltMode', 'GetObjectW', 'FreeSid', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'CreateWindowExW', 'GetWindowLongW', 'GetMessageW', 'DispatchMessageW', 'KillTimer', 'ScreenToClient', 'CharUpperW', 'SendMessageW', 'EndDialog', 'wsprintfW', 'MessageBoxW', 'GetWindowRect', 'GetParent', 'CopyImage', 'ReleaseDC', 'GetWindowDC', 'SetWindowPos', 'DestroyWindow', 'GetClassNameA', 'wsprintfA', 'GetWindowTextW', 'GetWindowTextLengthW', 'SetWindowTextW', 'GetSysColor', 'MessageBoxA', 'GetKeyState', 'GetDlgItem', 'GetClientRect', 'SetWindowLongW', 'UnhookWindowsHookEx', 'SetFocus', 'GetSystemMetrics', 'SystemParametersInfoW', 'ShowWindow', 'DrawTextW', 'GetDC', 'ClientToScreen', 'GetWindow', 'DialogBoxIndirectParamW', 'DrawIconEx', 'CallWindowProcW', 'DefWindowProcW', 'CallNextHookEx', 'PtInRect', 'SetWindowsHookExW', 'LoadImageW', 'LoadIconW', 'MessageBeep', 'EnableWindow', 'IsWindow', 'EnableMenuItem', 'GetSystemMenu', 'CreateWindowExA', 'wvsprintfW', 'GetMenu', 'SetTimer', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'CoInitialize', 'SysAllocStringLen', 'VariantClear', 'SysFreeString', 'OleLoadPicture', 'SysAllocString', 'SetFileTime', 'SetEndOfFile', 'GetFileInformationByHandle', 'VirtualFree', 'GetModuleHandleA', 'WaitForMultipleObjects', 'VirtualAlloc', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'FormatMessageW', 'lstrcpyW', 'LocalFree', 'IsBadReadPtr', 'SuspendThread', 'TerminateThread', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'GetVersionExW', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetProcessWorkingSetSize', 'GetDriveTypeW', 'CreateFileW', 'SetEnvironmentVariableW', 'GetTempPathW', 'GetCommandLineW', 'GetStartupInfoW', 'CreateProcessW', 'CreateJobObjectW', 'ResumeThread', 'AssignProcessToJobObject', 'CreateIoCompletionPort', 'SetInformationJobObject', 'GetQueuedCompletionStatus', 'GetExitCodeProcess', 'CloseHandle', 'LoadLibraryA', 'SetThreadLocale', 'lstrlenW', 'GetSystemTimeAsFileTime', 'ExpandEnvironmentStringsW', 'CompareFileTime', 'WideCharToMultiByte', 'FindFirstFileW', 'lstrcmpW', 'DeleteFileW', 'FindNextFileW', 'FindClose', 'SetCurrentDirectoryW', 'RemoveDirectoryW', 'GetEnvironmentVariableW', 'lstrcmpiW', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLCID', 'lstrcmpiA', 'GlobalAlloc', 'GlobalFree', 'MulDiv', 'FindResourceExA', 'SizeofResource', 'LoadResource', 'LockResource', 'GetProcAddress', 'ExitProcess', 'lstrcatW', 'GetDiskFreeSpaceExW', 'SetFileAttributesW', 'SetLastError', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'SystemTimeToFileTime', 'GetLocalTime', 'GetFileAttributesW', 'CreateDirectoryW', 'lstrlenA', 'WriteFile', 'GetStdHandle', 'GetModuleHandleW', 'GetStartupInfoA', '_purecall', 'memcmp', '??2@YAPAXI@Z', 'memmove', 'memcpy', '_wtol', 'strncpy', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', 'malloc', 'free', 'wcsstr', '_CxxThrowException', 'wcscmp', '_beginthreadex', '_EH_prolog', '?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z', 'memset', '_wcsnicmp', 'strncmp', 'wcsncmp', 'wcsncpy', '??3@YAXPAX@Z'], ['RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'InitiateSystemShutdownExW', 'CreateProcessAsUserW', 'RegOpenKeyExW', 'ConvertSidToStringSidW', 'RegDeleteValueW', 'RegEnumKeyW', 'RegQueryValueExW', 'RegDeleteKeyW', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'FreeSid', 'LookupPrivilegeValueW', 'OpenProcessToken', 'AdjustTokenPrivileges', 'GetTokenInformation', 'CopySid', 'RegDeleteKeyValueW', 'StartTraceW', 'EnableTrace', 'ControlTraceW', 'CloseTrace', 'IsValidSid', 'GetLengthSid', 'InitializeSecurityDescriptor', 'InitializeAcl', 'AddAccessAllowedAce', 'SetSecurityDescriptorDacl', 'CryptAcquireContextW', 'CryptGenRandom', 'DecryptFileA', 'CryptReleaseContext', 'EventRegister', 'EventUnregister', 'EventEnabled', 'EventWrite', 'ProcessIdToSessionId', 'GetCurrentProcessId', 'FormatMessageW', 'GetModuleHandleW', 'CreateFileW', 'GetFullPathNameW', 'GetCurrentProcess', 'CreateEventW', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetExitCodeProcess', 'GetFileAttributesA', 'MultiByteToWideChar', 'GetSystemDirectoryA', 'lstrcmpW', 'DeleteFileW', 'MoveFileExW', 'RemoveDirectoryW', 'CreateDirectoryW', 'OutputDebugStringW', 'lstrlenW', 'GetFileAttributesW', 'WaitForSingleObject', 'GetSystemDirectoryW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'GetSystemWindowsDirectoryW', 'FindClose', 'CloseHandle', 'CreateDirectoryA', 'GetCommandLineW', 'GetLastError', 'LocalFree', 'CreateThread', 'FindFirstFileW', 'lstrcmpiW', 'FindNextFileW', 'Sleep', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'UnhandledExceptionFilter', 'OutputDebugStringA', 'GetExitCodeThread', 'GetStockObject', 'GetDeviceCaps', 'DeleteDC', 'GetTextExtentPoint32W', 'SelectObject', 'CreateCompatibleDC', 'DeleteObject', 'CreateFontIndirectW', 'EndPaint', 'FillRect', 'BeginPaint', 'ReleaseDC', 'SendDlgItemMessageW', 'SendMessageW', 'SetRect', 'GetClientRect', 'ShowWindow', 'SystemParametersInfoW', 'PostMessageW', 'SetFocus', 'DestroyAcceleratorTable', 'TranslateAcceleratorW', 'CreateAcceleratorTableW', 'DestroyWindow', 'ShutdownBlockReasonDestroy', 'ShutdownBlockReasonCreate', 'CreateWindowExW', 'RegisterClassExW', 'DefWindowProcW', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'GetDlgItem', 'SetDlgItemTextW', 'EnableWindow', 'SetWindowLongW', 'LoadIconW', 'LoadCursorW', 'UpdateWindow', 'EndDialog', 'DialogBoxParamW', 'MessageBoxW', 'MsgWaitForMultipleObjects', 'GetDC', '_amsg_exit', 'memcpy', 'memmove', 'wcsrchr', '_vsnwprintf', '??2@YAPEAX_K@Z', '??3@YAXPEAX@Z', '_wcsicmp', '?terminate@@YAXXZ', '_onexit', '_lock', '__dllonexit', '_unlock', '__set_app_type', '_fmode', '_commode', '__setusermatherr', 'memset', '_initterm', '_wcmdln', 'exit', '_cexit', '_exit', '_XcptFilter', '__C_specific_handler', '__wgetmainargs', '_vsnprintf', 'wcschr', 'iswdigit', '_wcsnicmp', 'CoInitializeSecurity', 'CoUninitialize', 'CoTaskMemFree', 'CoInitializeEx', 'CoCreateInstance', 'CommandLineToArgvW', 'SHBrowseForFolderW', 'ShellExecuteExW', 'SHGetPathFromIDListW', 'StrToIntExW', 'WinSqmSetDWORD', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'WinSqmStartSession', 'WinSqmSetString', 'WinSqmEndSession', 'DpxNewJob', 'WTSQueryUserToken', 'InitCommonControlsEx'], ['_except_handler3', 'printf', 'atoi', 'exit', 'time', 'ctime', '__CxxFrameHandler', 'sprintf', '_setmbcp', '__set_app_type', 'realloc', 'malloc', '__dllonexit', '_onexit', '_exit', '_XcptFilter', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '__p__fmode', '__p__commode', '_adjust_fdiv', '_controlfp', 'GetSystemDirectoryA', 'CreateProcessA', 'CreateThread', 'Sleep', 'PeekNamedPipe', 'GetDriveTypeA', 'WriteFile', 'CreateFileA', 'GetStartupInfoA', 'CloseHandle', 'ReadFile', 'GetVersionExA', 'GlobalMemoryStatusEx', 'GetLocaleInfoA', 'GetOEMCP', 'GetExitCodeProcess', 'CreatePipe', 'LocalAlloc', 'Process32Next', 'OpenProcess', 'Process32First', 'CreateToolhelp32Snapshot', 'TerminateProcess', 'DeleteFileA', 'FindNextFileA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FindFirstFileA', 'GetSystemInfo', 'GetModuleHandleA', 'GetCurrentProcess', 'GetFileSize', 'GetLastError', 'GetCurrentThread', 'wsprintfA', 'GetMessageA', 'GetSystemMetrics', 'EnableWindow', 'PostThreadMessageA', 'SendMessageA', 'AppendMenuA', 'GetSystemMenu', 'DrawIcon', 'IsIconic', 'GetClientRect', 'LoadIconA', 'RegOpenKeyExA', 'LookupAccountSidA', 'OpenThreadToken', 'OpenProcessToken', 'GetTokenInformation', 'AllocateAndInitializeSid', 'EqualSid', 'FreeSid', 'RegCloseKey', 'RegQueryValueExA', 'OpenSCManagerA', 'EnumServicesStatusA', 'OpenServiceA', 'QueryServiceConfigA', 'CloseServiceHandle', 'SHGetFileInfoA', 'ShellExecuteA', '?_Freeze@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXXZ', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDII@Z', '?rfind@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDII@Z', '?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV12@II@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ID@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@II@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@II@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAE_NI_N@Z', '?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIXZ', '?_Xlen@std@@YAXXZ', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', '?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '??1_Winit@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ', 'GetModuleFileNameExA', 'Netbios', 'WSAStartup', 'gethostname', 'inet_ntoa', 'gethostbyname', 'HttpQueryInfoA', 'HttpAddRequestHeadersA', 'HttpSendRequestExA', 'InternetCloseHandle', 'InternetReadFile', 'HttpOpenRequestA', 'InternetConnectA', 'InternetOpenA', 'InternetCrackUrlA', 'InternetWriteFile', 'HttpSendRequestA', 'HttpEndRequestA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaOnError', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaVarDup', '_CIatan', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['SysFreeString', 'SysAllocString', 'ZwQuerySystemInformation', 'RtlGetVersion', 'RtlGetNativeSystemInformation', 'RtlVirtualUnwind', 'WNetAddConnection2W', 'WNetCancelConnection2W', 'WNetOpenEnumW', 'WNetEnumResourceW', 'WNetCloseEnum', 'CryptImportKey', 'GetUserNameW', 'LookupAccountSidW', 'GetTokenInformation', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'OpenProcessToken', 'StartServiceW', 'QueryServiceStatusEx', 'OpenServiceA', 'OpenSCManagerW', 'OpenSCManagerA', 'EnumServicesStatusA', 'DeleteService', 'CryptAcquireContextW', 'CryptReleaseContext', 'CryptDestroyKey', 'ControlService', 'CryptEncrypt', 'CloseServiceHandle', 'CreateServiceW', 'NetApiBufferFree', 'NetShareEnum', 'NetGetJoinInformation', 'NetGetDCName', 'CommandLineToArgvW', 'wsprintfW', 'memcpy', '_wfopen', 'fgetws', '_getch', '_vsnwprintf', 'memset', 'fclose', 'feof', 'CoCreateInstance', 'CoInitializeEx', 'CoInitializeSecurity', 'CoSetProxyBlanket', 'ReadFile', 'SetEndOfFile', 'SetFileInformationByHandle', 'SetFilePointerEx', 'TlsGetValue', 'TlsSetValue', 'LeaveCriticalSection', 'DeleteCriticalSection', 'AllocConsole', 'WriteConsoleW', 'GetConsoleScreenBufferInfo', 'SetConsoleCursorPosition', 'GetDriveTypeW', 'GetVolumeInformationW', 'GetFileSizeEx', 'TerminateThread', 'ResetEvent', 'lstrcmpiW', 'DeviceIoControl', 'EnterCriticalSection', 'InitializeCriticalSection', 'GetStdHandle', 'CopyFileW', 'DeleteFileW', 'GetComputerNameW', 'GlobalMemoryStatus', 'GetSystemInfo', 'CreateProcessW', 'GetTempPathW', 'GetModuleFileNameW', 'lstrcmpiA', 'OpenProcess', 'TerminateProcess', 'GetComputerNameA', 'lstrlenA', 'TlsAlloc', 'SetErrorMode', 'ExitProcess', 'HeapAlloc', 'GetProcessHeap', 'lstrcpyW', 'lstrcatW', 'lstrlenW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'SetFileAttributesW', 'GetLastError', 'HeapFree', 'CreateFileW', 'WriteFile', 'CloseHandle', 'SetLastError', 'HeapReAlloc', 'GetCurrentProcessId', 'WideCharToMultiByte', 'Sleep', 'GetTickCount', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'GetCurrentProcess', 'SetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventA', 'CreateThread', 'GetTickCount64', 'CreateSemaphoreA', 'GetCommandLineW', 'StrStrIA', 'SHRegSetUSValueW', 'StrChrW', 'StrCmpNIW', 'StrCmpIW', 'StrStrIW'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaFPInt', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'InitializeCriticalSectionAndSpinCount', 'GetACP', 'IsValidCodePage', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetFileType', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'SetHandleCount', 'GetStdHandle', 'HeapDestroy', 'HeapCreate', 'HeapSize', 'VirtualQuery', 'HeapReAlloc', 'GetSystemInfo', 'ExitProcess', 'Sleep', 'GetCommandLineA', 'RaiseException', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'GetTickCount', 'GetModuleHandleW', 'GetFileSizeEx', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetThreadLocale', 'GetStringTypeExA', 'DeleteFileA', 'MoveFileA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'InterlockedDecrement', 'GetCurrentDirectoryA', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'lstrlenA', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'MultiByteToWideChar', 'lstrcmpW', 'GetVersionExA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GetLastError', 'GlobalAddAtomA', 'CloseHandle', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'WideCharToMultiByte', 'CompareStringA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleA', 'GetNativeSystemInfo', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'IsBadReadPtr', 'VirtualProtect', 'SetLastError', 'VirtualAlloc', 'VirtualFree', 'SetStdHandle', 'SetWindowRgn', 'DrawIcon', 'MessageBeep', 'GetNextDlgGroupItem', 'SetCapture', 'InvalidateRgn', 'IsRectEmpty', 'CopyAcceleratorTableA', 'CharNextA', 'GetMenuItemInfoA', 'InflateRect', 'CharUpperA', 'DestroyIcon', 'GetSysColorBrush', 'DeleteMenu', 'IsZoomed', 'LoadCursorA', 'DestroyCursor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetMenuStringA', 'AppendMenuA', 'InsertMenuA', 'RemoveMenu', 'SetRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'TranslateAcceleratorA', 'SetWindowContextHelpId', 'MapDialogRect', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'RegisterWindowMessageA', 'LoadIconA', 'CreateMenu', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'GetClientRect', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'UpdateWindow', 'EnableWindow', 'WindowFromDC', 'GetWindowRect', 'InvalidateRect', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'PostThreadMessageA', 'GetTabbedTextExtentA', 'WindowFromPoint', 'RegisterClipboardFormatA', 'SendDlgItemMessageA', 'SetTimer', 'KillTimer', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'SendMessageA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'SetWindowsHookExA', 'SetCursor', 'ShowOwnedPopups', 'MessageBoxA', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongA', 'GetWindowThreadProcessId', 'EndDialog', 'GetNextDlgTabItem', 'GetDlgItem', 'IsWindow', 'DestroyWindow', 'ReleaseDC', 'GetWindowExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ExtSelectClipRgn', 'CreatePatternBrush', 'GetStockObject', 'GetViewportExtEx', 'GetViewportOrgEx', 'PatBlt', 'CreateRectRgnIndirect', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateFontIndirectA', 'GetTextColor', 'GetRgnBox', 'GetMapMode', 'CreateEllipticRgn', 'LPtoDP', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextAlign', 'GetTextFaceA', 'GetTextExtentPointA', 'GetWindowOrgEx', 'DeleteObject', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'CreatePen', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateDCA', 'DeleteDC', 'EndDoc', 'AbortDoc', 'SetAbortProc', 'EndPage', 'StartPage', 'StartDocA', 'DPtoLP', 'GetDeviceCaps', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'PolyBezier', 'SetPixelV', 'GetPixel', 'BitBlt', 'RoundRect', 'Rectangle', 'Polygon', 'Ellipse', 'Polyline', 'Arc', 'GetBkColor', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateSolidBrush', 'ExcludeClipRect', 'GetFileTitleA', 'GetJobA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegSetValueA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegCreateKeyA', 'DragFinish', 'ExtractIconA', 'SHGetFileInfoA', 'DragQueryFileA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'CoInitializeEx', 'CoCreateInstance', 'CoUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleInitialize', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy'], ['TerminateThread', 'CreateThread', 'WriteFile', 'CreateFileW', 'LoadLibraryW', 'GetLocalTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'ReadFile', 'FindFirstFileA', 'GetBinaryTypeW', 'FindNextFileA', 'GetFullPathNameA', 'GetTempPathW', 'GetPrivateProfileStringW', 'CreateFileA', 'GlobalAlloc', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'LocalFree', 'GetFileSize', 'FreeLibrary', 'SetDllDirectoryW', 'WaitForSingleObject', 'GetCurrentProcess', 'WaitForMultipleObjects', 'CreatePipe', 'PeekNamedPipe', 'DuplicateHandle', 'SetEvent', 'CreateProcessW', 'CreateEventA', 'GetModuleFileNameW', 'LoadResource', 'FindResourceW', 'HeapFree', 'GlobalMemoryStatusEx', 'LoadLibraryExW', 'FindFirstFileW', 'FindNextFileW', 'SetFilePointer', 'GetLogicalDriveStringsW', 'VirtualQuery', 'CopyFileW', 'GetDriveTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'CreateMutexA', 'ReleaseMutex', 'TerminateProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'CreateProcessA', 'SizeofResource', 'VirtualProtect', 'GetSystemDirectoryW', 'LockResource', 'GetWindowsDirectoryW', 'GetStartupInfoA', 'Process32First', 'WriteProcessMemory', 'Process32Next', 'GetWindowsDirectoryA', 'VirtualProtectEx', 'VirtualAllocEx', 'CreateRemoteThread', 'WinExec', 'GetTempPathA', 'GetCommandLineA', 'GetModuleHandleA', 'ExitProcess', 'GetProcAddress', 'LoadLibraryA', 'GetProcessHeap', 'HeapAlloc', 'lstrcmpW', 'GetTickCount', 'lstrcpyW', 'WideCharToMultiByte', 'HeapReAlloc', 'VirtualAlloc', 'DeleteFileW', 'lstrcpyA', 'Sleep', 'MultiByteToWideChar', 'lstrcatA', 'lstrcmpA', 'lstrlenA', 'ExpandEnvironmentStringsW', 'lstrlenW', 'CloseHandle', 'lstrcatW', 'VirtualFree', 'GetLastError', 'SetLastError', 'GetModuleFileNameA', 'CreateDirectoryW', 'GetComputerNameW', 'IsWow64Process', 'MessageBoxA', 'GetKeyState', 'GetMessageA', 'DispatchMessageA', 'CreateWindowExW', 'CallNextHookEx', 'wsprintfW', 'wsprintfA', 'GetWindowTextW', 'GetAsyncKeyState', 'RegisterClassW', 'GetRawInputData', 'ToUnicode', 'DefWindowProcA', 'RegisterRawInputDevices', 'TranslateMessage', 'GetForegroundWindow', 'GetKeyNameTextW', 'PostQuitMessage', 'GetLastInputInfo', 'MapVirtualKeyA', 'SetSecurityDescriptorDacl', 'RegDeleteKeyA', 'InitializeSecurityDescriptor', 'RegEnumKeyExW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegCloseKey', 'OpenServiceW', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'EnumServicesStatusExW', 'StartServiceW', 'RegSetValueExW', 'RegCreateKeyExA', 'OpenSCManagerW', 'CloseServiceHandle', 'GetTokenInformation', 'LookupAccountSidW', 'FreeSid', 'OpenProcessToken', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegDeleteValueW', 'RegSetValueExA', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegQueryValueExA', 'ShellExecuteW', 'ShellExecuteExA', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'SHCreateDirectoryExW', 'SHGetFolderPathW', 'URLDownloadToFileW', 'send', 'WSAStartup', 'shutdown', 'closesocket', 'WSACleanup', 'ioctlsocket', 'ntohs', 'gethostbyname', 'inet_addr', 'getaddrinfo', 'setsockopt', 'freeaddrinfo', 'htons', 'recv', 'connect', 'socket', 'CoInitializeSecurity', 'CoUninitialize', 'CoCreateInstance', 'CoTaskMemFree', 'CoInitialize', 'StrStrA', 'StrStrW', 'PathFindExtensionW', 'PathCombineA', 'PathFindFileNameW', 'PathFileExistsW', 'PathRemoveFileSpecA', 'NetUserAdd', 'NetLocalGroupAddMembers', 'VariantInit', 'CryptStringToBinaryA', 'CryptUnprotectData', 'GetModuleFileNameExW'], ['SetFileAttributesA', 'GetShortPathNameA', 'GetFullPathNameA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'GetLastError', 'CompareFileTime', 'SearchPathA', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'CreateDirectoryA', 'lstrcmpiA', 'GetCommandLineA', 'GetVersion', 'SetErrorMode', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'lstrlenA', 'lstrcatA', 'GetSystemDirectoryA', 'LoadLibraryA', 'SetFileTime', 'CloseHandle', 'GlobalFree', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'GetExitCodeProcess', 'GlobalAlloc', 'WaitForSingleObject', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetProcAddress', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'SetFilePointer', 'ReadFile', 'FindClose', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'WriteFile', 'MulDiv', 'LoadLibraryExA', 'GetModuleHandleA', 'MultiByteToWideChar', 'FreeLibrary', 'GetWindowRect', 'EnableMenuItem', 'GetSystemMenu', 'ScreenToClient', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetForegroundWindow', 'PostQuitMessage', 'RegisterClassA', 'EndDialog', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndPaint', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'ExitWindowsEx', 'DestroyWindow', 'OpenClipboard', 'TrackPopupMenu', 'SendMessageTimeoutA', 'GetDC', 'LoadImageA', 'GetDlgItem', 'FindWindowExA', 'IsWindow', 'SetClipboardData', 'SetWindowLongA', 'EmptyClipboard', 'SetTimer', 'CreateDialogParamA', 'wsprintfA', 'ShowWindow', 'SetWindowTextA', 'SelectObject', 'SetBkMode', 'CreateFontIndirectA', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'RegDeleteValueA', 'SetFileSecurityA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumValueA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['GlobalFlags', 'ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'GetThreadLocale', 'DuplicateHandle', 'GetCurrentProcess', 'FindClose', 'FindFirstFileA', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetCPInfo', 'GetOEMCP', 'FileTimeToSystemTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'InterlockedIncrement', 'GetFileAttributesA', 'GetFileTime', 'GetTickCount', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'HeapSize', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'WritePrivateProfileStringA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'lstrcmpA', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'ExitProcess', 'LoadLibraryW', 'GetProcAddress', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'Sleep', 'CreateFileA', 'EscapeCommFunction', 'SetCommState', 'CloseHandle', 'lstrlenA', 'CompareStringW', 'CompareStringA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedExchange', 'ReleaseCapture', 'CharNextA', 'CopyAcceleratorTableA', 'IsRectEmpty', 'SetRect', 'InvalidateRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'SetCapture', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'CharUpperA', 'InSendMessage', 'CreateWindowExW', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'LoadCursorA', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'SendMessageA', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'GetSubMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'GetMessagePos', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'CreateBitmap', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'GetObjectA', 'ExtTextOutA', 'SaveDC', 'RestoreDC', 'SetWindowExtEx', 'SetMapMode', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'GetDeviceCaps', 'GetViewportExtEx', 'DeleteObject', 'GetWindowExtEx', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetFileTitleA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaLateIdCall', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaVarIdiv', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaRecDestruct', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '__vbaOnError', '__vbaCyAdd', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '__vbaI2I4', 'DllFunctionCall', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaVarMul', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaI2Var', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarAdd', '__vbaStrToAnsi', '__vbaStrComp', '__vbaVarCopy', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '__vbaLateIdSt', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['EVENT_SINK_AddRef', 'DllFunctionCall', 'EVENT_SINK_Release', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', 'ProcCallEngine'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFpCDblR8', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaObjVar', '__vbaCastObjVar', '_adj_fpatan', '__vbaR4Var', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaAryCopy', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['TerminateProcess', 'CreateThread', 'ExitThread', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'LCMapStringA', 'LCMapStringW', 'FatalAppExitA', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetCommandLineA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetVersionExA', 'SetConsoleCtrlHandler', 'SetStdHandle', 'GetLocaleInfoW', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'GetProfileStringA', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'SetFileAttributesA', 'SetFileTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetTickCount', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenW', 'GetShortPathNameA', 'GetStringTypeExA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'GetThreadLocale', 'SizeofResource', 'GetProcessVersion', 'GetLastError', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GlobalFlags', 'lstrcpynA', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalFree', 'LocalAlloc', 'MulDiv', 'SetLastError', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'LoadLibraryA', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'GetModuleHandleA', 'GetProcAddress', 'lstrlenA', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'GetModuleFileNameA', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'FreeEnvironmentStringsA', 'ExitProcess', 'SetRect', 'GetNextDlgGroupItem', 'MessageBeep', 'SetRectEmpty', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'LoadMenuA', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'BringWindowToTop', 'CharUpperA', 'InflateRect', 'RegisterClipboardFormatA', 'RemoveMenu', 'PostThreadMessageA', 'DestroyIcon', 'GetSysColor', 'SetFocus', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'DefWindowProcA', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'CopyAcceleratorTableA', 'GetMessagePos', 'GetClassNameA', 'SetForegroundWindow', 'SetWindowLongA', 'RegisterWindowMessageA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'MapDialogRect', 'SetWindowPos', 'GetWindow', 'SetWindowContextHelpId', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'GetSystemMetrics', 'InsertMenuA', 'DestroyWindow', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'EnableWindow', 'LoadIconA', 'SendMessageA', 'HideCaret', 'ShowCaret', 'ExcludeUpdateRgn', 'DrawFocusRect', 'DefDlgProcA', 'GetCursorPos', 'SetWindowsHookExA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'MessageBoxA', 'SetCursor', 'ShowOwnedPopups', 'PostQuitMessage', 'PostMessageA', 'GetClientRect', 'GetWindowRect', 'CharNextA', 'GetDialogBaseUnits', 'GetSysColorBrush', 'GetMenuStringA', 'GetMessageTime', 'DeleteMenu', 'InvalidateRect', 'GetSystemMenu', 'IsWindowUnicode', 'AppendMenuA', 'WindowFromPoint', 'GetWindowThreadProcessId', 'GetDesktopWindow', 'WaitMessage', 'ReleaseCapture', 'SetCapture', 'LoadCursorA', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'DestroyMenu', 'LoadStringA', 'OemToCharA', 'CharToOemA', 'wvsprintfA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'MapWindowPoints', 'CheckRadioButton', 'CheckDlgButton', 'CreateDialogIndirectParamA', 'PtInRect', 'UpdateWindow', 'GetForegroundWindow', 'SendDlgItemMessageA', 'GetDlgItemInt', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'DeleteObject', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'SetPolyFillMode', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontIndirectA', 'GetTextColor', 'GetBkColor', 'DPtoLP', 'LPtoDP', 'GetMapMode', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'CreateRectRgnIndirect', 'CopyMetaFileA', 'CreateDCA', 'SetBkMode', 'SelectPalette', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'StartDocA', 'DeleteDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'ExtSelectClipRgn', 'CreateDIBitmap', 'GetTextExtentPointA', 'BitBlt', 'CreateCompatibleDC', 'CreateBitmap', 'GetSaveFileNameA', 'GetFileTitleA', 'GetOpenFileNameA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteKeyA', 'RegCreateKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegSetValueA', 'RegOpenKeyA', 'RegCloseKey', 'RegDeleteValueA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'SHGetFileInfoA', 'DragQueryFileA', 'DragFinish', 'DragAcceptFiles', 'ExtractIconA', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CreateBindCtx', 'OleDuplicateData', 'CoFreeUnusedLibraries', 'ReleaseStgMedium', 'OleInitialize', 'CoDisconnectObject', 'OleRun', 'CoCreateInstance', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoRegisterMessageFilter', 'CoRegisterClassObject', 'CoRevokeClassObject', 'OleSetClipboard', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CreateStreamOnHGlobal', 'OleUninitialize', 'VariantClear', 'SysFreeString', 'VariantTimeToSystemTime', 'VariantCopy', 'VariantChangeType', 'SysReAllocStringLen', 'SysAllocString', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'SysAllocStringByteLen', 'SysStringByteLen', 'VarCyFromStr', 'VarBstrFromCy', 'VarDateFromStr', 'VarBstrFromDate', 'SafeArrayCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'SysStringLen', 'LoadTypeLib', 'SysAllocStringLen'], ['MethCallEngine', 'EVENT_SINK_AddRef', 'DllFunctionCall', 'EVENT_SINK_Release', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler'], ['TerminateThread', 'CreateThread', 'WriteFile', 'CreateFileW', 'LoadLibraryW', 'GetLocalTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'ReadFile', 'FindFirstFileA', 'GetBinaryTypeW', 'FindNextFileA', 'GetFullPathNameA', 'GetTempPathW', 'GetPrivateProfileStringW', 'CreateFileA', 'GlobalAlloc', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'LocalFree', 'GetFileSize', 'FreeLibrary', 'SetDllDirectoryW', 'WaitForSingleObject', 'GetCurrentProcess', 'WaitForMultipleObjects', 'CreatePipe', 'PeekNamedPipe', 'DuplicateHandle', 'SetEvent', 'CreateProcessW', 'CreateEventA', 'GetModuleFileNameW', 'LoadResource', 'FindResourceW', 'HeapFree', 'GlobalMemoryStatusEx', 'LoadLibraryExW', 'FindFirstFileW', 'FindNextFileW', 'SetFilePointer', 'GetLogicalDriveStringsW', 'VirtualQuery', 'CopyFileW', 'GetDriveTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'CreateMutexA', 'ReleaseMutex', 'TerminateProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'CreateProcessA', 'SizeofResource', 'VirtualProtect', 'GetSystemDirectoryW', 'LockResource', 'GetWindowsDirectoryW', 'GetStartupInfoA', 'Process32First', 'WriteProcessMemory', 'Process32Next', 'GetWindowsDirectoryA', 'VirtualProtectEx', 'VirtualAllocEx', 'CreateRemoteThread', 'WinExec', 'GetTempPathA', 'GetCommandLineA', 'GetModuleHandleA', 'ExitProcess', 'GetProcAddress', 'LoadLibraryA', 'GetProcessHeap', 'HeapAlloc', 'lstrcmpW', 'GetTickCount', 'lstrcpyW', 'WideCharToMultiByte', 'HeapReAlloc', 'VirtualAlloc', 'DeleteFileW', 'lstrcpyA', 'Sleep', 'MultiByteToWideChar', 'lstrcatA', 'lstrcmpA', 'lstrlenA', 'ExpandEnvironmentStringsW', 'lstrlenW', 'CloseHandle', 'lstrcatW', 'VirtualFree', 'GetLastError', 'SetLastError', 'GetModuleFileNameA', 'CreateDirectoryW', 'GetComputerNameW', 'IsWow64Process', 'MessageBoxA', 'GetKeyState', 'GetMessageA', 'DispatchMessageA', 'CreateWindowExW', 'CallNextHookEx', 'wsprintfW', 'wsprintfA', 'GetWindowTextW', 'GetAsyncKeyState', 'RegisterClassW', 'GetRawInputData', 'GetKeyNameTextW', 'DefWindowProcA', 'RegisterRawInputDevices', 'TranslateMessage', 'ToUnicode', 'GetForegroundWindow', 'PostQuitMessage', 'GetLastInputInfo', 'MapVirtualKeyA', 'SetSecurityDescriptorDacl', 'RegDeleteKeyA', 'InitializeSecurityDescriptor', 'RegEnumKeyExW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegCloseKey', 'OpenServiceW', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'EnumServicesStatusExW', 'StartServiceW', 'RegSetValueExW', 'RegCreateKeyExA', 'OpenSCManagerW', 'CloseServiceHandle', 'GetTokenInformation', 'LookupAccountSidW', 'FreeSid', 'OpenProcessToken', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegDeleteValueW', 'RegSetValueExA', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegQueryValueExA', 'ShellExecuteW', 'ShellExecuteExA', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'SHCreateDirectoryExW', 'SHGetFolderPathW', 'URLDownloadToFileW', 'send', 'WSAStartup', 'shutdown', 'closesocket', 'WSACleanup', 'InetNtopW', 'gethostbyname', 'inet_addr', 'getaddrinfo', 'setsockopt', 'freeaddrinfo', 'htons', 'recv', 'connect', 'socket', 'CoInitializeSecurity', 'CoUninitialize', 'CoCreateInstance', 'CoTaskMemFree', 'CoInitialize', 'StrStrA', 'StrStrW', 'PathFindExtensionW', 'PathCombineA', 'PathFindFileNameW', 'PathFileExistsW', 'PathRemoveFileSpecA', 'NetUserAdd', 'NetLocalGroupAddMembers', 'VariantInit', 'CryptStringToBinaryA', 'CryptUnprotectData', 'GetModuleFileNameExW'], ['MessageBoxA'], ['CertGetCertificateChain', 'CertFreeCertificateChainEngine', 'CertCreateCertificateChainEngine', 'CryptQueryObject', 'CertGetNameStringW', 'CertFindExtension', 'CertAddCertificateContextToStore', 'CryptDecodeObjectEx', 'PFXImportCertStore', 'CryptStringToBinaryW', 'CertFreeCertificateContext', 'CertFindCertificateInStore', 'CertEnumCertificatesInStore', 'CertCloseStore', 'CertFreeCertificateChain', 'CertOpenStore', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetWindowTextW', 'GetClientRect', 'GetWindowRect', 'AdjustWindowRectEx', 'MapWindowPoints', 'EqualRect', 'PtInRect', 'SetWindowLongW', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'GetClassLongW', 'GetClassLongPtrW', 'GetClassNameW', 'GetTopWindow', 'GetWindow', 'UnhookWindowsHookEx', 'LoadIconW', 'WinHelpW', 'MonitorFromWindow', 'GetMonitorInfoW', 'ShowOwnedPopups', 'IsWindowVisible', 'IsIconic', 'BringWindowToTop', 'GetNextDlgTabItem', 'SetTimer', 'KillTimer', 'UpdateWindow', 'GetForegroundWindow', 'SetForegroundWindow', 'InvalidateRect', 'RedrawWindow', 'LoadCursorW', 'ShowWindow', 'SetWindowTextW', 'IsDialogMessageW', 'ReleaseCapture', 'InflateRect', 'RealChildWindowFromPoint', 'GetClipboardFormatNameA', 'GetClipboardFormatNameW', 'UnpackDDElParam', 'SystemParametersInfoW', 'LoadAcceleratorsW', 'DestroyMenu', 'CharUpperW', 'TranslateAcceleratorW', 'IntersectRect', 'ReuseDDElParam', 'UnregisterClassW', 'GetSystemMetrics', 'wsprintfW', 'PeekMessageA', 'PostQuitMessage', 'SendDlgItemMessageA', 'SetRectEmpty', 'OffsetRect', 'GetParent', 'PeekMessageW', 'SendMessageW', 'PostMessageW', 'IsWindow', 'TabbedTextOutW', 'GetFocus', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'DestroyWindow', 'CreateDialogIndirectParamW', 'EndDialog', 'GetDlgItem', 'GetActiveWindow', 'EnableWindow', 'IsWindowEnabled', 'SetActiveWindow', 'GetScrollPos', 'TrackPopupMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'SetFocus', 'GetDlgCtrlID', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPos', 'IsChild', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'CallWindowProcW', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'RegisterWindowMessageW', 'CopyRect', 'GetSysColor', 'ScreenToClient', 'ClientToScreen', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'FillRect', 'GetSysColorBrush', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'DrawIcon', 'SetMenuItemInfoW', 'GetMenuItemInfoW', 'InsertMenuItemW', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'EnableMenuItem', 'CheckMenuItem', 'CreatePopupMenu', 'LoadMenuW', 'IsMenu', 'GetLastActivePopup', 'GetWindowThreadProcessId', 'MessageBoxW', 'SetCursor', 'CallNextHookEx', 'SetWindowsHookExW', 'GetCursorPos', 'ValidateRect', 'GetKeyState', 'DispatchMessageW', 'GetMessageW', 'GetDesktopWindow', 'GetWindowLongW', 'TranslateMessage', 'RaiseException', 'OutputDebugStringW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'CreateEventW', 'ResetEvent', 'SetEvent', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'GetCPInfo', 'GetStringTypeW', 'LCMapStringEx', 'EncodePointer', 'LocalFree', 'GetFileSizeEx', 'VerifyVersionInfoW', 'GetModuleHandleA', 'VerSetConditionMask', 'SleepEx', 'GetCurrentProcessId', 'WaitForMultipleObjects', 'PeekNamedPipe', 'GetFileType', 'GetStdHandle', 'GetEnvironmentVariableA', 'WaitForSingleObjectEx', 'MoveFileExW', 'FormatMessageW', 'LoadLibraryW', 'GetModuleHandleW', 'FreeLibrary', 'GetSystemDirectoryW', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'AcquireSRWLockExclusive', 'ReleaseSRWLockExclusive', 'SystemTimeToFileTime', 'CloseHandle', 'WriteFile', 'SetFileTime', 'SetFilePointer', 'ReadFile', 'LocalFileTimeToFileTime', 'GetFileAttributesW', 'CreateFileW', 'CreateDirectoryW', 'GetCurrentDirectoryW', 'LeaveCriticalSection', 'EnterCriticalSection', 'WideCharToMultiByte', 'MultiByteToWideChar', 'FindResourceW', 'SizeofResource', 'LockResource', 'LoadResource', 'GetModuleFileNameA', 'FindResourceExW', 'Sleep', 'CreateEventA', 'DeleteCriticalSection', 'InitializeCriticalSectionEx', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'HeapDestroy', 'SetLastError', 'GetLastError', 'DecodePointer', 'GetCommandLineA', 'GetACP', 'OutputDebugStringA', 'GetModuleFileNameW', 'GetModuleHandleExW', 'CreateActCtxW', 'ActivateActCtx', 'DeactivateActCtx', 'FindActCtxSectionStringW', 'QueryActCtxW', 'FreeResource', 'FindFirstFileW', 'FindClose', 'CreateDirectoryA', 'LoadLibraryA', 'GetProcAddress', 'VirtualFree', 'VirtualProtect', 'GlobalUnlock', 'GlobalLock', 'GlobalFree', 'WaitForSingleObject', 'VirtualAlloc', 'GetTickCount', 'GetSystemInfo', 'GetCurrentThread', 'GetVersionExW', 'LoadLibraryExW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'GetTimeZoneInformation', 'SetStdHandle', 'CreateProcessW', 'GetExitCodeProcess', 'EnumSystemLocalesW', 'IsValidLocale', 'LCMapStringW', 'GetTimeFormatW', 'GetDateFormatW', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'FlsAlloc', 'WriteConsoleW', 'HeapQueryInformation', 'GetCommandLineW', 'lstrcmpA', 'GetConsoleOutputCP', 'ReadConsoleW', 'GetConsoleMode', 'ExitProcess', 'SetFilePointerEx', 'FreeLibraryAndExitThread', 'ExitThread', 'CreateThread', 'GetFileInformationByHandle', 'GetDriveTypeW', 'HeapValidate', 'RtlUnwind', 'RtlUnwindEx', 'RtlPcToFileHeader', 'VirtualQuery', 'GetUserDefaultLCID', 'SystemTimeToTzSpecificLocalTime', 'GetFileAttributesExW', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SetEndOfFile', 'GetVolumeInformationW', 'GetFullPathNameW', 'FlushFileBuffers', 'DeleteFileW', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetLocaleInfoW', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'GlobalAlloc', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalFlags', 'GetAtomNameW', 'CompareStringW', 'GlobalGetAtomNameW', 'GlobalFindAtomW', 'MulDiv', 'SetErrorMode', 'GlobalAddAtomW', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'GetPrivateProfileIntW', 'lstrcmpW', 'GlobalDeleteAtom', 'RegQueryValueExW', 'CryptReleaseContext', 'CryptGetHashParam', 'CryptCreateHash', 'CryptHashData', 'CryptDestroyHash', 'CryptDestroyKey', 'CryptImportKey', 'RegEnumValueW', 'RegQueryValueW', 'RegEnumKeyW', 'RegSetValueExW', 'CryptEncrypt', 'RegCloseKey', 'RegOpenKeyExW', 'CryptAcquireContextW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'SetViewportOrgEx', 'SetViewportExtEx', 'SetTextColor', 'SetMapMode', 'SetBkMode', 'SetBkColor', 'SaveDC', 'RestoreDC', 'GetClipBox', 'DeleteObject', 'TextOutW', 'GetObjectW', 'OffsetViewportOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'DeleteDC', 'ExtTextOutW', 'CreateBitmap', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateFontIndirectW', 'CreatePatternBrush', 'CreateSolidBrush', 'Escape', 'GetDeviceCaps', 'GetObjectType', 'GetPixel', 'GetStockObject', 'GetTextExtentPoint32W', 'PtVisible', 'RectVisible', 'SelectObject', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'BCryptGenRandom', 'CreateStdAccessibleObject', 'LresultFromObject', 'closesocket', 'WSAWaitForMultipleEvents', 'WSAResetEvent', 'WSAEventSelect', 'WSAEnumNetworkEvents', 'WSACreateEvent', 'WSACloseEvent', 'send', 'getsockopt', 'WSAGetLastError', 'gethostname', 'ioctlsocket', 'getpeername', 'sendto', 'recvfrom', 'freeaddrinfo', 'getaddrinfo', 'recv', 'listen', 'htonl', 'getsockname', 'connect', 'bind', 'accept', 'select', '__WSAFDIsSet', 'WSAIoctl', 'setsockopt', 'socket', 'htons', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'ntohs', 'StringFromCLSID', 'CoInitialize', 'CoTaskMemFree', 'CoCreateInstance', 'CoCreateGuid', 'CoUninitialize', 'VariantClear', 'VariantInit', 'SysAllocString', 'VariantChangeType', 'SysFreeString', 'ShellExecuteW', 'DragFinish', 'DragQueryFileW', 'PathFindFileNameW', 'PathIsUNCW', 'PathStripToRootW', 'PathFindExtensionW'], ['WritePrivateProfileStringA', 'lstrcatA', 'lstrcpyA', 'GetModuleFileNameA', 'GetLastError', 'FindClose', 'FindFirstFileA', 'CloseHandle', 'UnmapViewOfFile', 'FlushViewOfFile', 'MapViewOfFile', 'CreateFileMappingA', 'CreateFileA', 'DeleteFileA', 'GetSystemInfo', 'GlobalMemoryStatusEx', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'WideCharToMultiByte', 'SetFilePointer', 'ReadFile', 'SystemTimeToFileTime', 'lstrlenA', 'LocalFileTimeToFileTime', 'CreateDirectoryA', 'GetFileAttributesA', 'GetCurrentDirectoryA', 'SetFileTime', 'WriteFile', 'GetProcAddress', 'FreeLibrary', 'DeleteCriticalSection', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetLastError', 'GetTickCount', 'lstrcmpW', 'MultiByteToWideChar', 'DeactivateActCtx', 'ActivateActCtx', 'LoadLibraryW', 'CompareStringA', 'GetVersionExA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'GetCurrentThreadId', 'FreeResource', 'FindResourceA', 'GetModuleHandleW', 'GlobalAlloc', 'lstrcmpA', 'GlobalLock', 'InterlockedExchange', 'GetLocaleInfoA', 'GetSystemDefaultUILanguage', 'ConvertDefaultLocale', 'GetUserDefaultUILanguage', 'GetCurrentThread', 'SetThreadPriority', 'ResumeThread', 'GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'GetCurrentProcessId', 'GlobalFree', 'GlobalUnlock', 'CreateActCtxW', 'ReleaseActCtx', 'GetModuleFileNameW', 'InterlockedDecrement', 'MulDiv', 'lstrlenW', 'LocalFree', 'GlobalSize', 'CopyFileA', 'GlobalFlags', 'LocalAlloc', 'TlsGetValue', 'GlobalReAlloc', 'GlobalHandle', 'TlsAlloc', 'TlsSetValue', 'LocalReAlloc', 'TlsFree', 'InterlockedIncrement', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'GetThreadLocale', 'lstrcmpiA', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'DuplicateHandle', 'GetCurrentProcess', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetFileTime', 'GetTempFileNameA', 'FileTimeToSystemTime', 'GetWindowsDirectoryA', 'GetNumberFormatA', 'SetErrorMode', 'GetFileAttributesExA', 'FileTimeToLocalFileTime', 'GetFileSizeEx', 'GetTempPathA', 'InitializeCriticalSectionAndSpinCount', 'GetProfileIntA', 'SearchPathA', 'VirtualProtect', 'FindResourceExW', 'RaiseException', 'RtlUnwind', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'HeapFree', 'HeapAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'HeapReAlloc', 'GetSystemTimeAsFileTime', 'ExitThread', 'CreateThread', 'GetFileInformationByHandle', 'GetDriveTypeA', 'FindFirstFileExA', 'VirtualAlloc', 'VirtualQuery', 'HeapQueryInformation', 'HeapSize', 'SetStdHandle', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetConsoleCP', 'GetConsoleMode', 'HeapCreate', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'LCMapStringW', 'GetCurrentDirectoryW', 'GetStringTypeW', 'CompareStringW', 'GetTimeZoneInformation', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetDriveTypeW', 'GetProcessHeap', 'CreateFileW', 'SleepEx', 'VerifyVersionInfoA', 'VerSetConditionMask', 'GetSystemDirectoryA', 'LoadLibraryA', 'GetModuleHandleA', 'WaitForSingleObject', 'FormatMessageA', 'PeekNamedPipe', 'WaitForMultipleObjects', 'GetFileType', 'ExpandEnvironmentStringsA', 'GetStdHandle', 'Sleep', 'ValidateRect', 'GetCursorPos', 'GetActiveWindow', 'TranslateMessage', 'GetMessageA', 'SetCursor', 'ShowOwnedPopups', 'GetWindowThreadProcessId', 'MapDialogRect', 'SetWindowContextHelpId', 'EndDialog', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'GetDesktopWindow', 'TabbedTextOutA', 'DrawTextExA', 'GrayStringA', 'ClientToScreen', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'InvalidateRect', 'IsRectEmpty', 'OffsetRect', 'SetTimer', 'KillTimer', 'SetCapture', 'LoadCursorW', 'RemoveMenu', 'InsertMenuA', 'AppendMenuA', 'GetMenuStringA', 'RealChildWindowFromPoint', 'GetSysColorBrush', 'InflateRect', 'GetMenuItemInfoA', 'DestroyMenu', 'DeleteMenu', 'SetRectEmpty', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'WindowFromPoint', 'WaitMessage', 'DestroyIcon', 'CharUpperA', 'CharNextA', 'CopyAcceleratorTableA', 'SetRect', 'IntersectRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'TranslateAcceleratorA', 'BringWindowToTop', 'CreatePopupMenu', 'InsertMenuItemA', 'LoadAcceleratorsA', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'RedrawWindow', 'GetMenuDefaultItem', 'MapVirtualKeyA', 'GetAsyncKeyState', 'InvertRect', 'DrawFocusRect', 'HideCaret', 'EnableScrollBar', 'NotifyWinEvent', 'GetIconInfo', 'CopyImage', 'SetParent', 'DestroyAcceleratorTable', 'LoadMenuW', 'GetSystemMenu', 'DrawStateA', 'DrawEdge', 'DrawFrameControl', 'ToAsciiEx', 'GetKeyboardLayout', 'GetKeyboardState', 'LoadAcceleratorsW', 'CreateAcceleratorTableA', 'SetCursorPos', 'LockWindowUpdate', 'RegisterClipboardFormatA', 'GetKeyNameTextA', 'UnionRect', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'LoadImageW', 'IsCharLowerA', 'MapVirtualKeyExA', 'UpdateLayeredWindow', 'MonitorFromPoint', 'IsMenu', 'PostThreadMessageA', 'DefFrameProcA', 'DefMDIChildProcA', 'DrawMenuBar', 'TranslateMDISysAccel', 'CreateMenu', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'PostQuitMessage', 'CopyIcon', 'CharUpperBuffA', 'GetDoubleClickTime', 'SubtractRect', 'DestroyCursor', 'GetWindowRgn', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MonitorFromWindow', 'GetMonitorInfoA', 'ScrollWindow', 'TrackPopupMenu', 'GetKeyState', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'GetWindowRect', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'CallWindowProcA', 'GetMenu', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'EnableWindow', 'MessageBoxA', 'DrawIcon', 'SendMessageA', 'IsIconic', 'GetWindowTextLengthA', 'GetClientRect', 'LoadIconW', 'GetSystemMetrics', 'DrawIconEx', 'ReleaseDC', 'GetDC', 'GetPropA', 'IsZoomed', 'PostMessageA', 'ReleaseCapture', 'DrawTextA', 'PtInRect', 'DefWindowProcA', 'MapWindowPoints', 'RegisterClassExA', 'LoadCursorA', 'LoadIconA', 'SetClassLongA', 'GetClassLongA', 'FillRect', 'SetWindowRgn', 'IsWindow', 'SystemParametersInfoA', 'SetPropA', 'LoadImageA', 'LoadBitmapA', 'wsprintfA', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'GetUpdateRect', 'CheckDlgButton', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'FrameRect', 'GetClassNameA', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'SetWindowOrgEx', 'CreatePatternBrush', 'GetStockObject', 'SelectPalette', 'GetObjectType', 'GetDeviceCaps', 'CreatePen', 'CreateHatchBrush', 'ScaleViewportExtEx', 'CreateEllipticRgn', 'DPtoLP', 'LPtoDP', 'Ellipse', 'CreateDIBSection', 'CopyMetaFileA', 'CreateDCA', 'CreateBitmap', 'GetTextExtentPoint32A', 'CreateDIBitmap', 'CreateRectRgnIndirect', 'GetTextMetricsA', 'SetViewportExtEx', 'GetTextCharsetInfo', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'SetRectRgn', 'GetMapMode', 'PatBlt', 'BitBlt', 'SelectObject', 'SetTextColor', 'StretchBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'DeleteObject', 'CombineRgn', 'CreateRoundRectRgn', 'CreateRectRgn', 'CreateFontA', 'SetBkMode', 'CreateSolidBrush', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'RealizePalette', 'GetSystemPaletteEntries', 'CreatePolygonRgn', 'Polyline', 'Polygon', 'SetDIBColorTable', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetPixel', 'Rectangle', 'OffsetRgn', 'EnumFontFamiliesExA', 'SetROP2', 'SetPolyFillMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'EnumFontFamiliesA', 'CreateFontIndirectA', 'GetTextFaceA', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'SetPixelV', 'SetPaletteEntries', 'ExtFloodFill', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'CryptReleaseContext', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegEnumValueA', 'RegEnumKeyExA', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptGenRandom', 'CryptHashData', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptDestroyKey', 'CryptEncrypt', 'CryptImportKey', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'SHGetDesktopFolder', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderA', 'SHAppBarMessage', 'ShellExecuteA', 'AlphaBlend', 'TransparentBlt', '_TrackMouseEvent', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'PathIsUNCA', 'PathStripToRootA', 'PathFindFileNameA', 'PathFindExtensionA', 'PathStripPathA', 'PathRemoveFileSpecW', 'waveInUnprepareHeader', 'waveInAddBuffer', 'waveInPrepareHeader', 'waveInOpen', 'PlaySoundA', 'waveInStart', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'LresultFromObject', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdiplusShutdown', 'GdipFree', 'GdipAlloc', 'GdipDeleteGraphics', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdiplusStartup', 'GdipCreateFromHDC', 'GdipSetInterpolationMode', 'GdipDrawImageRectI', 'GdipCloneImage', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext', 'connect', 'socket', 'getaddrinfo', 'sendto', 'recvfrom', 'accept', 'listen', 'ioctlsocket', 'gethostname', 'htonl', 'ntohl', 'WSACleanup', 'WSAStartup', 'WSASetLastError', 'closesocket', 'getpeername', 'getsockopt', 'htons', 'bind', 'ntohs', 'getsockname', 'setsockopt', 'WSAIoctl', 'send', 'recv', 'select', 'WSAGetLastError', 'freeaddrinfo', '__WSAFDIsSet', 'CertFreeCertificateContext', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetFileTitleA', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'DoDragDrop', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'OleGetClipboard', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'OleLockRunning', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CoInitializeEx', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'CreateStreamOnHGlobal', 'OleDraw', 'CLSIDFromString', 'CLSIDFromProgID', 'CoCreateGuid', 'IsAccelerator', 'VariantCopy', 'SafeArrayCreate', 'SafeArrayGetDim', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VarBstrFromDate', 'SysAllocStringByteLen', 'SysAllocString', 'SysFreeString', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SafeArrayGetElemsize'], ['sscanf', '_controlfp', '_purecall', 'strstr', '_CxxThrowException', '_exit', '_access', '__dllonexit', '_onexit', '??1type_info@@UAE@XZ', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_setmbcp', '__CxxFrameHandler', 'SetFileAttributesA', 'Sleep', 'CreateProcessA', 'OutputDebugStringA', 'OpenEventA', 'GetCurrentThreadId', 'GetLastError', 'LoadLibraryA', 'GetFileAttributesExA', 'CreateDirectoryA', 'GetModuleFileNameA', 'SetLastError', 'GetCurrentProcessId', 'ReleaseMutex', 'GetTickCount', 'CreateFileA', 'DeleteFileA', 'GetTempPathA', 'WaitForSingleObject', 'ResetEvent', 'GetProcAddress', 'GetCommandLineA', 'GetModuleHandleA', 'GetStartupInfoA', 'CopyFileA', 'EnableWindow', 'IsIconic', 'GetClientRect', 'DrawIcon', 'GetSystemMenu', 'AppendMenuA', 'SendMessageA', 'LoadIconA', 'GetCapture', 'PostThreadMessageA', 'GetDesktopWindow', 'GetFocus', 'GetForegroundWindow', 'GetSystemMetrics', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ', '?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEXI@Z', '?_Tidy@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAEXXZ', '?_Init@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAEXPBDIH@Z', '??_7?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@', '??_7?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@', '??_7?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@', '??1locale@std@@QAE@XZ', '??_7?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@', '??_7?$basic_ios@DU?$char_traits@D@std@@@std@@6B@', '??1ios_base@std@@UAE@XZ', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z', '?str@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBDABV?$allocator@D@1@@Z', '??1?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAE@XZ', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ', '??1_Winit@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ', '??_8?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@', '??_8?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z', '??0?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z', '??_7?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@6B@', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z', '?str@?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ', '??1?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UAE@XZ', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@II@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB', '?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAE_NI_N@Z', '??1?$basic_iostream@DU?$char_traits@D@std@@@std@@UAE@XZ', 'WSACleanup', 'connect', 'gethostbyname', 'htons'], ['SHGetFolderPathW', 'CommandLineToArgvW', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'ShellExecuteW', 'SHChangeNotify', 'PathRemoveFileSpecW', 'PathFileExistsW', 'PathAppendW', 'SHSetValueW', 'SHRegGetPathW', 'PathAddBackslashW', 'SetupIterateCabinetW', 'URLDownloadToCacheFileW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'LCMapStringA', 'GetSystemInfo', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetOEMCP', 'FlushFileBuffers', 'GetStringTypeW', 'GetStringTypeA', 'VirtualProtect', 'IsBadWritePtr', 'SetStdHandle', 'GetCPInfo', 'IsBadCodePtr', 'IsBadReadPtr', 'LoadLibraryA', 'GetStartupInfoA', 'OpenMutexW', 'Sleep', 'InterlockedExchange', 'GetACP', 'GetLocaleInfoA', 'GetThreadLocale', 'GetVersionExW', 'RaiseException', 'GetLastError', 'InitializeCriticalSection', 'DeleteCriticalSection', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceW', 'FindResourceExW', 'FreeResource', 'CloseHandle', 'WriteFile', 'WideCharToMultiByte', 'CreateFileW', 'MoveFileW', 'DeleteFileW', 'GetVersion', 'GetProcAddress', 'GetModuleHandleW', 'GetCurrentProcess', 'CopyFileW', 'GetEnvironmentVariableW', 'GetModuleFileNameW', 'SetEnvironmentVariableW', 'GetTempPathW', 'ExpandEnvironmentStringsW', 'WritePrivateProfileStringW', 'MultiByteToWideChar', 'lstrlenA', 'lstrlenW', 'FreeLibrary', 'VirtualQuery', 'LoadLibraryW', 'CreateThread', 'WaitForSingleObject', 'RemoveDirectoryW', 'FindClose', 'FindNextFileW', 'SetFileAttributesW', 'FindFirstFileW', 'HeapReAlloc', 'GetProcessHeap', 'GetCommandLineW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetLogicalDriveStringsW', 'GetSystemDirectoryW', 'GetFileType', 'SetHandleCount', 'LCMapStringW', 'TerminateProcess', 'HeapSize', 'GetStdHandle', 'SetFilePointer', 'HeapFree', 'GetCommandLineA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'ExitProcess', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'GetModuleHandleA', 'GetStartupInfoW', 'GetVersionExA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetModuleFileNameA', 'SetUnhandledExceptionFilter', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'UnhandledExceptionFilter', 'RegOpenKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegCloseKey', 'RegQueryValueExW', 'CoTaskMemFree', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize'], ['PathFindExtensionA', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'StrRetToStrA', 'PathIsUNCA', 'GetFullPathNameA', 'GetShortPathNameA', 'CreateFileA', 'SetErrorMode', 'LocalFileTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'GetFileTime', 'RtlUnwind', 'RaiseException', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'Sleep', 'FatalAppExitA', 'VirtualFree', 'GetVolumeInformationA', 'HeapCreate', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetDriveTypeA', 'SetConsoleCtrlHandler', 'GetStringTypeA', 'GetStringTypeW', 'LCMapStringA', 'LCMapStringW', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'SetCurrentDirectoryA', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'SystemTimeToFileTime', 'GetThreadLocale', 'GetAtomNameA', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetCurrentProcessId', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindNextFileA', 'FindClose', 'lstrcmpA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'LoadLibraryA', 'lstrcmpW', 'GetModuleHandleA', 'GetVersionExA', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'GetStringTypeExW', 'GetStringTypeExA', 'GetEnvironmentVariableW', 'GetEnvironmentVariableA', 'lstrlenA', 'lstrcmpiW', 'lstrcmpiA', 'CompareStringW', 'CompareStringA', 'lstrlenW', 'GetVersion', 'GetLastError', 'InterlockedExchange', 'LoadLibraryExW', 'LoadLibraryExA', 'GetProcAddress', 'GetCurrentProcess', 'GetTickCount', 'GetFileAttributesA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'HeapDestroy', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'TranslateAcceleratorA', 'SetMenu', 'BringWindowToTop', 'SetRectEmpty', 'CreatePopupMenu', 'InsertMenuItemA', 'LoadAcceleratorsA', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'RegisterClipboardFormatA', 'SetParent', 'UnionRect', 'PostThreadMessageA', 'SetTimer', 'KillTimer', 'GetDCEx', 'LockWindowUpdate', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'CharNextA', 'GetDialogBaseUnits', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'DeleteMenu', 'LoadCursorA', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'SetWindowContextHelpId', 'MapDialogRect', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'ScrollWindowEx', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'CheckRadioButton', 'CheckDlgButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'MapVirtualKeyA', 'GetKeyNameTextA', 'ReleaseDC', 'GetDC', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'IsWindow', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'SendMessageA', 'GetParent', 'EnableWindow', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'IsIconic', 'GetClientRect', 'LoadIconA', 'GetSystemMetrics', 'CharLowerA', 'CharLowerW', 'CharUpperA', 'CharUpperW', 'RemoveMenu', 'GetSubMenu', 'GetMenuItemCount', 'InsertMenuA', 'GetMenuItemID', 'GetMenuStringA', 'GetMenuState', 'GetWindow', 'GetWindowRect', 'GetWindowPlacement', 'SystemParametersInfoA', 'IntersectRect', 'OffsetRect', 'SetWindowPos', 'SetWindowLongA', 'GetWindowLongA', 'CallWindowProcA', 'DefWindowProcA', 'GetDlgCtrlID', 'SetWindowPlacement', 'PtInRect', 'SetScrollInfo', 'GetScrollInfo', 'CopyRect', 'DeferWindowPos', 'EqualRect', 'ScreenToClient', 'AdjustWindowRectEx', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'GetDlgItemInt', 'CreatePatternBrush', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateDIBPatternBrushPt', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'GetTextMetricsA', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'CreateCompatibleBitmap', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'DeleteDC', 'ExtSelectClipRgn', 'PolyBezierTo', 'PolylineTo', 'PolyDraw', 'ArcTo', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'CopyMetaFileA', 'SetRectRgn', 'GetDeviceCaps', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'ExtTextOutA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'CreateBitmap', 'PatBlt', 'CreateRectRgnIndirect', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'SetWindowOrgEx', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'DragFinish', 'ExtractIconA', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFileInfoA', 'CoRegisterClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleRun', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'StringFromGUID2', 'CoCreateInstance', 'CoDisconnectObject', 'CLSIDFromString', 'CoRevokeClassObject', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleIsCurrentClipboard', 'OleSetClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CreateStreamOnHGlobal', 'CLSIDFromProgID', 'SafeArrayCopy', 'SysAllocString', 'OleCreateFontIndirect', 'VarBstrFromDate', 'VarCyFromStr', 'VarDecFromStr', 'VarBstrFromDec', 'VarBstrFromCy', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'VarDateFromStr', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysReAllocStringLen', 'LoadTypeLib'], ['RtlUnwind', 'HeapFree', 'HeapAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetCommandLineA', 'HeapReAlloc', 'HeapSize', 'LCMapStringA', 'LCMapStringW', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'GetTickCount', 'GetFileTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GlobalFlags', 'InterlockedIncrement', 'WritePrivateProfileStringA', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcatA', 'lstrcmpW', 'lstrcpynA', 'InterlockedDecrement', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GlobalAddAtomA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GetCurrentThread', 'GetCurrentThreadId', 'GlobalLock', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'lstrcmpA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'LoadLibraryA', 'CompareStringW', 'CompareStringA', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'OpenProcess', 'TerminateProcess', 'Sleep', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CloseHandle', 'FreeEnvironmentStringsA', 'ExitProcess', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'CopyAcceleratorTableA', 'SetRect', 'IsRectEmpty', 'CharNextA', 'GetSysColorBrush', 'ReleaseCapture', 'LoadCursorA', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'wsprintfA', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'GetClassLongA', 'GetClassInfoExA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'SetFocus', 'IsChild', 'GetForegroundWindow', 'GetTopWindow', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'DrawIcon', 'SendMessageA', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'GetWindowTextLengthA', 'IsWindowVisible', 'GetWindowRect', 'GetWindowTextA', 'GetClassNameA', 'EnumWindows', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'PtInRect', 'UnhookWindowsHookEx', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetFocus', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'GetMessageTime', 'DestroyMenu', 'ShowWindow', 'PostMessageA', 'CharUpperA', 'PostQuitMessage', 'SetCursor', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongA', 'GetParent', 'MessageBoxA', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'SetWindowsHookExA', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'CheckMenuItem', 'GetMapMode', 'GetTextColor', 'GetRgnBox', 'GetDeviceCaps', 'GetStockObject', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'GetBkColor', 'CreateBitmap', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateRectRgnIndirect', 'SelectObject', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegOpenKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'ImageList_Destroy', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleUninitialize', 'CoFreeUnusedLibraries', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CoRevokeClassObject', 'OleInitialize', 'SysFreeString', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy'], ['EVENT_SINK_AddRef', 'EVENT_SINK_Release', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', 'ProcCallEngine'], ['CryptCreateHash', 'CryptDecrypt', 'CryptAcquireContextW', 'CryptDeriveKey', 'VirtualProtect', 'CreateFileW', 'Sleep', 'CloseHandle', 'GetTickCount', 'WriteFile', 'RtlFillMemory', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaVarVargNofree', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaStrErrVarCopy', '_adj_fprem1', '__vbaVarCmpNe', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaBoolVarNull', '_CIsin', '__vbaErase', '__vbaVarZero', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '__vbaVarOr', '__vbaStrR4', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', 'GetMem4', '__vbaUbound', '__vbaStrVarVal', '__vbaVarCat', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaAryLock', '__vbaVarDup', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaStrVarCopy', '_allmul', '_CItan', '__vbaFPInt', '__vbaAryUnlock', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutRestart', 'waveOutPrepareHeader', 'WSACleanup', 'inet_ntoa', 'closesocket', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'SetFilePointer', 'GetFileSize', 'TerminateProcess', 'OpenProcess', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'TerminateThread', 'CreateMutexA', 'CreateToolhelp32Snapshot', 'SuspendThread', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'Process32First', 'Process32Next', 'GetCurrentProcess', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'InterlockedExchange', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GetTempPathA', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'MoveFileA', 'CopyFileA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'ReleaseMutex', 'DestroyAcceleratorTable', 'GetWindow', 'GetActiveWindow', 'SetFocus', 'IsIconic', 'PeekMessageA', 'SetMenu', 'GetMenu', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'GetSysColorBrush', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'LoadStringA', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'CheckMenuItem', 'SetRect', 'InflateRect', 'IntersectRect', 'DeleteMenu', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'GetSystemMenu', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetForegroundWindow', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'DestroyIcon', 'CopyAcceleratorTableA', 'UnregisterClassA', 'RegisterClipboardFormatA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'PtVisible', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'CreateSolidBrush', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'SetBkMode', 'RestoreDC', 'SaveDC', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'GetSystemPaletteEntries', 'DPtoLP', 'StretchBlt', 'CreatePalette', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['SHGetSpecialFolderPathW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteExW', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'DeleteDC', 'GetCurrentObject', 'StretchBlt', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'SetStretchBltMode', 'GetObjectW', 'FreeSid', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'GetMenu', 'SetWindowPos', 'GetWindowDC', 'ReleaseDC', 'CopyImage', 'GetKeyState', 'GetWindowRect', 'ScreenToClient', 'GetWindowLongW', 'SetTimer', 'GetMessageW', 'DispatchMessageW', 'KillTimer', 'DestroyWindow', 'EndDialog', 'SendMessageW', 'wsprintfW', 'GetClassNameA', 'GetWindowTextW', 'GetWindowTextLengthW', 'GetSysColor', 'wsprintfA', 'SetWindowTextW', 'CreateWindowExW', 'GetDlgItem', 'GetClientRect', 'SetWindowLongW', 'UnhookWindowsHookEx', 'SetFocus', 'GetSystemMetrics', 'SystemParametersInfoW', 'ShowWindow', 'DrawTextW', 'GetDC', 'ClientToScreen', 'GetWindow', 'DialogBoxIndirectParamW', 'DrawIconEx', 'CallWindowProcW', 'DefWindowProcW', 'CallNextHookEx', 'PtInRect', 'SetWindowsHookExW', 'LoadImageW', 'LoadIconW', 'MessageBeep', 'EnableWindow', 'IsWindow', 'EnableMenuItem', 'GetSystemMenu', 'wvsprintfW', 'CharUpperW', 'MessageBoxA', 'GetParent', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'CoInitialize', 'SysAllocString', 'VariantClear', 'OleLoadPicture', 'SetFileTime', 'SetEndOfFile', 'EnterCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleA', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'FormatMessageW', 'lstrcpyW', 'LocalFree', 'IsBadReadPtr', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'SuspendThread', 'TerminateThread', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'GetVersionExW', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetProcessWorkingSetSize', 'SetCurrentDirectoryW', 'GetDriveTypeW', 'CreateFileW', 'GetCommandLineW', 'GetStartupInfoW', 'CreateProcessW', 'CreateJobObjectW', 'AssignProcessToJobObject', 'CreateIoCompletionPort', 'SetInformationJobObject', 'ResumeThread', 'GetQueuedCompletionStatus', 'GetExitCodeProcess', 'CloseHandle', 'SetEnvironmentVariableW', 'GetTempPathW', 'GetSystemTimeAsFileTime', 'lstrlenW', 'CompareFileTime', 'SetThreadLocale', 'FindFirstFileW', 'DeleteFileW', 'FindNextFileW', 'FindClose', 'RemoveDirectoryW', 'ExpandEnvironmentStringsW', 'WideCharToMultiByte', 'VirtualAlloc', 'GlobalMemoryStatusEx', 'lstrcmpW', 'GetEnvironmentVariableW', 'lstrcmpiW', 'lstrlenA', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLCID', 'lstrcmpiA', 'GlobalAlloc', 'GlobalFree', 'MulDiv', 'FindResourceExA', 'SizeofResource', 'LoadResource', 'LockResource', 'LoadLibraryA', 'ExitProcess', 'lstrcatW', 'GetDiskFreeSpaceExW', 'SetFileAttributesW', 'SetLastError', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'SystemTimeToFileTime', 'GetLocalTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'GetStdHandle', 'VirtualFree', 'GetModuleHandleW', 'GetProcAddress', 'GetStartupInfoA', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'memcmp', 'free', 'memcpy', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_CxxThrowException', '_beginthreadex', '_EH_prolog', '?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z', 'memset', '_wcsnicmp', 'strncmp', 'wcsncmp', 'malloc', 'memmove', '_wtol', '_purecall'], ['Sleep', 'GetLastError', 'LoadLibraryA', 'Process32Next', 'CloseHandle', 'GetProcAddress', 'GetConsoleWindow', 'CreateDirectoryA', 'MultiByteToWideChar', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'WideCharToMultiByte', 'GlobalUnlock', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetStartupInfoW', 'IsDebuggerPresent', 'CreateEventW', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'IsProcessorFeaturePresent', 'GetCurrentProcess', 'CreateToolhelp32Snapshot', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'GetFileInformationByHandleEx', 'GetModuleHandleW', 'AreFileApisANSI', 'SetFileInformationByHandle', 'GetFileAttributesExW', 'FindFirstFileW', 'FindClose', 'OpenProcess', 'GetModuleHandleA', 'CreateFileW', 'GetLocaleInfoEx', 'FormatMessageA', 'LocalFree', 'GetModuleFileNameA', 'TerminateProcess', 'Process32First', 'SetUnhandledExceptionFilter', 'MessageBoxA', 'GetAsyncKeyState', 'ShowWindow', 'GetSystemMetrics', 'PostMessageA', 'SetWindowPos', 'DestroyWindow', 'GetWindowRect', 'DispatchMessageA', 'SetClipboardData', 'GetClipboardData', 'EmptyClipboard', 'CloseClipboard', 'OpenClipboard', 'GetCursorPos', 'MoveWindow', 'SetCursorPos', 'CreateWindowExA', 'GetClientRect', 'SetCursor', 'SetCapture', 'GetForegroundWindow', 'IsChild', 'ClientToScreen', 'GetCapture', 'ScreenToClient', 'LoadCursorA', 'GetKeyState', 'FindWindowA', 'LoadIconA', 'TranslateMessage', 'PeekMessageA', 'UnregisterClassA', 'PostQuitMessage', 'ReleaseCapture', 'RegisterClassExA', 'UpdateWindow', 'DefWindowProcA', 'SHGetSpecialFolderPathA', 'ShellExecuteA', '?_Winerror_map@std@@YAHH@Z', '?_Xbad_function_call@std@@YAXXZ', '?_Throw_C_error@std@@YAXH@Z', '?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A', '?_Fiopen@std@@YAPEAU_iobuf@@PEBDHH@Z', '?_Xlength_error@std@@YAXPEBD@Z', '?_Syserror_map@std@@YAPEBDH@Z', '_Cnd_do_broadcast_at_thread_exit', '_Thrd_sleep', '_Query_perf_counter', '_Thrd_detach', '_Xtime_get_ticks', '?_Getcat@?$codecvt@DDU_Mbstatet@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z', '?unshift@?$codecvt@DDU_Mbstatet@@@std@@QEBAHAEAU_Mbstatet@@PEAD1AEAPEAD@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAA@XZ', '?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEBA?AVlocale@2@XZ', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXXZ', '?in@?$codecvt@DDU_Mbstatet@@@std@@QEBAHAEAU_Mbstatet@@PEBD1AEAPEBDPEAD3AEAPEAD@Z', '?out@?$codecvt@DDU_Mbstatet@@@std@@QEBAHAEAU_Mbstatet@@PEBD1AEAPEBDPEAD3AEAPEAD@Z', '?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAPEADXZ', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAXH_N@Z', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IEAA@XZ', '??0?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA@PEAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UEAA@XZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA_JXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA_JPEAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA_JPEBD_J@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UEAA@XZ', '??1?$basic_istream@DU?$char_traits@D@std@@@std@@UEAA@XZ', '?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAHXZ', '?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEAD_J@Z', '?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@_JH@Z', '?always_noconv@codecvt_base@std@@QEBA_NXZ', '??Bid@locale@std@@QEAA_KXZ', '??0_Lockit@std@@QEAA@H@Z', '??1_Lockit@std@@QEAA@XZ', '_Query_perf_frequency', '?_Throw_Cpp_error@std@@YAXH@Z', '?_Getgloballocale@locale@std@@CAPEAV_Locimp@12@XZ', '?cin@std@@3V?$basic_istream@DU?$char_traits@D@std@@@1@A', '?_Xout_of_range@std@@YAXPEBD@Z', 'Direct3DCreate9', 'D3DXCreateTextureFromFileInMemory', 'URLDownloadToFileA', 'ImmGetContext', 'ImmReleaseContext', 'ImmSetCompositionWindow', '__CxxFrameHandler4', '__std_exception_destroy', '__std_exception_copy', '__std_terminate', 'strstr', '__current_exception', '__current_exception_context', '__C_specific_handler', '_CxxThrowException', 'memset', 'memchr', 'memmove', 'memcpy', 'memcmp', '_initialize_onexit_table', '_register_onexit_function', '_initialize_narrow_environment', '_register_thread_local_exe_atexit_callback', '_c_exit', '_invalid_parameter_noinfo_noreturn', '_exit', '_initterm_e', 'terminate', '_initterm', '_get_narrow_winmain_command_line', '_beginthreadex', '_set_app_type', '_seh_filter_exe', '_cexit', '_configure_narrow_argv', 'exit', '_crt_atexit', '__acrt_iob_func', 'fflush', 'fclose', 'fgetc', '__stdio_common_vfprintf', '__stdio_common_vsscanf', 'fgetpos', '__stdio_common_vsprintf', '_wfopen', 'setvbuf', 'ungetc', 'fsetpos', 'fread', '_fseeki64', '_get_stream_buffer_pointers', 'ftell', 'fseek', 'fputc', '__p__commode', '_set_fmode', 'fwrite', 'malloc', '_callnewh', 'free', '_set_new_mode', '_unlock_file', '_lock_file', 'strnlen', 'strcmp', 'getenv', 'qsort', '___lc_codepage_func', '_configthreadlocale', 'fmodf', '__setusermatherr', 'sinf', 'cosf', 'ceilf', 'sqrtf', 'floorf', 'acosf'], ['TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'Sleep', 'GetACP', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'HeapSize', 'LCMapStringA', 'LCMapStringW', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'RaiseException', 'RtlUnwind', 'GetProcessHeap', 'GetCommandLineA', 'HeapReAlloc', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'HeapAlloc', 'HeapFree', 'GetTickCount', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'CreateFileA', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'TlsGetValue', 'LocalAlloc', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcpyA', 'lstrcpyW', 'InterlockedDecrement', 'GlobalReAlloc', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'CloseHandle', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'MulDiv', 'FreeResource', 'GetCurrentThreadId', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'lstrcmpW', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GetCurrentProcessId', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'SetLastError', 'ExitProcess', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'GetVersion', 'CompareStringA', 'lstrcmpiA', 'GetLastError', 'InterlockedExchange', 'GetStringTypeExA', 'lstrlenW', 'MultiByteToWideChar', 'CompareStringW', 'WideCharToMultiByte', 'lstrlenA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'SetWindowContextHelpId', 'MapDialogRect', 'ShowOwnedPopups', 'PostQuitMessage', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'GetDlgItemTextA', 'GetMenuStringA', 'AppendMenuA', 'InsertMenuA', 'RemoveMenu', 'RedrawWindow', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'SendDlgItemMessageA', 'IsChild', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'EndDialog', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'ScreenToClient', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'DefWindowProcA', 'CallWindowProcA', 'ClientToScreen', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'RegisterWindowMessageA', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'GetClassNameA', 'WinHelpA', 'SetWindowPos', 'SetFocus', 'GetWindowThreadProcessId', 'GetActiveWindow', 'IsWindowEnabled', 'EqualRect', 'GetDlgItem', 'SetWindowLongA', 'GetKeyState', 'GetDlgCtrlID', 'GetMenu', 'LoadIconA', 'CharUpperA', 'EnableWindow', 'UpdateWindow', 'InvalidateRect', 'SetCursor', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'LoadAcceleratorsA', 'SetActiveWindow', 'IsWindowVisible', 'IsIconic', 'InsertMenuItemA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreatePopupMenu', 'GetClassInfoA', 'IntersectRect', 'GetNextDlgTabItem', 'CreateDialogIndirectParamA', 'SetRect', 'DestroyCursor', 'LoadCursorA', 'ReleaseDC', 'GetDC', 'FindWindowA', 'IsRectEmpty', 'DrawIcon', 'MessageBoxA', 'SetWindowRgn', 'ShowWindow', 'GetSysColor', 'GetClientRect', 'FillRect', 'SendMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'TranslateAcceleratorA', 'IsWindow', 'GetWindowLongA', 'GetWindow', 'GetDesktopWindow', 'SetMenu', 'PostMessageA', 'BringWindowToTop', 'GetLastActivePopup', 'CopyRect', 'SetRectEmpty', 'OffsetRect', 'SetTimer', 'KillTimer', 'SetCapture', 'DeleteMenu', 'GetSystemMenu', 'SetParent', 'RegisterClipboardFormatA', 'LockWindowUpdate', 'GetDCEx', 'GetTabbedTextExtentA', 'PostThreadMessageA', 'CreateMenu', 'UnregisterClassA', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'CopyAcceleratorTableA', 'CharNextA', 'DestroyIcon', 'GetMenuItemInfoA', 'InflateRect', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'SystemParametersInfoA', 'IsZoomed', 'WindowFromPoint', 'LineTo', 'MoveToEx', 'SetTextAlign', 'SelectClipRgn', 'CreateRectRgn', 'GetViewportExtEx', 'GetWindowExtEx', 'BitBlt', 'GetPixel', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'ExtSelectClipRgn', 'CreatePatternBrush', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'GetTextColor', 'GetRgnBox', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'StretchDIBits', 'GetTextMetricsA', 'GetCharWidthA', 'DeleteObject', 'GetTextExtentPoint32A', 'SelectObject', 'GetBkColor', 'Ellipse', 'CreateEllipticRgn', 'DeleteDC', 'EndDoc', 'AbortDoc', 'SetAbortProc', 'EndPage', 'StartPage', 'StartDocA', 'GetStockObject', 'PatBlt', 'Rectangle', 'GetViewportOrgEx', 'CreatePen', 'CreateDCA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBitmap', 'LPtoDP', 'GetDeviceCaps', 'DPtoLP', 'CreateSolidBrush', 'CreateFontA', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'GetJobA', 'ClosePrinter', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragFinish', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragAcceptFiles', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleFlushClipboard', 'OleInitialize', 'CoRegisterMessageFilter', 'VariantClear', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'OleCreateFontIndirect', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'VariantChangeType'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaLenBstr', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaStrToAnsi', '__vbaVarDup', '__vbaStrComp', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetTokenInformation', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegQueryInfoKeyA', 'FreeSid', 'OpenProcessToken', 'RegSetValueExA', 'RegCreateKeyExA', 'LookupPrivilegeValueA', 'AllocateAndInitializeSid', 'RegQueryValueExA', 'EqualSid', 'RegCloseKey', 'AdjustTokenPrivileges', '_lopen', '_llseek', 'CompareStringA', 'GetLastError', 'GetFileAttributesA', 'GetSystemDirectoryA', 'LoadLibraryA', 'DeleteFileA', 'GlobalAlloc', 'GlobalFree', 'CloseHandle', 'WritePrivateProfileStringA', 'IsDBCSLeadByte', 'GetWindowsDirectoryA', 'SetFileAttributesA', 'GetProcAddress', 'GlobalLock', 'LocalFree', 'RemoveDirectoryA', 'FreeLibrary', '_lclose', 'CreateDirectoryA', 'GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'GlobalUnlock', 'ReadFile', 'SizeofResource', 'WriteFile', 'GetDriveTypeA', 'LoadLibraryExA', 'SetFileTime', 'SetFilePointer', 'FindResourceA', 'CreateMutexA', 'GetVolumeInformationA', 'WaitForSingleObject', 'GetCurrentDirectoryA', 'FreeResource', 'GetVersion', 'SetCurrentDirectoryA', 'GetTempPathA', 'LocalFileTimeToFileTime', 'CreateFileA', 'SetEvent', 'TerminateThread', 'GetVersionExA', 'LockResource', 'GetSystemInfo', 'CreateThread', 'ResetEvent', 'LoadResource', 'ExitProcess', 'GetModuleHandleW', 'CreateProcessA', 'FormatMessageA', 'GetTempFileNameA', 'DosDateTimeToFileTime', 'CreateEventA', 'GetExitCodeProcess', 'ExpandEnvironmentStringsA', 'LocalAlloc', 'lstrcmpA', 'FindNextFileA', 'GetCurrentProcess', 'FindFirstFileA', 'GetModuleFileNameA', 'GetShortPathNameA', 'Sleep', 'GetStartupInfoW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'EnumResourceLanguagesA', 'GetDiskFreeSpaceA', 'MulDiv', 'FindClose', 'GetDeviceCaps', 'ShowWindow', 'MsgWaitForMultipleObjects', 'SetWindowPos', 'GetDC', 'GetWindowRect', 'DispatchMessageA', 'GetSystemMetrics', 'CallWindowProcA', 'SetWindowTextA', 'MessageBoxA', 'SendDlgItemMessageA', 'SendMessageA', 'GetDlgItem', 'DialogBoxIndirectParamA', 'GetWindowLongPtrA', 'SetWindowLongPtrA', 'SetForegroundWindow', 'ReleaseDC', 'EnableWindow', 'CharNextA', 'LoadStringA', 'CharPrevA', 'EndDialog', 'MessageBeep', 'ExitWindowsEx', 'SetDlgItemTextA', 'CharUpperA', 'GetDesktopWindow', 'PeekMessageA', 'GetDlgItemTextA', '?terminate@@YAXXZ', '_commode', '_fmode', '_acmdln', '__C_specific_handler', 'memset', '__setusermatherr', '_ismbblead', '_cexit', '_exit', 'exit', '__set_app_type', '__getmainargs', '_amsg_exit', '_XcptFilter', 'memcpy_s', '_vsnprintf', '_initterm', 'memcpy', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaHresultCheck', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFpCDblR8', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', 'DllFunctionCall', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '__vbaI2I4', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarDup', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['MethCallEngine', 'EVENT_SINK_AddRef', 'EVENT_SINK_Release', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', 'ProcCallEngine'], ['CompareFileTime', 'SearchPathA', 'GetShortPathNameA', 'GetFullPathNameA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'GetLastError', 'CreateDirectoryA', 'SetFileAttributesA', 'Sleep', 'CreateFileA', 'GetFileSize', 'GetModuleFileNameA', 'GetTickCount', 'GetCurrentProcess', 'SetFileTime', 'ExitProcess', 'GetCommandLineA', 'GetWindowsDirectoryA', 'GetTempPathA', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessA', 'RemoveDirectoryA', 'GetTempFileNameA', 'lstrlenA', 'lstrcatA', 'GetSystemDirectoryA', 'CloseHandle', 'lstrcmpiA', 'lstrcmpA', 'GetEnvironmentVariableA', 'ExpandEnvironmentStringsA', 'GlobalFree', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'SetErrorMode', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'WriteFile', 'ReadFile', 'SetFilePointer', 'FindClose', 'MulDiv', 'FindNextFileA', 'FindFirstFileA', 'DeleteFileA', 'CopyFileA', 'ExitWindowsEx', 'CharNextA', 'DialogBoxParamA', 'GetClassInfoA', 'SystemParametersInfoA', 'RegisterClassA', 'EndDialog', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'CheckDlgButton', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'GetMessagePos', 'LoadBitmapA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'CreateDialogParamA', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxA', 'CharPrevA', 'wvsprintfA', 'DispatchMessageA', 'PeekMessageA', 'SendMessageTimeoutA', 'FindWindowExA', 'IsWindow', 'GetDlgItem', 'LoadImageA', 'GetDC', 'EnableWindow', 'InvalidateRect', 'CreateWindowExA', 'GetWindowLongA', 'DrawFocusRect', 'DestroyWindow', 'SetTimer', 'SetWindowTextA', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'TrackPopupMenu', 'wsprintfA', 'SendMessageA', 'CallWindowProcA', 'MapWindowPoints', 'GetWindowRect', 'ScreenToClient', 'PtInRect', 'LoadCursorA', 'SetCursor', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndPaint', 'SetWindowLongA', 'SetBkColor', 'GetDeviceCaps', 'GetCurrentObject', 'GetObjectA', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectA', 'SetBkMode', 'SetTextColor', 'SelectObject', 'SHGetMalloc', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'SHGetSpecialFolderLocation', 'RegEnumKeyA', 'RegEnumValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegQueryValueExA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['TerminateProcess', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetCommandLineA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'HeapAlloc', 'GetProfileStringA', 'InterlockedExchange', 'HeapFree', 'RtlUnwind', 'FormatMessageA', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetTickCount', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'GetOEMCP', 'GetCPInfo', 'GetThreadLocale', 'SizeofResource', 'GetProcessVersion', 'GetLastError', 'WritePrivateProfileStringA', 'GlobalFlags', 'lstrcpynA', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalFree', 'LocalAlloc', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'InterlockedIncrement', 'InterlockedDecrement', 'LoadLibraryA', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'MulDiv', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'CloseHandle', 'GetModuleFileNameA', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'FreeEnvironmentStringsA', 'ExitProcess', 'MessageBeep', 'InvalidateRect', 'CharUpperA', 'InflateRect', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'DefWindowProcA', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'SetWindowLongA', 'RegisterWindowMessageA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetNextDlgGroupItem', 'GrayStringA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'ScreenToClient', 'MapDialogRect', 'SetWindowPos', 'GetWindow', 'SetWindowContextHelpId', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'GetCursorPos', 'SetWindowsHookExA', 'EnableWindow', 'HideCaret', 'ShowCaret', 'ExcludeUpdateRgn', 'DrawFocusRect', 'DefDlgProcA', 'IsWindowUnicode', 'LoadIconA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'MessageBoxA', 'SetCursor', 'PostQuitMessage', 'PostMessageA', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'SetRect', 'CopyAcceleratorTableA', 'CharNextA', 'GetWindowRect', 'GetSysColorBrush', 'GetSystemMenu', 'AppendMenuA', 'SendMessageA', 'PtInRect', 'GetClassNameA', 'GetDesktopWindow', 'LoadCursorA', 'DestroyMenu', 'LoadStringA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'SetFocus', 'DestroyWindow', 'DrawTextA', 'CopyRect', 'AdjustWindowRectEx', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'IntersectClipRect', 'DeleteObject', 'SetMapMode', 'GetDeviceCaps', 'GetViewportExtEx', 'GetWindowExtEx', 'CreateSolidBrush', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetObjectA', 'BitBlt', 'CreateCompatibleDC', 'GetTextColor', 'GetBkColor', 'DPtoLP', 'LPtoDP', 'GetMapMode', 'PatBlt', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'DeleteDC', 'CreateDIBitmap', 'GetTextExtentPointA', 'CreateBitmap', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'CoFreeUnusedLibraries', 'OleInitialize', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'OleUninitialize', 'SysAllocStringLen', 'VariantClear', 'VariantTimeToSystemTime', 'VariantCopy', 'VariantChangeType', 'SysAllocString', 'SysAllocStringByteLen', 'SysStringLen', 'SysFreeString'], ['CryptStringToBinaryA', 'GetFileAttributesA', 'GetFileTime', 'RtlUnwind', 'HeapAlloc', 'RaiseException', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'Sleep', 'GetTimeZoneInformation', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetProcAddress', 'GetModuleHandleW', 'GetCurrentProcess', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'WideCharToMultiByte', 'InterlockedExchange', 'MultiByteToWideChar', 'GetLastError', 'GetVersion', 'CompareStringA', 'CompareStringW', 'lstrlenA', 'GetVersionExA', 'GetModuleHandleA', 'lstrcmpW', 'SetLastError', 'LoadLibraryA', 'FreeLibrary', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'GetCurrentThreadId', 'FreeResource', 'InterlockedIncrement', 'GetThreadLocale', 'GlobalAlloc', 'lstrcmpA', 'GlobalLock', 'GetLocaleInfoA', 'FileTimeToLocalFileTime', 'SetErrorMode', 'GetTickCount', 'FileTimeToSystemTime', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'GetCurrentProcessId', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetUserDefaultLCID', 'MessageBeep', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'IsRectEmpty', 'CopyAcceleratorTableA', 'LoadCursorA', 'GetSysColorBrush', 'DestroyMenu', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'SetWindowContextHelpId', 'MapDialogRect', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'CharNextA', 'IsWindowEnabled', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'GetNextDlgGroupItem', 'GetDlgItemInt', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'IsWindow', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'EnableWindow', 'ShowWindow', 'CharLowerA', 'DrawIcon', 'SendMessageA', 'IsIconic', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetMenu', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'ReleaseCapture', 'SetCapture', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'GetClientRect', 'LoadIconA', 'GetSystemMetrics', 'CharUpperA', 'GetWindow', 'GetWindowRect', 'GetWindowPlacement', 'SystemParametersInfoA', 'IntersectRect', 'OffsetRect', 'SetWindowPos', 'SetWindowLongA', 'GetWindowLongA', 'CallWindowProcA', 'DefWindowProcA', 'GetDlgCtrlID', 'PtInRect', 'CopyRect', 'EqualRect', 'GetParent', 'AdjustWindowRectEx', 'GetSysColor', 'RegisterClassA', 'GetClassInfoA', 'GetClassInfoExA', 'CreateWindowExA', 'MessageBoxA', 'SetMapMode', 'DeleteObject', 'GetViewportExtEx', 'GetWindowExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'RestoreDC', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'SaveDC', 'GetTextColor', 'GetBkColor', 'GetDeviceCaps', 'GetStockObject', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'SetViewportExtEx', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegQueryValueExA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegCloseKey', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoTaskMemAlloc', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'OleCreateFontIndirect', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'VariantTimeToSystemTime'], ['__vbaVarSub', '__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaStrI4', '__vbaVarMove', '__vbaAryMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaExitProc', '__vbaVarForInit', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaVarIndexLoad', '__vbaVarTstLt', '_CIsin', '__vbaErase', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGet3', '__vbaVarTstEq', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', '__vbaUI1ErrVar', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaStr2Vec', '__vbaVarMul', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '__vbaUbound', '__vbaVarCat', '_CIlog', '__vbaFileOpen', '__vbaNew2', '__vbaVar2Vec', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaAryLock', '__vbaVarDup', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '__vbaAryCopy', '__vbaStrVarCopy', '_allmul', '_CItan', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaMidStmtBstr', '__vbaFreeObj', '__vbaFreeStr'], ['CloseHandle', 'GetSystemTime', 'SystemTimeToFileTime', 'LoadLibraryA', 'GetEnvironmentVariableA', 'CreateFileW', 'FindFirstFileW', 'FlushFileBuffers', 'GetTickCount', 'MapViewOfFile', 'CreateFileMappingW', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'WideCharToMultiByte', 'GetProcessHeap', 'GetFileSize', 'LockFileEx', 'LocalFree', 'CreateFileMappingA', 'UnlockFile', 'HeapDestroy', 'HeapCompact', 'HeapAlloc', 'LoadLibraryW', 'GetSystemInfo', 'HeapReAlloc', 'DeleteFileW', 'DeleteFileA', 'GetVersionExA', 'WaitForSingleObjectEx', 'CreateFileA', 'FlushViewOfFile', 'OutputDebugStringW', 'GetFileAttributesExW', 'GetFileAttributesA', 'GetLastError', 'GetDiskFreeSpaceA', 'FormatMessageW', 'Sleep', 'MultiByteToWideChar', 'HeapSize', 'HeapValidate', 'UnmapViewOfFile', 'GetVersionExW', 'GetFileAttributesW', 'WaitForSingleObject', 'CreateMutexW', 'GetTempPathW', 'UnlockFileEx', 'SetEndOfFile', 'GetFullPathNameA', 'SetFilePointer', 'LockFile', 'OutputDebugStringA', 'GetDiskFreeSpaceW', 'InterlockedCompareExchange', 'WriteFile', 'GetFullPathNameW', 'HeapFree', 'HeapCreate', 'ReadFile', 'AreFileApisANSI', 'GetCurrentThreadId', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'lstrlenA', 'CreateEventA', 'OpenFileMappingA', 'GetModuleFileNameA', 'GetModuleHandleA', 'FindFirstFileA', 'CopyFileA', 'EnumDateFormatsA', 'SetEvent', 'TlsGetValue', 'CreateEventExA', 'SetLastError', 'InitializeCriticalSectionEx', 'ResetEvent', 'SetErrorMode', 'GetModuleHandleExA', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetProcAddress', 'CreateSemaphoreExA', 'ResumeThread', 'GetProcessAffinityMask', 'GetCurrentThread', 'GetNativeSystemInfo', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'GetTimeZoneInformation', 'SetStdHandle', 'GetCurrentDirectoryW', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'GetStringTypeW', 'LCMapStringW', 'CompareStringW', 'GetACP', 'ExitThread', 'FindNextFileW', 'FindFirstFileExW', 'FileTimeToSystemTime', 'SystemTimeToTzSpecificLocalTime', 'PeekNamedPipe', 'GetDriveTypeW', 'ExitProcess', 'WriteConsoleW', 'GetModuleHandleExW', 'GetFileType', 'RtlUnwind', 'UnregisterWaitEx', 'QueryDepthSList', 'FindClose', 'GetStdHandle', 'GetCurrentProcessId', 'lstrcatA', 'GetCurrentProcess', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'LoadLibraryExW', 'GetModuleFileNameW', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetNumaHighestNodeNumber', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'CreateThread', 'SignalObjectAndWait', 'CreateTimerQueue', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'FreeLibrary', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetModuleHandleW', 'CreateEventW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'DecodePointer', 'EncodePointer', 'DuplicateHandle', 'GetTempPathA', 'SetCurrentDirectoryA', 'ReleaseSemaphore', 'SwitchToThread', 'SetLayeredWindowAttributes', 'SetWindowPos', 'DestroyWindow', 'CreateWindowExA', 'CreateDialogParamW', 'EndDialog', 'GetDlgItem', 'GetDialogBaseUnits', 'RegisterClassExA', 'GetLayeredWindowAttributes', 'SendMessageA', 'DispatchMessageA', 'OpenClipboard', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'SetFocus', 'TranslateMessage', 'GetMessageA', 'DefWindowProcA', 'ShowWindow', 'GetFocus', 'GetKeyState', 'LoadAcceleratorsA', 'GetMenu', 'SetMenu', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'TrackPopupMenuEx', 'EnumDisplaySettingsExA', 'ChangeDisplaySettingsExA', 'CopyImage', 'LoadIconA', 'LoadCursorA', 'CheckMenuRadioItem', 'SetWindowLongA', 'PtInRect', 'InflateRect', 'ChildWindowFromPointEx', 'GetCursorPos', 'MessageBoxA', 'GetClientRect', 'GetWindowTextA', 'SetForegroundWindow', 'GetForegroundWindow', 'SetActiveWindow', 'UpdateWindow', 'InsertMenuItemA', 'GetWindowLongA', 'SetBkMode', 'GetDeviceCaps', 'CreateFontA', 'CreateCompatibleDC', 'MoveToEx', 'AddPrinterA', 'DeletePrinter', 'OpenPrinterA', 'AddPrinterDriverA', 'GetPrinterDriverDirectoryA', 'ClosePrinter', 'DeletePrinterDriverA', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'Shell_NotifyIconA', 'CoUninitialize', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'NetShareGetInfo', 'GradientFill', 'mmioAscend', 'mmioDescend', 'mmioClose', 'SHIsLowMemoryMachine', 'ImageList_Write', 'PdhCloseQuery', 'PdhCollectQueryData', 'PdhOpenQueryA', 'PdhGetFormattedCounterValue', 'PdhAddCounterW', 'EnumerateLoadedModules', 'WinHttpGetIEProxyConfigForCurrentUser', 'CM_Intersect_Range_List', 'CM_Get_Version', 'CM_Get_Sibling', 'AuthzInitializeResourceManager', 'lineAccept', 'DWriteCreateFactory'], ['__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '__vbaVarIdiv', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '__vbaCyErrVar', '__vbaOnError', '__vbaCyAdd', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaCyI4', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarAdd', '__vbaVarDup', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetCommandLineA', 'HeapReAlloc', 'RtlUnwind', 'RaiseException', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'Sleep', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapAlloc', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'HeapFree', 'GetTickCount', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GetModuleHandleW', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'FileTimeToSystemTime', 'GetThreadLocale', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedDecrement', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'lstrcmpW', 'GetVersionExA', 'GetProcAddress', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'MultiByteToWideChar', 'LockResource', 'GetLastError', 'SizeofResource', 'WideCharToMultiByte', 'LoadResource', 'FindResourceA', 'ExitProcess', 'lstrcpyA', 'WinExec', 'LoadLibraryA', 'lstrcatA', 'GetWindowsDirectoryA', 'FreeLibrary', 'FreeEnvironmentStringsA', 'lstrlenA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'DestroyMenu', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'ValidateRect', 'SetWindowContextHelpId', 'MapDialogRect', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GetWindowThreadProcessId', 'GetCursorPos', 'WindowFromPoint', 'IsWindowEnabled', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'SetMenu', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'EnableWindow', 'SendMessageA', 'LoadCursorA', 'ReleaseCapture', 'GetWindow', 'CopyRect', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'CharNextA', 'CharUpperA', 'GetWindowTextA', 'IsWindow', 'GetSysColor', 'ReleaseDC', 'InvalidateRect', 'CopyIcon', 'InflateRect', 'GetDC', 'PtInRect', 'GetClientRect', 'MessageBeep', 'GetParent', 'SetCapture', 'GetWindowRect', 'SetCursor', 'PostMessageA', 'GetSysColorBrush', 'TabbedTextOutA', 'RedrawWindow', 'DrawStateA', 'ChildWindowFromPoint', 'DrawTextExA', 'GrayStringA', 'GetFocus', 'DrawTextA', 'ScreenToClient', 'SetWindowRgn', 'GetSystemMetrics', 'CreateWindowExW', 'AppendMenuA', 'ShowWindow', 'DrawIcon', 'LoadIconA', 'IsIconic', 'GetSystemMenu', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetCapture', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'SelectObject', 'GetMapMode', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetWindowExtEx', 'GetViewportExtEx', 'GetStockObject', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateRectRgnIndirect', 'GetDeviceCaps', 'CreateBitmap', 'BitBlt', 'DeleteObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Ellipse', 'PtVisible', 'FillRgn', 'SetPixelV', 'Escape', 'RectVisible', 'CreateEllipticRgnIndirect', 'ExtTextOutA', 'CreateSolidBrush', 'TextOutA', 'GetTextExtentPoint32A', 'CreateFontIndirectA', 'GetObjectA', 'GetFileTitleA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegCloseKey', 'RegQueryValueA', 'RegOpenKeyExA', 'ShellExecuteA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'CoRevokeClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'OleIsCurrentClipboard', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'SysFreeString', 'SysAllocStringByteLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'VariantCopy', 'SafeArrayDestroy', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'OleCreateFontIndirect', 'SysAllocString', 'SysStringLen'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaR4Str', '__vbaObjVar', '__vbaVarLateMemSt', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['SHGetSpecialFolderPathW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteExW', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'DeleteDC', 'GetCurrentObject', 'StretchBlt', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'SetStretchBltMode', 'GetObjectW', 'FreeSid', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'GetWindowLongW', 'GetMenu', 'SetWindowPos', 'GetWindowDC', 'ReleaseDC', 'GetDlgItem', 'GetParent', 'GetWindowRect', 'GetClassNameA', 'CreateWindowExW', 'SetTimer', 'GetMessageW', 'DispatchMessageW', 'KillTimer', 'DestroyWindow', 'SendMessageW', 'EndDialog', 'wsprintfW', 'GetWindowTextW', 'GetWindowTextLengthW', 'GetSysColor', 'wsprintfA', 'SetWindowTextW', 'MessageBoxA', 'ScreenToClient', 'GetClientRect', 'SetWindowLongW', 'UnhookWindowsHookEx', 'SetFocus', 'GetSystemMetrics', 'SystemParametersInfoW', 'ShowWindow', 'DrawTextW', 'GetDC', 'ClientToScreen', 'GetWindow', 'DialogBoxIndirectParamW', 'DrawIconEx', 'CallWindowProcW', 'DefWindowProcW', 'CallNextHookEx', 'PtInRect', 'SetWindowsHookExW', 'LoadImageW', 'LoadIconW', 'MessageBeep', 'EnableWindow', 'IsWindow', 'EnableMenuItem', 'GetSystemMenu', 'CreateWindowExA', 'wvsprintfW', 'CharUpperW', 'GetKeyState', 'CopyImage', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'CoInitialize', 'VariantClear', 'SysFreeString', 'OleLoadPicture', 'SysAllocString', 'GetFileSize', 'SetFilePointer', 'ReadFile', 'WaitForMultipleObjects', 'GetModuleHandleA', 'SetFileTime', 'SetEndOfFile', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'FormatMessageW', 'lstrcpyW', 'LocalFree', 'IsBadReadPtr', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'SuspendThread', 'TerminateThread', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'GetVersionExW', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetProcessWorkingSetSize', 'SetCurrentDirectoryW', 'GetDriveTypeW', 'CreateFileW', 'GetCommandLineW', 'GetStartupInfoW', 'CreateProcessW', 'CreateJobObjectW', 'ResumeThread', 'AssignProcessToJobObject', 'CreateIoCompletionPort', 'SetInformationJobObject', 'GetQueuedCompletionStatus', 'GetExitCodeProcess', 'CloseHandle', 'SetEnvironmentVariableW', 'GetTempPathW', 'GetSystemTimeAsFileTime', 'lstrlenW', 'CompareFileTime', 'SetThreadLocale', 'FindFirstFileW', 'DeleteFileW', 'FindNextFileW', 'FindClose', 'RemoveDirectoryW', 'ExpandEnvironmentStringsW', 'WideCharToMultiByte', 'VirtualAlloc', 'GlobalMemoryStatusEx', 'lstrcmpW', 'GetEnvironmentVariableW', 'lstrcmpiW', 'lstrlenA', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLCID', 'lstrcmpiA', 'GlobalAlloc', 'GlobalFree', 'MulDiv', 'FindResourceExA', 'SizeofResource', 'LoadResource', 'LockResource', 'LoadLibraryA', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'lstrcatW', 'GetDiskFreeSpaceExW', 'SetFileAttributesW', 'SetLastError', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'SystemTimeToFileTime', 'GetLocalTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'GetStdHandle', 'VirtualFree', 'GetStartupInfoA', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'memcmp', 'free', 'memcpy', '_wtol', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_CxxThrowException', '_beginthreadex', '_EH_prolog', '?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z', 'memset', '_wcsnicmp', 'strncmp', 'wcsncmp', 'malloc', 'memmove', '_purecall'], ['GetModuleHandleA', 'GetProcAddress', 'GetDC', 'BitBlt', 'GetFileTitleA', 'OpenPrinterA', 'RegOpenKeyA', 'DragFinish', '_TrackMouseEvent', 'PathIsUNCA', 'OleInitialize', 'SystemTimeToVariantTime'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarErrI4', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaFPInt', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaUI1I4', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaStrVarVal', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['setsockopt', 'sendto', 'socket', 'gethostbyname', 'htons', 'connect', 'send', 'recv', 'inet_ntoa', 'WSASocketA', 'htonl', 'gethostname', 'WSAGetLastError', 'inet_addr', 'WSAIoctl', 'select', 'closesocket', 'WSACleanup', 'WSAStartup', '_stricmp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '??1type_info@@UAE@XZ', 'strchr', '_beginthreadex', 'free', 'realloc', 'strcmp', '_access', 'strcat', 'strrchr', 'strncpy', '_iob', 'fprintf', 'sprintf', 'printf', 'strcpy', 'time', 'srand', 'rand', 'atoi', '_local_unwind2', '_except_handler3', '_CxxThrowException', 'memcmp', '??2@YAPAXI@Z', 'strstr', 'memset', 'strlen', '__CxxFrameHandler', '_ftol', 'ceil', 'memcpy', '??3@YAXPAX@Z', '_strupr', '_strcmpi', '_controlfp', 'GetDiskFreeSpaceExA', 'VirtualAlloc', 'GetModuleHandleA', 'GetStartupInfoA', 'HeapFree', 'VirtualProtect', 'GetProcessHeap', 'HeapAlloc', 'lstrcmpiA', 'GetCurrentThreadId', 'GetFileAttributesA', 'DefineDosDeviceA', 'MoveFileExA', 'ExpandEnvironmentStringsA', 'CopyFileA', 'SetFileAttributesA', 'CreateDirectoryA', 'DuplicateHandle', 'GetCurrentProcess', 'GetFileSize', 'ReadFile', 'FindFirstFileA', 'FindClose', 'GetLocalTime', 'GlobalMemoryStatusEx', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'TerminateProcess', 'Process32Next', 'GetModuleFileNameA', 'GetVersionExA', 'CreateFileA', 'WriteFile', 'ExitProcess', 'GetCurrentProcessId', 'ExitThread', 'CreateThread', 'GetTickCount', 'CancelIo', 'InterlockedExchange', 'SetEvent', 'Sleep', 'OutputDebugStringA', 'ResetEvent', 'lstrlenA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'lstrcatA', 'lstrcpyA', 'WaitForSingleObject', 'CloseHandle', 'CreateEventA', 'VirtualFree', 'GetDriveTypeA', 'wsprintfA', 'GetMessageA', 'GetInputState', 'PostThreadMessageA', 'GetWindow', 'GetWindowTextA', 'GetClassNameA', 'FindWindowA', 'AdjustTokenPrivileges', 'CloseEventLog', 'ClearEventLogA', 'StartServiceCtrlDispatcherA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'ChangeServiceConfig2A', 'RegisterServiceCtrlHandlerA', 'SetServiceStatus', 'OpenEventLogA', 'SHGetSpecialFolderPathA', 'ShellExecuteA', 'ShellExecuteExA', 'InternetGetConnectedState', 'InternetOpenUrlA', 'PathRemoveFileSpecA'], ['GetModuleHandleA', 'GetProcAddress', 'GdipFree', 'GetDC', 'ArcTo', 'GetFileTitleA', 'GetJobA', 'RegEnumKeyA', 'DragFinish', 'PathIsUNCA', 'OleRun', 'SysAllocStringLen'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetProcAddress', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'VirtualFree', 'VirtualAlloc', 'HeapReAlloc', 'VirtualQuery', 'TerminateThread', 'CreateThread', 'WriteFile', 'CreateFileW', 'LoadLibraryW', 'GetLocalTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'ReadFile', 'FindFirstFileA', 'GetBinaryTypeW', 'FindNextFileA', 'GetFullPathNameA', 'GetTempPathW', 'GetPrivateProfileStringW', 'CreateFileA', 'GlobalAlloc', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'LocalFree', 'GetFileSize', 'FreeLibrary', 'WaitForSingleObject', 'GetCurrentProcess', 'WaitForMultipleObjects', 'CreatePipe', 'PeekNamedPipe', 'DuplicateHandle', 'Sleep', 'CreateProcessW', 'CreateEventA', 'GetModuleFileNameW', 'LoadResource', 'FindResourceW', 'LoadLibraryA', 'LoadLibraryExW', 'FindFirstFileW', 'FindNextFileW', 'SetFilePointer', 'GetLogicalDriveStringsW', 'DeleteFileW', 'CopyFileW', 'GetDriveTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'CreateMutexA', 'ReleaseMutex', 'TerminateProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'lstrcmpW', 'VirtualProtectEx', 'CreateProcessA', 'SizeofResource', 'VirtualProtect', 'LockResource', 'GetWindowsDirectoryW', 'Process32First', 'WriteProcessMemory', 'Process32Next', 'GetWindowsDirectoryA', 'VirtualAllocEx', 'CreateRemoteThread', 'IsWow64Process', 'GetTempPathA', 'GetTickCount', 'lstrcpyW', 'WideCharToMultiByte', 'lstrcpyA', 'MultiByteToWideChar', 'lstrcatA', 'GetProcessHeap', 'HeapAlloc', 'GetComputerNameW', 'lstrcmpA', 'lstrlenA', 'ExpandEnvironmentStringsW', 'lstrlenW', 'CloseHandle', 'lstrcatW', 'GetLastError', 'GetModuleHandleA', 'SetLastError', 'GetModuleFileNameA', 'CreateDirectoryW', 'SetEvent', 'Process32FirstW', 'MessageBoxA', 'GetKeyState', 'GetMessageA', 'DispatchMessageA', 'CreateWindowExW', 'CallNextHookEx', 'GetAsyncKeyState', 'SetWindowsHookExA', 'RegisterClassW', 'GetRawInputData', 'MapVirtualKeyA', 'GetForegroundWindow', 'DefWindowProcA', 'RegisterRawInputDevices', 'GetLastInputInfo', 'ToUnicode', 'GetKeyNameTextW', 'PostQuitMessage', 'GetWindowTextW', 'TranslateMessage', 'wsprintfA', 'wsprintfW', 'FreeSid', 'LookupAccountSidW', 'GetTokenInformation', 'CloseServiceHandle', 'OpenSCManagerW', 'RegCreateKeyExA', 'RegSetValueExW', 'StartServiceW', 'EnumServicesStatusExW', 'RegSetValueExA', 'RegCreateKeyExW', 'RegDeleteKeyW', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'OpenProcessToken', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyExW', 'RegQueryValueExA', 'RegQueryInfoKeyW', 'RegCloseKey', 'OpenServiceW', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'RegDeleteValueW', 'SHGetSpecialFolderPathW', 'SHCreateDirectoryExW', 'SHGetFolderPathW', 'ShellExecuteW', 'ShellExecuteExA', 'URLDownloadToFileW', 'freeaddrinfo', 'htons', 'recv', 'connect', 'socket', 'send', 'WSAStartup', 'getaddrinfo', 'shutdown', 'closesocket', 'WSACleanup', 'ioctlsocket', 'ntohs', 'gethostbyname', 'inet_addr', 'setsockopt', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CoTaskMemFree', 'StrStrW', 'PathRemoveFileSpecA', 'StrStrA', 'PathCombineA', 'PathFindFileNameW', 'PathFindExtensionW', 'PathFileExistsW', 'NetLocalGroupAddMembers', 'NetUserAdd', 'VariantInit', 'CryptStringToBinaryA', 'CryptUnprotectData', 'GetModuleFileNameExW', 'InternetQueryDataAvailable', 'InternetOpenUrlW', 'InternetOpenW', 'InternetCloseHandle', 'InternetReadFile', 'InternetCheckConnectionW'], ['GetFileAttributesA', 'GetFileTime', 'GetTickCount', 'HeapFree', 'HeapAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'RtlUnwind', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'GetACP', 'Sleep', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetOEMCP', 'GetCPInfo', 'FileTimeToSystemTime', 'GetThreadLocale', 'GlobalFlags', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpW', 'GetVersionExA', 'GetProcAddress', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'lstrcpyA', 'WinExec', 'LoadLibraryA', 'lstrcatA', 'GetWindowsDirectoryA', 'FreeLibrary', 'GetVersion', 'CompareStringA', 'GetLastError', 'InterlockedExchange', 'MultiByteToWideChar', 'CompareStringW', 'WideCharToMultiByte', 'lstrlenA', 'SetHandleCount', 'IsRectEmpty', 'SetRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'TranslateMessage', 'GetActiveWindow', 'ValidateRect', 'SetWindowContextHelpId', 'MapDialogRect', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GetWindowThreadProcessId', 'GetCursorPos', 'WindowFromPoint', 'IsWindowEnabled', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'CopyAcceleratorTableA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetMenu', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'CopyRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'LoadBitmapA', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetSystemMenu', 'IsIconic', 'CharNextA', 'DestroyMenu', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'DispatchMessageA', 'GetMessageA', 'LoadCursorA', 'ReleaseCapture', 'IsWindow', 'GetSysColor', 'ReleaseDC', 'InvalidateRect', 'CopyIcon', 'InflateRect', 'GetDC', 'PtInRect', 'GetClientRect', 'MessageBeep', 'GetParent', 'SetCapture', 'GetWindowRect', 'SetCursor', 'PostMessageA', 'GetSysColorBrush', 'TabbedTextOutA', 'RedrawWindow', 'DrawStateA', 'ChildWindowFromPoint', 'DrawTextExA', 'GrayStringA', 'GetFocus', 'DrawTextA', 'ScreenToClient', 'SetWindowRgn', 'GetSystemMetrics', 'CreateWindowExW', 'AppendMenuA', 'ShowWindow', 'DrawIcon', 'LoadIconA', 'GetPropA', 'GetWindowExtEx', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetViewportExtEx', 'GetMapMode', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetStockObject', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateRectRgnIndirect', 'CreateBitmap', 'GetDeviceCaps', 'BitBlt', 'DeleteObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Ellipse', 'PtVisible', 'FillRgn', 'SetPixelV', 'Escape', 'RectVisible', 'CreateEllipticRgnIndirect', 'ExtTextOutA', 'CreateSolidBrush', 'TextOutA', 'GetTextExtentPoint32A', 'CreateFontIndirectA', 'GetObjectA', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'RegQueryValueA', 'RegOpenKeyExA', 'ShellExecuteA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CLSIDFromProgID', 'SysFreeString', 'SysAllocStringByteLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'VariantCopy', 'SafeArrayDestroy', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'OleCreateFontIndirect', 'SysAllocString', 'SysStringLen'], ['MethCallEngine', 'EVENT_SINK_AddRef', 'EVENT_SINK_Release', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler'], ['RasHangUpA', 'RasGetConnectStatusA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'SuspendThread', 'TerminateThread', 'ReleaseMutex', 'CreateMutexA', 'SetLastError', 'GetTimeZoneInformation', 'FileTimeToSystemTime', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'InterlockedIncrement', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetFileType', 'SetStdHandle', 'GetACP', 'HeapSize', 'TerminateProcess', 'RaiseException', 'ReadFile', 'lstrlenW', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetUserDefaultLCID', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'WaitForSingleObject', 'CloseHandle', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'LocalFree', 'InterlockedDecrement', 'GetStringTypeW', 'lstrcmpiA', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'IsWindow', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetClipboardData', 'CloseClipboard', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'DestroyMenu', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'wsprintfA', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'GetCapture', 'ReleaseCapture', 'SetTimer', 'KillTimer', 'WinHelpA', 'LoadBitmapA', 'CopyRect', 'ChildWindowFromPointEx', 'ScreenToClient', 'GetMessagePos', 'SetWindowRgn', 'DestroyAcceleratorTable', 'GetWindow', 'GetActiveWindow', 'SetFocus', 'IsIconic', 'FillRect', 'DrawTextA', 'GetSysColorBrush', 'LoadStringA', 'GetDesktopWindow', 'GetClassNameA', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'CheckMenuItem', 'MoveWindow', 'IsDialogMessageA', 'ScrollWindowEx', 'SendDlgItemMessageA', 'MapWindowPoints', 'AdjustWindowRectEx', 'SetWindowTextA', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'UnregisterClassA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'CreateFontIndirectA', 'GetStockObject', 'GetObjectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'StretchBlt', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'ExtSelectClipRgn', 'GetViewportExtEx', 'SetBkColor', 'Ellipse', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'waveOutRestart', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiOutPrepareHeader', 'midiStreamOut', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegQueryValueA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromProgID', 'OleRun', 'CoCreateInstance', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'VariantClear', 'VariantChangeType', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetElement', 'VariantCopyInd', 'VariantInit', 'SafeArrayDestroy', 'SafeArrayCreate', 'SafeArrayPutElement', 'RegisterTypeLib', 'LHashValOfNameSys', 'LoadTypeLib', 'UnRegisterTypeLib', 'SysAllocString', 'ImageList_Destroy', 'WSAAsyncSelect', 'htons', 'socket', 'closesocket', 'send', 'gethostname', 'inet_addr', 'inet_ntoa', 'setsockopt', 'recvfrom', 'ioctlsocket', 'connect', 'recv', 'getpeername', 'accept', 'gethostbyname', 'WSAStartup', 'WSACleanup', 'WSASetLastError', 'select', 'ntohl', 'InternetCloseHandle', 'ChooseColorA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'GetFileTitleA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['GetThemeColor', 'GetThemeSysBool', 'DrawThemeParentBackgroundEx', 'BeginBufferedAnimation', 'IsCompositionActive', 'CoRegisterChannelHook', 'DoDragDrop', 'OleDraw', 'OleRegGetMiscStatus', 'STGMEDIUM_UserSize'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegCloseKey', 'DeleteObject', 'OleInitialize', 'SHGetMalloc', 'SetMenu'], ['__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaVarIdiv', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaLenVar', '_adj_fdiv_m32', '__vbaCyErrVar', '__vbaOnError', '__vbaCyAdd', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaCyI4', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarAdd', '__vbaVarDup', '__vbaStrComp', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI2', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaDateVar', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '_CIatan', '__vbaUI1Str', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetProcessHeap', 'RtlUnwind', 'RaiseException', 'ExitThread', 'CreateThread', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'Sleep', 'GetStdHandle', 'GetTimeZoneInformation', 'GetACP', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetCommandLineA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'SetConsoleCtrlHandler', 'LCMapStringA', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'GetStringTypeA', 'GetStringTypeW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetDateFormatA', 'GetTimeFormatA', 'GetDriveTypeA', 'SetEnvironmentVariableA', 'HeapReAlloc', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'SetCurrentDirectoryA', 'HeapAlloc', 'HeapFree', 'GetProfileIntA', 'GetTickCount', 'SetErrorMode', 'GetCurrentDirectoryA', 'SetFileAttributesA', 'LocalFileTimeToFileTime', 'CreateFileA', 'GetShortPathNameA', 'GetVolumeInformationA', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'SystemTimeToFileTime', 'GetThreadLocale', 'GetAtomNameA', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentProcessId', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpW', 'GetVersionExA', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindNextFileA', 'FindClose', 'FreeLibrary', 'InterlockedDecrement', 'GetModuleFileNameW', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'ExitProcess', 'GetVersion', 'CompareStringA', 'GetModuleHandleA', 'lstrcmpiW', 'LoadLibraryA', 'GetProcAddress', 'lstrcmpiA', 'SetLastError', 'GetLastError', 'InterlockedExchange', 'GetStringTypeExA', 'lstrlenW', 'MultiByteToWideChar', 'CompareStringW', 'GetEnvironmentVariableA', 'GetStringTypeExW', 'WideCharToMultiByte', 'lstrlenA', 'GetEnvironmentVariableW', 'FreeEnvironmentStringsA', 'GetComputerNameA', 'CopyAcceleratorTableA', 'CreateMenu', 'PostThreadMessageA', 'GetTabbedTextExtentA', 'IsClipboardFormatAvailable', 'WaitMessage', 'SendNotifyMessageA', 'RegisterClipboardFormatA', 'GetSysColorBrush', 'UnregisterClassA', 'LoadCursorA', 'DestroyCursor', 'SetCursorPos', 'SetCapture', 'RedrawWindow', 'InflateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'IsZoomed', 'WindowFromPoint', 'KillTimer', 'SetTimer', 'SetRect', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'SetRectEmpty', 'IsRectEmpty', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'PostQuitMessage', 'ScrollWindowEx', 'IsWindowEnabled', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'WindowFromDC', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetWindow', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'ScreenToClient', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'InSendMessage', 'SetWindowRgn', 'DrawIcon', 'FindWindowA', 'UnionRect', 'LockWindowUpdate', 'GetDCEx', 'GetDialogBaseUnits', 'DestroyIcon', 'GetClassLongA', 'GetMenuItemInfoA', 'GetDlgCtrlID', 'IsChild', 'InvalidateRect', 'IsIconic', 'AdjustWindowRectEx', 'MapVirtualKeyA', 'GetKeyNameTextA', 'ReleaseDC', 'GetDC', 'GetClientRect', 'CopyRect', 'IsWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'UnhookWindowsHookEx', 'ShowWindow', 'UpdateWindow', 'LoadBitmapA', 'CharUpperA', 'SendMessageA', 'CharLowerW', 'SetWindowLongA', 'CharLowerA', 'GetWindowLongA', 'CharUpperW', 'EnableWindow', 'GetForegroundWindow', 'PolyBezierTo', 'ExtSelectClipRgn', 'DeleteDC', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetStockObject', 'SelectPalette', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'TextOutA', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CopyMetaFileA', 'CreateDCA', 'GetDCOrgEx', 'GetBkColor', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetViewportOrgEx', 'DPtoLP', 'Rectangle', 'PolylineTo', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'CreateFontIndirectA', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'CreateMetaFileA', 'CloseMetaFile', 'DeleteMetaFile', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'PolyDraw', 'ArcTo', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'StartPage', 'CreateBitmap', 'GetObjectA', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'SelectClipRgn', 'DeleteObject', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'ModifyWorldTransform', 'SetWorldTransform', 'SetGraphicsMode', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'PatBlt', 'CreateRectRgnIndirect', 'ExtTextOutA', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GetJobA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleGetIconOfClass', 'CreateItemMoniker', 'CreateGenericComposite', 'OleIsRunning', 'GetRunningObjectTable', 'CoLockObjectExternal', 'OleRun', 'CreateFileMoniker', 'CoGetMalloc', 'StgCreateDocfile', 'StgOpenStorage', 'StgIsStorageFile', 'CreateOleAdviseHolder', 'CreateDataAdviseHolder', 'OleGetClipboard', 'OleSetClipboard', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'OleSetMenuDescriptor', 'OleQueryCreateFromData', 'OleQueryLinkFromData', 'DoDragDrop', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'CoGetClassObject', 'CoRegisterClassObject', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'CLSIDFromProgID', 'OleCreateLinkToFile', 'OleCreateLinkFromData', 'OleCreateFromData', 'OleLockRunning', 'CreateStreamOnHGlobal', 'OleSaveToStream', 'WriteClassStm', 'OleSave', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'OleRegGetMiscStatus', 'OleRegEnumVerbs', 'CoDisconnectObject', 'CLSIDFromString', 'StringFromGUID2', 'CoCreateInstance', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'OleCreateFromFile', 'OleSetContainedObject', 'GetHGlobalFromILockBytes', 'StgOpenStorageOnILockBytes', 'OleLoad', 'OleCreateStaticFromData', 'OleCreate', 'LoadTypeLib', 'SysAllocString', 'VarBstrFromDate', 'VarCyFromStr', 'VarDecFromStr', 'VarBstrFromDec', 'VarBstrFromCy', 'VarDateFromStr', 'SysReAllocStringLen', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayCopy', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'VariantCopy', 'SafeArrayRedim', 'SafeArrayCreate', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysStringByteLen', 'SysAllocStringByteLen', 'SysFreeString', 'SysStringLen'], ['GetVersionExA', 'GetVersion', 'SetForegroundWindow', 'EnumDependentServicesA', 'PathFileExistsA', 'GetClipBox', 'DocumentPropertiesA', 'SHGetSpecialFolderPathA', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'TerminateProcess', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RaiseException', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedIncrement', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'GetClipboardData', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'CloseClipboard', 'wsprintfA', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'WaitForInputIdle', 'IsWindow', 'DestroyMenu', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'GetCapture', 'ReleaseCapture', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'UnregisterClassA', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'SetStretchBltMode', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'CreateRectRgnIndirect', 'SetBkColor', 'CombineRgn', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleUninitialize', 'CLSIDFromString', 'OleInitialize', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'ioctlsocket', 'recv', 'getpeername', 'accept', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA'], ['RtlUnwind', 'Sleep', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'LCMapStringW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'HeapFree', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetTimeZoneInformation', 'LCMapStringA', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'HeapAlloc', 'GetCommandLineA', 'GetTickCount', 'GetFileSizeEx', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'CreateFileW', 'GetShortPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiW', 'GetThreadLocale', 'GetStringTypeExW', 'DeleteFileW', 'MoveFileW', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetModuleHandleA', 'InterlockedDecrement', 'GetCurrentDirectoryW', 'GlobalGetAtomNameW', 'FormatMessageW', 'LocalFree', 'MulDiv', 'lstrcpyA', 'lstrcpyW', 'lstrlenA', 'GlobalReAlloc', 'GetDiskFreeSpaceW', 'GetFullPathNameW', 'GetTempFileNameW', 'GetFileTime', 'SetFileTime', 'GetFileAttributesW', 'GlobalFindAtomW', 'GetVersionExW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GetPrivateProfileStringW', 'lstrlenW', 'WritePrivateProfileStringW', 'GetPrivateProfileIntW', 'GlobalAddAtomW', 'GetCurrentProcessId', 'GetLastError', 'SetLastError', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetModuleFileNameW', 'lstrcmpA', 'GetLocaleInfoW', 'LoadLibraryW', 'WideCharToMultiByte', 'CompareStringA', 'MultiByteToWideChar', 'InterlockedExchange', 'GlobalLock', 'lstrcmpW', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleW', 'GetProcAddress', 'ExitProcess', 'LockResource', 'SizeofResource', 'LoadResource', 'FreeEnvironmentStringsW', 'FindResourceW', 'SystemParametersInfoW', 'InvalidateRect', 'GetMenuStringW', 'AppendMenuW', 'InsertMenuW', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageW', 'SendDlgItemMessageA', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'IsRectEmpty', 'SetForegroundWindow', 'ShowScrollBar', 'GetClientRect', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'SetParent', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'EnableWindow', 'UpdateWindow', 'PostQuitMessage', 'PostMessageW', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'FillRect', 'SetWindowRgn', 'ClientToScreen', 'SetTimer', 'KillTimer', 'SetCapture', 'LoadCursorW', 'ReleaseCapture', 'SetRectEmpty', 'DeleteMenu', 'GetScrollPos', 'GetSystemMenu', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuW', 'SendMessageW', 'GetParent', 'GetFocus', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'SetCursor', 'ShowOwnedPopups', 'MessageBoxW', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongW', 'GetWindowThreadProcessId', 'SetWindowPos', 'MapDialogRect', 'SetWindowContextHelpId', 'GetWindow', 'ValidateRect', 'GetCursorPos', 'PeekMessageW', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageW', 'IsZoomed', 'ReleaseDC', 'GetDC', 'TranslateAcceleratorW', 'BringWindowToTop', 'PostThreadMessageW', 'RegisterClipboardFormatW', 'LockWindowUpdate', 'GetDCEx', 'WindowFromPoint', 'GetMenuItemInfoW', 'InflateRect', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'CopyAcceleratorTableW', 'CharNextW', 'CharUpperW', 'DestroyIcon', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuW', 'DestroyMenu', 'LoadAcceleratorsW', 'InsertMenuItemW', 'EqualRect', 'CreatePopupMenu', 'DrawIcon', 'BitBlt', 'GetPixel', 'PtVisible', 'RectVisible', 'TextOutW', 'ExtTextOutW', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetWindowExtEx', 'CreatePatternBrush', 'GetStockObject', 'CreateSolidBrush', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'CreateFontIndirectW', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'IntersectClipRect', 'ExtSelectClipRgn', 'CreateBitmap', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'StretchDIBits', 'DeleteDC', 'CreateFontW', 'GetCharWidthW', 'DeleteObject', 'GetTextExtentPoint32W', 'GetTextMetricsW', 'SelectObject', 'Ellipse', 'LPtoDP', 'CreateEllipticRgn', 'GetDeviceCaps', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'ExcludeClipRect', 'GetFileTitleW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'RegSetValueW', 'GetFileSecurityW', 'SetFileSecurityW', 'RegDeleteValueW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'RegCreateKeyW', 'DragFinish', 'ExtractIconW', 'SHGetFileInfoW', 'DragQueryFileW', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'PathRemoveFileSpecW', 'OleUIBusyW', 'CoRevokeClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CoInitializeEx', 'CoUninitialize', 'CoCreateInstance', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'OleIsCurrentClipboard', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoGetClassObject', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'OleCreateFontIndirect', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysFreeString'], ['InitCommonControlsEx', 'SHAutoComplete', 'DeleteFileW', 'DeleteFileA', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetTickCount', 'WideCharToMultiByte', 'GlobalAlloc', 'GetVersionExW', 'GetFullPathNameA', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetLocaleInfoW', 'GetNumberFormatW', 'SetFileAttributesW', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'Sleep', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'GetCommandLineW', 'MapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'SetEnvironmentVariableW', 'GetProcAddress', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemTime', 'MultiByteToWideChar', 'CompareStringW', 'IsDBCSLeadByte', 'GetCPInfo', 'SetCurrentDirectoryW', 'LoadLibraryW', 'FreeLibrary', 'SetFileAttributesA', 'GetFileAttributesW', 'GetFileAttributesA', 'WriteFile', 'GetStdHandle', 'ReadFile', 'GetCurrentDirectoryW', 'CreateFileW', 'CreateFileA', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'MoveFileW', 'SetFileTime', 'GetCurrentProcess', 'CloseHandle', 'SetLastError', 'GetLastError', 'DosDateTimeToFileTime', 'wvsprintfW', 'ReleaseDC', 'GetDC', 'SendMessageW', 'SetDlgItemTextW', 'SetFocus', 'EndDialog', 'DestroyIcon', 'SendDlgItemMessageW', 'GetDlgItemTextW', 'GetClassNameW', 'DialogBoxParamW', 'IsWindowVisible', 'WaitForInputIdle', 'SetForegroundWindow', 'GetSysColor', 'PostMessageW', 'LoadBitmapW', 'LoadIconW', 'CharToOemA', 'OemToCharA', 'FindWindowExW', 'wvsprintfA', 'GetParent', 'MapWindowPoints', 'CreateWindowExW', 'UpdateWindow', 'SetWindowTextW', 'LoadCursorW', 'RegisterClassExW', 'SetWindowLongW', 'GetWindowLongW', 'DefWindowProcW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'DestroyWindow', 'GetClientRect', 'IsWindow', 'CharToOemBuffW', 'MessageBoxW', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'OemToCharBuffA', 'CharUpperA', 'CharToOemBuffA', 'LoadStringW', 'SetWindowPos', 'GetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'CharUpperW', 'GetWindowRect', 'CopyRect', 'GetDeviceCaps', 'GetObjectW', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'GetOpenFileNameW', 'CommDlgExtendedError', 'GetSaveFileNameW', 'RegOpenKeyExW', 'LookupPrivilegeValueW', 'OpenProcessToken', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'SetFileSecurityW', 'SetFileSecurityA', 'AdjustTokenPrivileges', 'SHChangeNotify', 'ShellExecuteExW', 'SHFileOperationW', 'SHGetFileInfoW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'CreateStreamOnHGlobal', 'OleInitialize', 'CoCreateInstance', 'OleUninitialize', 'CLSIDFromString', 'VariantInit'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'LogonUserA', 'AVIPutFileOnClipboard', 'ImageList_Add', 'GetFileTitleA', 'EnumerateLoadedModules', 'PatBlt', 'GradientFill', 'ICCompressorChoose', 'NetAuditClear', 'DsIsMangledDnW', 'OleInitialize', 'LresultFromObject', 'DispCallFunc', 'PdhCollectQueryData', 'SetupCloseInfFile', 'DragFinish', 'GetDC', 'waveInGetID', 'ClosePrinter'], ['LocalFileTimeToFileTime', 'GetTickCount', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'RtlUnwind', 'GetCommandLineA', 'GetProcessHeap', 'RaiseException', 'HeapSize', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'Sleep', 'GetACP', 'FileTimeToLocalFileTime', 'LCMapStringW', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'CreateFileA', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedDecrement', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentProcessId', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'lstrcmpA', 'GetThreadLocale', 'InterlockedIncrement', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'FreeLibrary', 'LoadLibraryA', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'MulDiv', 'SetLastError', 'ExitProcess', 'GetStringTypeExA', 'lstrlenA', 'lstrcmpiA', 'CompareStringW', 'CompareStringA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringA', 'InterlockedExchange', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'CopyAcceleratorTableA', 'SetRect', 'InvalidateRgn', 'SetCapture', 'DestroyIcon', 'GetNextDlgGroupItem', 'MessageBeep', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'GetDCEx', 'LockWindowUpdate', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'ReleaseDC', 'GetDC', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'SetWindowContextHelpId', 'MapDialogRect', 'GetWindowThreadProcessId', 'ShowOwnedPopups', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'CharNextA', 'IsWindowEnabled', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'GrayStringA', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'IsWindow', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'TrackPopupMenu', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'GetClientRect', 'EnableWindow', 'CharUpperA', 'UpdateWindow', 'GetMenu', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'CopyRect', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetMenuItemInfoA', 'InflateRect', 'LoadCursorA', 'GetSysColorBrush', 'ClientToScreen', 'SetParent', 'InvalidateRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'SendMessageA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'GetSubMenu', 'GetMenuItemCount', 'InsertMenuA', 'GetMenuItemID', 'AppendMenuA', 'GetMenuStringA', 'GetWindow', 'GetSystemMetrics', 'GetWindowRect', 'GetWindowPlacement', 'IsIconic', 'SystemParametersInfoA', 'IntersectRect', 'OffsetRect', 'SetWindowPos', 'SetWindowLongA', 'GetWindowLongA', 'CallWindowProcA', 'DefWindowProcA', 'GetDlgCtrlID', 'PtInRect', 'MoveWindow', 'PtVisible', 'RectVisible', 'TextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'CreatePatternBrush', 'CreateSolidBrush', 'GetRgnBox', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'ExtSelectClipRgn', 'CreateBitmap', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'ExtTextOutA', 'BitBlt', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'StretchDIBits', 'DeleteDC', 'CreateFontA', 'SelectObject', 'GetCharWidthA', 'DeleteObject', 'PatBlt', 'CreateRectRgnIndirect', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetTextColor', 'GetBkColor', 'GetStockObject', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RegCreateKeyA', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CLSIDFromProgID', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'OleCreateFontIndirect', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'SysAllocString', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'VariantCopy', 'VariantClear'], ['GetTickCount', 'GetFullPathNameA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'GetLastError', 'CreateDirectoryA', 'SetFileAttributesA', 'SearchPathA', 'GetShortPathNameA', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'SetEnvironmentVariableA', 'GetWindowsDirectoryA', 'GetTempPathA', 'Sleep', 'CloseHandle', 'LoadLibraryA', 'lstrlenA', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'ReadFile', 'lstrcpyA', 'lstrcatA', 'GetSystemDirectoryA', 'GetVersion', 'GetProcAddress', 'GlobalAlloc', 'CompareFileTime', 'SetFileTime', 'ExpandEnvironmentStringsA', 'lstrcmpiA', 'lstrcmpA', 'WaitForSingleObject', 'GlobalFree', 'GetExitCodeProcess', 'GetModuleHandleA', 'SetErrorMode', 'GetCommandLineA', 'LoadLibraryExA', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'SetFilePointer', 'WriteFile', 'FindClose', 'WritePrivateProfileStringA', 'MultiByteToWideChar', 'MulDiv', 'GetPrivateProfileStringA', 'FreeLibrary', 'CreateWindowExA', 'EndDialog', 'ScreenToClient', 'GetWindowRect', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'GetDC', 'SystemParametersInfoA', 'RegisterClassA', 'TrackPopupMenu', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamA', 'SetTimer', 'GetDlgItem', 'wsprintfA', 'SetForegroundWindow', 'ShowWindow', 'IsWindow', 'LoadImageA', 'SetWindowLongA', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'EndPaint', 'PostQuitMessage', 'FindWindowExA', 'SendMessageTimeoutA', 'SetWindowTextA', 'SelectObject', 'SetBkMode', 'CreateFontIndirectA', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'RegCloseKey', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['GetModuleHandleA', 'GetProcAddress', 'FreeSid', 'InternetOpenA'], ['ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegCreateKeyExW', 'CloseTrace', 'GetTraceLoggerHandle', 'GetTraceEnableLevel', 'GetTraceEnableFlags', 'RegisterTraceGuidsW', 'UnregisterTraceGuids', 'RegCloseKey', 'OpenProcessToken', 'TraceMessage', 'DuplicateToken', 'ControlTraceW', 'StartTraceW', 'EnableTrace', 'CheckTokenMembership', 'GetTokenInformation', 'RegOpenKeyExW', 'CreateWellKnownSid', 'RegQueryValueExW', 'GetLocaleInfoW', 'FormatMessageW', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'Sleep', 'GetLocalTime', 'GetCalendarInfoW', 'QueryPerformanceCounter', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'CreateThread', 'GetDriveTypeW', 'GetVolumeInformationW', 'InitializeSListHead', 'RtlCaptureStackBackTrace', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'CloseHandle', 'SetEvent', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetVolumeNameForVolumeMountPointW', 'GetTimeFormatW', 'GetDateFormatW', 'SetLastError', 'WaitForSingleObject', 'CreateEventW', 'GetCurrentProcess', 'SetErrorMode', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetTickCount', 'UnhandledExceptionFilter', 'FindFirstFileW', 'FindNextFileW', 'GetProcessHeap', 'HeapSetInformation', 'RegisterApplicationRestart', 'GetCommandLineW', 'LocalFree', 'GetLastError', 'CreateDirectoryW', 'DeleteFileW', 'GetFileAttributesW', 'FindClose', 'CreateFileW', 'DeviceIoControl', 'MoveFileExW', 'LoadLibraryExW', 'GetVolumePathNameW', 'ExpandEnvironmentStringsW', 'DeleteDC', 'GdiFlush', 'SelectObject', 'SetLayout', 'CreateCompatibleDC', 'CreateDIBSection', 'SetTextColor', 'ExtTextOutW', 'CreateFontIndirectW', 'DeleteObject', 'GetDeviceCaps', 'SetBkColor', 'LoadStringW', 'IsDlgButtonChecked', 'GetDlgItemTextW', 'SetDlgItemTextW', 'CheckDlgButton', 'DrawFrameControl', 'OffsetRect', 'SetTimer', 'KillTimer', 'GetSysColorBrush', 'GetWindowLongPtrW', 'DestroyWindow', 'EnableWindow', 'EndDialog', 'SetWindowLongPtrW', 'EndPaint', 'GetSysColor', 'MapWindowPoints', 'BeginPaint', 'ShowWindow', 'PostMessageW', 'SetWindowPos', 'LoadImageW', 'GetDesktopWindow', 'SetFocus', 'SetWindowLongW', 'GetWindowLongW', 'GetDlgItem', 'DestroyIcon', 'MoveWindow', 'GetWindowRect', 'GetClientRect', 'ClientToScreen', 'GetSystemMetrics', 'SendMessageW', 'DialogBoxParamW', 'SetForegroundWindow', 'GetDC', 'SetWindowTextW', 'ReleaseDC', 'SystemParametersInfoW', 'SendMessageTimeoutW', 'GetWindowTextW', 'EnumWindows', 'MessageBoxW', 'ChangeWindowMessageFilter', 'RegisterWindowMessageW', 'InflateRect', '_vscwprintf', 'iswspace', 'memcpy', 'memset', '?terminate@@YAXXZ', '__set_app_type', '_fmode', '_commode', '__setusermatherr', '_amsg_exit', '_initterm', '_acmdln', 'exit', '_cexit', '_exit', '_XcptFilter', '__C_specific_handler', '__getmainargs', '_purecall', '??2@YAPEAX_K@Z', '_wtol', 'memmove', 'wcstok', '_wcsicmp', '??3@YAXPEAX@Z', '_ismbblead', 'wcschr', '_vsnwprintf', 'CommandLineToArgvW', 'ShellExecuteExW', 'SHGetFileInfoW', 'SHGetStockIconInfo', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoDisconnectObject', 'CoCreateInstance', 'CoInitializeEx', 'CoInitializeSecurity', 'SysStringLen', 'VariantClear', 'VariantInit', 'VariantTimeToSystemTime', 'SysFreeString', 'SysAllocString', 'SystemTimeToVariantTime', 'ImageList_AddMasked', 'ImageList_Add', 'ImageList_ReplaceIcon', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControlsEx', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'WinSqmAddToStream', 'RtlAllocateHeap', 'RtlFreeHeap', 'RtlGetLastNtStatus', 'EtwTraceMessage', 'GetStorageDependencyInformation', 'SxTracerDebuggerBreak', 'SxTracerShouldTrackFailure', 'SxTracerGetThreadContextRetail'], ['GetFileAttributesA', 'GetFileSize', 'GetFileTime', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'HeapAlloc', 'RtlUnwind', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'RaiseException', 'HeapFree', 'CreateThread', 'ExitThread', 'TerminateProcess', 'HeapReAlloc', 'HeapSize', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetACP', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'VirtualAlloc', 'IsBadWritePtr', 'SetErrorMode', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'Sleep', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetVersionExA', 'SetConsoleCtrlHandler', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetLocaleInfoW', 'CopyFileA', 'GlobalSize', 'GetShortPathNameA', 'GetThreadLocale', 'GetStringTypeExA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'SizeofResource', 'GetLastError', 'GlobalFlags', 'GetProcessVersion', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GetTickCount', 'GetModuleFileNameA', 'GlobalAlloc', 'lstrcmpA', 'GetCurrentThread', 'CreateEventA', 'SuspendThread', 'InterlockedExchange', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'MulDiv', 'SetLastError', 'FormatMessageA', 'LocalFree', 'InterlockedDecrement', 'lstrcpynA', 'lstrlenW', 'WideCharToMultiByte', 'lstrlenA', 'MultiByteToWideChar', 'InterlockedIncrement', 'LoadLibraryA', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'lstrcmpiA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcpyA', 'GetModuleHandleA', 'GetProcAddress', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'UnhandledExceptionFilter', 'LoadResource', 'GetClassNameA', 'PtInRect', 'GetDesktopWindow', 'GetDialogBaseUnits', 'DestroyIcon', 'InsertMenuA', 'DeleteMenu', 'GetMenuStringA', 'SetCapture', 'ReleaseCapture', 'WaitMessage', 'GetWindowThreadProcessId', 'WindowFromPoint', 'PostThreadMessageA', 'CharUpperA', 'wvsprintfA', 'SetRectEmpty', 'LoadMenuA', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'InvalidateRect', 'BringWindowToTop', 'TranslateMessage', 'ValidateRect', 'GetCursorPos', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'DestroyMenu', 'LoadStringA', 'OemToCharA', 'CharToOemA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'PostMessageA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'PeekMessageA', 'GetSysColorBrush', 'SetFocus', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'IsWindowVisible', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'GetKeyState', 'DefWindowProcA', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetMessagePos', 'GetLastActivePopup', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'SetWindowLongA', 'SetWindowPos', 'RegisterWindowMessageA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'EndDialog', 'LoadCursorA', 'RegisterClipboardFormatA', 'SetCursor', 'ShowOwnedPopups', 'PostQuitMessage', 'DispatchMessageA', 'GetMessageA', 'GetActiveWindow', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetParent', 'GetNextDlgTabItem', 'TranslateAcceleratorA', 'IsIconic', 'SendMessageA', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSystemMenu', 'AppendMenuA', 'RemoveMenu', 'LoadIconA', 'LoadAcceleratorsA', 'EnableWindow', 'LoadStringW', 'MessageBoxA', 'UnregisterClassA', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'ArcTo', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontIndirectA', 'CopyMetaFileA', 'CreateDCA', 'GetCurrentPositionEx', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'LineTo', 'MoveToEx', 'GetDeviceCaps', 'PlayMetaFile', 'EnumMetaFile', 'GetObjectType', 'PlayMetaFileRecord', 'ExtSelectClipRgn', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'DeleteObject', 'PolyBezierTo', 'SetColorAdjustment', 'PolylineTo', 'PolyDraw', 'Escape', 'CreateBitmap', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SelectPalette', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'StartDocA', 'DeleteDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'SetArcDirection', 'GetSaveFileNameA', 'GetFileTitleA', 'GetOpenFileNameA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegQueryValueExA', 'RegCreateKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'SetFileSecurityW', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegSetValueA', 'RegOpenKeyA', 'RegCloseKey', 'DragFinish', 'SHGetFileInfoA', 'ExtractIconA', 'DragAcceptFiles', 'CommandLineToArgvW', 'DragQueryFileA', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CreateBindCtx', 'OleDuplicateData', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'OleSetClipboard', 'ReleaseStgMedium', 'CoGetClassObject', 'OleRegGetUserType', 'CoCreateInstance', 'CoTaskMemAlloc', 'StringFromCLSID', 'CoTaskMemFree', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'CoDisconnectObject', 'CoRevokeClassObject', 'CoRegisterClassObject', 'ReadFmtUserTypeStg', 'ReadClassStg', 'CoTreatAsClass', 'CLSIDFromProgID', 'CLSIDFromString', 'OleRun', 'CoRegisterMessageFilter', 'CreateStreamOnHGlobal', 'LoadTypeLib', 'SafeArrayDestroyDescriptor', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCopy', 'VarBstrFromDate', 'VarDateFromStr', 'VarBstrFromCy', 'VarCyFromStr', 'SafeArrayRedim', 'SafeArrayCreate', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SysAllocStringByteLen', 'SysStringLen', 'SysAllocString', 'SysReAllocStringLen', 'SysAllocStringLen', 'VariantChangeType', 'VariantClear', 'VariantCopy', 'SysStringByteLen', 'SysFreeString', 'RegisterActiveObject', 'RevokeActiveObject'], ['GetFileAttributesA', 'CreateFileA', 'CloseHandle', 'GetSystemInfo', 'CreateThread', 'HeapAlloc', 'GetThreadContext', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetLastError', 'ReadProcessMemory', 'GetProcessHeap', 'CreateProcessA', 'CreateDirectoryA', 'SetThreadContext', 'WriteConsoleW', 'ReadConsoleW', 'SetEndOfFile', 'SetFilePointerEx', 'GetTempPathA', 'Sleep', 'SetCurrentDirectoryA', 'GetModuleHandleA', 'GetComputerNameExW', 'ResumeThread', 'GetVersionExW', 'CreateMutexA', 'VirtualAlloc', 'WriteFile', 'VirtualFree', 'HeapFree', 'WriteProcessMemory', 'GetModuleFileNameA', 'RemoveDirectoryA', 'ReadFile', 'HeapReAlloc', 'HeapSize', 'GetTimeZoneInformation', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetStringTypeW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'SetStdHandle', 'GetFullPathNameW', 'GetCurrentDirectoryW', 'DeleteFileW', 'LCMapStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RaiseException', 'SetLastError', 'RtlUnwind', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetModuleFileNameW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'CompareStringW', 'DecodePointer', 'GetSystemMetrics', 'ReleaseDC', 'GetDC', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'DeleteObject', 'BitBlt', 'RegCloseKey', 'RegGetValueA', 'RegQueryValueExA', 'GetUserNameA', 'RegSetValueExA', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'GetUserNameW', 'LookupAccountNameW', 'SHGetFolderPathA', 'ShellExecuteA', 'SHFileOperationA', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetOpenA', 'HttpAddRequestHeadersA', 'HttpSendRequestExW', 'HttpEndRequestA', 'InternetOpenW', 'InternetOpenUrlA', 'InternetWriteFile', 'GdipSaveImageToFile', 'GdipGetImageEncodersSize', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncoders', 'GdiplusShutdown', 'GdiplusStartup'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', 'DllFunctionCall', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['__vbaVarSub', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaStrI4', '__vbaVarMove', '__vbaVarVargNofree', '__vbaAryMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaLineInputVar', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaLenBstrB', '__vbaNameFile', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaVarPow', '__vbaExitProc', '__vbaVarForInit', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaBoolVar', '__vbaBoolVarNull', '_CIsin', '__vbaErase', '__vbaVarCmpGt', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaGet3', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaObjVar', '__vbaI2I4', 'DllFunctionCall', '__vbaVarOr', '__vbaLbound', '__vbaRedimPreserve', '_adj_fpatan', '__vbaStrR8', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaExceptHandler', '__vbaStrToUnicode', '__vbaPrintFile', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaInStrVar', '__vbaUbound', '__vbaStrVarVal', '__vbaVarCat', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaVar2Vec', '__vbaInStr', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarNot', '__vbaVarCmpLt', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarSetVar', '__vbaI4Var', '__vbaAryLock', '__vbaLateMemCall', '__vbaVarAdd', '__vbaStrToAnsi', '__vbaVarDup', '__vbaFpI2', '__vbaFpI4', '__vbaVarCopy', '__vbaVarSetObjAddref', '__vbaLateMemCallLd', '_CIatan', '__vbaAryCopy', '__vbaStrMove', '__vbaI4Cy', '__vbaStrVarCopy', '_allmul', '_CItan', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaStrCy', '__vbaFreeObj', '__vbaFreeStr'], ['QueryPerformanceCounter', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'WriteFile', 'LoadLibraryW', 'CreateFileW', 'HeapFree', 'Sleep', 'DeleteCriticalSection', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'IsProcessorFeaturePresent', 'GetCurrentProcess', 'TerminateProcess', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetTickCount', 'GetCurrentThreadId', 'SetLastError', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'EncodePointer', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCPInfo', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineA', 'DecodePointer', 'ExitProcess', 'GetModuleHandleW', 'GetSystemTimeAsFileTime', 'GetConsoleMode', 'SetConsoleMode', 'GetCurrentProcessId', 'RaiseException', 'LCMapStringW', 'GetStringTypeW', 'RtlUnwind', 'HeapReAlloc', 'GetConsoleCP', 'FlushFileBuffers', 'WriteConsoleW', 'HeapSize', 'SetFilePointer', 'lstrcpyA', 'LocalFree', 'CloseHandle', 'GetVersionExA', 'OutputDebugStringA', 'CompareStringA', 'GetModuleHandleA', 'FindNextFileA', 'DeviceIoControl', 'LoadLibraryA', 'ResetEvent', 'FindClose', 'GlobalFree', 'GetProcAddress', 'GetLastError', 'FindFirstFileA', 'GetStdHandle', 'SetCurrentDirectoryA', 'GlobalUnlock', 'GetOverlappedResult', 'lstrcatA', 'CreateFileA', 'ReadFile', 'HeapCreate', 'CreateEventA', 'ReadConsoleInputA', 'GlobalAlloc', 'FlushConsoleInputBuffer', 'WaitForSingleObject', 'GlobalLock', 'HeapAlloc', 'GetNumberOfConsoleInputEvents', 'GetLocaleInfoA', 'lstrlenA', 'lstrcmpA', 'LeaveCriticalSection', 'EnterCriticalSection', 'MultiByteToWideChar', 'GetFileSize', 'SetStdHandle', 'OpenClipboard', 'GetDialogBaseUnits', 'ModifyMenuA', 'GetWindow', 'MoveWindow', 'DispatchMessageA', 'IsWindow', 'AppendMenuA', 'CreatePopupMenu', 'ShowWindow', 'SystemParametersInfoA', 'GetCursorPos', 'SetWindowPos', 'DefWindowProcA', 'EndDialog', 'GetDlgItem', 'EmptyClipboard', 'EnableMenuItem', 'ReleaseDC', 'PeekMessageA', 'CreateWindowExA', 'GetSystemMetrics', 'SetWindowTextA', 'EnableWindow', 'SetClipboardData', 'CallWindowProcA', 'SetMenuItemInfoA', 'GetDlgItemTextA', 'GetDlgCtrlID', 'SetLayeredWindowAttributes', 'LoadCursorA', 'EndPaint', 'DestroyWindow', 'SetCursor', 'CloseClipboard', 'SetWindowRgn', 'GetSystemMenu', 'SetTimer', 'GetWindowRect', 'InsertMenuItemA', 'PostQuitMessage', 'TrackPopupMenu', 'FillRect', 'GetKeyState', 'GetSubMenu', 'DrawIconEx', 'LoadStringA', 'CopyImage', 'IsClipboardFormatAvailable', 'GetParent', 'LoadMenuA', 'wsprintfA', 'GetClientRect', 'SetFocus', 'SendMessageA', 'BeginPaint', 'GetDC', 'TranslateMessage', 'GetMenu', 'GetWindowTextA', 'TrackPopupMenuEx', 'SetWindowLongA', 'MessageBoxA', 'InvalidateRect', 'GetWindowLongA', 'GetBitmapBits', 'MoveToEx', 'EndPage', 'BitBlt', 'PatBlt', 'SetViewportOrgEx', 'SetWindowExtEx', 'StartPage', 'SetTextColor', 'DeleteDC', 'CreateFontA', 'GetDeviceCaps', 'StretchBlt', 'CreateFontIndirectA', 'SetBkColor', 'CreateDCA', 'SetPixel', 'SetAbortProc', 'CreateBitmap', 'SetBkMode', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CombineRgn', 'SetMapMode', 'CreateCompatibleBitmap', 'Rectangle', 'StartDocA', 'Ellipse', 'FillRgn', 'SaveDC', 'CreateRectRgn', 'CreatePen', 'SetTextAlign', 'GetPixel', 'GetObjectA', 'EndDoc', 'GetStockObject', 'RestoreDC', 'CreateSolidBrush', 'EnumFontsA', 'TextOutA', 'LineTo', 'AllocateAndInitializeSid', 'RegCloseKey', 'AreAnyAccessesGranted', 'SHChangeNotify', 'SHGetSpecialFolderLocation', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'StgOpenStorage', 'CoInitialize', 'WriteClassStg', 'StgCreateDocfile', 'ReadClassStg', 'CreateStreamOnHGlobal', 'OleSavePictureFile', 'OleLoadPicture', 'GetWsChanges', 'waveOutPrepareHeader', 'waveOutClose', 'waveOutUnprepareHeader', 'waveOutOpen', 'waveOutWrite', 'RpcServerUseProtseqEpA', 'RpcServerListen', 'RpcServerRegisterIf2', 'GdipSaveImageToFile', 'GdipCreateFromHDC', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDrawEllipseI', 'GdipDeleteGraphics', 'GdipDeletePen', 'GdipFree', 'GdiplusShutdown', 'GdipDrawLineI', 'GdipCreatePen1', 'GdipDrawRectangleI', 'GdiplusStartup', 'GdipAlloc', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'SetupDiOpenDeviceInterfaceRegKey', 'SetupDiGetDeviceRegistryPropertyA', 'SetupDiDestroyDeviceInfoList'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaI2I4', '__vbaObjVar', '__vbaVarLateMemSt', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaLenBstrB', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '__vbaRedimPreserve', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaUI1I4', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['CryptEncrypt', 'CertOpenStore', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'NetWkstaGetInfo', 'IdnToAscii', 'SHGetFolderPathA', 'ShowWindow', 'listen'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaObjVar', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarAdd', '__vbaLateMemCall', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetModuleHandleA', 'GetProcAddress', 'ExitProcess', 'LoadLibraryA', 'MessageBoxA', 'RegCloseKey', 'SysFreeString', 'CreateFontA', 'ShellExecuteA', 'GetFileVersionInfoA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_controlfp', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_beginthread', 'rand', 'fgetc', 'fputc', 'fwrite', 'rename', 'fopen', 'fseek', 'fread', 'fclose', '_stat', '__CxxFrameHandler', '_mbscmp', 'GetCurrentThread', 'GetCurrentProcess', 'SetPriorityClass', 'lstrcatA', 'lstrcpyA', 'GetEnvironmentVariableA', 'GetShortPathNameA', 'GetModuleFileNameA', 'GetFileAttributesA', 'DeleteFileA', 'SetFileAttributesA', 'GetSystemDirectoryA', 'WaitForSingleObject', 'CreateProcessA', 'Sleep', 'GetLogicalDrives', 'GetModuleHandleA', 'GetStartupInfoA', 'SetThreadPriority', 'LoadIconA', 'MessageBoxA', 'ShellExecuteExA', 'SHChangeNotify'], ['HeapReAlloc', 'TerminateProcess', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetCommandLineA', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'HeapAlloc', 'RtlUnwind', 'HeapFree', 'GetOEMCP', 'GetCPInfo', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GlobalFlags', 'WritePrivateProfileStringA', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'InterlockedDecrement', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcatA', 'lstrcmpW', 'FreeResource', 'CloseHandle', 'GlobalAddAtomA', 'GetCurrentThread', 'GetCurrentThreadId', 'FreeLibrary', 'GlobalDeleteAtom', 'lstrcmpA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetProcAddress', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'LoadLibraryA', 'SetLastError', 'GlobalFree', 'MulDiv', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'lstrcpynA', 'LocalFree', 'ExitProcess', 'WriteConsoleA', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'GetLastError', 'lstrlenA', 'lstrcmpiA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetVersionExA', 'GetTickCount', 'InterlockedExchange', 'DestroyMenu', 'LoadCursorA', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'wsprintfA', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSysColor', 'AdjustWindowRectEx', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'SetWindowPlacement', 'GetClassInfoExA', 'LoadIconA', 'EnableWindow', 'ShowWindow', 'SendMessageA', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'CopyRect', 'PtInRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetFocus', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetWindowsHookExA', 'CallNextHookEx', 'UnhookWindowsHookEx', 'GetSubMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'PostMessageA', 'PostQuitMessage', 'SetCursor', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongA', 'GetParent', 'MessageBoxA', 'ValidateRect', 'GetCursorPos', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetStockObject', 'DeleteDC', 'RectVisible', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'CreateFontW', 'PtVisible', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetDeviceCaps', 'TextOutA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegEnumKeyA', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['TraceMessage', 'GetTraceLoggerHandle', 'GetTraceEnableLevel', 'GetTraceEnableFlags', 'RegisterTraceGuidsW', 'UnregisterTraceGuids', 'RegCreateKeyExW', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegDeleteKeyExW', 'EventRegister', 'EventWrite', 'EventUnregister', 'RegGetValueW', 'RegQueryValueExW', 'GetCurrentProcessId', 'GlobalDeleteAtom', 'HeapAlloc', 'GetProcessHeap', 'GetSystemDirectoryW', 'GetLocaleInfoW', 'UnhandledExceptionFilter', 'FormatMessageW', 'GlobalAddAtomW', 'GetTickCount64', 'GetTickCount', 'ReleaseMutex', 'RegisterApplicationRestart', 'SetProcessShutdownParameters', 'CloseHandle', 'GetLastError', 'CreateMutexW', 'Sleep', 'CompareStringW', 'GetModuleHandleW', 'IsProcessInJob', 'GetCurrentProcess', 'GetCurrentThreadId', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'HeapSetInformation', 'SetStretchBltMode', 'CombineRgn', 'CreateRectRgn', 'LineTo', 'MoveToEx', 'SetBkMode', 'SetTextColor', 'CreateSolidBrush', 'StretchBlt', 'GetStockObject', 'CreateCompatibleBitmap', 'GetObjectW', 'CreateCompatibleDC', 'DeleteDC', 'SelectObject', 'DeleteObject', 'CreateBrushIndirect', 'CreateBitmap', 'GetAsyncKeyState', 'FindWindowW', 'PostMessageW', 'CallNextHookEx', 'LoadStringW', 'SetForegroundWindow', 'SetWindowsHookExW', 'SystemParametersInfoW', 'UnhookWindowsHookEx', 'ShowSystemCursor', 'GetSystemMetrics', 'GetWindowLongW', 'GetAncestor', 'PtInRect', 'EqualRect', 'GetDesktopWindow', 'GetWindowRect', 'IsRectEmpty', 'OffsetRect', 'MonitorFromPoint', 'GetMonitorInfoW', 'CopyRect', 'RemovePropW', 'CloseDesktop', 'GetUserObjectInformationW', 'GetThreadDesktop', 'SetWindowPlacement', 'SendInput', 'CheckMenuRadioItem', 'InsertMenuItemW', 'GetMessagePos', 'GetKeyState', 'WindowFromPhysicalPoint', 'ShowWindow', 'SetTimer', 'KillTimer', 'ClipCursor', 'DestroyWindow', 'IsWindow', 'GetPhysicalCursorPos', 'CreateWindowExW', 'UnionRect', 'RegisterClassExW', 'UpdateWindow', 'IsIconic', 'MonitorFromRect', 'DefWindowProcW', 'GetGUIThreadInfo', 'SetRect', 'InflateRect', 'IntersectRect', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'LoadCursorW', 'SetWindowRgn', 'RegisterClassW', 'FillRect', 'CreatePopupMenu', 'GetDoubleClickTime', 'SendMessageTimeoutW', 'RealGetWindowClassW', 'GetClassNameW', 'SetWinEventHook', 'UnhookWinEvent', 'SetDlgItemTextW', 'SetCursor', 'TrackPopupMenu', 'PostQuitMessage', 'SetMagnificationDesktopMagnification', 'SetMagnificationDesktopColorEffect', 'SetLayeredWindowAttributes', 'SetPropW', 'GetParent', 'GetDlgCtrlID', 'MapWindowPoints', 'EnableWindow', 'MonitorFromWindow', 'SetFocus', 'CheckDlgButton', 'SendDlgItemMessageW', 'LoadImageW', 'GetSysColor', 'CreateDialogParamW', 'GetDlgItem', 'GetCursorPos', 'GetWindowThreadProcessId', 'UpdateLayeredWindow', 'ReleaseDC', 'GetDC', 'IsWindowEnabled', 'GetForegroundWindow', 'GetCapture', 'DispatchMessageW', 'TranslateMessage', 'IsDialogMessageW', 'GetMessageW', 'RegisterHotKey', 'UnregisterHotKey', 'SetRectEmpty', 'GetWindow', 'SetWindowPos', 'AdjustWindowRectEx', 'IsWindowVisible', 'SendMessageW', 'LoadIconW', 'SetWindowLongW', 'SetPhysicalCursorPos', 'EnumDisplayMonitors', 'InvalidateRect', 'EndDeferWindowPos', 'DeferWindowPos', 'BeginDeferWindowPos', 'AdjustWindowRect', 'GetClientRect', 'EndPaint', 'BeginPaint', 'memset', 'memcpy', 'ceilf', '?terminate@@YAXXZ', '__set_app_type', '_fmode', '_commode', '__setusermatherr', '_amsg_exit', '_initterm', '_wcmdln', 'exit', '_cexit', '_exit', '_XcptFilter', '__C_specific_handler', '__wgetmainargs', '_vsnwprintf', '_purecall', '??2@YAPEAX_K@Z', 'wcstok', '??3@YAXPEAX@Z', '_wcsicmp', 'ceil', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'AccessibleObjectFromEvent', 'AccessibleObjectFromWindow', 'GdipCreateHBITMAPFromBitmap', 'GdipCreateBitmapFromStream', 'GdipCloneImage', 'GdipDisposeImage', 'GdipFillPolygonI', 'GdipFillRectangleI', 'GdipDrawPolygonI', 'GdipSetSmoothingMode', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdipDeletePen', 'GdipCreatePen1', 'GdipCreateSolidFill', 'GdipDeleteBrush', 'GdipAlloc', 'GdipFree', 'GdiplusShutdown', 'GdiplusStartup', 'SHAppBarMessage', 'ShellExecuteW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'WinSqmAddToStream', 'WinSqmSetDWORD', 'WinSqmIsOptedIn', 'WinSqmIncrementDWORD', 'StrCmpW', 'DwmSetWindowAttribute', 'DwmIsCompositionEnabled', 'InitProcessPriv', 'InitThread', 'UnInitProcessPriv', 'UnInitThread', '??0NativeHWNDHost@DirectUI@@QEAA@XZ', '??1NativeHWNDHost@DirectUI@@UEAA@XZ', '?Initialize@NativeHWNDHost@DirectUI@@QEAAJPEBG0PEAUHWND__@@PEAUHICON__@@HHHHHHPEAUHINSTANCE__@@I@Z', '?EndDefer@Element@DirectUI@@QEAAXK@Z', '?FindDescendent@Element@DirectUI@@QEAAPEAV12@G@Z', 'StrToID', '?SetContentString@Element@DirectUI@@QEAAJPEBG@Z', '?DestroyWindow@NativeHWNDHost@DirectUI@@QEAAXXZ', '?WndProc@HWNDElement@DirectUI@@UEAA_JPEAUHWND__@@I_K_J@Z', '?CanSetFocus@HWNDElement@DirectUI@@UEAA_NXZ', '?OnCompositionChanged@HWNDElement@DirectUI@@UEAAXXZ', '?OnWmThemeChanged@HWNDElement@DirectUI@@UEAAX_K_J@Z', '?OnGetDlgCode@HWNDElement@DirectUI@@UEAAXPEAUtagMSG@@PEA_J@Z', '?OnNoChildWithShortcutFound@HWNDElement@DirectUI@@UEAAXPEAUKeyboardEvent@2@@Z', '?OnThemeChanged@HWNDElement@DirectUI@@UEAAXPEAUThemeChangedEvent@2@@Z', '?GetHWND@HWNDElement@DirectUI@@UEAAPEAUHWND__@@XZ', '?HandleUiaEventListener@Element@DirectUI@@UEAAXPEAUEvent@2@@Z', '?HandleUiaPropertyChangingListener@Element@DirectUI@@UEAAXPEBUPropertyInfo@2@@Z', '?HandleUiaPropertyListener@Element@DirectUI@@UEAAXPEBUPropertyInfo@2@HPEAVValue@2@1@Z', '?HandleUiaDestroyListener@Element@DirectUI@@UEAAXXZ', '?GetElementProviderImpl@Element@DirectUI@@UEAAJPEAVInvokeHelper@2@PEAPEAVElementProvider@2@@Z', '?DefaultAction@Element@DirectUI@@UEAAJXZ', '?GetAccessibleImpl@HWNDElement@DirectUI@@UEAAJPEAPEAUIAccessible@@@Z', '?GetClassInfoW@HWNDElement@DirectUI@@UEAAPEAUIClassInfo@2@XZ', '?GetKeyFocused@Element@DirectUI@@UEAA_NXZ', '?RemoveTooltip@HWNDElement@DirectUI@@UEAAXPEAVElement@2@@Z', '?ActivateTooltip@HWNDElement@DirectUI@@UEAAXPEAVElement@2@K@Z', '?UpdateTooltip@HWNDElement@DirectUI@@UEAAXPEAVElement@2@@Z', '?OnUnHosted@Element@DirectUI@@MEAAXPEAV12@@Z', '?OnHosted@Element@DirectUI@@MEAAXPEAV12@@Z', '?_SelfLayoutUpdateDesiredSize@Element@DirectUI@@MEAA?AUtagSIZE@@HHPEAVSurface@2@@Z', '?_SelfLayoutDoLayout@Element@DirectUI@@MEAAXHH@Z', '?QueryInterface@Element@DirectUI@@UEAAJAEBU_GUID@@PEAPEAX@Z', '?MessageCallback@Element@DirectUI@@UEAAIPEAUtagGMSG@@@Z', '?SetKeyFocus@Element@DirectUI@@UEAAXXZ', '?GetClassInfoPtr@CCPushButton@DirectUI@@SAPEAUIClassInfo@2@XZ', '?GetKeyFocusedElement@HWNDElement@DirectUI@@SAPEAVElement@2@XZ', '?GetLocation@Element@DirectUI@@QEAAPEBUtagPOINT@@PEAPEAVValue@2@@Z', '?Click@Button@DirectUI@@SA?AVUID@@XZ', '?SetEnabled@Element@DirectUI@@QEAAJ_N@Z', '?SetLayoutPos@Element@DirectUI@@QEAAJH@Z', '??0HWNDElement@DirectUI@@QEAA@XZ', '?OnEvent@HWNDElement@DirectUI@@UEAAXPEAUEvent@2@@Z', '?Destroy@DUIXmlParser@DirectUI@@QEAAXXZ', '?SetXMLFromResource@DUIXmlParser@DirectUI@@QEAAJIPEAUHINSTANCE__@@0@Z', '?Create@DUIXmlParser@DirectUI@@SAJPEAPEAV12@P6APEAVValue@2@PEBGPEAX@Z2P6AX11H2@Z2@Z', '?GetExtent@Element@DirectUI@@QEAAPEBUtagSIZE@@PEAPEAVValue@2@@Z', '?OnGroupChanged@HWNDElement@DirectUI@@UEAAXH_N@Z', '?Add@Element@DirectUI@@QEAAJPEAV12@@Z', '?LoadFromResource@DUIFactory@DirectUI@@QEAAJPEAUHINSTANCE__@@PEBG1PEAVElement@2@PEAKPEAPEAV42@1@Z', '?Destroy@Layout@DirectUI@@QEAAXXZ', '?SetLayout@Element@DirectUI@@QEAAJPEAVLayout@2@@Z', '?Create@FillLayout@DirectUI@@SAJPEAPEAVLayout@2@@Z', '?DoubleBuffered@Element@DirectUI@@QEAAX_N@Z', '?Host@NativeHWNDHost@DirectUI@@QEAAXPEAVElement@2@@Z', '?SetAccessible@Element@DirectUI@@QEAAJ_N@Z', '?SetActive@Element@DirectUI@@QEAAJH@Z', '?Release@Value@DirectUI@@QEAAXXZ', '?SetVisible@Element@DirectUI@@QEAAJ_N@Z', '?Initialize@HWNDElement@DirectUI@@QEAAJPEAUHWND__@@_NIPEAVElement@2@PEAK@Z', '?Register@HWNDElement@DirectUI@@SAJXZ', '?Destroy@Element@DirectUI@@QEAAJ_N@Z', '??1DUIFactory@DirectUI@@QEAA@XZ', '??1HWNDElement@DirectUI@@UEAA@XZ', '?IsRTLReading@Element@DirectUI@@UEAA_NXZ', '?IsContentProtected@Element@DirectUI@@UEAA_NXZ', '?GetContentStringAsDisplayed@Element@DirectUI@@UEAAPEBGPEAPEAVValue@2@@Z', '?OnPropertyChanging@Element@DirectUI@@UEAA_NPEBUPropertyInfo@2@HPEAVValue@2@1@Z', '?OnPropertyChanging@Element@DirectUI@@UEAA_NPEAUPropertyInfo@2@HPEAVValue@2@1@Z', '?OnPropertyChanged@HWNDElement@DirectUI@@UEAAXPEBUPropertyInfo@2@HPEAVValue@2@1@Z', '?OnPropertyChanged@Element@DirectUI@@UEAAXPEAUPropertyInfo@2@HPEAVValue@2@1@Z', '?OnInput@HWNDElement@DirectUI@@UEAAXPEAUInputEvent@2@@Z', '?OnKeyFocusMoved@Element@DirectUI@@UEAAXPEAV12@0@Z', '?OnMouseFocusMoved@Element@DirectUI@@UEAAXPEAV12@0@Z', '?OnDestroy@HWNDElement@DirectUI@@UEAAXXZ', '?Paint@Element@DirectUI@@UEAAXPEAUHDC__@@PEBUtagRECT@@1PEAU4@2@Z', '?GetContentSize@Element@DirectUI@@UEAA?AUtagSIZE@@HHPEAVSurface@2@@Z', '?Add@Element@DirectUI@@UEAAJPEAPEAV12@I@Z', '?Insert@Element@DirectUI@@UEAAJPEAPEAV12@II@Z', '?Remove@Element@DirectUI@@UEAAJPEAPEAV12@I@Z', '?GetAdjacent@Element@DirectUI@@UEAAPEAV12@PEAV12@HPEBUNavReference@2@K@Z', '?EnsureVisible@Element@DirectUI@@UEAA_NHHHH@Z'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'SetRectEmpty', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'SetStretchBltMode', 'LPtoDP', 'GetClipRgn', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['CryptStringToBinaryA', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetLastError', 'LoadLibraryW', 'GetProcAddress', 'GetCurrentProcess', 'EndDialog', 'RegisterClassExA', 'LoadCursorA', 'SendDlgItemMessageA', 'IsDlgButtonChecked', 'GetDlgItemInt', 'PostQuitMessage', 'DialogBoxParamA', 'MessageBoxA', 'EnableWindow', 'LoadStringA', 'LoadAcceleratorsA', 'GetMessageA', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'CreateWindowExA', 'BeginPaint', 'EndPaint', 'KillTimer', 'DefWindowProcA', 'SendMessageA', 'InSendMessage', 'CreateWindowExW', 'GetWindowLongA', 'LoadIconA', 'PostMessageA', 'SetDlgItemInt', 'SetDlgItemTextA', 'GetDlgItem', 'ShowWindow', 'GetClientRect', 'InvalidateRect', 'SetTimer', 'TextOutA', 'SetTextColor', 'SetBkMode', 'Ellipse', 'CreateSolidBrush', 'SelectObject', 'CreatePen', 'Rectangle', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z', '?str@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ', '??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ', '??$?HDU?$char_traits@D@std@@V?$allocator@D@1@@std@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?_Unlock@_Mutex@std@@QAEXXZ', '?_Lock@_Mutex@std@@QAEXXZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '_configthreadlocale', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '_encode_pointer', '__set_app_type', '?terminate@@YAXXZ', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_crt_debugger_hook', '_initterm', '_unlock', '__dllonexit', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', '_invoke_watson', '_controlfp_s', '_initterm_e', '??1exception@std@@UAE@XZ', '??3@YAXPAX@Z', '??0exception@std@@QAE@XZ', '__CxxFrameHandler3', '_CIpow', '_invalid_parameter_noinfo', '??2@YAPAXI@Z', '_CxxThrowException', '??0exception@std@@QAE@ABV01@@Z', 'malloc', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter', '_ismbblead', 'exit', '_acmdln'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaErase', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['HeapAlloc', 'GetCommandLineA', 'RaiseException', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'Sleep', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapFree', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'RtlUnwind', 'GetTickCount', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetModuleHandleW', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedDecrement', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'GetVersionExA', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeEnvironmentStringsA', 'FreeLibrary', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'DestroyMenu', 'SetWindowContextHelpId', 'MapDialogRect', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GetCursorPos', 'WindowFromPoint', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'GetKeyState', 'SetMenu', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'EnableWindow', 'SendMessageA', 'GetClientRect', 'ReleaseCapture', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'SetMenuItemBitmaps', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'CharNextA', 'CharUpperA', 'GetClassNameA', 'PtInRect', 'InvalidateRect', 'SetCapture', 'SetCursor', 'GetSysColor', 'IsWindow', 'InflateRect', 'GetWindowRect', 'GetDC', 'ReleaseDC', 'GetParent', 'CopyIcon', 'LoadCursorA', 'MessageBeep', 'SetWindowRgn', 'GetSysColorBrush', 'DrawStateA', 'GetFocus', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'RedrawWindow', 'PostMessageA', 'ScreenToClient', 'ChildWindowFromPoint', 'LoadIconA', 'AppendMenuA', 'GetSystemMenu', 'GetSystemMetrics', 'DrawIcon', 'IsIconic', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'SelectObject', 'GetMapMode', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateFontIndirectA', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'DeleteObject', 'BitBlt', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'Ellipse', 'FillRgn', 'CreateEllipticRgnIndirect', 'CreateSolidBrush', 'SetPixelV', 'GetTextExtentPoint32A', 'GetStockObject', 'GetObjectA', 'GetFileTitleA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCloseKey', 'ShellExecuteA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'CoRevokeClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'OleIsCurrentClipboard', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'VariantCopy', 'SafeArrayDestroy', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'OleCreateFontIndirect', 'SysAllocString', 'VariantClear'], ['FileTimeToLocalFileTime', 'FindClose', 'OpenFileMappingA', 'SetEnvironmentVariableA', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetStdHandle', 'GetTimeZoneInformation', 'GetLocaleInfoW', 'GetConsoleMode', 'GetConsoleCP', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidCodePage', 'IsValidLocale', 'GetDateFormatA', 'GetTimeFormatA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'LoadLibraryW', 'SetConsoleCtrlHandler', 'GetACP', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'HeapReAlloc', 'FatalAppExitA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'OutputDebugStringW', 'GetFileType', 'WriteConsoleW', 'OutputDebugStringA', 'GetStdHandle', 'DebugBreak', 'ExitThread', 'CreateThread', 'ExitProcess', 'GetStartupInfoA', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetCommandLineA', 'VirtualQuery', 'VirtualAlloc', 'IsBadReadPtr', 'HeapValidate', 'RaiseException', 'RtlUnwind', 'GetTickCount', 'FindResourceExA', 'FileTimeToSystemTime', 'SetFileAttributesA', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetShortPathNameA', 'GetThreadLocale', 'GetVolumeInformationA', 'DeleteFileA', 'MoveFileA', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'ReadFile', 'GetCurrentProcess', 'DuplicateHandle', 'GetHandleInformation', 'GetCurrentDirectoryA', 'GetOEMCP', 'GetCPInfo', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'GetProfileIntA', 'VirtualProtect', 'GetAtomNameA', 'InterlockedDecrement', 'GetModuleFileNameW', 'GlobalFlags', 'SetErrorMode', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'CreateEventA', 'SetEvent', 'WaitForSingleObject', 'lstrcmpA', 'GetCurrentThread', 'GetLocaleInfoA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'MulDiv', 'GlobalFree', 'GlobalSize', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'SuspendThread', 'ResumeThread', 'GetThreadPriority', 'SetThreadPriority', 'FreeResource', 'lstrcmpW', 'FreeLibrary', 'GetCurrentThreadId', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetVersionExA', 'GlobalLock', 'GlobalUnlock', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GetCurrentProcessId', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'SetLastError', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'WideCharToMultiByte', 'lstrlenW', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'InterlockedExchange', 'GetVersion', 'GetEnvironmentVariableW', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CopyFileA', 'Sleep', 'WriteFile', 'FlushViewOfFile', 'GetSystemInfo', 'UnmapViewOfFile', 'CreateFileA', 'GetLastError', 'CreateFileMappingA', 'CloseHandle', 'MapViewOfFile', 'FindFirstFileA', 'OpenEventA', 'MapVirtualKeyA', 'GetKeyNameTextA', 'GetAsyncKeyState', 'CheckMenuRadioItem', 'GetMenuContextHelpId', 'SetMenuContextHelpId', 'LoadMenuIndirectA', 'InsertMenuItemA', 'SetMenuItemInfoA', 'GetMenuItemInfoA', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'EnableMenuItem', 'CheckMenuItem', 'DeleteMenu', 'CreatePopupMenu', 'CreateMenu', 'ScrollDC', 'GrayStringA', 'GetTabbedTextExtentA', 'DrawTextExA', 'DrawTextA', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawStateA', 'DrawIcon', 'InvertRect', 'FrameRect', 'ExcludeUpdateRgn', 'WindowFromDC', 'GetSysColorBrush', 'FillRect', 'DestroyCursor', 'GetCursorPos', 'GetMessageA', 'TranslateMessage', 'PostQuitMessage', 'EndDialog', 'CreateDialogIndirectParamA', 'RemoveMenu', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'InsertMenuA', 'SetRectEmpty', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'OpenIcon', 'CloseWindow', 'LoadCursorA', 'PostThreadMessageA', 'GetWindowContextHelpId', 'SetWindowContextHelpId', 'SendNotifyMessageA', 'GetForegroundWindow', 'SetForegroundWindow', 'ShowCaret', 'HideCaret', 'SetCaretPos', 'GetCaretPos', 'CreateCaret', 'GetClipboardViewer', 'GetClipboardOwner', 'GetOpenClipboardWindow', 'OpenClipboard', 'SetClipboardViewer', 'ChangeClipboardChain', 'FlashWindow', 'WindowFromPoint', 'SetParent', 'FindWindowExA', 'FindWindowA', 'ChildWindowFromPointEx', 'ChildWindowFromPoint', 'ShowScrollBar', 'GetNextDlgTabItem', 'GetNextDlgGroupItem', 'DlgDirSelectComboBoxExA', 'DlgDirSelectExA', 'DlgDirListComboBoxA', 'DlgDirListA', 'SetCapture', 'GetClipboardFormatNameA', 'SetTimer', 'DrawCaption', 'DrawAnimatedRects', 'EnableScrollBar', 'LockWindowUpdate', 'GetDCEx', 'ShowOwnedPopups', 'IsWindowVisible', 'ValidateRgn', 'ValidateRect', 'InvalidateRgn', 'InvalidateRect', 'GetUpdateRgn', 'GetUpdateRect', 'UpdateWindow', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'GetWindowRgn', 'SetWindowRgn', 'ArrangeIconicWindows', 'IsZoomed', 'HiliteMenuItem', 'GetSystemMenu', 'DrawMenuBar', 'DragDetect', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetMenuItemBitmaps', 'MessageBoxA', 'GetClassInfoExA', 'RegisterClassA', 'SendDlgItemMessageA', 'MapWindowPoints', 'DispatchMessageA', 'SetActiveWindow', 'ScreenToClient', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'TrackPopupMenuEx', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'DestroyWindow', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'OffsetRect', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'BringWindowToTop', 'DefFrameProcA', 'TranslateMDISysAccel', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'RegisterWindowMessageA', 'GetClassInfoA', 'GetLastActivePopup', 'GetClassNameA', 'GetSysColor', 'GetFocus', 'EqualRect', 'GetDlgItem', 'GetKeyState', 'GetDialogBaseUnits', 'DestroyIcon', 'PtInRect', 'InSendMessage', 'IsRectEmpty', 'CopyAcceleratorTableA', 'UnregisterClassA', 'IsClipboardFormatAvailable', 'WaitMessage', 'RegisterClipboardFormatA', 'KillTimer', 'MsgWaitForMultipleObjects', 'IsWindowUnicode', 'GetMessageW', 'DispatchMessageW', 'SubtractRect', 'UnionRect', 'InflateRect', 'SetRect', 'TranslateAcceleratorA', 'GetMenu', 'SendMessageA', 'IsMenu', 'IsWindow', 'DefMDIChildProcA', 'SetWindowLongA', 'GetWindowLongA', 'GetClientRect', 'SetWindowPos', 'RedrawWindow', 'AdjustWindowRectEx', 'GetMenuItemID', 'GetSubMenu', 'GetMenuItemCount', 'GetParent', 'CreateWindowExA', 'MapDialogRect', 'PostMessageA', 'TabbedTextOutA', 'LoadAcceleratorsA', 'ReleaseCapture', 'GetCapture', 'PeekMessageA', 'SetCursor', 'EnableWindow', 'IsWindowEnabled', 'GetWindow', 'GetDesktopWindow', 'ShowWindow', 'GetActiveWindow', 'GetWindowThreadProcessId', 'SetFocus', 'DestroyMenu', 'LoadMenuA', 'LoadIconA', 'SetMenu', 'WinHelpA', 'ReuseDDElParam', 'UnpackDDElParam', 'GetDlgCtrlID', 'ModifyMenuA', 'OffsetRgn', 'GetRgnBox', 'PtInRegion', 'RectInRegion', 'CreateICA', 'GetBrushOrgEx', 'SetBrushOrgEx', 'EnumObjects', 'GetNearestColor', 'RealizePalette', 'UpdateColors', 'GetBkColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetMapMode', 'GetGraphicsMode', 'GetWorldTransform', 'GetViewportOrgEx', 'GetViewportExtEx', 'GetWindowOrgEx', 'GetWindowExtEx', 'DPtoLP', 'LPtoDP', 'FillRgn', 'FrameRgn', 'InvertRgn', 'PaintRgn', 'PtVisible', 'RectVisible', 'GetCurrentPositionEx', 'Arc', 'Polyline', 'Chord', 'Ellipse', 'Pie', 'Polygon', 'PolyPolygon', 'Rectangle', 'RoundRect', 'PatBlt', 'BitBlt', 'StretchBlt', 'GetPixel', 'SetPixel', 'FloodFill', 'ExtFloodFill', 'TextOutA', 'GetTextExtentPoint32A', 'GetTextAlign', 'GetTextFaceA', 'GetTextMetricsA', 'GetTextCharacterExtra', 'GetFontLanguageInfo', 'GetCharacterPlacementA', 'GetAspectRatioFilterEx', 'Escape', 'SetBoundsRect', 'GetBoundsRect', 'ResetDCA', 'GetOutlineTextMetricsA', 'GetCharABCWidthsA', 'GetFontData', 'GetKerningPairsA', 'GetGlyphOutlineA', 'StartDocA', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'MaskBlt', 'EqualRgn', 'SetPixelV', 'AngleArc', 'GetArcDirection', 'PolyPolyline', 'GetColorAdjustment', 'GetCurrentObject', 'PolyBezier', 'DrawEscape', 'ExtEscape', 'GetCharABCWidthsFloatA', 'GetCharWidthFloatA', 'AbortPath', 'BeginPath', 'CloseFigure', 'EndPath', 'FillPath', 'FlattenPath', 'GetMiterLimit', 'GetPath', 'SetMiterLimit', 'StrokeAndFillPath', 'StrokePath', 'WidenPath', 'GdiComment', 'PlayEnhMetaFile', 'SaveDC', 'RestoreDC', 'SelectPalette', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetGraphicsMode', 'SetWorldTransform', 'ModifyWorldTransform', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'GetClipRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'EnumMetaFile', 'PlayMetaFile', 'EnumFontFamiliesExA', 'DeleteMetaFile', 'CombineRgn', 'SetRectRgn', 'GetRegionData', 'ExtCreateRegion', 'PathToRegion', 'CreateRoundRectRgn', 'CreatePolyPolygonRgn', 'CreatePolygonRgn', 'CreateEllipticRgnIndirect', 'CreateEllipticRgn', 'CreateRectRgnIndirect', 'CreateRectRgn', 'GetPaletteEntries', 'ResizePalette', 'GetNearestPaletteIndex', 'CreateHalftonePalette', 'CreatePenIndirect', 'CreatePen', 'UnrealizeObject', 'GetStockObject', 'AnimatePalette', 'PlgBlt', 'ExtCreatePen', 'CreatePalette', 'CreateDiscardableBitmap', 'GetBitmapDimensionEx', 'GetDeviceCaps', 'CreateDCA', 'CopyMetaFileA', 'GetObjectType', 'CreateFontA', 'GetCharWidthA', 'DeleteObject', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'StretchDIBits', 'DeleteDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'ExtTextOutA', 'CloseEnhMetaFile', 'CreateEnhMetaFileA', 'CloseMetaFile', 'CreateMetaFileA', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateBrushIndirect', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'CreateFontIndirectA', 'CreateBitmapIndirect', 'SetBitmapBits', 'GetBitmapBits', 'SetBitmapDimensionEx', 'SetPaletteEntries', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetJobA', 'SetThreadToken', 'OpenThreadToken', 'RegCreateKeyA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegSetValueA', 'RegCloseKey', 'RevertToSelf', 'DragQueryFileA', 'DragAcceptFiles', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathIsUNCA', 'PathFindExtensionA', 'PathStripToRootA', 'CoLockObjectExternal', 'CoGetMalloc', 'StgCreateDocfile', 'StgOpenStorage', 'StgIsStorageFile', 'CreateOleAdviseHolder', 'CreateDataAdviseHolder', 'OleGetClipboard', 'OleQueryCreateFromData', 'OleQueryLinkFromData', 'OleSetMenuDescriptor', 'OleIsCurrentClipboard', 'OleSetClipboard', 'OleFlushClipboard', 'CoRegisterClassObject', 'CoRevokeClassObject', 'DoDragDrop', 'OleInitialize', 'OleUninitialize', 'CoFreeUnusedLibraries', 'CoRegisterMessageFilter', 'CoGetClassObject', 'GetClassFile', 'OleGetIconOfClass', 'GetHGlobalFromILockBytes', 'StgIsStorageILockBytes', 'StgOpenStorageOnILockBytes', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'OleSave', 'OleLoad', 'GetRunningObjectTable', 'OleIsRunning', 'OleCreateFromFile', 'OleCreateStaticFromData', 'OleCreateLinkFromData', 'OleCreateFromData', 'OleSetContainedObject', 'OleLockRunning', 'OleRun', 'CLSIDFromProgID', 'CLSIDFromString', 'StringFromGUID2', 'CoCreateInstance', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'OleRegGetMiscStatus', 'OleRegEnumVerbs', 'CoDisconnectObject', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'CreateBindCtx', 'OleDuplicateData', 'OleCreate', 'CreateFileMoniker', 'CreateItemMoniker', 'CreateGenericComposite', 'CoUnmarshalInterface', 'CoMarshalInterface', 'CoReleaseMarshalData', 'CreateStreamOnHGlobal', 'OleSaveToStream', 'OleCreateLinkToFile', 'WriteClassStm', 'SystemTimeToVariantTime', 'VariantClear', 'VariantChangeType', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'SafeArrayCreate', 'VariantCopy', 'SysReAllocStringLen', 'VarCyFromStr', 'VarBstrFromCy', 'SafeArrayCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VarBstrFromDec', 'VarDecFromStr', 'VarDateFromStr', 'VarBstrFromDate', 'SysAllocString', 'LoadTypeLib', 'DosDateTimeToVariantTime', 'VariantTimeToSystemTime', 'VarUdateFromDate', 'VarDateFromUdate', 'VariantInit'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaVarIdiv', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', 'DllFunctionCall', '__vbaLbound', '_adj_fpatan', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaInStrB', '__vbaVarDup', '_CIatan', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaStrI4', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaLateMemCall', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '__vbaEnd', '__vbaVarIdiv', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetFileInformationByHandle', 'GetDriveTypeA', 'FindFirstFileExA', 'GetCurrentDirectoryW', 'ActivateActCtx', 'DeactivateActCtx', 'SetLastError', 'GetModuleHandleA', 'GetLocaleInfoA', 'GlobalAddAtomA', 'GetTickCount', 'GetTempPathA', 'SetErrorMode', 'DeleteFileA', 'GetVersion', 'SetFileTime', 'WriteFile', 'CreateDirectoryA', 'GetFileAttributesA', 'LocalFileTimeToFileTime', 'lstrcatA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'ReadFile', 'SetFilePointer', 'GlobalSize', 'FindResourceA', 'CreateEventA', 'GetProcAddress', 'FreeLibrary', 'SetEvent', 'ResetEvent', 'LoadLibraryA', 'lstrcpyA', 'GlobalGetAtomNameA', 'MulDiv', 'lstrcmpA', 'FindClose', 'FindFirstFileA', 'UnmapViewOfFile', 'CloseHandle', 'GetLastError', 'CreateFileA', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'OpenFile', 'lstrcmpiA', 'GetUserDefaultLCID', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'MultiByteToWideChar', 'lstrlenA', 'GlobalFree', 'FindResourceW', 'GetDriveTypeW', 'ExpandEnvironmentStringsA', 'WaitForMultipleObjects', 'PeekNamedPipe', 'GetSystemDirectoryA', 'VerSetConditionMask', 'VerifyVersionInfoA', 'SleepEx', 'SetEnvironmentVariableA', 'CreateFileW', 'GetProcessHeap', 'WriteConsoleW', 'GetTimeZoneInformation', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'GetStringTypeW', 'IsValidLocale', 'lstrlenW', 'LocalFree', 'FormatMessageA', 'CopyFileA', 'GetModuleFileNameA', 'GetCurrentProcessId', 'lstrcmpW', 'LoadLibraryW', 'CompareStringA', 'GetVersionExA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GetCurrentThreadId', 'FreeResource', 'CreateActCtxW', 'ReleaseActCtx', 'GetModuleFileNameW', 'InterlockedDecrement', 'InterlockedIncrement', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'DuplicateHandle', 'GetCurrentProcess', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetFileSizeEx', 'GetFileTime', 'GetProfileIntA', 'SetThreadPriority', 'ResumeThread', 'WaitForSingleObject', 'SuspendThread', 'GetModuleHandleW', 'GetPrivateProfileIntA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'InterlockedExchange', 'GetSystemDefaultUILanguage', 'ConvertDefaultLocale', 'GetUserDefaultUILanguage', 'GetCurrentThread', 'LocalAlloc', 'LeaveCriticalSection', 'TlsGetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'GlobalHandle', 'InitializeCriticalSection', 'TlsAlloc', 'TlsSetValue', 'LocalReAlloc', 'DeleteCriticalSection', 'TlsFree', 'GlobalFlags', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'FindResourceExW', 'GetTempFileNameA', 'GetWindowsDirectoryA', 'GetNumberFormatA', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'SearchPathA', 'DecodePointer', 'EncodePointer', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'VirtualQuery', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapQueryInformation', 'GetSystemTimeAsFileTime', 'SetStdHandle', 'GetFileType', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'GetLocaleInfoW', 'IsProcessorFeaturePresent', 'GetConsoleCP', 'GetConsoleMode', 'IsValidCodePage', 'CompareStringW', 'LCMapStringW', 'HeapCreate', 'EnumSystemLocalesA', 'SetActiveWindow', 'GetForegroundWindow', 'GetWindowTextLengthA', 'SetFocus', 'IsWindow', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'SendDlgItemMessageA', 'CheckDlgButton', 'IsDialogMessageA', 'MoveWindow', 'ShowWindow', 'CheckMenuItem', 'EnableMenuItem', 'ModifyMenuA', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EndDialog', 'CreateDialogIndirectParamA', 'GetActiveWindow', 'GetDesktopWindow', 'GetAsyncKeyState', 'MapDialogRect', 'MessageBeep', 'IsClipboardFormatAvailable', 'CountClipboardFormats', 'IsRectEmpty', 'SendNotifyMessageA', 'CopyAcceleratorTableA', 'InflateRect', 'GetMenuItemInfoA', 'DestroyMenu', 'SystemParametersInfoA', 'CharUpperA', 'GetKeyNameTextA', 'MapVirtualKeyA', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'GetCursorPos', 'TranslateAcceleratorA', 'InsertMenuItemA', 'IsIconic', 'LoadAcceleratorsA', 'SetCursor', 'DestroyIcon', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'CreateMenu', 'PostThreadMessageA', 'DeleteMenu', 'GetSystemMenu', 'SetParent', 'MonitorFromPoint', 'IsZoomed', 'ShowOwnedPopups', 'ValidateRect', 'TranslateMessage', 'GetMessageA', 'GetMessagePos', 'GetSysColorBrush', 'RealChildWindowFromPoint', 'UnregisterClassA', 'LoadCursorW', 'WaitMessage', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'UnionRect', 'LockWindowUpdate', 'LoadAcceleratorsW', 'LoadMenuW', 'GetMenuDefaultItem', 'InvertRect', 'HideCaret', 'EnableScrollBar', 'NotifyWinEvent', 'GetIconInfo', 'CopyImage', 'GetNextDlgGroupItem', 'DrawIconEx', 'SetWindowRgn', 'DispatchMessageA', 'SetClassLongA', 'DrawStateA', 'DrawEdge', 'DrawFrameControl', 'ToAsciiEx', 'GetKeyboardLayout', 'GetKeyboardState', 'CreateAcceleratorTableA', 'SetCursorPos', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'LoadImageW', 'IsCharLowerA', 'MapVirtualKeyExA', 'UpdateLayeredWindow', 'IsMenu', 'DefFrameProcA', 'DefMDIChildProcA', 'DrawMenuBar', 'TranslateMDISysAccel', 'SetMenuDefaultItem', 'FrameRect', 'GetUpdateRect', 'CopyIcon', 'CharUpperBuffA', 'GetDoubleClickTime', 'SubtractRect', 'DrawIcon', 'DestroyCursor', 'GetWindowRgn', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'ShowScrollBar', 'IsWindowVisible', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'GetWindow', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'OemToCharA', 'GetMenuState', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'SetRect', 'DrawTextA', 'GrayStringA', 'DrawTextExA', 'TabbedTextOutA', 'WinHelpA', 'CreatePopupMenu', 'AppendMenuA', 'GetSysColor', 'CopyRect', 'DrawFocusRect', 'FillRect', 'GetWindowTextA', 'SetWindowTextA', 'GetFocus', 'IsChild', 'GetParent', 'GetWindowRect', 'wsprintfA', 'GetNextDlgTabItem', 'GetKeyState', 'BringWindowToTop', 'InvalidateRect', 'PtInRect', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'DestroyAcceleratorTable', 'GetMessageTime', 'GetSystemMetrics', 'GetDlgItem', 'LoadIconA', 'GetClassInfoA', 'UpdateWindow', 'MsgWaitForMultipleObjects', 'SendMessageA', 'EnableWindow', 'CharToOemA', 'PostQuitMessage', 'DeferWindowPos', 'RedrawWindow', 'LoadImageA', 'LoadIconW', 'IntersectRect', 'RegisterClipboardFormatA', 'SetForegroundWindow', 'GetClassNameA', 'ReleaseDC', 'GetDC', 'RegisterWindowMessageA', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'EqualRect', 'LoadCursorA', 'SetRectEmpty', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'OffsetRect', 'PeekMessageA', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'CreatePatternBrush', 'CreateBitmap', 'SelectPalette', 'GetObjectType', 'CreateHatchBrush', 'GetWindowOrgEx', 'CreateCompatibleBitmap', 'CreateRectRgn', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'GetWindowExtEx', 'GetPixel', 'DPtoLP', 'GetBkColor', 'GetTextFaceA', 'SetPixelV', 'SetPaletteEntries', 'ExtFloodFill', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'PtInRegion', 'GetViewportOrgEx', 'LPtoDP', 'GetRgnBox', 'OffsetRgn', 'SetPixel', 'StretchBlt', 'SetDIBColorTable', 'Polygon', 'Ellipse', 'Polyline', 'CreateEllipticRgn', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'CreateDIBSection', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetTextMetricsA', 'GetStockObject', 'GetPaletteEntries', 'GetTextColor', 'Rectangle', 'EnumFontFamiliesExA', 'EnumFontFamiliesA', 'CreateSolidBrush', 'CreateCompatibleDC', 'BitBlt', 'GetObjectA', 'DeleteObject', 'SelectObject', 'CreatePen', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'GetSystemPaletteEntries', 'RealizePalette', 'GetNearestPaletteIndex', 'CreatePalette', 'GetTextCharsetInfo', 'CreateDIBitmap', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateDCA', 'CopyMetaFileA', 'PatBlt', 'GetViewportExtEx', 'GetMapMode', 'CombineRgn', 'SetRectRgn', 'CreateRectRgnIndirect', 'RegCreateKeyExA', 'CryptEncrypt', 'CryptDestroyKey', 'CryptGetHashParam', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'RegQueryValueExA', 'RegSetValueExA', 'RegCloseKey', 'RegSetValueA', 'RegOpenKeyExA', 'RegOpenKeyExW', 'CryptImportKey', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegEnumValueA', 'RegEnumKeyExA', 'SHAppBarMessage', 'SHBrowseForFolderA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetDesktopFolder', 'SHGetFileInfoA', 'ExtractIconA', 'DragAcceptFiles', 'ShellAboutA', 'ShellExecuteA', 'DragQueryFileA', 'DragFinish', 'OleSetMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'CoDisconnectObject', 'CoCreateGuid', 'CoRegisterClassObject', 'CoRevokeClassObject', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'OleGetClipboard', 'DoDragDrop', 'CoInitialize', 'CreateGenericComposite', 'CreateItemMoniker', 'OleGetIconOfClass', 'OleCreateLinkToFile', 'OleCreateFromFile', 'OleSetContainedObject', 'GetHGlobalFromILockBytes', 'StgOpenStorageOnILockBytes', 'OleLoad', 'OleCreate', 'OleCreateStaticFromData', 'OleCreateLinkFromData', 'OleCreateFromData', 'OleLockRunning', 'CreateStreamOnHGlobal', 'OleSaveToStream', 'WriteClassStm', 'OleSave', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'OleDuplicateData', 'CoTaskMemAlloc', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'ReleaseStgMedium', 'OleUninitialize', 'OleInitialize', 'CreateFileMoniker', 'StgOpenStorage', 'TransparentBlt', 'AlphaBlend', 'ImageList_GetIconSize', 'PathStripToRootA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'PathFindFileNameA', 'PathIsUNCA', 'accept', 'sendto', 'getaddrinfo', 'freeaddrinfo', 'connect', 'socket', 'closesocket', 'getpeername', 'getsockopt', 'htons', 'bind', 'ntohs', 'getsockname', 'recvfrom', 'WSAGetLastError', 'WSACleanup', 'WSAStartup', 'WSASetLastError', '__WSAFDIsSet', 'select', 'recv', 'send', 'WSAIoctl', 'listen', 'ioctlsocket', 'gethostname', 'htonl', 'ntohl', 'setsockopt', 'CertFreeCertificateContext', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCreateFromHDC', 'GdipSetInterpolationMode', 'GdipDrawImageRectI', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipBitmapLockBits', 'GdipBitmapUnlockBits', 'GdipGetImageGraphicsContext', 'GdipDrawImageI', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePaletteSize', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImagePalette', 'ImmGetOpenStatus', 'ImmGetContext', 'ImmReleaseContext', 'PlaySoundA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'GetFileTitleA', 'SysAllocString', 'VarBstrFromDate', 'SysStringByteLen', 'SysFreeString', 'VariantTimeToSystemTime', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SystemTimeToVariantTime'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', '__vbaR4Var', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['TerminateProcess', 'CreateThread', 'ExitThread', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'LCMapStringA', 'LCMapStringW', 'FatalAppExitA', 'Sleep', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'GetCommandLineA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetVersionExA', 'SetConsoleCtrlHandler', 'SetStdHandle', 'GetLocaleInfoW', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'HeapAlloc', 'GetProfileStringA', 'InterlockedExchange', 'HeapFree', 'RtlUnwind', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'SetFileAttributesA', 'SetFileTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetTickCount', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'lstrlenW', 'GetShortPathNameA', 'GetStringTypeExA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'GetThreadLocale', 'SizeofResource', 'GetProcessVersion', 'GetLastError', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GlobalFlags', 'lstrcpynA', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalFree', 'LocalAlloc', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'InterlockedIncrement', 'InterlockedDecrement', 'LoadLibraryA', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'MulDiv', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'CloseHandle', 'GetModuleFileNameA', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'FreeEnvironmentStringsA', 'ExitProcess', 'MessageBeep', 'SetRectEmpty', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'LoadMenuA', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'InvalidateRect', 'BringWindowToTop', 'CharUpperA', 'InflateRect', 'RegisterClipboardFormatA', 'RemoveMenu', 'wvsprintfA', 'PostThreadMessageA', 'DestroyIcon', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'DefWindowProcA', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'SetWindowLongA', 'RegisterWindowMessageA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetNextDlgGroupItem', 'GrayStringA', 'InsertMenuA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'ScreenToClient', 'MapDialogRect', 'SetWindowPos', 'GetWindow', 'SetWindowContextHelpId', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'GetMenuStringA', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'GetCursorPos', 'SetWindowsHookExA', 'EnableWindow', 'HideCaret', 'ShowCaret', 'ExcludeUpdateRgn', 'DrawFocusRect', 'DefDlgProcA', 'IsWindowUnicode', 'LoadIconA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'MessageBoxA', 'SetCursor', 'ShowOwnedPopups', 'PostQuitMessage', 'PostMessageA', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'SetRect', 'CopyAcceleratorTableA', 'CharNextA', 'GetDialogBaseUnits', 'GetWindowRect', 'GetSysColorBrush', 'GetSystemMenu', 'AppendMenuA', 'SendMessageA', 'PtInRect', 'GetClassNameA', 'WindowFromPoint', 'GetWindowThreadProcessId', 'GetDesktopWindow', 'WaitMessage', 'ReleaseCapture', 'SetCapture', 'LoadCursorA', 'DestroyMenu', 'LoadStringA', 'OemToCharA', 'CharToOemA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'SetFocus', 'EndDeferWindowPos', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'DestroyWindow', 'DeleteMenu', 'DrawTextA', 'CopyRect', 'AdjustWindowRectEx', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'DeleteObject', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'SetMapMode', 'PlayMetaFile', 'GetDeviceCaps', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetDCOrgEx', 'GetObjectA', 'BitBlt', 'CreateCompatibleDC', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontIndirectA', 'GetTextColor', 'GetBkColor', 'DPtoLP', 'LPtoDP', 'GetMapMode', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'CreateRectRgnIndirect', 'CopyMetaFileA', 'CreateDCA', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'StartDocA', 'DeleteDC', 'EnumMetaFile', 'CreateDIBitmap', 'GetTextExtentPointA', 'CreateBitmap', 'GetSaveFileNameA', 'GetFileTitleA', 'GetOpenFileNameA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegDeleteKeyA', 'RegCreateKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegSetValueA', 'RegOpenKeyA', 'RegCloseKey', 'RegDeleteValueA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'SHGetFileInfoA', 'DragQueryFileA', 'DragFinish', 'DragAcceptFiles', 'ExtractIconA', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CreateBindCtx', 'OleDuplicateData', 'CoFreeUnusedLibraries', 'ReleaseStgMedium', 'OleInitialize', 'CoDisconnectObject', 'OleRun', 'CoCreateInstance', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoRegisterMessageFilter', 'CoRegisterClassObject', 'CoRevokeClassObject', 'OleSetClipboard', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CreateStreamOnHGlobal', 'OleUninitialize', 'SysAllocStringLen', 'VariantClear', 'VariantTimeToSystemTime', 'VariantCopy', 'VariantChangeType', 'SysReAllocStringLen', 'SysAllocString', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'SysAllocStringByteLen', 'SysStringByteLen', 'VarCyFromStr', 'VarBstrFromCy', 'VarDateFromStr', 'VarBstrFromDate', 'SafeArrayCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'SysStringLen', 'LoadTypeLib', 'SysFreeString'], ['SetUnhandledExceptionFilter', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetEnvironmentVariableA', 'GetStringTypeW', 'GetStringTypeA', 'HeapSize', 'TerminateProcess', 'GetFileType', 'SetStdHandle', 'InterlockedExchange', 'HeapReAlloc', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'HeapFree', 'HeapAlloc', 'GetDateFormatA', 'GetTimeFormatA', 'GetSystemTimeAsFileTime', 'RtlUnwind', 'SetErrorMode', 'WritePrivateProfileStringA', 'GetFileTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetShortPathNameA', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'LeaveCriticalSection', 'LocalAlloc', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'GetModuleFileNameA', 'lstrcmpA', 'GetProfileIntA', 'GetTickCount', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'CloseHandle', 'InterlockedDecrement', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'lstrcpynA', 'GetModuleHandleA', 'GetProcAddress', 'GetStringTypeExA', 'CompareStringW', 'CompareStringA', 'lstrlenA', 'lstrlenW', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'MultiByteToWideChar', 'MulDiv', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalReAlloc', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetCurrentProcessId', 'SetWindowRgn', 'DrawIcon', 'FindWindowA', 'DestroyIcon', 'GetSysColorBrush', 'DestroyCursor', 'GetMenuItemInfoA', 'ShowOwnedPopups', 'PostQuitMessage', 'GetMessageA', 'ValidateRect', 'wsprintfA', 'LoadMenuA', 'DestroyMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadAcceleratorsA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'IsWindowEnabled', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GetMenuState', 'GetMenuStringA', 'InsertMenuA', 'RemoveMenu', 'RegisterWindowMessageA', 'WinHelpA', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'SetFocus', 'IsChild', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'MessageBoxA', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetMenu', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'PtInRect', 'SetRect', 'InflateRect', 'OffsetRect', 'IntersectRect', 'IsWindow', 'GetKeyState', 'GetSysColor', 'FillRect', 'InvertRect', 'DrawEdge', 'SendMessageA', 'PostMessageA', 'GetClientRect', 'ScreenToClient', 'GetScrollInfo', 'SetScrollInfo', 'RegisterClassA', 'UnregisterClassA', 'GetDlgCtrlID', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'IsIconic', 'GetWindowPlacement', 'GetWindow', 'WindowFromPoint', 'IsWindowVisible', 'ClientToScreen', 'RegisterClipboardFormatA', 'LockWindowUpdate', 'GetDCEx', 'IsRectEmpty', 'CopyRect', 'CharUpperA', 'GetSystemMetrics', 'LoadIconA', 'TranslateMessage', 'DispatchMessageA', 'EnumChildWindows', 'GetWindowRect', 'GetSystemMenu', 'IsDialogMessageW', 'GetTabbedTextExtentA', 'PostThreadMessageA', 'CreateMenu', 'CopyAcceleratorTableA', 'GetWindowTextLengthA', 'SetParent', 'GetDC', 'ReleaseDC', 'InvalidateRect', 'SetTimer', 'KillTimer', 'GetCapture', 'SetCapture', 'GetFocus', 'GetParent', 'LoadCursorA', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'DefWindowProcA', 'GetClassInfoA', 'SetCursor', 'IsClipboardFormatAvailable', 'GetCursorPos', 'ClipCursor', 'ReleaseCapture', 'EnableWindow', 'SystemParametersInfoA', 'AppendMenuA', 'InsertMenuItemA', 'DeleteDC', 'CreatePatternBrush', 'CreateBitmap', 'GetStockObject', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'PatBlt', 'DPtoLP', 'SetRectRgn', 'CombineRgn', 'GetViewportOrgEx', 'GetCharWidthA', 'CreateEllipticRgn', 'LPtoDP', 'Ellipse', 'GetNearestColor', 'GetBkColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'SetTextAlign', 'MoveToEx', 'CreatePen', 'IntersectClipRect', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateDCA', 'CopyMetaFileA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'DeleteObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetCurrentObject', 'EndDoc', 'AbortDoc', 'EndPage', 'StartPage', 'StartDocA', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'BitBlt', 'Rectangle', 'GetDeviceCaps', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetObjectA', 'CreateFontA', 'CreateFontIndirectA', 'LineTo', 'GetOpenFileNameA', 'GetSaveFileNameA', 'CommDlgExtendedError', 'GetFileTitleA', 'PrintDlgA', 'ChooseFontA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegSetValueA', 'RegOpenKeyA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegSetValueExA', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegCloseKey', 'DragQueryFileA', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'ImageList_AddMasked', 'ImageList_Draw', 'ImageList_GetImageInfo', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_LoadImageA', 'PathFindFileNameA', 'PathFindExtensionA', 'PathStripToRootA', 'PathIsUNCA', 'CoLockObjectExternal', 'RegisterDragDrop', 'DoDragDrop', 'OleSetClipboard', 'OleGetClipboard', 'OleDuplicateData', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'CreateStreamOnHGlobal', 'RevokeDragDrop', 'VariantClear', 'VariantChangeType', 'VariantInit'], ['GetUserDefaultLangID', 'LoadLibraryA', 'CreateThread', 'FreeLibrary', 'GetFileSize', 'ReadFile', 'WriteFile', 'GetModuleHandleA', 'GetStartupInfoA', 'GetProcAddress', 'CreateFileA', 'GetModuleFileNameA', 'CloseHandle', 'MessageBoxA', 'wsprintfA', 'LoadStringA', 'SetDlgItemTextA', 'DestroyWindow', 'CreateDialogParamA', 'GetWindowRect', 'ScreenToClient', 'ShowWindow', 'UpdateWindow', 'SetWindowTextA', 'GetSystemMenu', 'EnableMenuItem', 'EndDialog', 'DialogBoxParamA', 'DrawTextA', 'SetWindowPos', 'CheckDlgButton', 'IsDlgButtonChecked', 'GetParent', 'GetDlgItemTextA', 'GetDlgItem', 'SendMessageA', 'DeleteObject', 'CreateFontIndirectA', 'GetObjectA', 'SetTextColor', 'SelectObject', 'GetSaveFileNameA', 'RegCloseKey', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'SetFileSecurityW', 'SHGetPathFromIDListA', 'DragQueryFileA', 'ShellExecuteA', 'SHBrowseForFolderA', 'SHGetMalloc', 'DragFinish', 'CoInitialize', 'CoUninitialize', '__getmainargs', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '_controlfp', '_except_handler3', '_acmdln', 'exit', '_XcptFilter', '_exit', '_strdup', '_onexit', '__dllonexit', 'vsprintf', 'strcat', 'memset', '_initterm', '__set_app_type', 'strcmp', 'strlen', 'free', 'atof', 'strpbrk', '_ftol', 'fclose', 'fprintf', 'fopen', 'strncpy', 'malloc', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', '??1_Winit@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@PBD@Z', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@ABV12@II@Z', '?npos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2IB'], ['RegCloseKey', 'ChooseColorA', 'PatBlt', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'OleInitialize', 'LoadTypeLib', 'ShellExecuteA', 'GetDC', 'waveOutOpen', 'ClosePrinter', 'inet_ntoa'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaI2I4', '__vbaObjVar', '__vbaVarLateMemSt', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaLateMemSt', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '__vbaAryCopy', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['SysAllocStringLen', 'GetProcAddress', 'VirtualAlloc', 'WideCharToMultiByte', 'GetSystemDefaultLCID', 'GetModuleHandleW', '__vbaVarSub', '_CIcos', '_adj_fptan', '__vbaStrI4', '__vbaVarMove', '__vbaVarVargNofree', '__vbaAryMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaRaiseEvent', '__vbaFreeObjList', '_adj_fprem1', '__vbaRecAnsiToUni', '__vbaStrCat', '__vbaLsetFixstr', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaVarForInit', '__vbaForEachCollObj', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaBoolVar', '__vbaFpR8', '_CIsin', '__vbaNextEachCollObj', '__vbaChkstk', '__vbaCyVar', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaVarTstEq', '__vbaAryConstruct2', '__vbaDateR8', '__vbaPrintObj', '__vbaI2I4', 'DllFunctionCall', '__vbaCastObjVar', '__vbaRedimPreserve', '_adj_fpatan', '__vbaR4Var', '__vbaFixstrConstruct', '__vbaLateIdCallLd', '__vbaRedim', '__vbaRecUniToAnsi', 'EVENT_SINK_Release', '__vbaNew', '__vbaUI1I2', '_CIsqrt', '__vbaObjIs', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFailedFriend', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '__vbaDateVar', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '__vbaVar2Vec', '__vbaR8Str', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaPowerR8', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarAdd', '__vbaAryLock', '__vbaVarDup', '__vbaStrToAnsi', '__vbaFpI2', '__vbaUnkVar', '__vbaFpI4', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '__vbaCastObj', '__vbaMidStmtVar', '__vbaStrVarCopy', '_allmul', '__vbaLateIdSt', '_CItan', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindFirstFileExW', 'DecodePointer', 'GetFileType', 'LCMapStringW', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetModuleHandleExW', 'ExitProcess', 'LoadLibraryExW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetProcessHeap', 'GetConsoleCP', 'GetConsoleMode', 'HeapSize', 'GetConsoleWindow', 'FillConsoleOutputCharacterA', 'MultiByteToWideChar', 'CopyFileW', 'LoadLibraryA', 'OpenFileMappingA', 'CreateEventA', 'MapViewOfFile', 'FormatMessageA', 'FileTimeToLocalFileTime', 'MulDiv', 'FreeLibrary', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'RtlUnwind', 'RaiseException', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'CloseHandle', 'WaitForSingleObject', 'GetLastError', 'GetCurrentProcess', 'LocalFree', 'LocalAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'CreateSemaphoreW', 'ReleaseSemaphore', 'FlushFileBuffers', 'SetFilePointerEx', 'SetStdHandle', 'WriteConsoleW', 'lstrlenA', 'CreateFileW', 'FindClose', 'GetModuleFileNameW', 'WriteFile', 'GetStdHandle', 'FindNextFileW', 'SetLastError', 'GetFileSizeEx', 'GetModuleHandleW', 'FindResourceW', 'GlobalAlloc', 'GetProcAddress', 'GetCurrentProcessId', 'SizeofResource', 'LockResource', 'LoadResource', 'DefWindowProcA', 'PostQuitMessage', 'SendNotifyMessageA', 'SendMessageA', 'wsprintfA', 'SetActiveWindow', 'CreateWindowExA', 'MoveWindow', 'LoadStringA', 'EnumWindows', 'OffsetRect', 'InflateRect', 'FrameRect', 'GetSysColorBrush', 'ClientToScreen', 'SetCaretBlinkTime', 'GetCursorPos', 'MessageBoxA', 'GetClientRect', 'GetWindowTextA', 'SetWindowTextA', 'GetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'SetForegroundWindow', 'UpdateWindow', 'EnableMenuItem', 'GetSystemMenu', 'DrawMenuBar', 'EnableWindow', 'KillTimer', 'SetTimer', 'SetFocus', 'GetDialogBaseUnits', 'IsDlgButtonChecked', 'GetDlgItemTextA', 'GetDlgItem', 'IsCharAlphaW', 'GetSysColor', 'CreateFontA', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'TextOutA', 'SetStretchBltMode', 'SelectObject', 'Rectangle', 'CreateFontIndirectA', 'RegOpenKeyExA', 'AdjustTokenPrivileges', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'BuildTrusteeWithSidA', 'GetNamedSecurityInfoA', 'SetEntriesInAclA', 'CryptGetDefaultProviderA', 'RegSetValueExA', 'LookupPrivilegeValueA', 'RegConnectRegistryA', 'OpenProcessToken', 'CreateILockBytesOnHGlobal', 'StgCreateDocfile', 'PropVariantClear', 'CLSIDFromProgID', 'CoUninitialize', 'StgOpenStorage', 'CoInitialize', 'CoCreateInstance', 'GetActiveObject', 'OleTranslateColor', 'SysFreeString', 'VariantChangeType', 'VariantInit', 'SysAllocString', 'NetApiBufferFree', 'NetWkstaGetInfo', 'timeGetTime', 'SHAutoComplete', 'StrCmpIW', 'ImageList_Create', 'InitCommonControlsEx', 'PdhBrowseCountersA', 'WinVerifyTrust', 'WTHelperGetProvSignerFromChain', 'WTHelperProvDataFromStateData', 'RpcBindingFromStringBindingA', 'RpcStringBindingComposeA', 'RpcBindingFree', 'QuerySecurityPackageInfoA', 'wglShareLists', 'wglSetLayerPaletteEntries', 'glBegin', 'glClear', 'glLoadIdentity', 'glTexCoord2f', 'ImmIsIME', 'WinHttpQueryHeaders', 'WinHttpReceiveResponse', 'WinHttpQueryAuthSchemes', 'WinHttpSetCredentials', 'WinHttpSendRequest', 'WinHttpOpenRequest', 'WinHttpOpen', 'WinHttpCloseHandle', 'WinHttpConnect', 'SetupDiDestroyDeviceInfoList', 'SetupDiGetDeviceInterfaceDetailA', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'DwmGetColorizationColor', 'DWriteCreateFactory'], ['GetModuleFileNameA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LoadLibraryExW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'GetModuleFileNameW', 'GetCurrentThreadId', 'IsDebuggerPresent', 'GetProcessHeap', 'HeapSize', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'GetEnvironmentStringsW', 'TlsGetValue', 'QueryPerformanceCounter', 'TerminateProcess', 'GetCurrentProcess', 'Sleep', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCPInfo', 'GetCommandLineA', 'AreFileApisANSI', 'GetModuleHandleExW', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'GetFileType', 'SetStdHandle', 'RtlUnwind', 'RaiseException', 'HeapFree', 'GetStringTypeW', 'MultiByteToWideChar', 'DecodePointer', 'EncodePointer', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'FreeEnvironmentStringsW', 'HeapReAlloc', 'OutputDebugStringW', 'WriteConsoleW', 'TlsAlloc', 'GetCurrentProcessId', 'ReadConsoleW', 'GetExitCodeProcess', 'CreateProcessA', 'GetFileAttributesExW', 'SetEnvironmentVariableA', 'CreateFileW', 'ReleaseMutex', 'WideCharToMultiByte', 'LoadLibraryA', 'CreateEventA', 'lstrcatA', 'GetLastError', 'VirtualAlloc', 'GetLocalTime', 'GetExitCodeThread', 'GetProcAddress', 'BuildCommDCBA', 'SetCommTimeouts', 'SetCommState', 'GetCommTimeouts', 'GetCommState', 'FlushFileBuffers', 'WriteFile', 'FindNextFileA', 'FindFirstFileA', 'CreateFileA', 'CreateMutexA', 'CloseHandle', 'FindClose', 'ReadFile', 'GetFileSize', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'GetConsoleWindow', 'SetConsoleTitleA', 'FreeConsole', 'AllocConsole', 'WriteConsoleInputA', 'GetModuleHandleA', 'GetStdHandle', 'CreateThread', 'ExitProcess', 'WaitForSingleObject', 'TlsSetValue', 'SetEndOfFile', 'CallWindowProcA', 'RegisterClassExA', 'SetLayeredWindowAttributes', 'SetDlgItemInt', 'GetDlgItemInt', 'GetDlgCtrlID', 'GetFocus', 'KillTimer', 'DrawMenuBar', 'GetSystemMenu', 'TrackPopupMenu', 'DrawTextW', 'GetForegroundWindow', 'CheckMenuRadioItem', 'GetWindowTextA', 'EnableScrollBar', 'GetWindowTextLengthA', 'MapWindowPoints', 'GetScrollInfo', 'DrawFocusRect', 'SetRectEmpty', 'InflateRect', 'PtInRect', 'GetParent', 'DestroyIcon', 'DrawIconEx', 'GetMenuItemInfoA', 'ModifyMenuA', 'CheckMenuItem', 'TranslateAcceleratorA', 'LoadAcceleratorsA', 'GetMenu', 'EnableMenuItem', 'SetWindowPos', 'DialogBoxParamA', 'EndDialog', 'GetDlgItemTextA', 'GetSysColor', 'SetScrollInfo', 'SetScrollPos', 'GetWindowTextW', 'wsprintfA', 'DefMDIChildProcA', 'SendMessageA', 'GetDlgItem', 'WindowFromDC', 'SetDlgItemTextA', 'GetAncestor', 'GetIconInfo', 'CheckDlgButton', 'CheckRadioButton', 'IsDlgButtonChecked', 'OpenClipboard', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'EnableWindow', 'UpdateWindow', 'InvalidateRect', 'GetWindowRect', 'MessageBoxA', 'GetWindowLongA', 'SetWindowLongA', 'EnumDisplayMonitors', 'ShowCursor', 'AdjustWindowRectEx', 'DestroyWindow', 'CreateWindowExA', 'UnregisterClassA', 'CopyRect', 'SetRect', 'GetMonitorInfoA', 'MonitorFromWindow', 'OffsetRect', 'ChildWindowFromPoint', 'GetClientRect', 'SetWindowTextA', 'GetUpdateRect', 'EndPaint', 'BeginPaint', 'SetActiveWindow', 'MsgWaitForMultipleObjects', 'ReleaseCapture', 'SetCapture', 'ToAscii', 'GetKeyboardState', 'GetKeyState', 'IsZoomed', 'IsIconic', 'ShowWindow', 'PostQuitMessage', 'DefWindowProcA', 'GetMessagePos', 'PeekMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'TrackMouseEvent', 'LoadIconA', 'GetDesktopWindow', 'ReleaseDC', 'GetDC', 'GetSystemMetrics', 'GetClassInfoA', 'RegisterClassA', 'EnumDisplaySettingsA', 'ChangeDisplaySettingsExA', 'LoadCursorA', 'SetClassLongA', 'ScreenToClient', 'ClientToScreen', 'GetCursorPos', 'SetCursor', 'SetCursorPos', 'PostMessageA', 'BitBlt', 'CreateEllipticRgn', 'CreateFontA', 'CreatePen', 'EnumFontsA', 'ExcludeClipRect', 'GetPixel', 'GetStockObject', 'GetWindowOrgEx', 'SetStretchBltMode', 'SetDCPenColor', 'SetBkMode', 'SelectObject', 'CreateDIBSection', 'SetAbortProc', 'GetObjectA', 'SetViewportOrgEx', 'SetWindowOrgEx', 'StretchBlt', 'CreateDCA', 'SetBitmapBits', 'DeleteDC', 'GetDeviceCaps', 'DescribePixelFormat', 'GetPixelFormat', 'ChoosePixelFormat', 'SetPixelFormat', 'CreateCompatibleBitmap', 'DeleteObject', 'SetTextColor', 'SwapBuffers', 'CreateCompatibleDC', 'Rectangle', 'CreateSolidBrush', 'GetOpenFileNameA', 'GetSaveFileNameA', 'RegCloseKey', 'RegQueryValueExA', 'DuplicateTokenEx', 'CreateProcessAsUserA', 'AllocateAndInitializeSid', 'RegOpenKeyExA', 'RegOpenKeyA', 'SHGetSpecialFolderPathA', 'SHGetFileInfoW', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'DragFinish', 'DragQueryFileA', 'CoTaskMemFree', 'CreateStreamOnHGlobal', 'StringFromCLSID', 'LoadTypeLib', 'glVertex3f', 'glScalef', 'glRotatef', 'glReadPixels', 'glRasterPos2f', 'glNormal3f', 'glLightfv', 'glLightModelfv', 'glEnable', 'glColor3f', 'glColor3d', 'glClearColor', 'glClear', 'wglGetCurrentDC', 'wglDeleteContext', 'glGetIntegerv', 'glGetBooleanv', 'wglMakeCurrent', 'wglGetCurrentContext', 'wglCreateContext', 'wglGetProcAddress', 'glDrawBuffer', 'glGetString', 'glGetError', 'glVertex2i', 'glRasterPos2i', 'glPushMatrix', 'glPushAttrib', 'glPopMatrix', 'glPopAttrib', 'glOrtho', 'glMatrixMode', 'glLoadIdentity', 'glDisable', 'glColor4fv', 'glVertexPointer', 'glTexCoordPointer', 'glEnableClientState', 'glGetFloatv', 'glDrawElements', 'glDrawArrays', 'glDisableClientState', 'glReadBuffer', 'glNormalPointer', 'glViewport', 'glFlush', 'glBegin', 'glBitmap', 'glEnd', 'glPixelStorei', 'glPopClientAttrib', 'glPushClientAttrib', 'glTranslatef', 'glVertex2f', 'glColor4f', 'gluPerspective', 'CreateToolbarEx', 'timeGetTime', 'joyGetPosEx', 'timeBeginPeriod', 'timeEndPeriod', 'joyGetDevCapsA', 'PathFindExtensionA', 'SetupDefaultQueueCallbackA', 'SetupTermDefaultQueueCallback', 'SetupInitDefaultQueueCallback', 'SetupSetDirectoryIdA', 'SetupCloseInfFile', 'SetupOpenInfFileA', 'SetupInstallFromInfSectionA', 'AlphaBlend', 'HlinkNavigateMoniker', 'CreateFormatEnumerator', 'HlinkGoForward', 'WTSQuerySessionInformationA', 'WTSEnumerateSessionsA', 'WTSFreeMemory', 'WTSQueryUserToken', 'PdhCollectQueryData', 'CredUIConfirmCredentialsA', 'CredUICmdLinePromptForCredentialsA', 'AuthzUnregisterSecurityEventSource'], ['LCMapStringW', 'CompareStringW', 'WriteConsoleW', 'CreateFileW', 'SetEnvironmentVariableA', 'HeapCreate', 'GetTimeZoneInformation', 'GetStdHandle', 'GetConsoleMode', 'GetStringTypeW', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetDriveTypeW', 'GetCurrentDirectoryW', 'FindFirstFileExA', 'GetDriveTypeA', 'GetFileInformationByHandle', 'ExpandEnvironmentStringsA', 'WaitForMultipleObjects', 'PeekNamedPipe', 'GetSystemDirectoryA', 'VerSetConditionMask', 'VerifyVersionInfoA', 'SleepEx', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetConsoleCP', 'DeleteFileA', 'TerminateProcess', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'GetFileType', 'SetStdHandle', 'HeapSize', 'HeapQueryInformation', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'VirtualQuery', 'VirtualAlloc', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineA', 'HeapFree', 'GetSystemTimeAsFileTime', 'ExitProcess', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'RaiseException', 'FindResourceExW', 'VirtualProtect', 'SearchPathA', 'Sleep', 'GetProfileIntA', 'InitializeCriticalSectionAndSpinCount', 'GetTempFileNameA', 'GetFileTime', 'GetFileSizeEx', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'SetErrorMode', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetFullPathNameA', 'GetVolumeInformationA', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'lstrcmpiA', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'FileTimeToSystemTime', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'GetModuleFileNameW', 'ReleaseActCtx', 'CreateActCtxW', 'GetPrivateProfileStringA', 'WaitForSingleObject', 'SetThreadPriority', 'GetCurrentThread', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GetModuleHandleW', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetThreadLocale', 'InterlockedIncrement', 'FindResourceA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GetVersionExA', 'GetModuleHandleA', 'FreeLibrary', 'GetProcAddress', 'CompareStringA', 'LoadLibraryW', 'LoadLibraryA', 'ActivateActCtx', 'DeactivateActCtx', 'lstrcmpW', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'lstrlenW', 'MulDiv', 'WriteFile', 'SetFileTime', 'GetCurrentDirectoryA', 'GetFileAttributesA', 'CreateDirectoryA', 'LocalFileTimeToFileTime', 'lstrcpyA', 'lstrcatA', 'SystemTimeToFileTime', 'ReadFile', 'SetFilePointer', 'GetTempPathA', 'GetTickCount', 'OpenProcess', 'InitializeProcThreadAttributeList', 'GetProcessHeap', 'HeapAlloc', 'UpdateProcThreadAttribute', 'CreateProcessA', 'ResumeThread', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'InterlockedDecrement', 'FormatMessageA', 'lstrlenA', 'LocalAlloc', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'WideCharToMultiByte', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'GetSystemInfo', 'GetDynamicTimeZoneInformation', 'CreateFileA', 'UnmapViewOfFile', 'CloseHandle', 'FindFirstFileA', 'FindClose', 'GetLastError', 'FreeEnvironmentStringsW', 'DefFrameProcA', 'PostThreadMessageA', 'IsMenu', 'MonitorFromPoint', 'UpdateLayeredWindow', 'MapVirtualKeyExA', 'IsCharLowerA', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'UnionRect', 'GetKeyNameTextA', 'LockWindowUpdate', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToAsciiEx', 'DrawFrameControl', 'DrawEdge', 'DrawStateA', 'LoadMenuW', 'SetClassLongA', 'DestroyAcceleratorTable', 'SetParent', 'SetWindowRgn', 'RegisterClipboardFormatA', 'DrawIconEx', 'CopyImage', 'GetIconInfo', 'NotifyWinEvent', 'EnableScrollBar', 'HideCaret', 'DrawFocusRect', 'InvertRect', 'GetAsyncKeyState', 'MapVirtualKeyA', 'GetMenuDefaultItem', 'RedrawWindow', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'LoadImageA', 'InsertMenuItemA', 'BringWindowToTop', 'UnregisterClassA', 'MessageBeep', 'GetNextDlgGroupItem', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'WindowFromPoint', 'LoadCursorW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'KillTimer', 'SetTimer', 'DeleteMenu', 'ReleaseCapture', 'SetCapture', 'InvalidateRgn', 'InvalidateRect', 'IntersectRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'RealChildWindowFromPoint', 'LoadCursorA', 'GetSysColorBrush', 'DefMDIChildProcA', 'IsZoomed', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'SetWindowContextHelpId', 'MapDialogRect', 'ShowOwnedPopups', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'OffsetRect', 'CharNextA', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'EnableWindow', 'CharUpperW', 'SendMessageA', 'wsprintfA', 'TranslateAcceleratorA', 'CheckDlgButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'DrawMenuBar', 'TranslateMDISysAccel', 'CreateMenu', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'FrameRect', 'GetUpdateRect', 'CopyIcon', 'CharUpperBuffA', 'GetDoubleClickTime', 'SubtractRect', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'IsWindow', 'SetFocus', 'GetWindowTextLengthA', 'DestroyCursor', 'GetWindowRgn', 'SetRectEmpty', 'DrawIcon', 'CreatePopupMenu', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetWindowRect', 'GetClientRect', 'LoadIconW', 'GetSystemMetrics', 'LoadAcceleratorsA', 'RemoveMenu', 'GetSubMenu', 'GetMenuItemCount', 'InsertMenuA', 'GetMenuItemID', 'GetMenuStringA', 'GetMenuState', 'GetWindow', 'SetWindowPos', 'SetWindowLongA', 'GetWindowLongA', 'GetMenu', 'CallWindowProcA', 'DefWindowProcA', 'GetDlgCtrlID', 'GetWindowPlacement', 'SetWindowPlacement', 'PtInRect', 'CopyRect', 'SetScrollInfo', 'GetScrollInfo', 'DeferWindowPos', 'EqualRect', 'ScreenToClient', 'GetParent', 'AdjustWindowRectEx', 'GetSysColor', 'RegisterClassA', 'GetClassInfoA', 'GetClassInfoExA', 'CreateWindowExA', 'MessageBoxA', 'PostMessageA', 'UpdateWindow', 'IsWindowVisible', 'ShowScrollBar', 'SetForegroundWindow', 'GetScrollPos', 'SetScrollPos', 'GetScrollRange', 'SetScrollRange', 'SetMenu', 'GetKeyState', 'TrackPopupMenu', 'ScrollWindow', 'MapWindowPoints', 'GetMonitorInfoA', 'MonitorFromWindow', 'PeekMessageA', 'GetMessagePos', 'GetMessageTime', 'UnhookWindowsHookEx', 'DestroyWindow', 'GetTopWindow', 'GetDlgItem', 'EndDeferWindowPos', 'BeginDeferWindowPos', 'DispatchMessageA', 'SetActiveWindow', 'GetLastActivePopup', 'GetForegroundWindow', 'GetWindowTextA', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'CreateDIBSection', 'CreateRoundRectRgn', 'CreatePolygonRgn', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'SetDIBColorTable', 'StretchBlt', 'SetPixel', 'Rectangle', 'OffsetRgn', 'EnumFontFamiliesExA', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetTextFaceA', 'CreateHatchBrush', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'GetTextCharsetInfo', 'EnumFontFamiliesA', 'CreatePen', 'GetObjectType', 'SelectPalette', 'CreateCompatibleDC', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'CreateCompatibleBitmap', 'CreateDIBitmap', 'DPtoLP', 'PatBlt', 'GetMapMode', 'CombineRgn', 'SetRectRgn', 'GetRgnBox', 'CreateRectRgnIndirect', 'GetTextMetricsA', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'DeleteObject', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextColor', 'GetBkColor', 'CreateFontIndirectA', 'GetObjectA', 'GetDeviceCaps', 'CreateSolidBrush', 'GetTextExtentPoint32A', 'CopyMetaFileA', 'CreateDCA', 'SetTextColor', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'GetStockObject', 'SetBkColor', 'CreateBitmap', 'OffsetViewportOrgEx', 'TransparentBlt', 'AlphaBlend', 'GetFileTitleA', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'CryptImportKey', 'CryptDestroyKey', 'CryptGetHashParam', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'RegEnumKeyExA', 'RegEnumValueA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'CryptEncrypt', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'SHGetDesktopFolder', 'SHAppBarMessage', 'SHBrowseForFolderA', 'ShellExecuteA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'ImageList_GetIconSize', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'OleGetClipboard', 'RegisterDragDrop', 'CoLockObjectExternal', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'RevokeDragDrop', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CoUninitialize', 'DoDragDrop', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CoRevokeClassObject', 'CreateILockBytesOnHGlobal', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoCreateGuid', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'StgCreateDocfileOnILockBytes', 'VariantInit', 'VariantCopy', 'VariantChangeType', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'SysStringLen', 'SysAllocStringLen', 'SafeArrayDestroy', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'VarBstrFromDate', 'VariantClear', 'SysFreeString', 'SysAllocString', 'getsockname', 'WSAIoctl', 'send', 'recv', 'select', 'WSAGetLastError', '__WSAFDIsSet', 'WSASetLastError', 'WSAStartup', 'WSACleanup', 'ntohs', 'bind', 'htons', 'getsockopt', 'getpeername', 'socket', 'connect', 'freeaddrinfo', 'getaddrinfo', 'sendto', 'recvfrom', 'accept', 'listen', 'ioctlsocket', 'gethostname', 'htonl', 'ntohl', 'setsockopt', 'closesocket', 'CertFreeCertificateContext', 'InternetOpenUrlA', 'InternetOpenA', 'InternetCloseHandle', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'ImmGetOpenStatus', 'ImmGetContext', 'ImmReleaseContext', 'PlaySoundA'], ['BufferedPaintSetAlpha', 'DrawThemeTextEx', 'GetThemePropertyOrigin', 'GetThemeBackgroundContentRect', 'DrawThemeBackground', 'StrCmpNA', 'StrRetToBufW', 'StrRetToStrA', 'wnsprintfA', 'StrCmpIW', 'StrSpnA', 'StrCmpNW', 'StrChrA', 'GetModuleHandleExW', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetStringTypeW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap', 'HeapSize'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaVarIdiv', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrComp', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['memmove', 'wcschr', 'wcslen', 'wcsncmp', '_itoa', '_strlwr', 'qsort', 'strncmp', '_snprintf', '_mbsrchr', '_mbsnbicmp', '__dllonexit', '_onexit', '_c_exit', '_exit', '_XcptFilter', '_cexit', '_strnicmp', '_acmdln', '__getmainargs', '_initterm', '_memicmp', 'malloc', 'strrchr', '_stricmp', 'free', 'modf', 'memcmp', 'strtoul', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'memcpy', 'sprintf', '_mbsicmp', 'atoi', '_strcmpi', 'strlen', 'strcmp', 'exit', '_adjust_fdiv', 'wcsstr', 'log', '_mbscmp', 'strchr', '_purecall', 'strncat', 'abs', 'strcat', '_ultoa', 'strcpy', 'memset', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp', '_except_handler3', '__setusermatherr', 'CreateToolbarEx', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_SetImageCount', 'ImageList_ReplaceIcon', 'UuidFromStringA', 'GetCurrentDirectoryA', 'GetModuleHandleA', 'SetCurrentDirectoryA', 'GetCurrentProcess', 'ExitProcess', 'GetCurrentProcessId', 'ReadProcessMemory', 'OpenProcess', 'GetStdHandle', 'GetPrivateProfileIntA', 'EnumResourceNamesA', 'WritePrivateProfileStringA', 'GetComputerNameA', 'GetFileSize', 'CreateFileA', 'GlobalUnlock', 'GlobalLock', 'GetTempPathA', 'GlobalAlloc', 'CloseHandle', 'FindResourceA', 'LoadResource', 'EnumResourceTypesA', 'SizeofResource', 'LockResource', 'DeleteFileA', 'GetStartupInfoA', 'GetPrivateProfileStringA', 'MultiByteToWideChar', 'WideCharToMultiByte', 'ExpandEnvironmentStringsA', 'LocalFree', 'WriteFile', 'GetPrivateProfileSectionA', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GetModuleFileNameA', 'FindFirstFileA', 'FindNextFileA', 'SetFilePointer', 'GetLastError', 'LoadLibraryExA', 'GetFileAttributesA', 'GetTempFileNameA', 'FindClose', 'FormatMessageA', 'GetWindowsDirectoryA', 'ReadFile', 'GetVersionExA', 'GetClassNameA', 'GetMessageA', 'TranslateMessage', 'RegisterWindowMessageA', 'PostQuitMessage', 'TrackPopupMenu', 'PostMessageA', 'GetFocus', 'DispatchMessageA', 'DrawTextExA', 'IsDialogMessageA', 'GetWindowTextA', 'GetMenuItemInfoA', 'EnumChildWindows', 'DestroyMenu', 'GetDlgCtrlID', 'DialogBoxParamA', 'ShowWindow', 'SetCursor', 'LoadCursorA', 'ChildWindowFromPoint', 'GetSysColorBrush', 'EndDialog', 'GetDlgItem', 'CreateWindowExA', 'InvalidateRect', 'SetDlgItemInt', 'BeginPaint', 'GetClientRect', 'GetWindow', 'SetDlgItemTextA', 'DrawFrameControl', 'GetDlgItemTextA', 'SendDlgItemMessageA', 'SetWindowTextA', 'GetWindowRect', 'GetSystemMetrics', 'GetDlgItemInt', 'DeferWindowPos', 'EndPaint', 'DefWindowProcA', 'TranslateAcceleratorA', 'MessageBoxA', 'GetWindowPlacement', 'RegisterClassA', 'UpdateWindow', 'SetMenu', 'LoadAcceleratorsA', 'SetWindowPos', 'SendMessageA', 'LoadIconA', 'GetWindowLongA', 'SetWindowLongA', 'SetFocus', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'CheckMenuItem', 'GetMenuItemCount', 'SetClipboardData', 'GetMenuStringA', 'EnableWindow', 'DestroyWindow', 'GetCursorPos', 'LoadImageA', 'GetSysColor', 'MapWindowPoints', 'GetMenu', 'CloseClipboard', 'GetParent', 'OpenClipboard', 'GetDC', 'EmptyClipboard', 'MoveWindow', 'GetSubMenu', 'EnableMenuItem', 'ReleaseDC', 'LoadMenuA', 'LoadStringA', 'CreateDialogParamA', 'ModifyMenuA', 'GetDeviceCaps', 'SetTextColor', 'CreateFontIndirectA', 'SetBkMode', 'DeleteObject', 'GetTextExtentPoint32A', 'SetBkColor', 'SelectObject', 'GetOpenFileNameA', 'GetSaveFileNameA', 'FindTextA', 'RegEnumKeyA', 'RegEnumKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'GetUserNameA', 'RegCloseKey', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'SHGetMalloc', 'ShellExecuteA', 'CoInitialize', 'CoTaskMemFree', 'CoUninitialize'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetTempPathA', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'SetEnvironmentVariableA', 'Sleep', 'GetTickCount', 'GetCommandLineA', 'lstrlenA', 'GetVersion', 'SetErrorMode', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GetWindowsDirectoryA', 'SetCurrentDirectoryA', 'GetLastError', 'CreateDirectoryA', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'ReadFile', 'WriteFile', 'lstrcpyA', 'MoveFileExA', 'lstrcatA', 'GetSystemDirectoryA', 'GetProcAddress', 'GetExitCodeProcess', 'WaitForSingleObject', 'CompareFileTime', 'SetFileAttributesA', 'GetFileAttributesA', 'GetShortPathNameA', 'MoveFileA', 'GetFullPathNameA', 'SetFileTime', 'SearchPathA', 'CloseHandle', 'lstrcmpiA', 'CreateThread', 'GlobalLock', 'lstrcmpA', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'SetFilePointer', 'GetPrivateProfileStringA', 'FindClose', 'MultiByteToWideChar', 'FreeLibrary', 'MulDiv', 'WritePrivateProfileStringA', 'LoadLibraryExA', 'GetModuleHandleA', 'GlobalAlloc', 'GlobalFree', 'ExpandEnvironmentStringsA', 'ScreenToClient', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostQuitMessage', 'GetWindowRect', 'EnableMenuItem', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndDialog', 'RegisterClassA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'ExitWindowsEx', 'GetDC', 'CreateDialogParamA', 'SetTimer', 'GetDlgItem', 'SetWindowLongA', 'SetForegroundWindow', 'LoadImageA', 'IsWindow', 'SendMessageTimeoutA', 'FindWindowExA', 'OpenClipboard', 'TrackPopupMenu', 'AppendMenuA', 'EndPaint', 'DestroyWindow', 'wsprintfA', 'ShowWindow', 'SetWindowTextA', 'SelectObject', 'SetBkMode', 'CreateFontIndirectA', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'ShellExecuteExA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'SHFileOperationA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'RegOpenKeyExA', 'SetFileSecurityA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'RegEnumValueA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['DeleteFileA', 'FindClose', 'FindFirstFileA', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetStringTypeExA', 'GetThreadLocale', 'GetShortPathNameA', 'GetFileAttributesA', 'GetFileTime', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'SetFileTime', 'SetFileAttributesA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'RtlUnwind', 'HeapReAlloc', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'TerminateProcess', 'CreateThread', 'ExitThread', 'RaiseException', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetEnvironmentVariableA', 'MoveFileA', 'HeapDestroy', 'HeapCreate', 'IsBadWritePtr', 'FatalAppExitA', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'SetConsoleCtrlHandler', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetLocaleInfoW', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'SizeofResource', 'GetProcessVersion', 'GetLastError', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedExchange', 'InterlockedIncrement', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GlobalFlags', 'lstrlenA', 'lstrcpynA', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalFree', 'LocalAlloc', 'InterlockedDecrement', 'MulDiv', 'SetLastError', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'GetModuleHandleA', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'GetModuleFileNameA', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'FreeLibrary', 'HeapFree', 'LoadLibraryA', 'GetProcAddress', 'VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFileSize', 'ReadFile', 'CreateFileA', 'WriteFile', 'CloseHandle', 'GetVersionExA', 'Sleep', 'EndDeferWindowPos', 'CopyRect', 'BeginDeferWindowPos', 'DeferWindowPos', 'EqualRect', 'ScreenToClient', 'AdjustWindowRectEx', 'SetFocus', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'UpdateWindow', 'CheckDlgButton', 'CheckRadioButton', 'GetDlgItemInt', 'GetDlgItemTextA', 'SetDlgItemInt', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'ShowWindow', 'ClientToScreen', 'GetDC', 'ReleaseDC', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'LoadCursorA', 'SetCapture', 'ReleaseCapture', 'WaitMessage', 'GetDesktopWindow', 'GetWindowThreadProcessId', 'WindowFromPoint', 'GetClassNameA', 'PtInRect', 'InsertMenuA', 'DeleteMenu', 'GetMenuStringA', 'CharToOemA', 'OemToCharA', 'GetSysColorBrush', 'LoadStringA', 'GetDialogBaseUnits', 'DestroyMenu', 'SetRectEmpty', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'LoadMenuA', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'InvalidateRect', 'BringWindowToTop', 'CharUpperA', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'SetWindowLongA', 'SetWindowPos', 'RegisterWindowMessageA', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'GetCursorPos', 'SetWindowsHookExA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'MessageBoxA', 'SetCursor', 'ShowOwnedPopups', 'PostQuitMessage', 'PostMessageA', 'LoadIconA', 'EnableWindow', 'GetClientRect', 'IsIconic', 'SendMessageA', 'DrawIcon', 'GetSystemMetrics', 'OffsetRect', 'UnregisterClassA', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'PolyDraw', 'GetObjectA', 'PolylineTo', 'SetColorAdjustment', 'SetStretchBltMode', 'DeleteObject', 'SetPolyFillMode', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateFontIndirectA', 'PolyBezierTo', 'SetROP2', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'SetBkMode', 'SelectPalette', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'StartDocA', 'GetClipRgn', 'CreateBitmap', 'GetDCOrgEx', 'DeleteDC', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegOpenKeyA', 'SHGetFileInfoA', 'DragQueryFileA', 'DragAcceptFiles', 'DragFinish', 'MakeSureDirectoryPathExists'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaI2I4', '__vbaObjVar', '__vbaVarLateMemSt', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'GetStdHandle', 'VirtualFree', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryA', 'LockResource', 'LoadResource', 'SizeofResource', 'FindResourceExA', 'MulDiv', 'GlobalFree', 'GlobalAlloc', 'lstrcmpiA', 'GetSystemDefaultLCID', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'MultiByteToWideChar', 'GetLocaleInfoW', 'lstrlenA', 'lstrcmpiW', 'GetEnvironmentVariableW', 'lstrcmpW', 'GlobalMemoryStatusEx', 'VirtualAlloc', 'WideCharToMultiByte', 'ExpandEnvironmentStringsW', 'RemoveDirectoryW', 'FindClose', 'FindNextFileW', 'DeleteFileW', 'FindFirstFileW', 'SetThreadLocale', 'GetLocalTime', 'GetSystemTimeAsFileTime', 'lstrlenW', 'GetTempPathW', 'SetEnvironmentVariableW', 'CloseHandle', 'CreateFileW', 'GetDriveTypeW', 'SetCurrentDirectoryW', 'GetModuleFileNameW', 'GetCommandLineW', 'GetVersionExW', 'CreateEventW', 'SetEvent', 'ResetEvent', 'InitializeCriticalSection', 'TerminateThread', 'ResumeThread', 'SuspendThread', 'IsBadReadPtr', 'LocalFree', 'lstrcpyW', 'FormatMessageW', 'GetSystemDirectoryW', 'DeleteCriticalSection', 'GetFileSize', 'SetFilePointer', 'ReadFile', 'SetFileTime', 'SetEndOfFile', 'EnterCriticalSection', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'GetModuleHandleA', 'SystemTimeToFileTime', 'GetLastError', 'CreateThread', 'WaitForSingleObject', 'GetExitCodeThread', 'Sleep', 'SetLastError', 'SetFileAttributesW', 'GetDiskFreeSpaceExW', 'lstrcatW', 'ExitProcess', 'CompareFileTime', 'GetStartupInfoA', 'CharUpperW', 'EndDialog', 'DestroyWindow', 'KillTimer', 'ReleaseDC', 'DispatchMessageW', 'GetMessageW', 'SetTimer', 'CreateWindowExW', 'ScreenToClient', 'GetWindowRect', 'wsprintfW', 'GetParent', 'GetSystemMenu', 'EnableMenuItem', 'EnableWindow', 'MessageBeep', 'LoadIconW', 'LoadImageW', 'wvsprintfW', 'IsWindow', 'DefWindowProcW', 'CallWindowProcW', 'DrawIconEx', 'DialogBoxIndirectParamW', 'GetWindow', 'ClientToScreen', 'GetDC', 'DrawTextW', 'ShowWindow', 'SystemParametersInfoW', 'SetFocus', 'SetWindowLongW', 'GetSystemMetrics', 'GetClientRect', 'GetDlgItem', 'GetKeyState', 'MessageBoxA', 'wsprintfA', 'SetWindowTextW', 'GetSysColor', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetClassNameA', 'GetWindowLongW', 'GetMenu', 'SetWindowPos', 'CopyImage', 'SendMessageW', 'GetWindowDC', 'GetCurrentObject', 'StretchBlt', 'SetStretchBltMode', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'GetObjectW', 'GetDeviceCaps', 'DeleteObject', 'CreateFontIndirectW', 'DeleteDC', 'SHGetFileInfoW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetMalloc', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'ShellExecuteW', 'CoInitialize', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'VariantClear', 'OleLoadPicture', 'SysAllocString', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_CxxThrowException', '_beginthreadex', '_EH_prolog', 'memset', '_wcsnicmp', 'strncmp', 'malloc', 'memmove', '_wtol', 'memcpy', 'free', 'memcmp', '_purecall', '??2@YAPAXI@Z', '??3@YAXPAX@Z', '_except_handler3', '_controlfp'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaHresultCheck', '__vbaFreeVar', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', 'DllFunctionCall', '__vbaVarLateMemSt', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['RegOpenKeyA', 'GetUserNameA', 'FreeSid', 'AllocateAndInitializeSid', 'RegDeleteKeyA', 'EqualSid', 'RegSetValueExA', 'GetTokenInformation', 'OpenProcessToken', 'RegCloseKey', 'GetCurrentThread', 'VirtualFree', 'ExpandEnvironmentStringsA', 'WriteFile', 'OpenProcess', 'WideCharToMultiByte', 'GetVolumeInformationA', 'Sleep', 'SizeofResource', 'CreateProcessA', 'ReadFile', 'GetSystemDirectoryA', 'MultiByteToWideChar', 'SetThreadPriority', 'GetTickCount', 'GetStartupInfoA', 'FindFirstFileA', 'GetLastError', 'VirtualAlloc', 'FindClose', 'LockResource', 'CreatePipe', 'GetModuleFileNameA', 'GetVersionExA', 'WinExec', 'CloseHandle', 'GetCurrentProcessId', 'GetTempPathA', 'GetCurrentProcess', 'LoadResource', 'PeekNamedPipe', 'SetFilePointer', 'SetPriorityClass', 'FindResourceA', 'GetFileSize', 'CreateFileA', 'GetComputerNameA', 'CreateDirectoryA', 'ExitProcess', 'CreateFileW', 'GetProcessHeap', 'SetEndOfFile', 'HeapReAlloc', 'GetStringTypeW', 'LCMapStringW', 'FlushFileBuffers', 'WriteConsoleW', 'SetStdHandle', 'GetProcAddress', 'GetModuleHandleW', 'DecodePointer', 'HeapFree', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'LoadLibraryW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'GetStdHandle', 'GetModuleFileNameW', 'HeapCreate', 'RtlUnwind', 'GetConsoleCP', 'GetConsoleMode', 'SetHandleCount', 'GetFileType', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapSize', 'IsProcessorFeaturePresent', 'SHChangeNotify', 'ShellExecuteA', 'HttpOpenRequestA', 'InternetOpenUrlA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'InternetConnectA', 'InternetReadFile'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'ObtainUserAgentString', 'CreateEnvironmentBlock', 'InternetOpenW', 'gethostbyname', 'WTSFreeMemory'], ['_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '_setmbcp', '__CxxFrameHandler', '_mbsstr', '_mbsspn', 'free', '_mbstok', '_strdup', '__dllonexit', 'GetModuleHandleA', 'LoadLibraryA', 'VirtualProtect', 'lstrcatA', 'lstrcpyA', 'GetWindowsDirectoryA', 'FreeLibrary', 'GetStartupInfoA', 'GlobalAlloc', 'GlobalUnlock', 'GlobalLock', 'InflateRect', 'ReleaseDC', 'GetDC', 'GetParent', 'GetWindowRect', 'IsWindow', 'LoadCursorA', 'RedrawWindow', 'PtInRect', 'GetCursorPos', 'KillTimer', 'GetSystemMetrics', 'DrawFocusRect', 'GetSubMenu', 'LoadMenuA', 'EnumWindows', 'LoadIconA', 'GetSysColor', 'GetSystemMenu', 'LoadAcceleratorsA', 'DrawIcon', 'IsIconic', 'UpdateWindow', 'TranslateAcceleratorA', 'SetWindowLongA', 'GetClientRect', 'SetTimer', 'SetCursor', 'SendMessageA', 'DestroyCursor', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'CloseClipboard', 'AppendMenuA', 'InvalidateRect', 'EnableWindow', 'CopyIcon', 'CreateFontIndirectA', 'GetTextMetricsA', 'GetCharWidthA', 'GetTextExtentPoint32A', 'GetObjectA', 'GetStockObject', 'RegQueryValueA', 'RegCloseKey', 'RegOpenKeyExA', 'ShellExecuteA'], ['HeapFree', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetSystemTimeAsFileTime', 'GetCommandLineA', 'HeapReAlloc', 'SetStdHandle', 'GetFileType', 'ExitThread', 'TerminateProcess', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'HeapAlloc', 'GetStdHandle', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'SetUnhandledExceptionFilter', 'IsBadReadPtr', 'IsBadCodePtr', 'SetEnvironmentVariableA', 'InterlockedExchange', 'RtlUnwind', 'GetTickCount', 'FindResourceExA', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetFileTime', 'GetFileAttributesA', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'VirtualProtect', 'FileTimeToLocalFileTime', 'FindNextFileA', 'FileTimeToSystemTime', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'CreateEventA', 'SetEvent', 'InterlockedDecrement', 'GetFullPathNameA', 'FindFirstFileA', 'FindClose', 'lstrcpyA', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'MoveFileA', 'lstrcmpA', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcatA', 'lstrcmpW', 'GetModuleHandleA', 'SetLastError', 'GlobalFree', 'MulDiv', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'lstrcpynA', 'LocalFree', 'ReadDirectoryChangesW', 'CompareStringW', 'CompareStringA', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'MultiByteToWideChar', 'GetModuleFileNameA', 'GetVolumeInformationA', 'CreateThread', 'SetThreadPriority', 'GetDriveTypeA', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'GetLogicalDriveStringsA', 'GetCurrentProcess', 'GetShortPathNameA', 'OpenProcess', 'ResumeThread', 'SuspendThread', 'GetExitCodeThread', 'TerminateThread', 'Sleep', 'CreateProcessA', 'WaitForSingleObject', 'GetLastError', 'ExitProcess', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'CreateFileA', 'CloseHandle', 'DeleteFileA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'WideCharToMultiByte', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'SetHandleCount', 'PostThreadMessageA', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'CharNextA', 'GetSysColorBrush', 'GetAsyncKeyState', 'SetWindowContextHelpId', 'MapDialogRect', 'WaitMessage', 'SetRectEmpty', 'PostQuitMessage', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'DestroyMenu', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'wsprintfA', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'IsWindowEnabled', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'SetParent', 'SendDlgItemMessageA', 'GetFocus', 'IsWindow', 'SetFocus', 'IsChild', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'MessageBoxA', 'TrackPopupMenu', 'GetKeyState', 'EnableWindow', 'SendMessageA', 'CopyRect', 'InflateRect', 'LoadBitmapA', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'ModifyMenuA', 'GetClientRect', 'UpdateWindow', 'InvalidateRect', 'RedrawWindow', 'SetTimer', 'SetForegroundWindow', 'GetMenu', 'AdjustWindowRectEx', 'GetParent', 'EqualRect', 'DeferWindowPos', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'GetDlgCtrlID', 'RegisterClipboardFormatA', 'LockWindowUpdate', 'GetDCEx', 'MessageBeep', 'GetNextDlgGroupItem', 'DefWindowProcA', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'PtInRect', 'GetWindow', 'GetMenuState', 'GetMenuStringA', 'InvalidateRgn', 'CopyAcceleratorTableA', 'IsRectEmpty', 'RemovePropA', 'KillTimer', 'SetCursor', 'GetSysColor', 'CreateWindowExA', 'ShowWindow', 'CreateWindowExW', 'GetWindowRect', 'ClipCursor', 'SetSystemCursor', 'ShowCursor', 'DrawIcon', 'LoadMenuA', 'IsIconic', 'ScreenToClient', 'IsWindowVisible', 'LoadCursorA', 'LoadIconA', 'GetSystemMetrics', 'FillRect', 'SetRect', 'GetCursorPos', 'LoadCursorFromFileA', 'CopyIcon', 'ExitWindowsEx', 'PeekMessageA', 'PostMessageA', 'CharUpperA', 'TabbedTextOutA', 'CombineRgn', 'GetMapMode', 'PatBlt', 'StretchDIBits', 'CreateCompatibleBitmap', 'GetCharWidthA', 'GetBkColor', 'SetRectRgn', 'GetRgnBox', 'EnumFontFamiliesExA', 'CreateRectRgnIndirect', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'GetTextColor', 'CreateFontA', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'ExtTextOutA', 'CreateBitmap', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'BitBlt', 'SelectObject', 'GetStockObject', 'CreateFontIndirectA', 'DeleteObject', 'CreateSolidBrush', 'StretchBlt', 'Rectangle', 'CreateCompatibleDC', 'GetObjectA', 'GetWindowExtEx', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyA', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'AdjustTokenPrivileges', 'SHBrowseForFolderA', 'ShellExecuteA', 'Shell_NotifyIconA', 'SHGetFileInfoA', 'SHGetPathFromIDListA', 'ImageList_ReplaceIcon', 'ImageList_Destroy', 'ImageList_Create', 'PropertySheetA', 'DestroyPropertySheetPage', 'CreatePropertySheetPageA', 'PathIsUNCA', 'PathFindExtensionA', 'PathStripToRootA', 'PathFindFileNameA', 'CoRevokeClassObject', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CLSIDFromProgID', 'CLSIDFromString', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoGetClassObject', 'StgOpenStorageOnILockBytes', 'StgCreateDocfileOnILockBytes', 'CreateILockBytesOnHGlobal', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'OleIsCurrentClipboard', 'VariantClear', 'VariantChangeType', 'SysFreeString', 'SysAllocString', 'SysStringLen', 'SysAllocStringByteLen', 'VariantInit', 'SysAllocStringLen', 'VariantCopy', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'OleCreateFontIndirect', 'recvfrom', 'WSAStartup', 'WSACleanup', 'accept', 'select', 'htonl', 'WSAGetLastError', 'WSASetLastError', 'connect', 'sendto', 'closesocket', 'WSAAsyncSelect', 'send', 'socket', 'gethostbyname', 'inet_addr', 'setsockopt', 'htons', 'bind', 'WSAIoctl', 'recv', 'ntohs', 'inet_ntoa', 'GetModuleFileNameExA', 'EnumProcessModules', 'EnumProcesses'], ['StrChrNW', 'StrCatChainW', 'StrRetToBufW', 'StrCpyNW', 'StrTrimW', 'StrStrIW', 'StrSpnA', 'StrRStrIW', 'StrPBrkW', 'StrIsIntlEqualW', 'StrFormatKBSizeW', 'StrFormatByteSize64A', 'StrCSpnIW', 'StrChrIW', 'RasSetAutodialEnableW', 'RasConnectionNotificationA', 'RasRenameEntryW', 'RasRenameEntryA', 'RasSetEntryPropertiesA', 'RasEditPhonebookEntryW', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetProcessHeap', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'LCMapStringW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType'], ['CertGetCertificateChain', 'CertFreeCertificateChainEngine', 'CertFreeCertificateChain', 'CertFindExtension', 'CryptDecodeObjectEx', 'CryptQueryObject', 'CertCreateCertificateChainEngine', 'CertEnumCertificatesInStore', 'CertOpenStore', 'CryptStringToBinaryW', 'CertCloseStore', 'CertFindCertificateInStore', 'PFXImportCertStore', 'CertAddCertificateContextToStore', 'CertFreeCertificateContext', 'GetDateFormatA', 'RtlUnwind', 'ExitProcess', 'RaiseException', 'HeapSize', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'SetHandleCount', 'GetStartupInfoA', 'HeapCreate', 'HeapDestroy', 'GetTimeFormatA', 'GetConsoleMode', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetUserDefaultLCID', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'IsValidLocale', 'GetStringTypeA', 'GetStringTypeW', 'SetStdHandle', 'GetProcessHeap', 'GetCurrentDirectoryA', 'GetTimeZoneInformation', 'InitializeCriticalSectionAndSpinCount', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'LCMapStringA', 'LCMapStringW', 'CreateFileA', 'GetDriveTypeA', 'SetEnvironmentVariableA', 'CreateThread', 'ExitThread', 'GetDriveTypeW', 'GetFileInformationByHandle', 'HeapReAlloc', 'HeapAlloc', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapFree', 'GetStartupInfoW', 'SetErrorMode', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetCurrentProcess', 'SetEndOfFile', 'FlushFileBuffers', 'lstrlenA', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalFree', 'LocalAlloc', 'InterlockedDecrement', 'GlobalFlags', 'MulDiv', 'GetFullPathNameW', 'GlobalFindAtomW', 'GetVersionExW', 'CompareStringW', 'GetVersionExA', 'GlobalAddAtomW', 'WritePrivateProfileStringW', 'FreeResource', 'GlobalFree', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'GetModuleFileNameW', 'lstrcmpA', 'GetLocaleInfoW', 'CompareStringA', 'InterlockedExchange', 'GlobalAlloc', 'GlobalUnlock', 'GlobalLock', 'lstrcmpW', 'GetFileSizeEx', 'SleepEx', 'GetModuleHandleA', 'VerSetConditionMask', 'VerifyVersionInfoW', 'WaitForSingleObject', 'MoveFileExW', 'GetEnvironmentVariableA', 'SetLastError', 'FormatMessageW', 'GetStdHandle', 'GetFileType', 'WaitForMultipleObjects', 'PeekNamedPipe', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'GetModuleHandleW', 'LoadLibraryW', 'GetSystemDirectoryW', 'FreeLibrary', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LocalFileTimeToFileTime', 'CloseHandle', 'GetCurrentDirectoryW', 'CreateFileW', 'ReadFile', 'GetFileAttributesW', 'WriteFile', 'SetFileTime', 'CreateDirectoryW', 'SystemTimeToFileTime', 'SetFilePointer', 'GetModuleFileNameA', 'LockResource', 'FindClose', 'GetLastError', 'CreateDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'CreateEventA', 'SizeofResource', 'Sleep', 'WideCharToMultiByte', 'LoadResource', 'FindResourceW', 'FindResourceExW', 'FindFirstFileW', 'VirtualProtect', 'GetSystemInfo', 'LoadLibraryA', 'VirtualAlloc', 'GetProcAddress', 'VirtualFree', 'GetTickCount', 'GetConsoleCP', 'DeleteFileA', 'DestroyMenu', 'RegisterWindowMessageW', 'LoadIconW', 'SendDlgItemMessageA', 'WinHelpW', 'GetCapture', 'GetClassLongW', 'GetClassNameW', 'SetPropW', 'GetPropW', 'RemovePropW', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'GetClientRect', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'GetSysColor', 'AdjustWindowRectEx', 'CopyRect', 'PtInRect', 'DefWindowProcW', 'CallWindowProcW', 'GetMenu', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetSystemMetrics', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'IsWindowVisible', 'GetKeyState', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuW', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowTextW', 'GetFocus', 'SetFocus', 'ShowWindow', 'SetWindowLongW', 'GetDlgCtrlID', 'IsWindow', 'UpdateWindow', 'UnregisterClassW', 'SetWindowTextW', 'IsDialogMessageW', 'SendDlgItemMessageW', 'GetDlgItem', 'GetWindow', 'SetWindowPos', 'GetWindowThreadProcessId', 'SendMessageW', 'GetParent', 'GetWindowLongW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'RegisterClipboardFormatW', 'PostMessageW', 'PostQuitMessage', 'LoadCursorW', 'ReleaseDC', 'GetDC', 'wsprintfW', 'EnableWindow', 'GetWindowRect', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GrayStringW', 'DrawTextExW', 'DrawTextW', 'TabbedTextOutW', 'ClientToScreen', 'IsIconic', 'SaveDC', 'RestoreDC', 'SetMapMode', 'PtVisible', 'RectVisible', 'TextOutW', 'ExtTextOutW', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteObject', 'SelectObject', 'GetStockObject', 'DeleteDC', 'GetDeviceCaps', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'Escape', 'CreateBitmap', 'OpenPrinterW', 'DocumentPropertiesW', 'ClosePrinter', 'RegQueryValueW', 'CryptReleaseContext', 'CryptGenRandom', 'CryptAcquireContextW', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptHashData', 'CryptCreateHash', 'CryptDestroyKey', 'CryptEncrypt', 'CryptImportKey', 'RegCloseKey', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegDeleteKeyW', 'RegEnumKeyW', 'RegOpenKeyW', 'InitCommonControlsEx', 'PathFindFileNameW', 'PathFindExtensionW', 'VariantClear', 'VariantChangeType', 'VariantInit', 'closesocket', 'ioctlsocket', 'gethostname', 'getpeername', '__WSAFDIsSet', 'select', 'connect', 'recv', 'WSAIoctl', 'setsockopt', 'getaddrinfo', 'freeaddrinfo', 'htonl', 'socket', 'listen', 'getsockname', 'accept', 'recvfrom', 'bind', 'sendto', 'htons', 'WSASetLastError', 'ntohs', 'WSACloseEvent', 'WSAEventSelect', 'WSAWaitForMultipleEvents', 'WSAEnumNetworkEvents', 'WSAResetEvent', 'getsockopt', 'WSACreateEvent', 'WSAStartup', 'WSACleanup', 'WSAGetLastError', 'send', 'LoadLibraryA', 'GetProcAddress', 'GetLastError', 'FreeLibrary', 'InitializeCriticalSection', 'GetModuleFileNameW', 'GetModuleHandleW', 'TerminateProcess', 'GetCurrentProcess', 'DeleteCriticalSection', 'LoadLibraryW', 'CreateEventW', 'CompareStringW', 'SetLastError', 'GetModuleHandleA', 'VirtualProtect', 'GetTickCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'VirtualAlloc', 'WriteProcessMemory', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'GetCurrentThreadId', 'Thread32First', 'OpenThread', 'Thread32Next', 'CloseHandle', 'SuspendThread', 'ResumeThread', 'GetSystemInfo', 'LoadResource', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FindResourceExW', 'FindResourceExA', 'GetThreadLocale', 'GetUserDefaultLCID', 'GetSystemDefaultLCID', 'EnumResourceNamesA', 'EnumResourceNamesW', 'EnumResourceLanguagesA', 'EnumResourceLanguagesW', 'EnumResourceTypesA', 'EnumResourceTypesW', 'HeapAlloc', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'GetSystemTime', 'GetLocalTime', 'SystemTimeToFileTime', 'CompareFileTime', 'GetCommandLineA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'LCMapStringA', 'LCMapStringW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'RaiseException', 'Sleep', 'ExitProcess', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'RtlUnwind', 'HeapSize', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'FlushFileBuffers', 'VirtualQuery', 'MessageBoxW', 'CharUpperBuffW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['lstrcatA', 'CreateProcessA', 'ExpandEnvironmentStringsA', 'lstrcpyA', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'GetFileAttributesA', 'GetModuleFileNameA', 'DeleteFileA', 'WinExec', 'CopyFileA', 'Process32Next', 'TerminateProcess', 'OpenProcess', 'Process32First', 'CreateToolhelp32Snapshot', 'GetVersionExA', 'ExitProcess', 'TerminateThread', 'SetThreadPriority', 'GetCurrentThread', 'SetPriorityClass', 'GetEnvironmentVariableA', 'GetShortPathNameA', 'GetLocalTime', 'CreateThread', 'LocalAlloc', 'ReadFile', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetSystemInfo', 'lstrcmpiA', 'LoadLibraryW', 'GetDiskFreeSpaceExA', 'GetDriveTypeA', 'GlobalMemoryStatusEx', 'CreateDirectoryA', 'ReleaseMutex', 'CreateMutexA', 'MoveFileExA', 'MoveFileA', 'SetFileAttributesA', 'DefineDosDeviceA', 'GetCurrentThreadId', 'GetSystemDirectoryA', 'GetFileSize', 'SetFilePointer', 'lstrlenA', 'CancelIo', 'InterlockedExchange', 'SetEvent', 'ResetEvent', 'WaitForSingleObject', 'CreateEventA', 'GlobalAlloc', 'GetLastError', 'LocalFree', 'SetLastError', 'CreateFileA', 'DeviceIoControl', 'WriteFile', 'CloseHandle', 'Sleep', 'GetVersion', 'VirtualFree', 'GetCurrentProcess', 'FindFirstFileA', 'FindNextFileA', 'GlobalLock', 'GlobalUnlock', 'VirtualAlloc', 'GetTickCount', 'GetLastInputInfo', 'EnumChildWindows', 'MoveWindow', 'GetSystemMetrics', 'ChangeDisplaySettingsA', 'EnumWindows', 'GetMessageA', 'PostThreadMessageA', 'GetForegroundWindow', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'ExitWindowsEx', 'SetClipboardData', 'EmptyClipboard', 'wsprintfA', 'GetWindowTextA', 'GetInputState', 'GetAsyncKeyState', 'GetKeyState', 'GetWindow', 'GetClassNameA', 'FindWindowA', 'MessageBoxA', 'SendMessageA', 'IsWindowVisible', 'RegSetValueExA', 'LookupPrivilegeValueA', 'OpenProcessToken', 'CloseEventLog', 'ClearEventLogA', 'OpenEventLogA', 'RegCloseKey', 'RegOpenKeyExA', 'DeleteService', 'OpenServiceA', 'OpenSCManagerA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegQueryValueA', 'CreateProcessAsUserA', 'SetTokenInformation', 'DuplicateTokenEx', 'SetServiceStatus', 'RegisterServiceCtrlHandlerA', 'StartServiceCtrlDispatcherA', 'CloseServiceHandle', 'StartServiceA', 'UnlockServiceDatabase', 'ChangeServiceConfig2A', 'LockServiceDatabase', 'CreateServiceA', 'AdjustTokenPrivileges', 'SHChangeNotify', 'ShellExecuteExA', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoCreateGuid', 'CoInitialize', 'CoUninitialize', 'getsockname', 'gethostname', 'send', 'closesocket', 'WSAStartup', 'WSACleanup', 'WSAIoctl', 'setsockopt', 'connect', 'htons', 'gethostbyname', 'recv', 'select', 'socket', '_strupr', 'memset', '_strcmpi', '_adjust_fdiv', '_initterm', '_onexit', '__dllonexit', '??1type_info@@UAE@XZ', 'strncmp', '_except_handler3', 'sprintf', '_beginthreadex', '_snprintf', 'strcspn', 'strncpy', 'atoi', '_access', 'strrchr', 'malloc', 'free', 'realloc', '_mbscmp', 'strstr', 'strcmp', '_CxxThrowException', 'memcmp', '??2@YAPAXI@Z', '_stricmp', 'exit', 'strcpy', '??3@YAXPAX@Z', 'memcpy', '_ftol', '__CxxFrameHandler', 'strlen', 'strcat', 'SetupDiSetClassInstallParamsA', 'SetupDiEnumDeviceInfo', 'SetupDiGetClassDevsA', 'SetupDiCallClassInstaller', 'SetupDiDestroyDeviceInfoList', 'SetupDiGetDeviceRegistryPropertyA', 'GetIfTable', 'URLDownloadToFileA', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ'], ['WsFileTimeToDateTime', 'BCryptSetProperty', 'BCryptGenerateSymmetricKey', 'BCryptOpenAlgorithmProvider', 'BCryptDecrypt', 'lstrcpyW', 'GetTickCount', 'HeapAlloc', 'GetProcessHeap', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'VirtualAlloc', 'HeapReAlloc', 'VirtualQuery', 'LocalAlloc', 'LocalFree', 'SystemTimeToFileTime', 'TerminateThread', 'CreateThread', 'WriteProcessMemory', 'GetCurrentProcess', 'OpenProcess', 'GetWindowsDirectoryA', 'VirtualProtectEx', 'VirtualAllocEx', 'CreateRemoteThread', 'GetModuleHandleW', 'IsWow64Process', 'WriteFile', 'CreateFileW', 'LoadLibraryW', 'GetLocalTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'ReadFile', 'FindFirstFileA', 'GetBinaryTypeW', 'FindNextFileA', 'GetFullPathNameA', 'CreateFileA', 'GlobalAlloc', 'GetCurrentDirectoryW', 'lstrcmpA', 'GetFileSize', 'FreeLibrary', 'SetDllDirectoryW', 'GetFileSizeEx', 'WaitForSingleObject', 'WaitForMultipleObjects', 'CreatePipe', 'PeekNamedPipe', 'DuplicateHandle', 'SetEvent', 'CreateProcessW', 'CreateEventA', 'GetModuleFileNameW', 'WideCharToMultiByte', 'LoadResource', 'FindResourceW', 'GetComputerNameW', 'GlobalMemoryStatusEx', 'LoadLibraryExW', 'FindFirstFileW', 'FindNextFileW', 'SetFilePointer', 'GetLogicalDriveStringsW', 'CopyFileW', 'GetDriveTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'lstrlenA', 'DeleteCriticalSection', 'CreateMutexA', 'ReleaseMutex', 'TerminateProcess', 'K32GetModuleFileNameExW', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'DeleteFileW', 'SizeofResource', 'VirtualProtect', 'GetSystemDirectoryW', 'LockResource', 'GetWindowsDirectoryW', 'Process32First', 'Process32Next', 'GetTempPathA', 'ExpandEnvironmentStringsW', 'lstrlenW', 'lstrcmpW', 'CreateProcessA', 'WinExec', 'ExitProcess', 'GetProcAddress', 'lstrcpyA', 'CloseHandle', 'lstrcatW', 'LoadLibraryA', 'GetLastError', 'GetPrivateProfileStringW', 'GetModuleHandleA', 'GetTempPathW', 'VirtualFree', 'SetLastError', 'Sleep', 'GetModuleFileNameA', 'CreateDirectoryW', 'MultiByteToWideChar', 'lstrcatA', 'SetCurrentDirectoryW', 'InitializeCriticalSection', 'GetKeyState', 'GetMessageA', 'DispatchMessageA', 'CreateWindowExW', 'CallNextHookEx', 'GetAsyncKeyState', 'RegisterClassW', 'GetRawInputData', 'MapVirtualKeyA', 'DefWindowProcA', 'RegisterRawInputDevices', 'TranslateMessage', 'ToUnicode', 'wsprintfW', 'PostQuitMessage', 'GetLastInputInfo', 'GetForegroundWindow', 'GetWindowTextW', 'wsprintfA', 'GetKeyNameTextW', 'CharLowerW', 'RegDeleteValueW', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'OpenProcessToken', 'FreeSid', 'LookupAccountSidW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'InitializeSecurityDescriptor', 'RegDeleteKeyA', 'SetSecurityDescriptorDacl', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyExW', 'RegQueryValueExA', 'RegQueryInfoKeyW', 'RegCloseKey', 'OpenServiceW', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'EnumServicesStatusExW', 'StartServiceW', 'RegSetValueExW', 'RegCreateKeyExA', 'OpenSCManagerW', 'CloseServiceHandle', 'GetTokenInformation', 'RegSetValueExA', 'SHGetFolderPathW', 'ShellExecuteExA', 'SHGetKnownFolderPath', 'SHFileOperationW', 'SHGetSpecialFolderPathW', 'SHCreateDirectoryExW', 'ShellExecuteW', 'URLDownloadToFileW', 'getaddrinfo', 'setsockopt', 'freeaddrinfo', 'htons', 'recv', 'socket', 'send', 'WSAConnect', 'WSAStartup', 'shutdown', 'closesocket', 'WSACleanup', 'connect', 'InetNtopW', 'gethostbyname', 'inet_addr', 'CoCreateInstance', 'CoInitialize', 'CoTaskMemFree', 'CoUninitialize', 'CoInitializeSecurity', 'StrStrW', 'PathFindExtensionW', 'PathCombineA', 'PathFindFileNameW', 'StrStrA', 'PathRemoveFileSpecA', 'PathFileExistsW', 'NetUserAdd', 'NetLocalGroupAddMembers', 'VariantInit', 'CryptUnprotectData', 'CryptStringToBinaryA', 'CryptStringToBinaryW', 'InternetTimeToSystemTimeA'], ['SelectObject', 'GetObjectA', 'CreateCompatibleDC', 'BitBlt', 'VirtualAlloc', 'RtlMoveMemory', 'WideCharToMultiByte', 'GetSystemDefaultLCID', 'LoadImageA', 'LoadStringW', 'ReleaseDC', 'GetDC', '__vbaVarSub', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFpCDblR4', '__vbaAryMove', '__vbaFreeVar', '__vbaLenBstr', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '__vbaPut3', '_adj_fdiv_m64', '__vbaRaiseEvent', '__vbaFreeObjList', '_adj_fprem1', '__vbaResume', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaLateMemSt', '__vbaExitProc', '__vbaI4Abs', '__vbaFileCloseAll', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaVarIndexLoad', '__vbaFpR4', '__vbaBoolVar', '__vbaRefVarAry', '__vbaFpR8', '_CIsin', '__vbaErase', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaGet3', '__vbaAryConstruct2', '__vbaPutOwner3', '__vbaDateR8', '__vbaI2I4', 'DllFunctionCall', '__vbaCastObjVar', '__vbaRedimPreserve', '_adj_fpatan', '__vbaR4Var', '__vbaRedim', 'EVENT_SINK_Release', '__vbaNew', '__vbaUI1I2', '_CIsqrt', '__vbaObjIs', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaUbound', '__vbaStrVarVal', '__vbaGetOwner3', '__vbaVarCat', '__vbaDateVar', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaVar2Vec', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaPowerR8', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaAryLock', '__vbaStrToAnsi', '__vbaVarDup', '__vbaFpI2', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '__vbaFpCSngR4', '_CItan', '__vbaFPInt', '__vbaAryUnlock', '__vbaFpCSngR8', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaVarForInit', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaI2I4', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '__vbaStrToAnsi', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaVarForNext', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaAryConstruct2', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '_CIatan', '__vbaStrMove', '__vbaAryCopy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetTickCount', 'HeapFree', 'HeapAlloc', 'VirtualProtect', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'FlsSetValue', 'GetCommandLineA', 'GetProcessHeap', 'RtlLookupFunctionEntry', 'RtlUnwindEx', 'ExitProcess', 'RaiseException', 'RtlPcToFileHeader', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'FlsGetValue', 'FlsFree', 'FlsAlloc', 'GetFileTime', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetOEMCP', 'GetCPInfo', 'FileTimeToSystemTime', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'TlsGetValue', 'LocalAlloc', 'WritePrivateProfileStringA', 'GlobalFlags', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'CloseHandle', 'FreeResource', 'GlobalFree', 'GlobalAddAtomA', 'GetCurrentProcessId', 'SetLastError', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'LoadLibraryA', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'LockResource', 'VirtualAlloc', 'SizeofResource', 'LoadResource', 'FindResourceA', 'GetVersion', 'CompareStringA', 'GetLastError', 'MultiByteToWideChar', 'CompareStringW', 'WideCharToMultiByte', 'lstrlenA', 'Sleep', 'CopyAcceleratorTableA', 'IsRectEmpty', 'InvalidateRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'GetClassLongPtrA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'GetWindowLongPtrA', 'SetWindowLongPtrA', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'CharNextA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'GetWindowPlacement', 'GetWindowRect', 'SystemParametersInfoA', 'DestroyMenu', 'CopyRect', 'UnhookWindowsHookEx', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GetWindowTextA', 'SetFocus', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'CharUpperA', 'EnableWindow', 'GetSystemMetrics', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'GetCursorPos', 'ValidateRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'ReleaseCapture', 'SetCapture', 'LoadCursorA', 'GetSysColorBrush', 'GetClassInfoExA', 'AppendMenuA', 'PeekMessageA', 'MessageBoxA', 'SendMessageA', 'GetClientRect', 'DrawIcon', 'LoadIconA', 'IsIconic', 'PostQuitMessage', 'GetSystemMenu', 'GetSysColor', 'TabbedTextOutA', 'SetRect', 'DrawTextExA', 'GrayStringA', 'DrawTextA', 'FillRect', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'PostMessageA', 'SetCursor', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongA', 'GetWindowThreadProcessId', 'SetWindowPos', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'CreateRectRgnIndirect', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetMapMode', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectA', 'TextOutA', 'DeleteObject', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateBitmap', 'BitBlt', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'PtVisible', 'Escape', 'RectVisible', 'ExtTextOutA', 'CreateSolidBrush', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoRevokeClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'SysAllocStringLen', 'SysStringLen', 'SysAllocStringByteLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['GetShortPathNameA', 'GetFullPathNameA', 'MoveFileA', 'GetLastError', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'SearchPathA', 'SetFileAttributesA', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'GetWindowsDirectoryA', 'SetFileTime', 'CompareFileTime', 'lstrlenA', 'GetVersion', 'SetErrorMode', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateDirectoryA', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'lstrcatA', 'GetSystemDirectoryA', 'CloseHandle', 'lstrcmpiA', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'GlobalFree', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GetCommandLineA', 'GetTempPathA', 'GetProcAddress', 'DeleteFileA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'SetFilePointer', 'ReadFile', 'WriteFile', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'MultiByteToWideChar', 'FreeLibrary', 'MulDiv', 'LoadLibraryExA', 'GetModuleHandleA', 'GetWindowRect', 'EnableMenuItem', 'GetSystemMenu', 'ScreenToClient', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SystemParametersInfoA', 'RegisterClassA', 'EndDialog', 'TrackPopupMenu', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'wvsprintfA', 'DispatchMessageA', 'PeekMessageA', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndPaint', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'SetTimer', 'OpenClipboard', 'SetWindowTextA', 'GetDC', 'LoadImageA', 'ShowWindow', 'wsprintfA', 'SendMessageTimeoutA', 'FindWindowExA', 'IsWindow', 'GetDlgItem', 'SetWindowLongA', 'SetClipboardData', 'EmptyClipboard', 'DestroyWindow', 'ExitWindowsEx', 'SetForegroundWindow', 'PostQuitMessage', 'CreateDialogParamA', 'SelectObject', 'SetTextColor', 'SetBkMode', 'CreateFontIndirectA', 'CreateBrushIndirect', 'DeleteObject', 'GetDeviceCaps', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'RegDeleteValueA', 'SetFileSecurityA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumValueA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['RegCloseKey', 'RegQueryInfoKeyW', 'RegEnumKeyExW', 'RegOpenKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegOpenKeyExA', 'GetTickCount', 'GetLastError', 'SetLastError', 'MulDiv', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'GetCurrentProcessId', 'InitializeCriticalSection', 'GetCommandLineW', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapSetInformation', 'CreateEventW', 'CloseHandle', 'SetEvent', 'OpenEventW', 'LockResource', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FindResourceExW', 'LoadResource', 'SizeofResource', 'MultiByteToWideChar', 'RaiseException', 'lstrcmpiW', 'GetModuleHandleW', 'LoadLibraryExW', 'GetACP', 'GetSystemDefaultLCID', 'GetVersionExA', 'GetProfileIntA', 'GetUserDefaultLCID', 'GetSystemDefaultLangID', 'DisableThreadLibraryCalls', 'HeapCreate', 'ResetEvent', 'WaitForSingleObject', 'WaitForMultipleObjects', 'TryEnterCriticalSection', 'ResumeThread', 'SetThreadPriority', 'CreateThread', 'GetLocaleInfoW', 'GetUserDefaultUILanguage', 'FreeResource', 'FindResourceW', 'LoadLibraryW', 'GetModuleHandleExW', 'LocalFree', 'LocalAlloc', 'OutputDebugStringA', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'GetModuleHandleA', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStartupInfoW', 'Sleep', 'InterlockedPushEntrySList', 'LoadLibraryExA', 'DecodePointer', 'VirtualAlloc', 'FlushInstructionCache', 'IsProcessorFeaturePresent', 'InterlockedPopEntrySList', 'VirtualFree', 'GetCurrentProcess', 'EncodePointer', 'WideCharToMultiByte', 'GetStringTypeExW', 'GetProcessHeap', 'HeapSize', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'HeapDestroy', 'FreeLibrary', 'GetProcAddress', 'BitBlt', 'CreateDIBSection', 'GetRegionData', 'CreateSolidBrush', 'ExtSelectClipRgn', 'SetDIBColorTable', 'GetObjectW', 'SetStretchBltMode', 'OffsetRgn', 'ExtCreateRegion', 'GetDIBColorTable', 'StretchBlt', 'CreateFontIndirectW', 'GetTextMetricsW', 'GetTextExtentPointW', 'GetTextColor', 'SetBkMode', 'CreateCompatibleBitmap', 'CreateBitmap', 'GetBitmapBits', 'GetStockObject', 'Ellipse', 'SetWindowExtEx', 'SetROP2', 'CreateFontW', 'CreateCompatibleDC', 'SetLayout', 'StretchDIBits', 'GetTextFaceW', 'CreateRectRgnIndirect', 'CombineRgn', 'RestoreDC', 'DeleteDC', 'GetDeviceCaps', 'SetViewportOrgEx', 'SetWindowOrgEx', 'SetMapMode', 'SaveDC', 'LPtoDP', 'CreateDCW', 'DeleteObject', 'SelectClipRgn', 'PatBlt', 'CreateRectRgn', 'PtInRegion', 'CreatePen', 'SelectObject', 'MoveToEx', 'LineTo', 'SetTextColor', 'CreateRoundRectRgn', 'Polyline', 'SetDCBrushColor', 'GetGlyphIndicesW', 'GetCurrentObject', 'GetBkColor', 'GetGlyphOutlineW', 'GetOutlineTextMetricsW', 'GetFontData', 'TranslateCharsetInfo', 'GetPixel', 'GetTextCharsetInfo', 'GetTextMetricsA', 'GetObjectA', 'CreateFontIndirectA', 'CreateICW', 'EnumFontFamiliesExW', 'RealizePalette', 'SelectPalette', 'CreatePalette', 'Escape', 'GetObjectType', 'SetBkColor', 'SetTextAlign', 'ExtTextOutW', 'ExtTextOutA', 'GetOutlineTextMetricsA', 'GetCharWidthW', 'GetCharWidth32A', 'GetCharWidthA', 'GetCharABCWidthsW', 'GetThreadDesktop', 'CharNextW', 'GetKeyboardLayout', 'GetKeyboardLayoutList', 'UnregisterClassW', 'IsWindowUnicode', 'LoadCursorA', 'LoadBitmapA', 'LoadBitmapW', 'SendMessageA', 'GetDoubleClickTime', 'SetCaretBlinkTime', 'InvertRect', 'DestroyCaret', 'MenuItemFromPoint', 'WindowFromDC', 'GetSystemMetrics', 'DeleteMenu', 'MonitorFromRect', 'SetMenuItemInfoW', 'DestroyIcon', 'GetMessageTime', 'SetFocus', 'DestroyCursor', 'RegisterClassW', 'GetClassInfoW', 'CreateCursor', 'GetDesktopWindow', 'GetWindowDC', 'DrawTextW', 'SystemParametersInfoW', 'GetParent', 'DrawFrameControl', 'InflateRect', 'GetMessagePos', 'NotifyWinEvent', 'SendMessageW', 'GetPropW', 'TrackMouseEvent', 'RemovePropW', 'SetPropW', 'ScreenToClient', 'FrameRect', 'GetSysColorBrush', 'FillRect', 'SetWindowRgn', 'ValidateRect', 'GetUpdateRect', 'EndDeferWindowPos', 'GetWindowRect', 'GetSysColor', 'EqualRect', 'DrawIconEx', 'IntersectRect', 'CreateWindowExW', 'GetClassInfoExW', 'RegisterClassExW', 'IsChild', 'GetFocus', 'BeginPaint', 'GetClientRect', 'EndPaint', 'UnionRect', 'PtInRect', 'GetDC', 'ReleaseDC', 'GetKeyState', 'IsWindow', 'DestroyWindow', 'GetClipboardFormatNameW', 'CallNextHookEx', 'GetWindowThreadProcessId', 'WindowFromPoint', 'AdjustWindowRectEx', 'OffsetRect', 'DestroyMenu', 'PostQuitMessage', 'SetMenuDefaultItem', 'AppendMenuW', 'GetCursorPos', 'CreatePopupMenu', 'KillTimer', 'SetTimer', 'LoadIconW', 'SendInput', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'RegisterClipboardFormatW', 'ClientToScreen', 'InvalidateRect', 'RegisterWindowMessageW', 'SetRectEmpty', 'UnhookWindowsHookEx', 'UnhookWinEvent', 'TrackPopupMenuEx', 'SetWinEventHook', 'SetWindowsHookExW', 'EndMenu', 'LoadCursorW', 'SetCursor', 'IsRectEmpty', 'CopyRect', 'CallWindowProcW', 'DefWindowProcW', 'GetWindowLongW', 'SetWindowLongW', 'CharUpperW', 'PostThreadMessageW', 'DispatchMessageW', 'PeekMessageW', 'MsgWaitForMultipleObjectsEx', 'SetProcessDPIAware', 'GetUserObjectInformationW', 'UnregisterClassA', 'ShowWindow', 'EnumDisplayMonitors', 'GetMonitorInfoW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'SetWindowPos', 'PostMessageW', 'SetCapture', 'ReleaseCapture', 'BeginDeferWindowPos', 'DeferWindowPos', '_ltow_s', '_wcsnicmp', '_wcslwr_s', 'wcstol', 'iswdigit', '_wtol', '_wcsicmp', '_wtoi', 'memmove', 'malloc', '_ltow', 'ceil', 'strchr', '_CIsqrt', '_CxxThrowException', '__CxxFrameHandler3', '_ftol2', '_ftol2_sse', 'floor', 'memcmp', '_controlfp', '_except_handler4_common', '_onexit', '__dllonexit', '_unlock', '_lock', 'realloc', '_errno', '??1type_info@@UAE@XZ', '?terminate@@YAXXZ', '_wcmdln', '_initterm', '__setusermatherr', '__p__fmode', '_cexit', '_exit', 'exit', '__set_app_type', '__wgetmainargs', '_amsg_exit', '__p__commode', '_XcptFilter', 'memset', '_callnewh', 'vswprintf_s', '_vscwprintf', 'wcsncmp', '_purecall', 'calloc', 'swprintf_s', '_resetstkoflw', 'wcscat_s', 'wcscpy_s', 'memmove_s', 'memcpy_s', 'wcsncpy_s', 'free', 'memcpy', 'EtwEventWrite', 'EtwEventUnregister', 'EtwEventRegister', 'OleRegGetMiscStatus', 'CreateOleAdviseHolder', 'OleRegGetUserType', 'OleRegEnumVerbs', 'RevokeDragDrop', 'RegisterDragDrop', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'OleUninitialize', 'OleInitialize', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'CoTaskMemFree', 'OleLockRunning', 'CreateStreamOnHGlobal', 'CoGetClassObject', 'StringFromGUID2', 'CoCreateFreeThreadedMarshaler', 'VariantClear', 'UnRegisterTypeLib', 'VarBstrCat', 'SysAllocStringLen', 'DispCallFunc', 'VariantInit', 'SafeArrayDestroy', 'SafeArrayCreateVector', 'SysAllocString', 'RegisterTypeLib', 'LoadTypeLib', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'VarBstrCmp', 'OleCreatePropertyFrame', 'SysAllocStringByteLen', 'SysStringByteLen', 'SysStringLen', 'VarUI4FromStr', 'LoadRegTypeLib', 'SysFreeString', 'AccessibleObjectFromWindow', 'LresultFromObject', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromScan0', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipCreateBitmapFromStream', 'GdipCreateFromHWND', 'GdipCloneBrush', 'GdipCreateFromHDC', 'GdipDeleteGraphics', 'GdipFillRectangleI', 'GdipSetSolidFillColor', 'GdipCreatePen1', 'GdipCreatePen2', 'GdipSetPenDashStyle', 'GdiplusStartup', 'GdiplusShutdown', 'GdipSetClipRectI', 'GdipDrawLineI', 'GdipCreateSolidFill', 'GdipDeleteBrush', 'GdipFree', 'GdipAlloc', 'GdipDrawEllipseI', 'GdipFillEllipseI', 'GdipReleaseDC', 'GdipGetDC', 'GdipDeletePen', 'GdipSetPenDashArray', 'GdipCreateLineBrushI', 'GdipDrawRectangleI', 'GdipSetPenColor', 'ShellAboutW', 'Shell_NotifyIconW', 'ScriptShape', 'ScriptTextOut', 'ScriptGetLogicalWidths', 'ScriptGetProperties', 'ScriptGetCMap', 'ScriptFreeCache', 'ScriptPlace', 'ScriptItemize', 'DrawThemeIcon', 'CloseThemeData', 'DrawThemeText', 'GetThemeBackgroundRegion', 'IsThemeActive', 'OpenThemeData', 'DrawThemeTextEx', 'GetThemeColor', 'DrawThemeBackground', 'GetThemeMargins', 'GetThemePartSize', 'DrawThemeEdge', 'TransparentBlt', 'GradientFill', 'AlphaBlend', 'DwmIsCompositionEnabled', 'DwmEnableBlurBehindWindow'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaOnError', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetModuleHandleA', 'GetTickCount', 'IsDebuggerPresent', 'MultiByteToWideChar', 'Sleep', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'WideCharToMultiByte', 'GlobalUnlock', 'GetPrivateProfileSectionA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'VirtualProtect', 'CreateThread', 'CreateDirectoryA', 'lstrcmpA', 'SetConsoleTextAttribute', 'GetStdHandle', 'K32GetModuleInformation', 'GetCurrentProcessId', 'FreeLibrary', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'LoadLibraryExA', 'GetModuleFileNameA', 'GetLastError', 'AreFileApisANSI', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetProcAddress', 'GetCurrentProcess', 'CloseHandle', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'CreateEventW', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEvent', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'LeaveCriticalSection', 'EnterCriticalSection', 'FormatMessageA', 'ClientToScreen', 'IsChild', 'SetCapture', 'IsClipboardFormatAvailable', 'EmptyClipboard', 'FindWindowA', 'GetClipboardData', 'SetClipboardData', 'SetCursor', 'GetCapture', 'LoadCursorA', 'OpenClipboard', 'ReleaseCapture', 'SetCursorPos', 'GetCursorPos', 'MessageBoxA', 'GetKeyState', 'GetAsyncKeyState', 'SetWindowLongA', 'CallWindowProcA', 'GetForegroundWindow', 'SendMessageA', 'mouse_event', 'CloseClipboard', 'GetClientRect', 'PostQuitMessage', 'ScreenToClient', 'GetUserNameA', 'ShellExecuteA', '??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ', '??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z', '??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ', '?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ', '?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAEXXZ', '?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JXZ', '?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPAD_J@Z', '?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE_JPBD_J@Z', '?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PAD_J@Z', '?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ', '?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z', '??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ', '??1_Lockit@std@@QAE@XZ', '??0_Lockit@std@@QAE@H@Z', '?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ', '?id@?$codecvt@DDU_Mbstatet@@@std@@2V0locale@2@A', '?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z', '?_Getcat@?$codecvt@DDU_Mbstatet@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z', '?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QBE?AVlocale@2@XZ', '?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ', '?unshift@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PAD1AAPAD@Z', '?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z', '?in@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?out@?$codecvt@DDU_Mbstatet@@@std@@QBEHAAU_Mbstatet@@PBD1AAPBDPAD3AAPAD@Z', '?always_noconv@codecvt_base@std@@QBE_NXZ', '??Bid@locale@std@@QAEIXZ', '?_Winerror_message@std@@YAKKPADK@Z', '?_Winerror_map@std@@YAHH@Z', '?_Syserror_map@std@@YAPBDH@Z', '?uncaught_exception@std@@YA_NXZ', '?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ', '?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ', '?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE_JPBD_J@Z', '?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?widen@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDD@Z', '?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z', '?_Execute_once@std@@YAHAAUonce_flag@1@P6GHPAX1PAPAX@Z1@Z', '?__ExceptionPtrCopy@@YAXPAXPBX@Z', '?__ExceptionPtrCreate@@YAXPAX@Z', '??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ', '?__ExceptionPtrAssign@@YAXPAXPBX@Z', '?_Xout_of_range@std@@YAXPBD@Z', '?_Xinvalid_argument@std@@YAXPBD@Z', '?_Xlength_error@std@@YAXPBD@Z', '?_XGetLastError@std@@YAXXZ', '?__ExceptionPtrToBool@@YA_NPBX@Z', '?__ExceptionPtrDestroy@@YAXPAX@Z', '?__ExceptionPtrCurrentException@@YAXPAX@Z', '?__ExceptionPtrRethrow@@YAXPBX@Z', 'timeBeginPeriod', 'timeGetTime', 'PlaySoundA', 'D3DXCreateTextureFromFileInMemoryEx', 'D3DXCreateFontA', 'D3DXCreateSprite', 'D3DXCreateLine', 'ImmSetCompositionWindow', 'ImmGetContext', 'ImmReleaseContext', '_setjmp3', 'longjmp', 'strrchr', '_CxxThrowException', '_except_handler4_common', '__std_type_info_destroy_list', 'memset', 'memcmp', 'memchr', 'strstr', '_purecall', 'strchr', '__std_exception_copy', '__std_exception_destroy', 'memcpy', 'memmove', '__std_terminate', '__CxxFrameHandler3', 'strncpy_s', 'strncpy', 'strtok', 'isprint', 'strcpy_s', 'strpbrk', 'isalnum', '_strdup', 'iscntrl', 'tolower', 'isgraph', 'ispunct', 'isspace', 'isxdigit', 'islower', 'isupper', 'isalpha', 'strncmp', 'strcpy', 'strspn', 'isdigit', 'toupper', 'wcslen', 'isblank', 'strcmp', 'strlen', 'strcoll', 'malloc', '_callnewh', 'free', 'realloc', 'srand', 'qsort', 'rand', 'abort', '_errno', '_seh_filter_dll', '_configure_narrow_argv', 'strerror', '_initialize_narrow_environment', '_initialize_onexit_table', '_register_onexit_function', '_execute_onexit_table', '_initterm_e', 'system', '_crt_atexit', 'terminate', '_invalid_parameter_noinfo_noreturn', '_wassert', '_initterm', '_cexit', 'exit', 'setvbuf', 'ungetc', 'fsetpos', 'fread', 'tmpnam', '_get_stream_buffer_pointers', 'fwrite', 'fgetc', '__acrt_iob_func', 'fclose', 'fflush', 'fputc', '__stdio_common_vsprintf_s', '__stdio_common_vsprintf', 'getc', 'freopen', 'ferror', '__stdio_common_vsscanf', '_wfopen', 'fgetpos', 'feof', 'clearerr', '_ftelli64', '_pclose', '_popen', 'tmpfile', 'fgets', '_fseeki64', '__stdio_common_vfprintf', 'fseek', 'ftell', 'fopen', 'strtod', 'mbstowcs_s', 'strtol', 'atoi', '_itoa', 'atof', 'llround', 'atan', 'ceil', 'sin', 'exp', 'tan', 'cos', 'floor', 'fabs', 'fmod', '_except1', '_libm_sse2_pow_precise', 'atan2', 'ldexp', '_libm_sse2_tan_precise', '_libm_sse2_sqrt_precise', '_libm_sse2_sin_precise', '_libm_sse2_log_precise', '_libm_sse2_log10_precise', 'sqrt', '_libm_sse2_exp_precise', '_libm_sse2_cos_precise', '_libm_sse2_asin_precise', '_libm_sse2_acos_precise', '_CIfmod', '_CIatan2', 'frexp', 'acos', '_fdtest', 'fmaxf', 'pow', 'fminf', 'roundf', 'remove', '_unlock_file', '_lock_file', 'rename', 'setlocale', 'localeconv', '___lc_codepage_func', 'getenv', '_difftime64', 'clock', 'strftime', '_mktime64', '_localtime64', '_gmtime64', '_time64'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaI2I4', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaInStrB', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['EVENT_SINK_GetIDsOfNames', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaStrI4', '__vbaVarVargNofree', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaLateIdCall', '__vbaPut3', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaPut4', 'EVENT_SINK_Invoke', '__vbaRaiseEvent', '__vbaFreeObjList', '__vbaStrErrVarCopy', '_adj_fprem1', '__vbaRecAnsiToUni', '__vbaCopyBytes', '__vbaStrCat', '__vbaLsetFixstr', '__vbaRecDestruct', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaNameFile', '_adj_fdiv_m32', '__vbaAryVar', 'Zombie_GetTypeInfo', '__vbaAryDestruct', '__vbaBoolStr', '__vbaExitProc', '__vbaI4Abs', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR4', '__vbaStrFixstr', '_CIsin', '__vbaErase', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaGet3', '__vbaStrCmp', '__vbaGet4', '__vbaPutOwner3', '__vbaVarTstEq', '__vbaAryConstruct2', '__vbaObjVar', '__vbaI2I4', 'DllFunctionCall', '__vbaVarLateMemSt', '__vbaFpUI1', '__vbaRedimPreserve', '__vbaStrR4', '_adj_fpatan', '__vbaFixstrConstruct', '__vbaLateIdCallLd', 'Zombie_GetTypeInfoCount', '__vbaRedim', '__vbaRecUniToAnsi', 'EVENT_SINK_Release', '__vbaNew', '__vbaUI1I2', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaGetOwner3', '__vbaUbound', '__vbaFileSeek', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaVarLateMemCallLdRf', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarSetVar', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarAdd', '__vbaAryLock', '__vbaStrComp', '__vbaVarDup', '__vbaStrToAnsi', '__vbaFpI2', '__vbaFpI4', '__vbaVarLateMemCallLd', '__vbaVarSetObjAddref', '__vbaRecDestructAnsi', '__vbaLateMemCallLd', '_CIatan', '__vbaAryCopy', '__vbaStrMove', '__vbaCastObj', '__vbaR8IntI4', '_allmul', '__vbaVarLateMemCallSt', '_CItan', '__vbaAryUnlock', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaStrI4', '__vbaFreeVar', '__vbaStrVarMove', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', 'DllFunctionCall', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'TerminateProcess', 'HeapReAlloc', 'InterlockedExchange', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'HeapFree', 'HeapAlloc', 'RtlUnwind', 'SetErrorMode', 'GetFileTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'FileTimeToSystemTime', 'RaiseException', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'CloseHandle', 'GetCurrentThread', 'lstrcmpA', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'InterlockedDecrement', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'SetLastError', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'lstrcpynA', 'GetModuleHandleA', 'GetProcAddress', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'CompareStringW', 'CompareStringA', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetSystemTimeAsFileTime', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'ShowOwnedPopups', 'PostQuitMessage', 'IsZoomed', 'SetParent', 'GetSystemMenu', 'AppendMenuA', 'DeleteMenu', 'IsRectEmpty', 'WindowFromPoint', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'wsprintfA', 'DestroyMenu', 'GetActiveWindow', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'GetDesktopWindow', 'TranslateAcceleratorA', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'SetMenuItemBitmaps', 'ModifyMenuA', 'GetMenuState', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'IsWindowEnabled', 'SetWindowTextA', 'IsDialogMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'GetFocus', 'IsWindow', 'IsChild', 'GetWindowTextLengthA', 'GetMenuItemInfoA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'LoadIconA', 'PeekMessageA', 'MapWindowPoints', 'TrackPopupMenu', 'GetKeyState', 'LoadCursorA', 'EnableWindow', 'LoadBitmapA', 'IsWindowVisible', 'MessageBoxA', 'SendMessageA', 'RegisterWindowMessageA', 'UpdateWindow', 'CharUpperA', 'InvalidateRect', 'GetSysColor', 'SetForegroundWindow', 'GetMenu', 'PostMessageA', 'GetMenuItemID', 'GetMenuItemCount', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'GetSysColorBrush', 'DefWindowProcA', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'IntersectRect', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'CopyRect', 'GetWindow', 'GetParent', 'ClientToScreen', 'LoadMenuA', 'GetSubMenu', 'EnableMenuItem', 'GetCursorPos', 'LockWindowUpdate', 'GetDCEx', 'GetWindowTextA', 'SetRect', 'DrawStateA', 'PtInRect', 'OffsetRect', 'FillRect', 'GetWindowRect', 'GetClientRect', 'ScreenToClient', 'BeginPaint', 'EndPaint', 'SetTimer', 'KillTimer', 'SetCapture', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'InflateRect', 'ShowWindow', 'ReleaseCapture', 'SetFocus', 'GetDlgCtrlID', 'DestroyIcon', 'SystemParametersInfoA', 'SetCursor', 'MoveWindow', 'StretchDIBits', 'GetCharWidthA', 'CreateFontA', 'CreateRectRgnIndirect', 'PatBlt', 'GetTextMetricsA', 'CombineRgn', 'GetBkColor', 'SelectClipRgn', 'DeleteObject', 'CreateSolidBrush', 'CreatePen', 'GetDeviceCaps', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'GetPixel', 'BitBlt', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetStockObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetTextExtentPoint32A', 'SetBrushOrgEx', 'SetRectRgn', 'CreateRectRgn', 'CreateCompatibleBitmap', 'CreateBitmap', 'CreateFontIndirectA', 'CreatePatternBrush', 'CreateCompatibleDC', 'GetObjectA', 'GradientFill', 'TransparentBlt', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegOpenKeyExW', 'DragQueryFileA', 'DragFinish', 'ImageList_AddMasked', 'ImageList_GetIconSize', 'ImageList_GetIcon', 'ImageList_Draw', 'ImageList_GetImageInfo', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_Duplicate', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarAdd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetModuleHandleA', 'GetProcAddress', 'GetDC', 'PatBlt', 'waveOutOpen', 'ClosePrinter', 'RegCloseKey', 'SHGetMalloc', 'OleInitialize', 'UnRegisterTypeLib', 'recvfrom', 'ChooseColorA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'FindTextA', 'ArcTo', 'ReadClassStg', 'SysStringLen', 'DragFinish', 'PathIsUNCA', 'GetDC', 'GetJobA', 'inet_addr'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaLenBstrB', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaAryConstruct2', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaFpI4', '_CIatan', '__vbaAryCopy', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetSystemInfo', 'VirtualQuery', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'HeapReAlloc', 'TerminateProcess', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'VirtualAlloc', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'VirtualProtect', 'HeapFree', 'HeapAlloc', 'RtlUnwind', 'SetErrorMode', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'WritePrivateProfileStringA', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'InterlockedDecrement', 'CloseHandle', 'GetCurrentThread', 'lstrcmpA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'SetLastError', 'MulDiv', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'GetModuleFileNameA', 'SizeofResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'lstrcpynA', 'GetModuleHandleA', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'FindResourceA', 'LoadResource', 'LockResource', 'FreeResource', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'LoadLibraryW', 'SetHandleCount', 'GetProcAddress', 'DestroyMenu', 'LoadCursorA', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'ReleaseDC', 'GetDC', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'SetCursor', 'PostQuitMessage', 'wsprintfA', 'SetMenuItemBitmaps', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetWindowTextA', 'IsDialogMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'SetWindowsHookExA', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'GetFocus', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'MessageBoxA', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetClientRect', 'GetMenu', 'PostMessageA', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'GetSysColor', 'AdjustWindowRectEx', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'CopyRect', 'PtInRect', 'RegisterWindowMessageA', 'GetWindow', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'GetParent', 'GetNextDlgTabItem', 'EndDialog', 'SendMessageA', 'LoadIconA', 'ShowWindow', 'LoadStringW', 'LoadStringA', 'EnableWindow', 'CallNextHookEx', 'PtVisible', 'DeleteObject', 'GetStockObject', 'DeleteDC', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'SetMapMode', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'RectVisible', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'ImageList_Destroy', 'PathFindFileNameA', 'PathFindExtensionA', 'VariantClear', 'VariantChangeType', 'VariantInit', 'EnableThemeDialogTexture'], ['GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'TerminateProcess', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'SetHandleCount', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'GetStringTypeA', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SuspendThread', 'TerminateThread', 'ReleaseMutex', 'CreateMutexA', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'lstrlenW', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetUserDefaultLCID', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'ExpandEnvironmentStringsA', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'MoveFileA', 'DeleteFileA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'UnregisterClassA', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'RedrawWindow', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'SetBkColor', 'CreateRectRgnIndirect', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'CreateFontIndirectA', 'GetStockObject', 'GetObjectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'LineTo', 'MoveToEx', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'waveOutRestart', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'midiStreamRestart', 'midiStreamOut', 'midiOutPrepareHeader', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegCreateKeyExA', 'RegQueryValueA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromProgID', 'OleRun', 'CoCreateInstance', 'OleUninitialize', 'OleInitialize', 'CLSIDFromString', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetElement', 'VariantCopyInd', 'VariantInit', 'SysAllocString', 'RegisterTypeLib', 'LHashValOfNameSys', 'LoadTypeLib', 'UnRegisterTypeLib', 'VariantClear', 'VariantChangeType', 'ImageList_Destroy', 'inet_ntoa', 'WSACleanup', 'closesocket', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'getpeername', 'accept', 'ntohl', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA', 'GetFileTitleA'], ['TraceMessage', 'GetTraceLoggerHandle', 'GetTraceEnableLevel', 'GetTraceEnableFlags', 'RegisterTraceGuidsW', 'UnregisterTraceGuids', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'RegOpenKeyExW', 'CloseTrace', 'InitiateShutdownW', 'OpenSCManagerW', 'OpenServiceW', 'ControlService', 'OpenProcessToken', 'RegCloseKey', 'CloseServiceHandle', 'CreateWellKnownSid', 'CheckTokenMembership', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'StartTraceW', 'EnableTrace', 'GetTokenInformation', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'InitializeSecurityDescriptor', 'SetEntriesInAclW', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorDacl', 'DuplicateToken', 'DuplicateTokenEx', 'RegisterEventSourceW', 'ReportEventW', 'DeregisterEventSource', 'ControlTraceW', 'FileTimeToLocalFileTime', 'GetTimeFormatW', 'GetDateFormatW', 'GetUserDefaultLCID', 'GetLocaleInfoW', 'FindVolumeClose', 'FindNextVolumeW', 'FindFirstVolumeW', 'GetWindowsDirectoryW', 'GetVolumeNameForVolumeMountPointW', 'GetVolumePathNameW', 'GetVolumePathNamesForVolumeNameW', 'ExpandEnvironmentStringsW', 'GetVolumeInformationW', 'GetDriveTypeW', 'MoveFileExW', 'DeviceIoControl', 'FileTimeToSystemTime', 'FindNextFileW', 'FindFirstFileW', 'FormatMessageW', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetTickCount', 'QueryPerformanceCounter', 'GetModuleHandleW', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'Sleep', 'InitializeCriticalSection', 'CreateFileW', 'EncodePointer', 'DecodePointer', 'GetProcAddress', 'DeleteCriticalSection', 'SetLastError', 'HeapSetInformation', 'SetErrorMode', 'CreateEventW', 'WaitForSingleObject', 'SetEvent', 'RegisterApplicationRestart', 'GetCurrentProcess', 'GlobalFree', 'GetCommandLineW', 'CreateProcessW', 'CreateThread', 'OpenProcess', 'GetSystemTimeAsFileTime', 'LoadLibraryW', 'FreeLibrary', 'GetFileAttributesW', 'DeleteFileW', 'CreateDirectoryW', 'SetThreadPreferredUILanguages', 'GetTimeZoneInformation', 'LoadLibraryExW', 'InitializeCriticalSectionAndSpinCount', 'EnterCriticalSection', 'LeaveCriticalSection', 'FindClose', 'GetLastError', 'LocalFree', 'CloseHandle', 'SetBkMode', 'DeleteDC', 'GdiFlush', 'SelectObject', 'SetLayout', 'CreateCompatibleDC', 'ExtTextOutW', 'SetBkColor', 'CreateDIBSection', 'GetDeviceCaps', 'CreateFontIndirectW', 'SetTextColor', 'DeleteObject', 'GetDesktopWindow', 'GetWindowThreadProcessId', 'EnumWindows', 'MessageBoxW', 'SendMessageTimeoutW', 'EndPaint', 'MapWindowPoints', 'CopyRect', 'GetWindowTextW', 'GetWindowRect', 'BeginPaint', 'GetAncestor', 'GetClassNameW', 'GetDlgItemTextW', 'SetDlgItemTextW', 'MsgWaitForMultipleObjectsEx', 'DispatchMessageW', 'PeekMessageW', 'LoadStringW', 'SystemParametersInfoW', 'LoadIconW', 'SetForegroundWindow', 'CreateDialogParamW', 'ShowWindow', 'DestroyWindow', 'DialogBoxParamW', 'RegisterWindowMessageW', 'GetDC', 'ReleaseDC', 'SetWindowLongPtrW', 'PostMessageW', 'GetParent', 'GetDlgItem', 'GetSystemMetrics', 'GetSysColor', 'SetWindowPos', 'GetSysColorBrush', 'EndDialog', 'SetFocus', 'GetKeyState', 'SetWindowLongW', 'GetWindowLongW', 'UpdateWindow', 'GetClientRect', 'SetWindowTextW', 'SetClassLongPtrW', 'GetWindowLongPtrW', 'IsWindow', 'CallWindowProcW', 'SendMessageW', 'EnableWindow', 'DrawFrameControl', 'OffsetRect', 'InflateRect', 'wcschr', '_wcsnicmp', '_wcsicmp', '??2@YAPEAX_K@Z', '__getmainargs', '__C_specific_handler', '_XcptFilter', '_exit', '_ismbblead', '_cexit', 'exit', '_acmdln', '_initterm', '??3@YAXPEAX@Z', '__setusermatherr', '_commode', '_fmode', '__set_app_type', '_unlock', '__dllonexit', '_lock', '_onexit', '?terminate@@YAXXZ', 'memset', 'memcmp', 'iswspace', '_amsg_exit', '_vscwprintf', 'memcpy', '_vsnwprintf', 'strchr', 'memmove', 'ShellExecuteExW', 'SHGetStockIconInfo', 'CommandLineToArgvW', 'CoCreateInstance', 'CoTaskMemAlloc', 'CLSIDFromString', 'CoInitializeSecurity', 'CoTaskMemRealloc', 'CoInitializeEx', 'CoTaskMemFree', 'CoUninitialize', 'SysFreeString', 'SysAllocString', 'SysStringLen', 'CreatePropertySheetPageW', 'PropertySheetW', 'DestroyPropertySheetPage', 'InitCommonControlsEx', 'ImageList_Create', 'ImageList_Add', 'ImageList_AddMasked', 'ImageList_Destroy', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlLookupElementGenericTableAvl', 'RtlInsertElementGenericTableAvl', 'RtlInitializeGenericTableAvl', 'RtlEnumerateGenericTableAvl', 'RtlDeleteElementGenericTableAvl', 'WinSqmAddToStreamEx', 'WinSqmIncrementDWORD', 'WinSqmAddToStream', 'NtShutdownSystem', 'RtlGetLastNtStatus', 'RtlVirtualUnwind', 'EtwTraceMessage', 'RtlNtStatusToDosError', 'SrFreeRpPropArray', 'SrFreeRestoreStatus', 'SxTracerDebuggerBreak', 'SxTracerShouldTrackFailure', 'SxTracerGetThreadContextRetail', 'SppFreeExternalGroupPropArray'], ['FreeSid', 'AllocateAndInitializeSid', 'EqualSid', 'GetTokenInformation', 'OpenProcessToken', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'RegCloseKey', 'RegDeleteValueA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegQueryInfoKeyA', 'LocalFree', 'LocalAlloc', 'GetLastError', 'GetCurrentProcess', 'lstrlenA', 'GetModuleFileNameA', 'GetSystemDirectoryA', '_lclose', '_llseek', '_lopen', 'WritePrivateProfileStringA', 'GetWindowsDirectoryA', 'CreateDirectoryA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'lstrcpyA', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'IsDBCSLeadByte', 'GetShortPathNameA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'lstrcmpiA', 'RemoveDirectoryA', 'FindClose', 'FindNextFileA', 'DeleteFileA', 'SetFileAttributesA', 'lstrcmpA', 'FindFirstFileA', 'FreeResource', 'GetProcAddress', 'LoadResource', 'SizeofResource', 'FindResourceA', 'lstrcatA', 'CloseHandle', 'WriteFile', 'SetFilePointer', 'SetFileTime', 'LocalFileTimeToFileTime', 'DosDateTimeToFileTime', 'SetCurrentDirectoryA', 'GetTempFileNameA', 'ExitProcess', 'CreateFileA', 'LoadLibraryExA', 'lstrcpynA', 'GetVolumeInformationA', 'FormatMessageA', 'GetCurrentDirectoryA', 'GetVersionExA', 'GetExitCodeProcess', 'WaitForSingleObject', 'CreateProcessA', 'GetTempPathA', 'GetSystemInfo', 'CreateMutexA', 'SetEvent', 'CreateEventA', 'CreateThread', 'ResetEvent', 'TerminateThread', 'GetDriveTypeA', 'GetModuleHandleA', 'GetStartupInfoA', 'GetCommandLineA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'ReadFile', 'LoadLibraryA', 'GetDiskFreeSpaceA', 'MulDiv', 'EnumResourceLanguagesA', 'FreeLibrary', 'LockResource', 'GetDeviceCaps', 'ExitWindowsEx', 'wsprintfA', 'CharNextA', 'CharUpperA', 'CharPrevA', 'SetWindowLongA', 'GetWindowLongA', 'CallWindowProcA', 'DispatchMessageA', 'MsgWaitForMultipleObjects', 'PeekMessageA', 'SendMessageA', 'SetWindowPos', 'ReleaseDC', 'GetDC', 'GetWindowRect', 'SendDlgItemMessageA', 'GetDlgItem', 'SetForegroundWindow', 'SetWindowTextA', 'MessageBoxA', 'DialogBoxIndirectParamA', 'ShowWindow', 'EnableWindow', 'GetDlgItemTextA', 'EndDialog', 'GetDesktopWindow', 'MessageBeep', 'SetDlgItemTextA', 'LoadStringA', 'GetSystemMetrics', 'GetFileVersionInfoA', 'VerQueryValueA', 'GetFileVersionInfoSizeA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', 'DllFunctionCall', '__vbaLbound', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaBoolStr', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaErase', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', '__vbaVarLateMemSt', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaVarSetObj', '__vbaStrCopy', '__vbaDerefAry1', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['RegCreateKeyExA', 'RegEnumKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'RegCloseKey', 'RegDeleteValueA', 'RegDeleteKeyA', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'SetFileSecurityA', 'RegOpenKeyExA', 'RegEnumValueA', 'SHGetFileInfoA', 'SHFileOperationA', 'SHGetPathFromIDListA', 'ShellExecuteExA', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderA', 'IIDFromString', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoTaskMemFree', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'SetClipboardData', 'CharPrevA', 'CallWindowProcA', 'PeekMessageA', 'DispatchMessageA', 'MessageBoxIndirectA', 'GetDlgItemTextA', 'SetDlgItemTextA', 'GetSystemMetrics', 'CreatePopupMenu', 'AppendMenuA', 'TrackPopupMenu', 'FillRect', 'EmptyClipboard', 'LoadCursorA', 'GetMessagePos', 'CheckDlgButton', 'GetSysColor', 'SetCursor', 'GetWindowLongA', 'SetClassLongA', 'SetWindowPos', 'IsWindowEnabled', 'GetWindowRect', 'GetSystemMenu', 'EnableMenuItem', 'RegisterClassA', 'ScreenToClient', 'EndDialog', 'GetClassInfoA', 'SystemParametersInfoA', 'CreateWindowExA', 'ExitWindowsEx', 'DialogBoxParamA', 'CharNextA', 'SetTimer', 'DestroyWindow', 'CreateDialogParamA', 'SetForegroundWindow', 'SetWindowTextA', 'PostQuitMessage', 'SendMessageTimeoutA', 'ShowWindow', 'wsprintfA', 'GetDlgItem', 'FindWindowExA', 'IsWindow', 'GetDC', 'SetWindowLongA', 'LoadImageA', 'InvalidateRect', 'ReleaseDC', 'EnableWindow', 'BeginPaint', 'SendMessageA', 'DefWindowProcA', 'DrawTextA', 'GetClientRect', 'EndPaint', 'IsWindowVisible', 'CloseClipboard', 'OpenClipboard', 'SetBkMode', 'SetBkColor', 'GetDeviceCaps', 'CreateFontIndirectA', 'CreateBrushIndirect', 'DeleteObject', 'SetTextColor', 'SelectObject', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetProcAddress', 'GetSystemDirectoryA', 'WideCharToMultiByte', 'MoveFileExA', 'ReadFile', 'GetTempFileNameA', 'WriteFile', 'RemoveDirectoryA', 'CreateProcessA', 'CreateFileA', 'GetLastError', 'CreateThread', 'CreateDirectoryA', 'GlobalUnlock', 'GetDiskFreeSpaceA', 'GlobalLock', 'SetErrorMode', 'GetVersion', 'lstrcpynA', 'GetCommandLineA', 'GetTempPathA', 'lstrlenA', 'SetEnvironmentVariableA', 'ExitProcess', 'GetWindowsDirectoryA', 'GetCurrentProcess', 'GetModuleFileNameA', 'CopyFileA', 'GetTickCount', 'Sleep', 'GetFileSize', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'SetFileAttributesA', 'GetFullPathNameA', 'GetShortPathNameA', 'MoveFileA', 'CompareFileTime', 'SetFileTime', 'SearchPathA', 'lstrcmpiA', 'lstrcmpA', 'CloseHandle', 'GlobalFree', 'GlobalAlloc', 'ExpandEnvironmentStringsA', 'LoadLibraryExA', 'FreeLibrary', 'lstrcpyA', 'lstrcatA', 'FindClose', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'SetFilePointer', 'GetModuleHandleA', 'FindNextFileA', 'FindFirstFileA', 'DeleteFileA', 'MulDiv'], ['__vbaR8FixI4', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaObjVar', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarErrI4', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaFileOpen', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaInStrB', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaR8Sgn', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['RtlLookupFunctionEntry', 'RtlUnwindEx', 'HeapFree', 'HeapAlloc', 'RtlPcToFileHeader', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlCaptureContext', 'GetSystemTimeAsFileTime', 'FlsSetValue', 'GetCommandLineA', 'HeapReAlloc', 'HeapQueryInformation', 'HeapSize', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsFree', 'FlsAlloc', 'HeapSetInformation', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'GetModuleFileNameA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetDateFormatA', 'GetTimeFormatA', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'InitializeCriticalSectionAndSpinCount', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetLocaleInfoA', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CreateFileA', 'SetEnvironmentVariableA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'lstrlenA', 'CreateFileW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetProfileIntW', 'FileTimeToSystemTime', 'CopyFileW', 'GlobalSize', 'FormatMessageW', 'LocalFree', 'MulDiv', 'GlobalFindAtomW', 'CompareStringW', 'LoadLibraryA', 'GetVersionExA', 'GetTickCount', 'GetPrivateProfileStringW', 'lstrlenW', 'WritePrivateProfileStringW', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomW', 'CloseHandle', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesW', 'lstrcmpA', 'GetLocaleInfoW', 'CompareStringA', 'lstrcmpW', 'WideCharToMultiByte', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'lstrcpynW', 'FreeLibrary', 'GetVersionExW', 'MultiByteToWideChar', 'RaiseException', 'DebugBreak', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetModuleHandleW', 'LoadLibraryW', 'GetProcAddress', 'GetLastError', 'SetLastError', 'GetCommandLineW', 'lstrcatW', 'GetModuleFileNameW', 'CreateProcessW', 'GetCPInfo', 'ExitProcess', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'IsRectEmpty', 'WindowFromPoint', 'DestroyMenu', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringW', 'DrawTextExW', 'TabbedTextOutW', 'ShowWindow', 'MoveWindow', 'SetWindowTextW', 'IsDialogMessageW', 'RegisterWindowMessageW', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'WinHelpW', 'IsChild', 'GetCapture', 'GetClassNameW', 'GetClassLongPtrW', 'SetPropW', 'GetPropW', 'RemovePropW', 'SetFocus', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetTopWindow', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'CopyAcceleratorTableW', 'GetMessageTime', 'MapWindowPoints', 'TrackPopupMenu', 'SetMenu', 'GetScrollRange', 'GetScrollPos', 'SetForegroundWindow', 'GetSubMenu', 'GetMenuItemID', 'CreateWindowExW', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'AdjustWindowRectEx', 'GetDlgCtrlID', 'DefWindowProcW', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'RegisterClipboardFormatW', 'SetActiveWindow', 'CreateDialogIndirectParamW', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongW', 'GetSystemMetrics', 'DrawIcon', 'AppendMenuW', 'SendMessageW', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxW', 'SetCursor', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'PeekMessageW', 'GetCursorPos', 'ValidateRect', 'CharNextW', 'PostThreadMessageW', 'CharUpperW', 'GetSysColorBrush', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadCursorW', 'ReleaseCapture', 'SetCapture', 'UnhookWindowsHookEx', 'SetRect', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconW', 'GetFocus', 'PostMessageW', 'GetDC', 'ReleaseDC', 'UpdateWindow', 'InvalidateRect', 'GetWindow', 'GetParent', 'PtInRect', 'InflateRect', 'OffsetRect', 'FillRect', 'GetWindowRect', 'GetSysColor', 'GetDesktopWindow', 'GetKeyState', 'GetMessagePos', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'DrawTextW', 'CreatePopupMenu', 'GetMenuItemCount', 'ScreenToClient', 'OpenClipboard', 'CopyRect', 'EqualRect', 'DrawFocusRect', 'PostQuitMessage', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuW', 'LoadBitmapW', 'GetForegroundWindow', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetDeviceCaps', 'CreatePen', 'CreateSolidBrush', 'CopyMetaFileW', 'GetMapMode', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutW', 'TextOutW', 'RectVisible', 'GetTextExtentPoint32W', 'GetWindowExtEx', 'GetViewportExtEx', 'MoveToEx', 'LineTo', 'SetMapMode', 'RestoreDC', 'SaveDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateRectRgnIndirect', 'CreateBitmap', 'DeleteObject', 'CreateFontIndirectW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetCurrentObject', 'GetObjectW', 'PtVisible', 'GetFileTitleW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'RegCreateKeyExW', 'RegDeleteValueW', 'RegSetValueExW', 'RegCloseKey', 'RegQueryValueW', 'RegOpenKeyW', 'RegEnumKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryValueExW', 'ShellExecuteW', 'PathFindFileNameW', 'PathStripToRootW', 'PathIsUNCW', 'PathFindExtensionW', 'OleUIBusyW', 'CreateStreamOnHGlobal', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'CoGetClassObject', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'DoDragDrop', 'SystemTimeToVariantTime', 'VarBstrFromDate', 'SysFreeString', 'VarUdateFromDate', 'VarDateFromStr', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'OleCreateFontIndirect', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'VariantTimeToSystemTime'], ['Sleep', 'GetLastError', 'GetFileAttributesA', 'CreateFileA', 'CloseHandle', 'GetSystemInfo', 'CreateThread', 'HeapAlloc', 'GetThreadContext', 'GetProcAddress', 'VirtualAllocEx', 'GetModuleHandleA', 'GetFileSize', 'ReadProcessMemory', 'GetProcessHeap', 'CreateProcessA', 'CreateDirectoryA', 'SetThreadContext', 'WriteConsoleW', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'GetTimeZoneInformation', 'ResumeThread', 'GetComputerNameExW', 'SuspendThread', 'GetVersionExW', 'CreateMutexW', 'WaitForSingleObject', 'GetTempPathW', 'GetModuleFileNameW', 'VirtualAlloc', 'WriteFile', 'VirtualFree', 'HeapFree', 'WriteProcessMemory', 'GetModuleFileNameA', 'LocalFree', 'ReadFile', 'FlushFileBuffers', 'GetStringTypeW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'ReadConsoleW', 'SetFilePointerEx', 'GetFileSizeEx', 'GetConsoleMode', 'GetConsoleCP', 'SetStdHandle', 'GetFullPathNameW', 'GetCurrentDirectoryW', 'DeleteFileW', 'DecodePointer', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetModuleHandleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'CompareStringW', 'LCMapStringW', 'GetSystemMetrics', 'ReleaseDC', 'GetDC', 'CreateCompatibleBitmap', 'SelectObject', 'CreateCompatibleDC', 'DeleteObject', 'BitBlt', 'RegCloseKey', 'RegGetValueA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'GetUserNameW', 'LookupAccountNameW', 'ShellExecuteA', 'ShellExecuteExW', 'HttpOpenRequestA', 'InternetOpenUrlW', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetOpenA', 'HttpAddRequestHeadersA', 'HttpSendRequestExW', 'HttpEndRequestW', 'InternetOpenW', 'InternetOpenUrlA', 'InternetWriteFile', 'GdipSaveImageToFile', 'GdipGetImageEncodersSize', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncoders', 'GdiplusShutdown', 'GdiplusStartup'], ['CompareStringW', 'LCMapStringW', 'GetStringTypeW', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'HeapCreate', 'SetEnvironmentVariableA', 'GetCurrentDirectoryW', 'FindFirstFileExA', 'GetDriveTypeA', 'GetFileInformationByHandle', 'ExpandEnvironmentStringsA', 'WaitForMultipleObjects', 'PeekNamedPipe', 'GetSystemDirectoryA', 'VerSetConditionMask', 'VerifyVersionInfoA', 'SleepEx', 'GetProcessHeap', 'CreateFileW', 'WriteConsoleW', 'GetDriveTypeW', 'GetTimeZoneInformation', 'GetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'IsValidCodePage', 'IsProcessorFeaturePresent', 'GetFileType', 'SetStdHandle', 'HeapSize', 'HeapQueryInformation', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'VirtualQuery', 'VirtualAlloc', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineA', 'HeapAlloc', 'HeapFree', 'GetSystemTimeAsFileTime', 'ExitProcess', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'RaiseException', 'FindResourceExW', 'VirtualProtect', 'SearchPathA', 'Sleep', 'GetProfileIntA', 'InitializeCriticalSectionAndSpinCount', 'GetTempFileNameA', 'GetFileTime', 'GetFileSizeEx', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'SetErrorMode', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetFullPathNameA', 'GetVolumeInformationA', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'lstrcmpiA', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'FileTimeToSystemTime', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'GetModuleFileNameW', 'ReleaseActCtx', 'CreateActCtxW', 'GetPrivateProfileStringA', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'GetCurrentThread', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GetModuleHandleW', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetThreadLocale', 'InterlockedIncrement', 'FindResourceA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GetVersionExA', 'GetModuleHandleA', 'FreeLibrary', 'GetProcAddress', 'CompareStringA', 'LoadLibraryW', 'LoadLibraryA', 'ActivateActCtx', 'DeactivateActCtx', 'lstrcmpW', 'SetLastError', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'lstrlenW', 'MulDiv', 'WriteFile', 'SetFileTime', 'GetCurrentDirectoryA', 'GetFileAttributesA', 'CreateDirectoryA', 'LocalFileTimeToFileTime', 'lstrcpyA', 'lstrcatA', 'SystemTimeToFileTime', 'ReadFile', 'SetFilePointer', 'GetTempPathA', 'GetTickCount', 'InterlockedDecrement', 'FormatMessageA', 'lstrlenA', 'LocalAlloc', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'WideCharToMultiByte', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'GetSystemInfo', 'GetDynamicTimeZoneInformation', 'CreateFileA', 'UnmapViewOfFile', 'CloseHandle', 'FindFirstFileA', 'DeleteFileA', 'FindClose', 'GetLastError', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'WindowFromPoint', 'LoadCursorW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'KillTimer', 'SetTimer', 'DeleteMenu', 'ReleaseCapture', 'SetCapture', 'InvalidateRgn', 'InvalidateRect', 'IntersectRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'RealChildWindowFromPoint', 'LoadCursorA', 'GetSysColorBrush', 'SetRectEmpty', 'IsZoomed', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'SetWindowContextHelpId', 'MapDialogRect', 'ShowOwnedPopups', 'SetCursor', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'GetWindowThreadProcessId', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'OffsetRect', 'CharNextA', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckDlgButton', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'IsWindow', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'GetKeyState', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'SetMenu', 'SetScrollRange', 'ToAsciiEx', 'GetKeyboardLayout', 'EnableWindow', 'CharUpperW', 'SendMessageA', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'PostMessageA', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'GetParent', 'BringWindowToTop', 'InsertMenuItemA', 'LoadImageA', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'RedrawWindow', 'GetMenuDefaultItem', 'MapVirtualKeyA', 'GetAsyncKeyState', 'InvertRect', 'DrawFocusRect', 'HideCaret', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'PtInRect', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'EnableScrollBar', 'NotifyWinEvent', 'GetIconInfo', 'CopyImage', 'DrawIconEx', 'RegisterClipboardFormatA', 'SetWindowRgn', 'wsprintfA', 'TranslateAcceleratorA', 'DrawIcon', 'CreatePopupMenu', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetWindowRect', 'GetClientRect', 'LoadIconW', 'GetSystemMetrics', 'LoadAcceleratorsA', 'RemoveMenu', 'GetSubMenu', 'GetMenuItemCount', 'InsertMenuA', 'GetMenuItemID', 'GetMenuStringA', 'GetMenuState', 'GetWindow', 'SetWindowPos', 'SetWindowLongA', 'GetWindowLongA', 'GetMenu', 'GetKeyboardState', 'LoadAcceleratorsW', 'CreateAcceleratorTableA', 'SetCursorPos', 'CallWindowProcA', 'DefWindowProcA', 'LockWindowUpdate', 'GetKeyNameTextA', 'UnionRect', 'OpenClipboard', 'DrawFrameControl', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'LoadImageW', 'IsCharLowerA', 'MapVirtualKeyExA', 'UpdateLayeredWindow', 'MonitorFromPoint', 'IsMenu', 'PostThreadMessageA', 'DefFrameProcA', 'DefMDIChildProcA', 'DrawMenuBar', 'TranslateMDISysAccel', 'CreateMenu', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'FrameRect', 'GetUpdateRect', 'CopyIcon', 'CharUpperBuffA', 'GetDoubleClickTime', 'SubtractRect', 'DestroyCursor', 'GetWindowRgn', 'DrawEdge', 'DrawStateA', 'LoadMenuW', 'SetClassLongA', 'DestroyAcceleratorTable', 'SetParent', 'GetWindowExtEx', 'BitBlt', 'GetPixel', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'CreatePatternBrush', 'CreateCompatibleDC', 'SelectPalette', 'GetObjectType', 'CreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'GetTextExtentPoint32A', 'GetTextMetricsA', 'CreateRectRgnIndirect', 'GetRgnBox', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'CreateDIBitmap', 'CreateCompatibleBitmap', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'MoveToEx', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'GetViewportExtEx', 'CreateDIBSection', 'CreateRoundRectRgn', 'CreatePolygonRgn', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'SetDIBColorTable', 'StretchBlt', 'SetPixel', 'Rectangle', 'OffsetRgn', 'EnumFontFamiliesExA', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetTextFaceA', 'CreateRectRgn', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextColor', 'SelectClipRgn', 'DeleteObject', 'SetLayout', 'GetLayout', 'SetTextAlign', 'GetBkColor', 'GetStockObject', 'CreateBitmap', 'CopyMetaFileA', 'SetBkColor', 'SetTextColor', 'CreateDCA', 'GetDeviceCaps', 'GetObjectA', 'CreateFontIndirectA', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'CryptCreateHash', 'CryptEncrypt', 'CryptDestroyKey', 'CryptGetHashParam', 'CryptDestroyHash', 'CryptHashData', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'RegEnumKeyExA', 'RegEnumValueA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'CryptImportKey', 'ShellExecuteA', 'SHGetFileInfoA', 'SHAppBarMessage', 'SHBrowseForFolderA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetDesktopFolder', 'DragQueryFileA', 'DragFinish', 'ImageList_GetIconSize', 'PathFindFileNameA', 'PathStripToRootA', 'PathRemoveFileSpecW', 'PathIsUNCA', 'PathFindExtensionA', 'OleGetClipboard', 'RegisterDragDrop', 'CoLockObjectExternal', 'CoInitializeEx', 'OleInitialize', 'RevokeDragDrop', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CoUninitialize', 'CreateILockBytesOnHGlobal', 'DoDragDrop', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'CoRevokeClassObject', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoCreateGuid', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'CoInitialize', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'OleIsCurrentClipboard', 'VarBstrFromDate', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SafeArrayDestroy', 'SysStringLen', 'OleCreateFontIndirect', 'SysAllocStringByteLen', 'VariantChangeType', 'VariantCopy', 'VariantInit', 'SysAllocStringLen', 'VariantClear', 'SysFreeString', 'SysAllocString', 'getsockname', 'WSAIoctl', 'send', 'recv', 'select', 'WSAGetLastError', '__WSAFDIsSet', 'WSASetLastError', 'WSAStartup', 'WSACleanup', 'ntohs', 'bind', 'htons', 'getsockopt', 'getpeername', 'socket', 'connect', 'freeaddrinfo', 'getaddrinfo', 'sendto', 'recvfrom', 'accept', 'listen', 'ioctlsocket', 'gethostname', 'htonl', 'ntohl', 'setsockopt', 'closesocket', 'CertFreeCertificateContext', 'InternetOpenUrlA', 'InternetOpenA', 'InternetCloseHandle', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'ImmGetOpenStatus', 'ImmGetContext', 'ImmReleaseContext', 'PlaySoundA'], ['__vbaR8FixI4', '_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaStrI4', '__vbaFreeVar', '__vbaAryMove', '__vbaLenBstr', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaVarTstLe', '__vbaAryDestruct', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaVarCat', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaVar2Vec', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarDup', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaEnd', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaI4Sgn', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', 'DllFunctionCall', '__vbaLbound', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrComp', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaDateStr', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['UuidFromStringA', 'AMGetErrorTextA', 'HeapFree', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'HeapReAlloc', 'TerminateProcess', 'HeapSize', 'SetUnhandledExceptionFilter', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'HeapAlloc', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'RtlUnwind', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'WritePrivateProfileStringA', 'SetErrorMode', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcatA', 'lstrcmpW', 'FreeResource', 'GlobalAddAtomA', 'GetCurrentThread', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LoadLibraryA', 'GetProcAddress', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'lstrcpyA', 'GetCurrentProcess', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'CloseHandle', 'lstrcmpA', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GlobalFree', 'MulDiv', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'SetLastError', 'lstrcpynA', 'CompareStringW', 'CompareStringA', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'LoadLibraryW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'GetEnvironmentStrings', 'LoadCursorA', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'DestroyMenu', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'GetSysColor', 'AdjustWindowRectEx', 'GetClassInfoA', 'RegisterClassA', 'DefWindowProcA', 'CallWindowProcA', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'CopyRect', 'PtInRect', 'GetWindow', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'SendMessageA', 'ShowWindow', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'CharUpperA', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'SetCursor', 'PostQuitMessage', 'PostMessageA', 'wsprintfA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetFocus', 'SetWindowPos', 'SetFocus', 'SetWindowLongA', 'GetDlgCtrlID', 'SetWindowTextA', 'IsDialogMessageA', 'SendDlgItemMessageA', 'GetDlgItem', 'GetSubMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'UnregisterClassA', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'SetWindowsHookExA', 'MessageBoxA', 'GetParent', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'GetStockObject', 'DeleteDC', 'ScaleWindowExtEx', 'SetWindowExtEx', 'RectVisible', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'CreateBitmap', 'GetDeviceCaps', 'PtVisible', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'TextOutA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyExW', 'PathIsUNCA', 'PathFindExtensionA', 'PathStripToRootA', 'PathFindFileNameA', 'CoUninitialize', 'CoCreateInstance', 'CoTaskMemFree', 'CoInitialize', 'SysAllocStringLen', 'VariantClear', 'VariantInit', 'VariantChangeType'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaLenBstrB', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaUI1I4', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaVarCat', '__vbaLsetFixstrFree', '_CIlog', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarDup', '__vbaStrToAnsi', '__vbaFpI4', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['StrRetToStrA', '?terminate@@YAXXZ', '_except_handler3', 'wcslen', 'atoi', '__dllonexit', '_mbsicoll', '_mbscmp', '__CxxFrameHandler', '_onexit', '_setmbcp', '_controlfp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', 'qsort', 'GetTickCount', 'GetCurrentProcess', 'SizeofResource', 'GetProcAddress', 'LoadLibraryExA', 'LoadLibraryExW', 'GetModuleHandleA', 'GetStartupInfoA', 'GetFileAttributesA', 'DrawIcon', 'SendMessageA', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'AppendMenuA', 'GetSystemMenu', 'LoadIconA', 'EnableWindow', 'GetParent', 'SHGetFileInfoA', 'SHGetMalloc', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'CoTaskMemFree', '??1_Winit@std@@QAE@XZ', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '?_C@?1??_Nullstr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@CAPBGXZ@4GB', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@0@Z', '?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@PBGI@Z', '?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAEX_N@Z', '??0_Winit@std@@QAE@XZ', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z'], ['_controlfp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '_except_handler3', 'memset', '__p__pgmptr', 'sprintf', 'memcpy', '_access', '__CxxFrameHandler', 'strstr', '_setmbcp', '_mkdir', 'CloseHandle', 'CreateFileA', 'FreeLibrary', 'GetTickCount', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetLastError', 'GetProcAddress', 'LoadLibraryA', 'lstrcpyA', 'GetCommandLineA', 'Sleep', 'lstrcmpiA', 'SetThreadPriority', 'GetCurrentThread', 'SetPriorityClass', 'GetCurrentProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'WriteFile', 'SendMessageA', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'wsprintfA', 'DrawIcon'], ['InitCommonControlsEx', 'SHAutoComplete', 'GetFileAttributesW', 'SetFileAttributesA', 'SetFileAttributesW', 'MoveFileW', 'DeleteFileW', 'DeleteFileA', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetTickCount', 'WideCharToMultiByte', 'GlobalAlloc', 'GetVersionExW', 'GetFullPathNameA', 'GetFullPathNameW', 'GetModuleFileNameW', 'FindResourceW', 'GetModuleHandleW', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetFileAttributesA', 'GetNumberFormatW', 'DosDateTimeToFileTime', 'GetDateFormatW', 'GetTimeFormatW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsW', 'WaitForSingleObject', 'Sleep', 'GetTempPathW', 'MoveFileExW', 'UnmapViewOfFile', 'GetCommandLineW', 'MapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'SetEnvironmentVariableW', 'GetProcAddress', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'MultiByteToWideChar', 'CompareStringW', 'IsDBCSLeadByte', 'GetCPInfo', 'SetCurrentDirectoryW', 'LoadLibraryW', 'FreeLibrary', 'WriteFile', 'SetFileTime', 'GetStdHandle', 'ReadFile', 'GetCurrentDirectoryW', 'CreateFileW', 'CreateFileA', 'GetFileType', 'SetFilePointer', 'CloseHandle', 'SetEndOfFile', 'SetLastError', 'GetLastError', 'GetLocaleInfoW', 'CharUpperA', 'OemToCharBuffA', 'wvsprintfA', 'wvsprintfW', 'ReleaseDC', 'GetDC', 'SendMessageW', 'SetDlgItemTextW', 'SetFocus', 'EndDialog', 'DestroyIcon', 'SendDlgItemMessageW', 'GetDlgItemTextW', 'GetClassNameW', 'DialogBoxParamW', 'IsWindowVisible', 'WaitForInputIdle', 'SetForegroundWindow', 'GetSysColor', 'PostMessageW', 'LoadBitmapW', 'CharToOemBuffA', 'CharToOemA', 'OemToCharA', 'FindWindowExW', 'UpdateWindow', 'SetWindowTextW', 'LoadCursorW', 'RegisterClassExW', 'SetWindowLongW', 'GetWindowLongW', 'DefWindowProcW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'DestroyWindow', 'GetClientRect', 'IsWindow', 'MessageBoxW', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'LoadStringW', 'SetWindowPos', 'GetWindowTextW', 'GetSystemMetrics', 'GetWindow', 'CharUpperW', 'GetWindowRect', 'GetParent', 'MapWindowPoints', 'LoadIconW', 'CreateWindowExW', 'CopyRect', 'CreateCompatibleDC', 'GetDeviceCaps', 'GetObjectW', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'DeleteObject', 'DeleteDC', 'RegCloseKey', 'RegSetValueExW', 'RegQueryValueExW', 'RegCreateKeyExW', 'RegOpenKeyExW', 'SHChangeNotify', 'ShellExecuteExW', 'SHFileOperationW', 'SHGetFileInfoW', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'CreateStreamOnHGlobal', 'OleInitialize', 'CoCreateInstance', 'OleUninitialize', 'CLSIDFromString', 'VariantInit'], ['SetEnvironmentVariableW', 'SetFileAttributesW', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameW', 'GetCurrentProcess', 'CopyFileW', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'GetVersion', 'SetErrorMode', 'lstrlenW', 'lstrcpynW', 'GetDiskFreeSpaceW', 'ExitProcess', 'MoveFileW', 'CreateThread', 'GetLastError', 'CreateDirectoryW', 'CreateProcessW', 'RemoveDirectoryW', 'lstrcmpiA', 'CreateFileW', 'GetTempFileNameW', 'WriteFile', 'lstrcpyA', 'MoveFileExW', 'lstrcatW', 'GetSystemDirectoryW', 'GetProcAddress', 'GetModuleHandleA', 'GetExitCodeProcess', 'WaitForSingleObject', 'lstrcmpiW', 'lstrcmpW', 'GetFullPathNameW', 'GetShortPathNameW', 'SearchPathW', 'CompareFileTime', 'SetFileTime', 'CloseHandle', 'ExpandEnvironmentStringsW', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'GlobalAlloc', 'DeleteFileW', 'FindFirstFileW', 'FindNextFileW', 'FindClose', 'SetFilePointer', 'ReadFile', 'MulDiv', 'lstrlenA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'WritePrivateProfileStringW', 'FreeLibrary', 'GetPrivateProfileStringW', 'GetModuleHandleW', 'LoadLibraryExW', 'GetWindowRect', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongW', 'SetCursor', 'LoadCursorW', 'CheckDlgButton', 'GetMessagePos', 'CallWindowProcW', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'ScreenToClient', 'EnableMenuItem', 'GetDlgItem', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharPrevW', 'CharNextA', 'wsprintfA', 'DispatchMessageW', 'PeekMessageW', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'SystemParametersInfoW', 'EndDialog', 'RegisterClassW', 'DialogBoxParamW', 'CreateWindowExW', 'GetClassInfoW', 'DestroyWindow', 'CharNextW', 'ExitWindowsEx', 'SetWindowTextW', 'LoadImageW', 'SetTimer', 'ShowWindow', 'PostQuitMessage', 'wsprintfW', 'SetWindowLongW', 'FindWindowExW', 'IsWindow', 'CreatePopupMenu', 'AppendMenuW', 'GetSystemMetrics', 'DrawTextW', 'EndPaint', 'CreateDialogParamW', 'SendMessageTimeoutW', 'SetForegroundWindow', 'SelectObject', 'SetTextColor', 'SetBkMode', 'CreateFontIndirectW', 'CreateBrushIndirect', 'DeleteObject', 'GetDeviceCaps', 'SetBkColor', 'ShellExecuteExW', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetFileInfoW', 'SHFileOperationW', 'SHBrowseForFolderW', 'AdjustTokenPrivileges', 'RegCreateKeyExW', 'RegOpenKeyExW', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'RegEnumValueW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegSetValueExW', 'RegQueryValueExW', 'RegEnumKeyW', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['CompareFileTime', 'SearchPathW', 'SetFileTime', 'CloseHandle', 'GetShortPathNameW', 'MoveFileW', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'GetLastError', 'GetFullPathNameW', 'CreateDirectoryW', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameW', 'GetCurrentProcess', 'CopyFileW', 'ExitProcess', 'SetEnvironmentVariableW', 'GetWindowsDirectoryW', 'GetTempPathW', 'SetFileAttributesW', 'ExpandEnvironmentStringsW', 'LoadLibraryW', 'lstrlenW', 'lstrcpynW', 'GetDiskFreeSpaceW', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessW', 'RemoveDirectoryW', 'lstrcmpiA', 'CreateFileW', 'GetTempFileNameW', 'lstrcpyA', 'lstrcpyW', 'lstrcatW', 'GetSystemDirectoryW', 'GetVersion', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'GetModuleHandleW', 'lstrcmpiW', 'lstrcmpW', 'WaitForSingleObject', 'GlobalFree', 'GlobalAlloc', 'LoadLibraryExW', 'GetExitCodeProcess', 'FreeLibrary', 'WritePrivateProfileStringW', 'SetErrorMode', 'GetCommandLineW', 'GetPrivateProfileStringW', 'FindFirstFileW', 'FindNextFileW', 'DeleteFileW', 'SetFilePointer', 'ReadFile', 'FindClose', 'MulDiv', 'MultiByteToWideChar', 'WriteFile', 'lstrlenA', 'WideCharToMultiByte', 'EndDialog', 'ScreenToClient', 'GetWindowRect', 'RegisterClassW', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongW', 'SetCursor', 'LoadCursorW', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapW', 'CallWindowProcW', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'wsprintfW', 'CreateWindowExW', 'SystemParametersInfoW', 'AppendMenuW', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharPrevW', 'CharNextA', 'wsprintfA', 'DispatchMessageW', 'PeekMessageW', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'GetDC', 'SetWindowLongW', 'LoadImageW', 'SendMessageTimeoutW', 'FindWindowExW', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'EndPaint', 'ShowWindow', 'GetDlgItem', 'IsWindow', 'SetForegroundWindow', 'SelectObject', 'SetBkMode', 'CreateFontIndirectW', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'RegCloseKey', 'RegOpenKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegEnumKeyW', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'CoCreateInstance', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW'], ['OpenProcessToken', 'GetTokenInformation', 'RegSetValueExA', 'EqualSid', 'RegQueryValueExA', 'LookupPrivilegeValueA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryInfoKeyA', 'RegDeleteValueA', 'AllocateAndInitializeSid', 'FreeSid', 'AdjustTokenPrivileges', 'RegCloseKey', 'GetPrivateProfileIntA', 'GetFileAttributesA', 'IsDBCSLeadByte', 'GetSystemDirectoryA', 'GlobalUnlock', 'GetShortPathNameA', 'CreateDirectoryA', 'FindFirstFileA', 'GetLastError', 'GetProcAddress', 'RemoveDirectoryA', 'SetFileAttributesA', 'GlobalFree', 'FindClose', 'GetPrivateProfileStringA', 'LoadLibraryA', 'LocalAlloc', 'WritePrivateProfileStringA', 'GetModuleFileNameA', 'FindNextFileA', 'CompareStringA', '_lopen', 'CloseHandle', 'LocalFree', 'DeleteFileA', 'ExitProcess', 'DosDateTimeToFileTime', 'CreateFileA', 'FindResourceA', 'SetFilePointer', 'GlobalAlloc', 'ExpandEnvironmentStringsA', 'WaitForSingleObject', 'SetEvent', 'GetModuleHandleW', 'FormatMessageA', 'SetFileTime', 'WriteFile', 'GetDriveTypeA', 'GetVolumeInformationA', 'TerminateThread', 'SizeofResource', 'CreateEventA', 'GetExitCodeProcess', 'CreateProcessA', 'ReadFile', 'SetCurrentDirectoryA', '_llseek', 'ResetEvent', 'LockResource', 'GetSystemInfo', 'LoadLibraryExA', 'CreateMutexA', 'GetCurrentDirectoryA', 'GetVersionExA', 'GetVersion', 'GetTempPathA', 'CreateThread', 'LocalFileTimeToFileTime', 'Sleep', 'FreeResource', 'GetWindowsDirectoryA', 'lstrcmpA', '_lclose', 'GlobalLock', 'GetCurrentProcess', 'LoadResource', 'FreeLibrary', 'GetStartupInfoW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'OutputDebugStringA', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'EnumResourceLanguagesA', 'MulDiv', 'GetDiskFreeSpaceA', 'GetTempFileNameA', 'GetDeviceCaps', 'SetForegroundWindow', 'MsgWaitForMultipleObjects', 'SendDlgItemMessageA', 'GetWindowLongPtrA', 'GetWindowRect', 'GetDC', 'MessageBoxA', 'PeekMessageA', 'ReleaseDC', 'GetDlgItem', 'SetWindowPos', 'ShowWindow', 'SetWindowLongPtrA', 'DispatchMessageA', 'SetWindowTextA', 'EnableWindow', 'CallWindowProcA', 'DialogBoxIndirectParamA', 'GetDlgItemTextA', 'LoadStringA', 'MessageBeep', 'CharUpperA', 'CharNextA', 'ExitWindowsEx', 'CharPrevA', 'EndDialog', 'GetDesktopWindow', 'SetDlgItemTextA', 'SendMessageA', 'GetSystemMetrics', '?terminate@@YAXXZ', '_fmode', '_acmdln', '__C_specific_handler', '_initterm', '__setusermatherr', '_ismbblead', '_cexit', 'memset', 'memcpy', '_exit', 'exit', '__set_app_type', '__getmainargs', '_amsg_exit', '_XcptFilter', '_errno', '_vsnprintf', '_commode', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'VerQueryValueA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaR8Sgn', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaI2I4', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaUI1Str', '__vbaCastObj', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_onexit', '__dllonexit', '??1type_info@@UAE@XZ', 'malloc', 'free', '_exit', 'memset', '_CxxThrowException', '_setmbcp', '_XcptFilter', '__getmainargs', 'exit', '_acmdln', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '_EH_prolog', '__CxxFrameHandler', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', 'strlen', 'GetLastError', 'SetCommState', 'EscapeCommFunction', 'GetProcAddress', 'Sleep', 'ExitProcess', 'GetModuleHandleA', 'GetStartupInfoA', 'LoadLibraryW', 'CloseHandle', 'CreateFileA', 'EnableWindow', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSystemMenu', 'SendMessageA', 'LoadIconA', 'AppendMenuA', '??1_Winit@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?_C@?1??_Nullstr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@CAPBDXZ@4DB', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z', '??Hstd@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z'], ['GetSystemMenu', 'CreatePopupMenu', 'CreateMenu', 'LoadCursorA', 'RegisterClassExA', 'GetMessageA', 'GetParent', 'TranslateAcceleratorA', 'IsDialogMessageA', 'TranslateMessage', 'DispatchMessageA', 'AppendMenuA', 'GetMenuItemCount', 'InsertMenuA', 'SetMenuInfo', 'GetSubMenu', 'GetMenuItemID', 'CheckMenuRadioItem', 'GetActiveWindow', 'ReleaseDC', 'GetDC', 'GetIconInfo', 'DrawIconEx', 'DrawIcon', 'SetActiveWindow', 'UnregisterHotKey', 'RegisterHotKey', 'RegisterWindowMessageA', 'LoadMenuA', 'SetMenu', 'GetMenu', 'GetSystemMetrics', 'IsZoomed', 'IsIconic', 'GetSysColor', 'FillRect', 'SetForegroundWindow', 'TrackPopupMenu', 'IsWindow', 'GetClassNameA', 'GetMenuStringA', 'GetMenuItemInfoA', 'GetMenuItemRect', 'GetMenuState', 'GetMenuInfo', 'GetMenuDefaultItem', 'MenuItemFromPoint', 'RemoveMenu', 'CheckMenuItem', 'SetMenuItemInfoA', 'SetMenuItemBitmaps', 'SetMenuDefaultItem', 'wsprintfA', 'SetClassLongA', 'GetClassLongA', 'SetRect', 'SetWindowRgn', 'DrawMenuBar', 'DestroyMenu', 'RemovePropA', 'GetPropA', 'SetPropA', 'MessageBoxA', 'SetWindowTextA', 'GetWindowTextA', 'GetWindowTextLengthA', 'EnableWindow', 'IsWindowEnabled', 'ShowWindow', 'IsWindowVisible', 'SetParent', 'PostMessageA', 'SetWindowPos', 'MoveWindow', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'ScreenToClient', 'GetWindowRect', 'GetFocus', 'SetFocus', 'GetDlgItem', 'GetWindowLongA', 'CreateWindowExA', 'DestroyCursor', 'SetWindowLongA', 'DestroyIcon', 'TrackMouseEvent', 'SetCursor', 'DefMDIChildProcA', 'SendMessageA', 'DestroyWindow', 'GetClientRect', 'GetAsyncKeyState', 'CallWindowProcA', 'EndPaint', 'BeginPaint', 'CopyIcon', 'CopyImage', 'DefWindowProcA', 'PostQuitMessage', 'LoadIconA', 'HeapSize', 'RtlUnwind', 'HeapCreate', 'HeapDestroy', 'GetVersionExA', 'GetLastError', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'GetCurrentThreadId', 'DeleteCriticalSection', 'SetStdHandle', 'GetStdHandle', 'InitializeCriticalSection', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedIncrement', 'InterlockedDecrement', 'GetVersion', 'GetCommandLineA', 'GetStartupInfoA', 'FlushFileBuffers', 'EnterCriticalSection', 'LeaveCriticalSection', 'LCMapStringW', 'RaiseException', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'GetStringTypeA', 'GetStringTypeW', 'SetHandleCount', 'GetFileType', 'ExitProcess', 'LCMapStringA', 'MoveFileA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetEnvironmentVariableA', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'WideCharToMultiByte', 'IsBadReadPtr', 'HeapReAlloc', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'DeleteFileA', 'SetEndOfFile', 'WriteFile', 'GetFileAttributesA', 'GetCurrentDirectoryA', 'GetDriveTypeA', 'LocalSize', 'MultiByteToWideChar', 'GetModuleHandleA', 'RtlMoveMemory', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetModuleFileNameA', 'VirtualFree', 'SetLastError', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'CloseHandle', 'VirtualAlloc', 'CreateFileA', 'CoUninitialize', 'CoInitialize', 'CLSIDFromString', 'CreateStreamOnHGlobal', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'DragAcceptFiles', 'Shell_NotifyIconA', 'DragFinish', 'DragQueryFileA', 'DeleteObject', 'GetObjectA', 'CreateCompatibleDC', 'CreateDIBSection', 'DeleteDC', 'SelectObject', 'BitBlt', 'ExtCreateRegion', 'CombineRgn', 'CreateRoundRectRgn', 'StretchBlt', 'CreateSolidBrush', 'CreatePatternBrush', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'GetStockObject', 'AlphaBlend', 'MakeSureDirectoryPathExists', 'OleLoadPicture', 'VarR8FromCy', 'VarR8FromBool', 'SafeArrayCreate', 'SysAllocString', 'VariantClear', 'SafeArrayDestroy', 'RegOpenKeyA', 'RegCloseKey', 'RegQueryValueExA', 'PathFileExistsA'], ['StrRetToStrA', 'PathFindExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'HeapFree', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'HeapReAlloc', 'TerminateProcess', 'HeapSize', 'SetUnhandledExceptionFilter', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'HeapAlloc', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'GetDriveTypeA', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetStdHandle', 'GetLocaleInfoW', 'SetEnvironmentVariableA', 'RtlUnwind', 'GetFileTime', 'SetErrorMode', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetOEMCP', 'GetCPInfo', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'GlobalFlags', 'InterlockedDecrement', 'CloseHandle', 'GetCurrentThread', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcmpA', 'lstrcpyA', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindNextFileA', 'FindClose', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'GetModuleHandleA', 'SetLastError', 'GlobalFree', 'MulDiv', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'lstrcpynA', 'LocalFree', 'CompareStringW', 'CompareStringA', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'LoadLibraryExW', 'LoadLibraryExA', 'GetProcAddress', 'GetCurrentProcess', 'GetTickCount', 'GetFileAttributesA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'GetEnvironmentStringsW', 'PostThreadMessageA', 'RegisterClipboardFormatA', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'CopyAcceleratorTableA', 'SetRect', 'IsRectEmpty', 'CharNextA', 'ReleaseCapture', 'SetCapture', 'LoadCursorA', 'GetSysColorBrush', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'wsprintfA', 'DestroyMenu', 'SetWindowContextHelpId', 'MapDialogRect', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'GetCursorPos', 'ValidateRect', 'SetCursor', 'PostQuitMessage', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'GetFocus', 'IsWindow', 'SetFocus', 'IsChild', 'SendMessageA', 'GetParent', 'EnableWindow', 'DrawIcon', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'LoadIconA', 'GetSystemMetrics', 'CharUpperA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'PeekMessageA', 'MapWindowPoints', 'MessageBoxA', 'GetKeyState', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetMenu', 'PostMessageA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'GetDC', 'ReleaseDC', 'GetSubMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'GetWindow', 'PtInRect', 'GetWindowRect', 'GetWindowPlacement', 'SystemParametersInfoA', 'IntersectRect', 'OffsetRect', 'SetWindowPos', 'SetWindowLongA', 'GetWindowLongA', 'CallWindowProcA', 'DefWindowProcA', 'GetDlgCtrlID', 'UnregisterClassA', 'RegisterClassA', 'GetClassInfoA', 'GetTextColor', 'GetRgnBox', 'GetBkColor', 'GetMapMode', 'GetStockObject', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'DeleteDC', 'ExtSelectClipRgn', 'CreateRectRgnIndirect', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'ExtTextOutA', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'ScaleWindowExtEx', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHGetFileInfoA', 'ImageList_Destroy', 'ImageList_LoadImageA', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'StgOpenStorageOnILockBytes', 'CoTaskMemFree', 'StgCreateDocfileOnILockBytes', 'CreateILockBytesOnHGlobal', 'OleUninitialize', 'CoFreeUnusedLibraries', 'OleInitialize', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'OleCreateFontIndirect', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'VariantCopy', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'SysAllocString'], ['VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'EnumSystemCodePagesW', 'IsProcessorFeaturePresent', 'RpcServerUseAllProtseqs', 'NdrServerContextNewUnmarshall', 'NDRSContextUnmarshall', 'NdrSimpleTypeMarshall', 'NdrMesTypeEncode', 'NdrConformantArrayFree', 'SetupDiOpenDevRegKey', 'SetupDiSetSelectedDriverA', 'SetupDiGetDeviceInterfaceAlias', 'SetupInstallServicesFromInfSectionExW', 'SetupInitDefaultQueueCallback', 'SetupFindFirstLineW', 'MgmReleaseInterfaceOwnership', 'RtmDeleteRouteTable', 'MgmDeInitialize', 'MgmGetNextMfe', 'CoInternetCombineUrl', 'CopyStgMedium', 'ObtainUserAgentString', 'CopyBindInfo', 'WriteHitLogging', 'GetClassURL', 'URLOpenPullStreamW', 'FindMediaType'], ['GetNativeSystemInfo', 'EndUpdateResourceW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'Process32NextW', 'SetEvent', 'CreateEventW', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'GetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'DeleteFileW', 'GetFileAttributesW', 'GetTempFileNameW', 'ReadFile', 'OpenProcess', 'GetCurrentProcess', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetWindowsDirectoryW', 'GetVersionExW', 'GetModuleFileNameW', 'GlobalAlloc', 'GlobalFree', 'LocalFree', 'FormatMessageW', 'CopyFileW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'WideCharToMultiByte', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'GetCurrentProcessId', 'Sleep', 'HeapSetInformation', 'SetFilePointer', 'GetDiskFreeSpaceExW', 'CreateFileW', 'DeleteCriticalSection', 'CreateThread', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'lstrlenW', 'MulDiv', 'GetTickCount', 'GetExitCodeProcess', 'LoadLibraryW', 'GetTempPathW', 'SwitchToThread', 'FindNextFileW', 'UpdateResourceA', 'BeginUpdateResourceA', 'FindResourceA', 'lstrlenA', 'DeleteFileA', 'CreateFileA', 'UpdateResourceW', 'BeginUpdateResourceW', 'GetVersion', 'GetEnvironmentVariableA', 'HeapReAlloc', 'HeapSize', 'WriteConsoleW', 'ReadConsoleW', 'GetProcessHeap', 'SetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'GetOEMCP', 'IsValidCodePage', 'FindFirstFileExW', 'SetEndOfFile', 'OutputDebugStringW', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'GetFileType', 'FindFirstFileW', 'FindClose', 'GetProcAddress', 'FreeLibrary', 'WaitForSingleObject', 'GetLastError', 'CloseHandle', 'WriteFile', 'GetStringTypeW', 'HeapAlloc', 'HeapFree', 'GetACP', 'GetModuleHandleExW', 'ExitProcess', 'MultiByteToWideChar', 'VirtualProtect', 'VirtualQuery', 'GetModuleHandleW', 'LoadLibraryExA', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'TerminateProcess', 'RtlUnwind', 'SetLastError', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'GetStdHandle', 'GetStockObject', 'EnumFontFamiliesExW', 'DeleteObject', 'CreateFontIndirectW', 'GetObjectW', 'GetTextMetricsW', 'SelectObject', 'GetTextExtentPoint32W', 'GetDeviceCaps', 'DeleteDC', 'CreateCompatibleDC', 'CoUninitialize', 'CoInitialize', 'GetComputerObjectNameW', 'ShellExecuteExW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'ShellExecuteW', 'ShellExecuteA', 'SystemParametersInfoW', 'IsDialogMessageW', 'LoadImageW', 'LoadIconW', 'LoadCursorW', 'SetClassLongW', 'ScreenToClient', 'GetWindowRect', 'GetClientRect', 'SetWindowTextW', 'ShowScrollBar', 'SetForegroundWindow', 'EnableWindow', 'GetFocus', 'SetFocus', 'SendDlgItemMessageW', 'SetDlgItemTextW', 'GetDlgItem', 'CreateDialogIndirectParamW', 'CreateDialogParamW', 'MoveWindow', 'ShowWindow', 'DestroyWindow', 'SendMessageW', 'SendMessageA', 'PeekMessageW', 'DispatchMessageW', 'TranslateMessage', 'ExitWindowsEx', 'MessageBoxW', 'ReleaseDC', 'GetDC', 'DrawTextW', 'GetSystemMetrics', 'GetDialogBaseUnits', 'MessageBoxA', 'SetCursor', 'MsgWaitForMultipleObjects', 'CertGetCertificateChain', 'CertFreeCertificateChain', 'CertVerifyCertificateChainPolicy', 'InternetCrackUrlW', 'InternetCombineUrlW'], ['SetEndOfFile', 'GetFileSize', 'DuplicateHandle', 'GetCurrentProcess', 'FindClose', 'FindFirstFileA', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetCPInfo', 'GetOEMCP', 'GetModuleHandleW', 'FileTimeToSystemTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'GetFileAttributesA', 'GetFileSizeEx', 'GetFileTime', 'GetTickCount', 'RaiseException', 'RtlUnwind', 'HeapFree', 'UnlockFile', 'GetCommandLineA', 'GetStartupInfoA', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetACP', 'IsValidCodePage', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'InterlockedDecrement', 'GetModuleFileNameW', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'MultiByteToWideChar', 'lstrcmpW', 'GetVersionExA', 'lstrlenA', 'WritePrivateProfileStringA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'SetLastError', 'GlobalAddAtomA', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'LoadLibraryA', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'FreeLibrary', 'GetModuleHandleA', 'ExitProcess', 'WideCharToMultiByte', 'LoadLibraryW', 'GetProcAddress', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'Sleep', 'CreateFileA', 'EscapeCommFunction', 'SetCommState', 'GetLastError', 'HeapAlloc', 'CloseHandle', 'CopyAcceleratorTableA', 'IsRectEmpty', 'SetRect', 'InvalidateRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'CharNextA', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'InSendMessage', 'CreateWindowExW', 'SendMessageA', 'DrawIcon', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'SetCursor', 'SetWindowsHookExA', 'CharUpperA', 'GetSysColorBrush', 'AppendMenuA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'ReleaseCapture', 'LoadCursorA', 'SetCapture', 'UnhookWindowsHookEx', 'EndPaint', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'SetTextColor', 'SetBkColor', 'GetObjectA', 'GetDeviceCaps', 'ExtTextOutA', 'GetClipBox', 'SaveDC', 'RestoreDC', 'DeleteDC', 'GetStockObject', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'ExtSelectClipRgn', 'CreateBitmap', 'GetWindowExtEx', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'GetFileTitleA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'CoRevokeClassObject', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'CoRegisterMessageFilter', 'CoGetClassObject', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaI2I4', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaInStrB', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['WriteFile', 'HeapReAlloc', 'HeapAlloc', 'WaitForSingleObject', 'GetFileAttributesW', 'MultiByteToWideChar', 'SetLastError', 'VirtualFree', 'LoadLibraryA', 'VirtualProtect', 'DeleteCriticalSection', 'WideCharToMultiByte', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindClose', 'CreateDirectoryW', 'GetModuleFileNameW', 'GetFullPathNameW', 'ExpandEnvironmentStringsW', 'GetCurrentProcess', 'VirtualAlloc', 'GetSystemTime', 'SystemTimeToFileTime', 'GetModuleHandleA', 'CreateEventA', 'SetEvent', 'CreateFileA', 'FormatMessageA', 'GetProcAddress', 'CreateToolhelp32Snapshot', 'Thread32First', 'SetFilePointer', 'GetCurrentProcessId', 'GetComputerNameA', 'lstrlenA', 'CreateSemaphoreA', 'CreateProcessA', 'TerminateProcess', 'lstrcatA', 'ReleaseSemaphore', 'CreateDirectoryA', 'FindFirstFileA', 'GetCurrentDirectoryA', 'GetTempPathA', 'DeleteFileA', 'FreeLibrary', 'GetTickCount', 'GetModuleHandleW', 'GetProcessId', 'FlushInstructionCache', 'LocalAlloc', 'CompareStringW', 'CompareStringA', 'SetEndOfFile', 'SetStdHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'InitializeCriticalSectionAndSpinCount', 'GetLocaleInfoW', 'GetStringTypeW', 'GetStringTypeA', 'IsValidLocale', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'GetUserDefaultLCID', 'GetCurrentThreadId', 'ReadFile', 'GetFileSize', 'CreateFileW', 'GetProcessHeap', 'HeapFree', 'GetLocalTime', 'DeleteFileW', 'GetEnvironmentVariableW', 'InitializeCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetLastError', 'LoadLibraryW', 'Sleep', 'CreateThread', 'Thread32Next', 'CloseHandle', 'QueryPerformanceCounter', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'VirtualQuery', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'FlushFileBuffers', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'GetSystemTimeAsFileTime', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetTimeFormatA', 'GetDateFormatA', 'GetTimeZoneInformation', 'GetCommandLineA', 'RaiseException', 'RtlUnwind', 'LCMapStringA', 'LCMapStringW', 'GetCPInfo', 'GetStdHandle', 'GetModuleFileNameA', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'HeapSize', 'ExitProcess', 'HeapCreate', 'HeapDestroy', 'GetConsoleCP', 'GetConsoleMode', 'wsprintfA', 'EnumThreadWindows', 'EnumChildWindows', 'GetActiveWindow', 'InvalidateRect', 'SendMessageA', 'PostMessageA', 'IsWindowVisible', 'CallWindowProcA', 'SetWindowLongA', 'GetWindowLongA', 'GetClassNameA', 'MessageBoxA', 'RegQueryValueExA', 'RegSetValueExA', 'RegCreateKeyExA', 'GetTokenInformation', 'OpenProcessToken', 'RegSetValueExW', 'RegCreateKeyExW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'RegDeleteKeyW', 'SHFileOperationA', 'GetModuleInformation'], ['SetEnvironmentVariableA', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'GetFileAttributesA', 'SetFileAttributesA', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetCommandLineA', 'lstrlenA', 'GetVersion', 'SetErrorMode', 'lstrcpynA', 'ExitProcess', 'GetFullPathNameA', 'GlobalLock', 'CreateThread', 'GetLastError', 'CreateDirectoryA', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'ReadFile', 'WriteFile', 'lstrcpyA', 'MoveFileExA', 'lstrcatA', 'GetSystemDirectoryA', 'GetProcAddress', 'CloseHandle', 'SetCurrentDirectoryA', 'MoveFileA', 'CompareFileTime', 'GetShortPathNameA', 'SearchPathA', 'lstrcmpiA', 'SetFileTime', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'GlobalUnlock', 'GetDiskFreeSpaceA', 'GlobalFree', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'SetFilePointer', 'GetPrivateProfileStringA', 'FindClose', 'MultiByteToWideChar', 'FreeLibrary', 'MulDiv', 'WritePrivateProfileStringA', 'LoadLibraryExA', 'GetModuleHandleA', 'GetExitCodeProcess', 'WaitForSingleObject', 'GlobalAlloc', 'ScreenToClient', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostQuitMessage', 'GetWindowRect', 'EnableMenuItem', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndDialog', 'RegisterClassA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'ExitWindowsEx', 'GetDC', 'CreateDialogParamA', 'SetTimer', 'GetDlgItem', 'SetWindowLongA', 'SetForegroundWindow', 'LoadImageA', 'IsWindow', 'SendMessageTimeoutA', 'FindWindowExA', 'OpenClipboard', 'TrackPopupMenu', 'AppendMenuA', 'EndPaint', 'DestroyWindow', 'wsprintfA', 'ShowWindow', 'SetWindowTextA', 'SelectObject', 'SetBkMode', 'CreateFontIndirectA', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'RegDeleteKeyA', 'SetFileSecurityA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegOpenKeyExA', 'RegEnumValueA', 'RegDeleteValueA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['waveOutUnprepareHeader', 'timeKillEvent', 'timeSetEvent', 'mmioAscend', 'mmioWrite', 'mmioCreateChunk', 'mmioOpenA', 'waveOutReset', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutSetVolume', 'waveOutGetVolume', 'mmioClose', 'mmioFlush', 'waveOutWrite', 'waveOutPrepareHeader', 'GetCurrentProcess', 'SetErrorMode', 'GetFileAttributesA', 'HeapAlloc', 'HeapFree', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'HeapReAlloc', 'TerminateProcess', 'HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'GetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LCMapStringA', 'LCMapStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'LocalAlloc', 'InterlockedIncrement', 'RaiseException', 'InterlockedDecrement', 'GetCurrentThread', 'lstrcmpA', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'MulDiv', 'FormatMessageA', 'lstrcpynA', 'LocalFree', 'SetFilePointer', 'GetFullPathNameA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'GlobalReAlloc', 'CreateThread', 'SetThreadPriority', 'ExitThread', 'LoadLibraryW', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalAlloc', 'GlobalLock', 'DeleteCriticalSection', 'WaitForSingleObject', 'Sleep', 'InitializeCriticalSection', 'CreateEventA', 'CloseHandle', 'SetEvent', 'EnterCriticalSection', 'LeaveCriticalSection', 'ResetEvent', 'GlobalHandle', 'GlobalUnlock', 'GlobalFree', 'lstrlenA', 'lstrcmpiA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersionExA', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'InterlockedExchange', 'RtlUnwind', 'LoadCursorA', 'wsprintfA', 'PostQuitMessage', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'IsWindowEnabled', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'WinHelpA', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'IsWindow', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'MessageBoxA', 'TrackPopupMenu', 'GetKeyState', 'GetSysColorBrush', 'SetForegroundWindow', 'IsWindowVisible', 'UpdateWindow', 'GetMenu', 'AdjustWindowRectEx', 'GetClassInfoA', 'UnregisterClassA', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'SetWindowPos', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindow', 'GetSysColor', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'ScreenToClient', 'GrayStringA', 'DrawTextExA', 'TabbedTextOutA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetCursorPos', 'SetWindowRgn', 'SetRect', 'GetWindowRect', 'PostMessageA', 'LoadMenuA', 'GetSubMenu', 'CopyRect', 'GetSystemMetrics', 'LoadIconA', 'IsIconic', 'DrawIcon', 'ShowWindow', 'PtInRect', 'ReleaseCapture', 'SendMessageA', 'GetWindowLongA', 'WindowFromPoint', 'GetParent', 'SetCapture', 'GetCapture', 'GetActiveWindow', 'ClientToScreen', 'GetFocus', 'DestroyMenu', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'SetFocus', 'PeekMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'EnableWindow', 'KillTimer', 'SetTimer', 'InvalidateRect', 'GetDC', 'GetClientRect', 'DrawTextA', 'GetNextDlgTabItem', 'EndDialog', 'ValidateRect', 'SetCursor', 'RegisterClassA', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'CreateBitmap', 'RectVisible', 'DPtoLP', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'PtVisible', 'RestoreDC', 'SaveDC', 'GetDeviceCaps', 'CreateDIBSection', 'ExtCreateRegion', 'DeleteObject', 'DeleteDC', 'StretchBlt', 'CombineRgn', 'CreateCompatibleBitmap', 'GetStockObject', 'GetTextExtentPoint32A', 'BitBlt', 'SelectObject', 'CreateCompatibleDC', 'GetObjectA', 'CreateFontIndirectA', 'SetBkMode', 'SetBkColor', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegOpenKeyExW', 'PathFindFileNameA', 'PathFindExtensionA', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CreateStreamOnHGlobal', 'OleLoadPicture', 'VariantInit', 'VariantChangeType', 'VariantClear'], ['GetVersionExA', 'HeapQueryInformation', 'GetClassInfoExA', 'SelectPalette', 'VariantTimeToSystemTime', 'TransparentBlt', 'ImageList_Destroy', 'PathFindFileNameA', 'GdipGetImageGraphicsContext', 'CreateStdAccessibleObject', 'ImmReleaseContext', 'InternetWriteFile', 'PlaySoundA', 'GetJobA', 'GetFileTitleA', 'RegEnumKeyA', 'SHAppBarMessage', 'RegisterDragDrop', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaAryMove', '__vbaLenBstr', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaOnError', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaAryConstruct2', '__vbaVarTstEq', 'DllFunctionCall', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaUbound', '_CIlog', '__vbaVar2Vec', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaInStrB', '__vbaAryLock', '__vbaVarDup', '__vbaStrToAnsi', '_CIatan', '__vbaUI1Str', '__vbaStrMove', '_allmul', '_CItan', '__vbaAryUnlock', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutRestart', 'midiStreamOpen', 'midiStreamProperty', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'ntohl', 'recvfrom', 'ioctlsocket', 'recv', 'accept', 'getpeername', 'GetSystemDirectoryA', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'WideCharToMultiByte', 'CreateMutexA', 'ReleaseMutex', 'SuspendThread', 'GetACP', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'GetWindowsDirectoryA', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'TerminateThread', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GetDriveTypeA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GetTempPathA', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'MoveFileA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'HeapSize', 'GetActiveWindow', 'SetFocus', 'IsIconic', 'PeekMessageA', 'SetMenu', 'GetMenu', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'GetSysColorBrush', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'LoadIconA', 'TranslateMessage', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'GetWindowTextA', 'GetForegroundWindow', 'UnregisterClassA', 'CreateIconFromResourceEx', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'EndDoc', 'EndPage', 'CreateFontIndirectA', 'GetStockObject', 'CreateSolidBrush', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'DeleteObject', 'GetSystemPaletteEntries', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateDIBitmap', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'SHGetSpecialFolderPathA', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaVarIdiv', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegEnumKeyA', 'GetFileTitleA', 'ArcTo', 'ReadClassStg', 'VarBstrFromDate', 'DragFinish', 'PathIsUNCA', 'GetDC', 'ClosePrinter'], ['VirtualAlloc', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'VirtualFree', 'IsBadCodePtr', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'HeapCreate', 'HeapDestroy', 'Sleep', 'LCMapStringW', 'LCMapStringA', 'GetACP', 'HeapSize', 'HeapReAlloc', 'TerminateProcess', 'RaiseException', 'GetCommandLineA', 'HeapAlloc', 'HeapFree', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'GetTickCount', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetFileSize', 'GetShortPathNameA', 'GetStringTypeExA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetCurrentDirectoryA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'SetLastError', 'GlobalFlags', 'MulDiv', 'GetLastError', 'GetDiskFreeSpaceA', 'GetFileTime', 'SetFileTime', 'GetFullPathNameA', 'GetTempFileNameA', 'lstrcpynA', 'GetFileAttributesA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'CloseHandle', 'GetModuleFileNameA', 'GlobalAlloc', 'GetCurrentThread', 'lstrcmpA', 'FormatMessageA', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'InterlockedDecrement', 'InterlockedIncrement', 'LoadLibraryA', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'lstrcmpiA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcpyA', 'GetModuleHandleA', 'GetProcAddress', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'InterlockedExchange', 'IsBadReadPtr', 'ExitProcess', 'InflateRect', 'SetCapture', 'InvertRect', 'GetDCEx', 'LockWindowUpdate', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'GetDC', 'ReleaseDC', 'DestroyCursor', 'MapDialogRect', 'SetWindowContextHelpId', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'GetCursorPos', 'SetCursor', 'ShowOwnedPopups', 'PostQuitMessage', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'LoadIconA', 'PostMessageA', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'PeekMessageA', 'DispatchMessageA', 'GetFocus', 'SetFocus', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetClientRect', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'IsWindowVisible', 'ScrollWindow', 'GetScrollInfo', 'MessageBeep', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'WindowFromPoint', 'GetTopWindow', 'MessageBoxA', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'GetKeyState', 'DefWindowProcA', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetMessagePos', 'GetLastActivePopup', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'SetWindowLongA', 'SetWindowPos', 'RegisterWindowMessageA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetNextDlgGroupItem', 'CopyAcceleratorTableA', 'CharNextA', 'DestroyIcon', 'GetMenuStringA', 'InsertMenuA', 'LoadStringA', 'GetSysColorBrush', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'GetWindowRect', 'GetNextDlgTabItem', 'EndDialog', 'GetActiveWindow', 'SetActiveWindow', 'IsWindow', 'GetSystemMetrics', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetParent', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'InvalidateRect', 'UpdateWindow', 'KillTimer', 'SetTimer', 'GetTabbedTextExtentA', 'FindWindowA', 'SetScrollPos', 'CharUpperA', 'SendMessageA', 'EnableWindow', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GetClassNameA', 'GetSystemMenu', 'DeleteMenu', 'AppendMenuA', 'IsRectEmpty', 'SetParent', 'IsZoomed', 'BringWindowToTop', 'UnpackDDElParam', 'ReuseDDElParam', 'SetMenu', 'LoadMenuA', 'DestroyMenu', 'GetDesktopWindow', 'ReleaseCapture', 'TranslateAcceleratorA', 'LoadAcceleratorsA', 'SetRectEmpty', 'PtInRect', 'FillRect', 'SetScrollInfo', 'SetRect', 'LoadCursorA', 'SetAbortProc', 'CreateDCA', 'DeleteDC', 'GetTextExtentPoint32A', 'SelectObject', 'GetTextMetricsA', 'StretchDIBits', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'DeleteObject', 'GetCharWidthA', 'CreateFontA', 'CreateFontIndirectA', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'MoveToEx', 'LineTo', 'SetTextAlign', 'GetCurrentPositionEx', 'StartDocA', 'CreateRectRgn', 'GetViewportExtEx', 'GetWindowExtEx', 'CreateSolidBrush', 'CreatePatternBrush', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextColor', 'GetBkColor', 'LPtoDP', 'GetNearestColor', 'GetStretchBltMode', 'GetPolyFillMode', 'GetTextAlign', 'GetBkMode', 'GetROP2', 'GetTextFaceA', 'GetWindowOrgEx', 'BitBlt', 'GetMapMode', 'SetRectRgn', 'CombineRgn', 'CreateRectRgnIndirect', 'StartPage', 'EndPage', 'EndDoc', 'AbortDoc', 'GetViewportOrgEx', 'CreatePen', 'DPtoLP', 'Rectangle', 'GetStockObject', 'PatBlt', 'GetDeviceCaps', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetSaveFileNameA', 'GetFileTitleA', 'GetOpenFileNameA', 'CommDlgExtendedError', 'PrintDlgA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegQueryValueExA', 'RegSetValueA', 'RegCreateKeyA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegQueryValueA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegCloseKey', 'ExtractIconA', 'DragQueryFileA', 'DragFinish', 'SHGetFileInfoA', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRevokeClassObject', 'CoRegisterMessageFilter', 'SysFreeString', 'SysAllocStringLen', 'VariantClear', 'VariantTimeToSystemTime', 'VariantCopy', 'VariantChangeType', 'SysAllocString', 'SysAllocStringByteLen', 'SysStringLen'], ['SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'FindExecutableA', 'SHBrowseForFolderA', 'SHGetMalloc', 'GetClientRect', 'SetRect', 'EndPaint', 'LoadCursorA', 'GetLastActivePopup', 'KillTimer', 'ShowWindow', 'PostMessageA', 'SendMessageA', 'EnableWindow', 'SetTimer', 'SetWindowTextA', 'SetForegroundWindow', 'SetActiveWindow', 'SetDlgItemTextA', 'GetKeyState', 'CharUpperBuffA', 'PeekMessageA', 'GetSysColor', 'DispatchMessageA', 'GetParent', 'SendDlgItemMessageA', 'GetDlgItem', 'InvalidateRect', 'UpdateWindow', 'LoadStringA', 'MessageBoxA', 'DialogBoxParamA', 'GetWindowLongA', 'SetWindowLongA', 'GetDlgItemTextA', 'EndDialog', 'GetWindowRect', 'GetSystemMetrics', 'SetWindowPos', 'SetCursor', 'CharNextA', 'BeginPaint', 'SetWindowWord', 'GetWindowWord', 'DefWindowProcA', 'RegisterClassA', 'TranslateMessage', 'GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'LCMapStringW', 'LCMapStringA', 'GetStdHandle', 'HeapCreate', 'HeapDestroy', 'VirtualAlloc', 'VirtualFree', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'HeapSize', 'Sleep', 'GetCurrentThreadId', 'SetLastError', 'TlsFree', 'TlsSetValue', 'GetVersionExA', 'FindClose', 'FindFirstFileA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'CreateDirectoryA', 'SetFileTime', 'LocalFileTimeToFileTime', 'DosDateTimeToFileTime', 'LocalAlloc', 'GetDriveTypeA', 'GetEnvironmentVariableA', 'SetFilePointer', 'CreateFileA', 'GetWindowsDirectoryA', 'GlobalFree', 'GlobalUnlock', 'GlobalHandle', '_lclose', '_llseek', '_lread', '_lopen', 'GlobalLock', 'GlobalAlloc', 'GlobalMemoryStatus', 'GetVersion', 'GetModuleFileNameA', 'WriteFile', 'GetSystemTime', 'LocalFree', 'ExitProcess', 'FormatMessageA', 'GetLastError', 'GetModuleHandleA', 'GetVolumeInformationA', 'WideCharToMultiByte', 'CreateProcessA', 'lstrcmpiA', 'SetErrorMode', 'MultiByteToWideChar', 'GetLocalTime', 'lstrlenA', 'CreateFileW', 'ReadFile', 'GetConsoleCP', 'GetConsoleMode', 'LoadLibraryA', 'InitializeCriticalSection', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'FlushFileBuffers', 'WriteConsoleW', 'CloseHandle', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'RaiseException', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'GetCPInfo', 'InterlockedIncrement', 'InterlockedDecrement', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'SetTextColor', 'SetTextAlign', 'GetBkColor', 'GetTextExtentPoint32A', 'ExtTextOutA', 'CreateDCA', 'GetDeviceCaps', 'CreateFontIndirectA', 'DeleteDC', 'SelectObject', 'DeleteObject', 'SetBkColor', 'RegQueryValueA'], ['AVISaveOptionsFree', 'AVISaveOptions', 'AVIFileCreateStreamA', 'AVIFileOpenA', 'AVIFileInit', 'AVIMakeCompressedStream', 'AVIFileExit', 'AVIFileRelease', 'AVIStreamRelease', 'AVIStreamWrite', 'AVIStreamSetFormat', 'glClearDepth', 'glEnable', 'glDepthFunc', 'glHint', 'glViewport', 'glMatrixMode', 'glClearColor', 'glShadeModel', 'glVertex3f', 'glColor3f', 'glBegin', 'glRotatef', 'glTranslatef', 'glClear', 'glReadPixels', 'glReadBuffer', 'glEnd', 'glLoadIdentity', 'wglDeleteContext', 'wglCreateContext', 'wglMakeCurrent', 'gluPerspective', '__CxxFrameHandler', 'printf', '_mbsstr', 'atoi', 'malloc', 'wcslen', '__dllonexit', '_onexit', '_exit', '_CxxThrowException', 'exit', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_controlfp', '_setmbcp', '_XcptFilter', '??1type_info@@UAE@XZ', 'WideCharToMultiByte', 'GetLastError', 'MultiByteToWideChar', 'GetStartupInfoA', 'GetModuleHandleA', 'InterlockedDecrement', 'LocalFree', 'lstrlenA', 'IsWindowVisible', 'EqualRect', 'EnableWindow', 'InvalidateRect', 'UpdateWindow', 'SendMessageA', 'SetRect', 'GetClientRect', 'IsWindow', 'SwapBuffers', 'SetPixelFormat', 'ChoosePixelFormat', 'GetTextExtentPoint32A', 'RegOpenKeyExW', 'VariantClear', 'SysAllocString', 'SysAllocStringByteLen', 'SysStringLen', 'SysFreeString', '?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAEX_N@Z', '?_Copy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAEXI@Z', '?_C@?1??_Nullstr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@CAPBGXZ@4GB', '?_Xlen@std@@YAXXZ'], ['StrRetToStrA', 'HeapSize', 'HeapReAlloc', 'GetTimeZoneInformation', 'GetACP', 'CompareStringA', 'CompareStringW', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'GetStringTypeA', 'GetStringTypeW', 'GetDriveTypeA', 'Sleep', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'HeapFree', 'HeapAlloc', 'RaiseException', 'GetProfileStringA', 'InterlockedExchange', 'GetTickCount', 'GetFileAttributesA', 'GetCurrentProcess', 'SizeofResource', 'GetProcAddress', 'LoadLibraryExA', 'LoadLibraryExW', 'lstrlenA', 'GetModuleHandleA', 'lstrcpyA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'lstrcmpiA', 'GlobalGetAtomNameA', 'GetCurrentThreadId', 'lstrcatA', 'GetVersion', 'LockResource', 'LoadResource', 'FindResourceA', 'FreeLibrary', 'LoadLibraryA', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LocalFree', 'FormatMessageA', 'lstrcpynA', 'FindClose', 'SetLastError', 'GetLastError', 'FindFirstFileA', 'FindNextFileA', 'lstrcmpA', 'GetCurrentThread', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'GetFileTime', 'GetFileSize', 'GlobalAlloc', 'GlobalLock', 'GetModuleFileNameA', 'TerminateProcess', 'CloseHandle', 'GetFullPathNameA', 'GetVolumeInformationA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'DuplicateHandle', 'SetErrorMode', 'GetThreadLocale', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalFlags', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'InvalidateRect', 'CharUpperA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'MessageBeep', 'GetNextDlgGroupItem', 'SetRect', 'CopyAcceleratorTableA', 'CharNextA', 'GetSysColorBrush', 'LoadCursorA', 'GetDesktopWindow', 'PtInRect', 'GetClassNameA', 'InflateRect', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'DestroyMenu', 'LoadStringA', 'MapDialogRect', 'SetWindowContextHelpId', 'EndDialog', 'CreateDialogIndirectParamA', 'GetMessageA', 'TranslateMessage', 'GetActiveWindow', 'ValidateRect', 'GetCursorPos', 'PostQuitMessage', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetNextDlgTabItem', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'PostMessageA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'PeekMessageA', 'DispatchMessageA', 'GetFocus', 'SetActiveWindow', 'SendMessageA', 'GetParent', 'EnableWindow', 'UnregisterClassA', 'HideCaret', 'ShowCaret', 'ExcludeUpdateRgn', 'DrawFocusRect', 'IsWindow', 'SetFocus', 'AdjustWindowRectEx', 'ScreenToClient', 'IsWindowVisible', 'GetTopWindow', 'MessageBoxA', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetDlgItem', 'DefDlgProcA', 'IsWindowUnicode', 'LoadIconA', 'GetSystemMenu', 'AppendMenuA', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'IsIconic', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetWindowRect', 'GetWindowPlacement', 'SystemParametersInfoA', 'IntersectRect', 'OffsetRect', 'RegisterWindowMessageA', 'SetWindowPos', 'SetWindowLongA', 'GetWindowLongA', 'GetWindow', 'SetForegroundWindow', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessagePos', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'GetKeyState', 'DefWindowProcA', 'DestroyWindow', 'CreateWindowExA', 'SetCursor', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'IntersectClipRect', 'DeleteObject', 'SetViewportExtEx', 'GetDeviceCaps', 'GetViewportExtEx', 'GetWindowExtEx', 'CreateSolidBrush', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetMapMode', 'DPtoLP', 'GetTextColor', 'GetBkColor', 'LPtoDP', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetBkMode', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'DeleteDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateDIBitmap', 'GetTextExtentPointA', 'BitBlt', 'CreateCompatibleDC', 'PatBlt', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SHGetFileInfoA', 'SHGetMalloc', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'ImageList_Destroy', 'ImageList_LoadImageA', 'OleUninitialize', 'OleInitialize', 'CoFreeUnusedLibraries', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoTaskMemAlloc', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemFree', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'VariantCopy', 'VariantClear', 'VariantChangeType', 'SysAllocStringLen', 'SysFreeString', 'SysAllocString', 'SysStringLen', 'SysAllocStringByteLen', 'VariantTimeToSystemTime'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '__vbaRedimPreserve', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaStrComp', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaLateMemCall', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['CryptStringToBinaryA', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'TerminateProcess', 'GetStartupInfoA', 'InterlockedCompareExchange', 'Sleep', 'InterlockedExchange', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetCurrentThreadId', 'GetCurrentProcessId', 'LockResource', 'GetLastError', 'LoadLibraryW', 'GetProcAddress', 'GetCurrentProcess', 'EndDialog', 'RegisterClassExA', 'LoadCursorA', 'SendDlgItemMessageA', 'IsDlgButtonChecked', 'GetDlgItemInt', 'PostQuitMessage', 'DialogBoxParamA', 'MessageBoxA', 'EnableWindow', 'LoadStringA', 'LoadAcceleratorsA', 'GetMessageA', 'TranslateAcceleratorA', 'TranslateMessage', 'DispatchMessageA', 'CreateWindowExA', 'BeginPaint', 'EndPaint', 'KillTimer', 'DefWindowProcA', 'SendMessageA', 'InSendMessage', 'CreateWindowExW', 'GetWindowLongA', 'LoadIconA', 'PostMessageA', 'SetDlgItemInt', 'SetDlgItemTextA', 'GetDlgItem', 'ShowWindow', 'GetClientRect', 'InvalidateRect', 'SetTimer', 'TextOutA', 'SetTextColor', 'SetBkMode', 'Ellipse', 'CreateSolidBrush', 'SelectObject', 'CreatePen', 'Rectangle', '??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z', '??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z', '?str@?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ', '??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ', '??$?HDU?$char_traits@D@std@@V?$allocator@D@1@@std@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@ABV10@0@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', '?terminate@@YAXXZ', '__set_app_type', '_encode_pointer', '__p__fmode', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_crt_debugger_hook', '_unlock', '__dllonexit', '_lock', '_onexit', '_decode_pointer', '_except_handler4_common', '_invoke_watson', '_initterm', '_controlfp_s', '__p__commode', '??1exception@std@@UAE@XZ', '??3@YAXPAX@Z', '??0exception@std@@QAE@XZ', '__CxxFrameHandler3', '_CIpow', '_invalid_parameter_noinfo', '??2@YAPAXI@Z', '_CxxThrowException', '??0exception@std@@QAE@ABV01@@Z', '_time64', 'malloc', 'rand', 'srand', '_amsg_exit', '__getmainargs', '_cexit', '_exit', '_XcptFilter', '_ismbblead', 'exit', '_acmdln'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFpCDblR8', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaVarIdiv', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenBstrB', '__vbaLenVar', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaUI1I4', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaR8IntI4', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '__vbaFpI2', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['__vbaVarTstGt', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', 'DllFunctionCall', '__vbaLbound', '_adj_fpatan', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarAdd', '__vbaStrToAnsi', '_CIatan', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'GetThreadLocale', 'DuplicateHandle', 'GetCurrentProcess', 'FindClose', 'FindFirstFileA', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetCPInfo', 'GetOEMCP', 'FileTimeToSystemTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'GetFileAttributesA', 'GetTickCount', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'HeapSize', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GlobalFlags', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'WritePrivateProfileStringA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'lstrcmpA', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'LoadLibraryW', 'GetProcAddress', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'Sleep', 'CreateFileA', 'EscapeCommFunction', 'SetCommState', 'CloseHandle', 'lstrlenA', 'CompareStringW', 'CompareStringA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetFileTime', 'InterlockedExchange', 'CharNextA', 'CopyAcceleratorTableA', 'IsRectEmpty', 'SetRect', 'InvalidateRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'MapWindowPoints', 'ReleaseCapture', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'CharUpperA', 'DrawIcon', 'AppendMenuA', 'MessageBoxA', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'SetCapture', 'LoadCursorA', 'GetSysColorBrush', 'SendMessageA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'GetSubMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetMessagePos', 'CryptStringToBinaryA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'CreateBitmap', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'GetObjectA', 'ExtTextOutA', 'SaveDC', 'ScaleWindowExtEx', 'SetWindowExtEx', 'RestoreDC', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'GetDeviceCaps', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'GetWindowExtEx', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'GetFileTitleA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'OleFlushClipboard', 'CoRevokeClassObject', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoRegisterMessageFilter', 'OleIsCurrentClipboard', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegEnumKeyA', 'GetFileTitleA', 'ArcTo', 'gluDisk', 'OleRun', 'VariantCopy', 'glEnd', 'DragFinish', 'PathIsUNCA', 'GetDC', 'OpenPrinterA'], ['DrawDibDraw', 'AVIStreamInfoA', 'AVIStreamGetFrame', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'GetStdHandle', 'IsBadWritePtr', 'GetStringTypeA', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'CloseHandle', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'TerminateProcess', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RaiseException', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'DeviceIoControl', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'lstrlenA', 'GetVersionExA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'VirtualAlloc', 'LoadStringA', 'GetDesktopWindow', 'GetClassNameA', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'CheckMenuItem', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'SendDlgItemMessageA', 'MapWindowPoints', 'AdjustWindowRectEx', 'GetScrollPos', 'RegisterClassA', 'GetMenuItemCount', 'GetMenuItemID', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetLastActivePopup', 'GetForegroundWindow', 'RegisterWindowMessageA', 'GetWindowPlacement', 'EndDialog', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'CharUpperA', 'GetWindowTextLengthA', 'GetWindowTextA', 'DrawStateA', 'FrameRect', 'GetNextDlgTabItem', 'SystemParametersInfoA', 'TranslateMessage', 'LoadIconA', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetSysColorBrush', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetSystemMenu', 'DeleteMenu', 'GetClassInfoA', 'DefWindowProcA', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'InflateRect', 'SetRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'GetMessageA', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'DispatchMessageA', 'UnregisterClassA', 'SaveDC', 'RestoreDC', 'SetPolyFillMode', 'SetROP2', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'EndPath', 'GetTextColor', 'ExtSelectClipRgn', 'CreateDIBitmap', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'SetDIBitsToDevice', 'SetTextColor', 'SetBkMode', 'TextOutA', 'SetBkColor', 'CreateRectRgnIndirect', 'CreateDIBSection', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'CreatePatternBrush', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'FillRgn', 'CreateRectRgn', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'PathToRegion', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'CreateEllipticRgn', 'BeginPath', 'DeleteDC', 'CombineRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'RoundRect', 'GetCurrentObject', 'DPtoLP', 'LPtoDP', 'Rectangle', 'Ellipse', 'CreateCompatibleDC', 'GetPixel', 'BitBlt', 'StartPage', 'StartDocA', 'CreateRoundRectRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'PlaySoundA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_GetImageCount', 'ImageList_SetBkColor', '_TrackMouseEvent', 'ImageList_Destroy', 'ImageList_Read', 'ImageList_Duplicate', 'WSAAsyncSelect', 'inet_ntoa', 'WSACleanup', 'accept', 'getpeername', 'recv', 'ioctlsocket', 'recvfrom', 'closesocket'], ['CreateFileMappingA', 'CreateNamedPipeA', 'MapUserPhysicalPages', 'GetConsoleTitleA', 'ReadConsoleInputA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'CreateProcessA', 'GetExitCodeProcess', 'HeapReAlloc', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetModuleFileNameA', 'VirtualProtect', 'VirtualFree', 'GetVersionExW', 'UnregisterWaitEx', 'InitializeSListHead', 'ReleaseSemaphore', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'SetFilePointerEx', 'GetFileType', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetTimeZoneInformation', 'GetStdHandle', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'HeapSize', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetTimeFormatW', 'GetDateFormatW', 'CreateSemaphoreW', 'GetStartupInfoW', 'TerminateProcess', 'CreateEventA', 'CreateMutexA', 'SetLastError', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'GetModuleHandleW', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'WaitForSingleObjectEx', 'SetEvent', 'CreateTimerQueue', 'GetCommandLineA', 'AreFileApisANSI', 'GetModuleHandleExW', 'ExitProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'CreateThread', 'LoadLibraryExW', 'GetModuleFileNameW', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'OutputDebugStringW', 'GetCPInfo', 'RtlUnwind', 'RaiseException', 'GetCurrentThread', 'GetCurrentProcess', 'DuplicateHandle', 'GetSystemTimeAsFileTime', 'DecodePointer', 'EncodePointer', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetStringTypeW', 'CreateEventW', 'OpenMutexA', 'lstrcatW', 'MapViewOfFile', 'ConnectNamedPipe', 'ReadFile', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'WaitForSingleObject', 'QueryPerformanceCounter', 'GetTickCount', 'Sleep', 'WriteFile', 'GlobalAlloc', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'VirtualQuery', 'DeleteFileW', 'GetFileAttributesExW', 'CreateFileW', 'GetModuleHandleA', 'CloseHandle', 'GetLastError', 'LoadLibraryW', 'GetProcAddress', 'FreeLibrary', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InitializeCriticalSectionAndSpinCount', 'SetConsoleMode', 'UnregisterClassW', 'RegisterClassExW', 'IsWindow', 'SetWindowPos', 'WaitMessage', 'PostMessageW', 'PeekMessageW', 'SetFocus', 'GetKeyState', 'EnableWindow', 'IsWindowEnabled', 'DispatchMessageW', 'PostQuitMessage', 'TranslateAcceleratorW', 'UpdateWindow', 'SetActiveWindow', 'BeginPaint', 'TranslateMessage', 'GetWindowTextA', 'GetWindowTextLengthA', 'EnumChildWindows', 'FindWindowA', 'LoadCursorA', 'LoadIconA', 'LoadImageA', 'GetWindowDC', 'InsertMenuItemA', 'DefWindowProcW', 'TrackPopupMenu', 'AppendMenuW', 'EndPaint', 'SetWindowTextW', 'MessageBoxA', 'ShowCursor', 'SetCursor', 'DestroyCaret', 'SetCaretPos', 'ScreenToClient', 'GetMessageW', 'SystemParametersInfoW', 'ReleaseDC', 'GetDC', 'GetSubMenu', 'EnableMenuItem', 'WindowFromPoint', 'GetClassLongW', 'SetClassLongW', 'GetDesktopWindow', 'DestroyMenu', 'CreatePopupMenu', 'LoadMenuA', 'IsClipboardFormatAvailable', 'GetDlgItemTextA', 'GetDlgItem', 'DialogBoxParamA', 'UpdateLayeredWindow', 'CreateWindowExA', 'RegisterClassA', 'DefWindowProcA', 'PostMessageA', 'SendMessageA', 'DispatchMessageA', 'GetMessageA', 'GetIconInfo', 'DrawIconEx', 'LoadImageW', 'CreateIconFromResourceEx', 'DestroyIcon', 'FrameRect', 'FillRect', 'MessageBoxW', 'GetAncestor', 'SetParent', 'GetParent', 'ClientToScreen', 'CreateCaret', 'GetCursorPos', 'GetWindowRect', 'GetClientRect', 'GetWindowTextLengthW', 'GetWindowTextW', 'InvalidateRect', 'SetForegroundWindow', 'GetForegroundWindow', 'GetSystemMetrics', 'ReleaseCapture', 'SetCapture', 'GetFocus', 'IsWindowVisible', 'MoveWindow', 'ShowWindowAsync', 'ShowWindow', 'DestroyWindow', 'CreateWindowExW', 'SendMessageW', 'IsDialogMessageW', 'LoadIconW', 'LoadCursorW', 'GetWindow', 'GetWindowThreadProcessId', 'SelectObject', 'LineTo', 'GetTextExtentExPointW', 'CreateSolidBrush', 'SetDIBitsToDevice', 'CreateCompatibleDC', 'TextOutW', 'GetObjectW', 'SetBkMode', 'BitBlt', 'SetTextColor', 'DeleteDC', 'RemoveFontResourceExW', 'AddFontResourceExW', 'GetDeviceCaps', 'DeleteObject', 'CreateFontIndirectW', 'Ellipse', 'GetStockObject', 'GetObjectA', 'SetPixel', 'GetTextMetricsW', 'CreateDIBSection', 'MoveToEx', 'GdiFlush', 'GetTextExtentPoint32W', 'GetDIBits', 'CreatePen', 'CreateCompatibleBitmap', 'CommDlgExtendedError', 'GetOpenFileNameA', 'GetTokenInformation', 'SetSecurityDescriptorOwner', 'ConvertStringSidToSidA', 'ConvertSidToStringSidA', 'SetNamedSecurityInfoA', 'RegOpenKeyExA', 'RegCloseKey', 'InitializeSecurityDescriptor', 'ShellExecuteW', 'DragQueryFileA', 'SHGetFileInfoW', 'SHBrowseForFolderA', 'Shell_NotifyIconA', 'SHGetFolderPathW', 'DragQueryFileW', 'DragQueryPoint', 'DragFinish', 'ReleaseStgMedium', 'OleUninitialize', 'CoTaskMemFree', 'OleInitialize', 'OleGetClipboard', 'CoGetMalloc', 'CreateBindCtx', 'MkParseDisplayName', 'StringFromCLSID', 'UnRegisterTypeLib', 'LoadTypeLib', 'bind', 'closesocket', 'ioctlsocket', 'WSAStartup', 'WSAGetLastError', 'WSAHtonl', 'WSAHtons', 'WSARecvFrom', 'WSASendTo', 'WSASocketA', 'NetAddAlternateComputerName', 'NetApiBufferFree', 'NetWkstaTransportEnum', 'NetWkstaUserEnum', 'NetWkstaUserGetInfo', 'NetWkstaSetInfo', 'NetWkstaGetInfo', 'CertGetNameStringA', 'PdhConnectMachineW', 'PdhComputeCounterStatistics', 'PdhGetFormattedCounterValue', 'PdhCollectQueryData', 'GdipCreateFromHDC', 'GdipAlloc', 'glMatrixMode', 'glOrtho', 'glViewport', 'glLoadIdentity', 'gluLookAt', 'URLDownloadToCacheFileA', 'SnmpUtilOidToA'], ['GetVersion', 'GetVersionExA', 'GlobalReAlloc', 'RegQueryValueA', 'GetFileTitleA', 'GetBkColor', 'OleUninitialize', 'UnRegisterTypeLib', 'DragQueryFileA', 'IsIconic', 'waveOutWrite', 'OpenPrinterA', 'ioctlsocket', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['CryptAcquireContextW', 'CryptDeriveKey', 'VirtualProtect', 'CreateFileW', 'Sleep', 'GetTickCount', 'WriteFile', 'RtlFillMemory', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaVarVargNofree', '__vbaFreeVar', '__vbaLineInputStr', '__vbaLenBstr', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '__vbaStrErrVarCopy', '_adj_fprem1', '__vbaVarCmpNe', '__vbaStrCat', '__vbaSetSystemError', '__vbaRecDestruct', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaBoolVarNull', '__vbaRefVarAry', '_CIsin', '__vbaErase', '__vbaVarZero', '__vbaVarCmpGt', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', 'DllFunctionCall', '__vbaVarOr', '__vbaRedimPreserve', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '_CIlog', '__vbaFileOpen', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaVarNot', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaAryLock', '__vbaVarDup', '__vbaVarCopy', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '__vbaLenVarB', '_CItan', '__vbaAryUnlock', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarErrI4', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaFPInt', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaLenBstr', '__vbaStrVarMove', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '_adj_fdiv_m32', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaLsetFixstrFree', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr'], ['GetModuleHandleA', 'GetProcAddress', 'free', 'IsIconic', 'BitBlt', 'SHGetMalloc', 'ImageList_Draw'], ['DrawDibDraw', 'AVIStreamGetFrame', 'AVIStreamInfoA', 'midiOutReset', 'midiStreamRestart', 'midiStreamClose', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'PlaySoundA', 'waveOutWrite', 'WSACleanup', 'WSAStartup', 'gethostbyname', 'inet_ntoa', 'inet_addr', 'gethostname', 'select', 'shutdown', 'getservbyname', 'WSAGetLastError', 'getsockname', 'ntohs', '__WSAFDIsSet', 'accept', 'getpeername', 'listen', 'recv', 'connect', 'ioctlsocket', 'recvfrom', 'sendto', 'setsockopt', 'socket', 'htonl', 'bind', 'htons', 'WSAAsyncSelect', 'closesocket', 'send', 'TerminateProcess', 'GetWindowsDirectoryA', 'SetLastError', 'GetTimeZoneInformation', 'GetLocaleInfoA', 'GetVersion', 'InterlockedIncrement', 'InterlockedDecrement', 'LocalFree', 'FormatMessageA', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'LocalAlloc', 'TlsAlloc', 'GlobalHandle', 'TlsFree', 'TlsSetValue', 'LocalReAlloc', 'TlsGetValue', 'GetFileTime', 'GetCurrentThread', 'GlobalFlags', 'GetProfileIntA', 'SetErrorMode', 'GetProcessVersion', 'GetCPInfo', 'GetOEMCP', 'GetStartupInfoA', 'RtlUnwind', 'GetSystemTime', 'RaiseException', 'HeapSize', 'GetACP', 'SetStdHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'GetStringTypeA', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'EnumSystemLocalesA', 'GetLocaleInfoW', 'SetNamedPipeHandleState', 'WaitNamedPipeA', 'OpenFileMappingA', 'OpenEventA', 'GetLocalTime', 'SystemTimeToFileTime', 'UnmapViewOfFile', 'GetCurrentProcess', 'DuplicateHandle', 'CreateFileMappingA', 'MapViewOfFile', 'GetFileType', 'GetFileInformationByHandle', 'GetFileSize', 'SetFilePointer', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'FileTimeToSystemTime', 'lstrcpynA', 'lstrcmpiA', 'lstrcmpA', 'IsDBCSLeadByte', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'lstrlenW', 'RemoveDirectoryA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GetDriveTypeA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetUserDefaultLCID', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'GetPrivateProfileSectionNamesA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GetTempPathA', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'CopyFileA', 'CreateDirectoryA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedExchange', 'GetSystemDirectoryA', 'LoadStringA', 'GetSysColorBrush', 'SetMenuItemBitmaps', 'CheckMenuItem', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'SendDlgItemMessageA', 'MapWindowPoints', 'AdjustWindowRectEx', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollPos', 'RegisterClassA', 'GetMenuItemCount', 'GetMenuItemID', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetLastActivePopup', 'RegisterWindowMessageA', 'GetWindowPlacement', 'EndDialog', 'CreateDialogIndirectParamA', 'DestroyWindow', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GetWindowTextLengthA', 'GetForegroundWindow', 'GetWindowTextA', 'GetDlgItem', 'keybd_event', 'GetClassNameA', 'GetDesktopWindow', 'VkKeyScanExA', 'GetKeyboardLayout', 'GetDoubleClickTime', 'GetCursor', 'ClipCursor', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'CharUpperA', 'FrameRect', 'GetNextDlgTabItem', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'InvertRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'TrackPopupMenu', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBeep', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'IsClipboardFormatAvailable', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'wvsprintfA', 'GetMenuCheckMarkDimensions', 'CreateIconFromResourceEx', 'GetMenuState', 'DestroyIcon', 'UnregisterClassA', 'CreateFontIndirectA', 'CreateSolidBrush', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'SelectObject', 'CreatePatternBrush', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'PtVisible', 'RectVisible', 'ExtTextOutA', 'GetTextMetricsA', 'Escape', 'AbortDoc', 'SetBrushOrgEx', 'SaveDC', 'RestoreDC', 'SetPolyFillMode', 'SetROP2', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'GetStockObject', 'MoveToEx', 'LineTo', 'ExtSelectClipRgn', 'GetViewportExtEx', 'CopyMetaFileA', 'SetBkMode', 'TextOutA', 'SetBkColor', 'CreateRectRgnIndirect', 'CreateDIBSection', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'CreateFontA', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'SetDIBitsToDevice', 'GetObjectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'GetTextExtentPoint32A', 'Ellipse', 'ExcludeClipRect', 'GetDeviceCaps', 'SetTextColor', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'PrintDlgA', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA', 'RegCreateKeyExA', 'RegEnumValueA', 'RegQueryValueA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'SHGetSpecialFolderPathA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CoLockObjectExternal', 'DoDragDrop', 'OleGetClipboard', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'OleSetClipboard', 'CoTaskMemFree', 'RevokeDragDrop', 'CLSIDFromProgID', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'OleRun', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'VariantChangeType', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim', 'SafeArrayUnaccessData', 'VariantCopy', 'VariantClear', 'SafeArrayGetElement', 'VariantCopyInd', 'VariantInit', 'SysAllocString', 'SafeArrayDestroy', 'SafeArrayCreate', 'SafeArrayPutElement', 'RegisterTypeLib', 'LHashValOfNameSys', 'LoadTypeLib', 'UnRegisterTypeLib', 'VarDateFromStr', 'SafeArrayAccessData', '_TrackMouseEvent', 'ImageList_Draw', 'ImageList_AddMasked', 'ImageList_GetImageCount', 'ImageList_GetImageInfo', 'ImageList_GetIcon', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_Read', 'ImageList_Duplicate', 'ImageList_SetBkColor', 'InternetGetConnectedState', 'InternetOpenA', 'InternetOpenUrlA', 'InternetCloseHandle'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaAryMove', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaExitProc', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaPutOwner3', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaVarCat', '_CIlog', '__vbaFileOpen', '__vbaVar2Vec', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarSetVar', '__vbaLateMemCall', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GradientFill', 'TransparentBlt', '_setmbcp', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', 'exit', '__CxxFrameHandler', 'printf', '__dllonexit', '_onexit', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', '_XcptFilter', '_exit', '_controlfp', 'WinExec', 'CreateThread', 'Sleep', 'GetStartupInfoA', 'VirtualAlloc', 'LoadLibraryA', 'CreateEventA', 'GetProcAddress', 'CloseHandle', 'ReleaseMutex', 'GetLastError', 'GetModuleHandleA', 'CreateMutexA', 'SetErrorMode', 'ResetEvent', 'WaitForSingleObject', 'LoadBitmapA', 'GetWindowLongA', 'GetFocus', 'EnableWindow', 'InvalidateRect', 'IsIconic', 'wsprintfA', 'LoadIconA', 'SendMessageA', 'AppendMenuA', 'GetSystemMenu', 'DrawIcon', 'GetClientRect', 'GetSystemMetrics', 'GetObjectA', 'StretchBlt', 'GetBkColor', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'CreateFontA', 'GetTextExtentPoint32A', 'ImageList_GetImageCount', 'ImageList_AddMasked', 'ImageList_Draw', 'send', 'recv', 'gethostbyname', 'htons', 'connect', 'closesocket', 'WSACleanup', 'WSAStartup', 'socket', '??1_Lockit@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '??0_Lockit@std@@QAE@XZ'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegFlushKey', 'ImageList_Add', 'ChooseFontA', 'SaveDC', 'GradientFill', 'CoInitialize', 'VariantCopy', 'GetDC', 'VerQueryValueA', 'PlaySoundA', 'OpenPrinterA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegOpenKeyA', 'GetFileTitleA', 'ArcTo', 'ReadClassStg', 'LoadRegTypeLib', 'DragFinish', 'PathIsUNCA', 'GetDC', 'OpenPrinterA'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaLateMemSt', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarDup', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '_adj_fdiv_m32', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarAdd', '__vbaStrComp', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr'], ['ReadFile', 'WriteFile', 'SetFilePointer', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'GetThreadLocale', 'DuplicateHandle', 'GetCurrentProcess', 'FindClose', 'FindFirstFileA', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetCPInfo', 'GetOEMCP', 'FileTimeToSystemTime', 'SetErrorMode', 'FileTimeToLocalFileTime', 'GetFileAttributesA', 'GlobalFlags', 'GetTickCount', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'HeapSize', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetACP', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetLocaleInfoW', 'LCMapStringA', 'LCMapStringW', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedDecrement', 'GetModuleFileNameW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'WritePrivateProfileStringA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'GetModuleFileNameA', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'LoadLibraryA', 'lstrcmpA', 'FreeLibrary', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'ExitProcess', 'LoadLibraryW', 'GetProcAddress', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'Sleep', 'CreateFileA', 'EscapeCommFunction', 'SetCommState', 'CloseHandle', 'lstrlenA', 'CompareStringW', 'CompareStringA', 'GetVersion', 'GetLastError', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetFileTime', 'InterlockedExchange', 'CharNextA', 'CopyAcceleratorTableA', 'IsRectEmpty', 'SetRect', 'InvalidateRect', 'InvalidateRgn', 'GetNextDlgGroupItem', 'MessageBeep', 'UnregisterClassA', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'DestroyMenu', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessagePos', 'MapWindowPoints', 'ReleaseCapture', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'CharUpperA', 'DrawIcon', 'AppendMenuA', 'MessageBoxA', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'SetCapture', 'LoadCursorA', 'GetSysColorBrush', 'SendMessageA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetSystemMetrics', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'GetSubMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetMessageTime', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'CreateBitmap', 'GetClipBox', 'SetTextColor', 'SetBkColor', 'GetObjectA', 'ExtTextOutA', 'SaveDC', 'SetWindowExtEx', 'RestoreDC', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutA', 'RectVisible', 'PtVisible', 'GetDeviceCaps', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'GetWindowExtEx', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'GetFileTitleA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegOpenKeyA', 'RegCloseKey', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'OleFlushClipboard', 'CoRevokeClassObject', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoRegisterMessageFilter', 'OleIsCurrentClipboard', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['BCryptSetProperty', 'BCryptGenerateSymmetricKey', 'BCryptOpenAlgorithmProvider', 'BCryptDecrypt', 'HeapFree', 'VirtualAlloc', 'HeapReAlloc', 'VirtualQuery', 'TerminateThread', 'CreateThread', 'WriteProcessMemory', 'GetCurrentProcess', 'OpenProcess', 'GetWindowsDirectoryA', 'VirtualProtectEx', 'VirtualAllocEx', 'CreateRemoteThread', 'CreateProcessA', 'GetModuleHandleW', 'IsWow64Process', 'WriteFile', 'CreateFileW', 'LoadLibraryW', 'GetLocalTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'ReadFile', 'FindFirstFileA', 'GetBinaryTypeW', 'FindNextFileA', 'GetFullPathNameA', 'GetTempPathW', 'GetPrivateProfileStringW', 'CreateFileA', 'GlobalAlloc', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'GetFileSize', 'FreeLibrary', 'SetDllDirectoryW', 'GetFileSizeEx', 'LoadLibraryA', 'LocalFree', 'WaitForSingleObject', 'WaitForMultipleObjects', 'CreatePipe', 'PeekNamedPipe', 'DuplicateHandle', 'SetEvent', 'GetStartupInfoA', 'CreateEventA', 'GetModuleFileNameW', 'LoadResource', 'FindResourceW', 'GetComputerNameW', 'GlobalMemoryStatusEx', 'LoadLibraryExW', 'FindFirstFileW', 'FindNextFileW', 'SetFilePointer', 'GetLogicalDriveStringsW', 'DeleteFileW', 'CopyFileW', 'GetDriveTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GetProcessHeap', 'ReleaseMutex', 'TerminateProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'SizeofResource', 'VirtualProtect', 'GetSystemDirectoryW', 'LockResource', 'GetWindowsDirectoryW', 'Process32First', 'Process32Next', 'WinExec', 'GetTempPathA', 'HeapAlloc', 'lstrcmpW', 'GetTickCount', 'lstrcpyW', 'WideCharToMultiByte', 'lstrcpyA', 'Sleep', 'MultiByteToWideChar', 'GetCommandLineA', 'GetModuleHandleA', 'ExitProcess', 'CreateProcessW', 'lstrcatA', 'lstrcmpA', 'lstrlenA', 'ExpandEnvironmentStringsW', 'lstrlenW', 'CloseHandle', 'lstrcatW', 'GetLastError', 'VirtualFree', 'GetProcAddress', 'SetLastError', 'GetModuleFileNameA', 'CreateDirectoryW', 'LocalAlloc', 'CreateMutexA', 'GetKeyState', 'GetMessageA', 'DispatchMessageA', 'CreateWindowExW', 'CallNextHookEx', 'GetAsyncKeyState', 'RegisterClassW', 'GetRawInputData', 'MapVirtualKeyA', 'DefWindowProcA', 'RegisterRawInputDevices', 'TranslateMessage', 'GetForegroundWindow', 'GetKeyNameTextW', 'PostQuitMessage', 'MessageBoxA', 'GetLastInputInfo', 'wsprintfW', 'GetWindowTextW', 'wsprintfA', 'ToUnicode', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExA', 'RegDeleteValueW', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'OpenProcessToken', 'InitializeSecurityDescriptor', 'RegDeleteKeyA', 'SetSecurityDescriptorDacl', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyExW', 'RegQueryValueExA', 'RegQueryInfoKeyW', 'RegCloseKey', 'OpenServiceW', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'EnumServicesStatusExW', 'StartServiceW', 'RegSetValueExW', 'RegCreateKeyExA', 'OpenSCManagerW', 'CloseServiceHandle', 'GetTokenInformation', 'LookupAccountSidW', 'FreeSid', 'RegQueryValueExW', 'ShellExecuteExA', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'SHCreateDirectoryExW', 'ShellExecuteW', 'SHGetFolderPathW', 'SHGetKnownFolderPath', 'URLDownloadToFileW', 'htons', 'recv', 'connect', 'socket', 'send', 'WSAStartup', 'shutdown', 'closesocket', 'WSACleanup', 'InetNtopW', 'gethostbyname', 'inet_addr', 'getaddrinfo', 'setsockopt', 'freeaddrinfo', 'CoInitializeSecurity', 'CoCreateInstance', 'CoInitialize', 'CoUninitialize', 'CoTaskMemFree', 'StrStrW', 'PathRemoveFileSpecA', 'StrStrA', 'PathCombineA', 'PathFindFileNameW', 'PathFileExistsW', 'PathFindExtensionW', 'NetLocalGroupAddMembers', 'NetUserAdd', 'VariantInit', 'CryptUnprotectData', 'CryptStringToBinaryA', 'CryptStringToBinaryW', 'GetModuleFileNameExW'], ['VirtualFree', 'VirtualProtect', 'VirtualAlloc', 'wsprintfW', 'RegQueryValueExW'], ['CreateToolbarEx', 'ImageList_Remove', 'InitCommonControlsEx', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Create', 'ImageList_Destroy', 'PathFindExtensionA', 'IsBadReadPtr', 'IsBadStringPtrA', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'CreateThread', 'ExitThread', 'SetEvent', 'WaitForSingleObject', 'lstrcatA', 'CreateEventA', 'DeleteFileA', 'MulDiv', 'GetProcAddress', 'VirtualAlloc', 'OpenProcess', 'lstrcmpA', 'GlobalMemoryStatus', 'VirtualQuery', 'SetFilePointer', 'GetFileTime', 'GetSystemTimeAsFileTime', 'GetSystemInfo', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'GetModuleFileNameA', 'GlobalReAlloc', 'FlushFileBuffers', 'DeviceIoControl', 'SetEndOfFile', 'MapViewOfFile', 'FlushViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'VirtualQueryEx', 'GetLastError', 'IsBadWritePtr', 'LocalAlloc', 'LocalFree', 'GetCurrentProcess', 'ExitProcess', 'GetLocalTime', 'SetProcessShutdownParameters', 'SetCurrentDirectoryA', 'GetCurrentDirectoryA', 'SetPriorityClass', 'GetPriorityClass', 'GetLongPathNameA', 'SetFileAttributesA', 'CopyFileA', 'FileTimeToSystemTime', 'FindNextFileA', 'ReadFile', 'GetNativeSystemInfo', 'GetFileAttributesA', 'GetEnvironmentVariableA', 'HeapReAlloc', 'GetPrivateProfileStructA', 'WritePrivateProfileStructA', 'GetFileSize', 'WideCharToMultiByte', 'TerminateThread', 'OutputDebugStringW', 'GetConsoleCP', 'GetStringTypeW', 'LCMapStringW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetFileType', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'LoadLibraryExW', 'GetModuleFileNameW', 'GetStdHandle', 'GetModuleHandleW', 'GetStartupInfoW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'Sleep', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetCurrentThreadId', 'SetLastError', 'IsDebuggerPresent', 'HeapSize', 'GetCommandLineA', 'AreFileApisANSI', 'GetModuleHandleExW', 'IsProcessorFeaturePresent', 'RtlUnwind', 'CreateFileW', 'RaiseException', 'DecodePointer', 'EncodePointer', 'lstrcmpiA', 'MultiByteToWideChar', 'FindFirstFileA', 'CreateFileA', 'GetTempFileNameA', 'GetTempPathA', 'OutputDebugStringA', 'CreateProcessA', 'lstrcpynA', 'GetTickCount', 'CloseHandle', 'FindClose', 'WriteFile', 'ResumeThread', 'WriteProcessMemory', 'ReadProcessMemory', 'TerminateProcess', 'VirtualProtectEx', 'GlobalFree', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'lstrlenA', 'lstrcpyA', 'GetModuleHandleA', 'GetVersion', 'SetStdHandle', 'WriteConsoleW', 'LoadLibraryA', 'SetWindowPlacement', 'GetWindowPlacement', 'DestroyWindow', 'UnregisterClassA', 'RegisterClassA', 'PostQuitMessage', 'DispatchMessageA', 'CreateDialogParamA', 'GetMessageA', 'RemoveMenu', 'GetDlgItemInt', 'EnableMenuItem', 'CheckRadioButton', 'IsWindow', 'DefDlgProcA', 'CharLowerBuffA', 'SetTimer', 'CheckMenuItem', 'KillTimer', 'LoadAcceleratorsA', 'DestroyAcceleratorTable', 'TranslateAcceleratorA', 'GetMenu', 'GetSystemMenu', 'TranslateMessage', 'SendMessageA', 'PostMessageA', 'SetWindowPos', 'DialogBoxParamA', 'EndDialog', 'GetDlgItem', 'wvsprintfA', 'GetParent', 'FillRect', 'InsertMenuItemA', 'GetWindowRect', 'IsMenu', 'SetDlgItemInt', 'IsDialogMessageA', 'CheckMenuRadioItem', 'SetMenuItemInfoA', 'GetSysColor', 'SetActiveWindow', 'GetWindowLongA', 'EndPaint', 'BeginPaint', 'UpdateWindow', 'ReleaseDC', 'GetDC', 'LoadImageA', 'DestroyIcon', 'RedrawWindow', 'CharLowerA', 'MoveWindow', 'MapWindowPoints', 'EnableWindow', 'ShowWindow', 'LoadIconA', 'GetSystemMetrics', 'SetWindowLongA', 'GetWindowTextA', 'SetFocus', 'CharUpperA', 'EmptyClipboard', 'EnumClipboardFormats', 'GetClipboardData', 'SetClipboardData', 'CloseClipboard', 'OpenClipboard', 'GetClassInfoA', 'CallWindowProcA', 'SetWindowTextA', 'IsDlgButtonChecked', 'CheckDlgButton', 'ClientToScreen', 'GetCursorPos', 'MessageBoxA', 'TrackPopupMenu', 'AppendMenuA', 'DestroyMenu', 'CreatePopupMenu', 'GetActiveWindow', 'GetDlgItemTextA', 'wsprintfA', 'DestroyCursor', 'LoadCursorA', 'LoadBitmapA', 'GetSysColorBrush', 'ChildWindowFromPoint', 'SetCursor', 'GetClientRect', 'InvalidateRect', 'SendDlgItemMessageA', 'SetDlgItemTextA', 'FindWindowA', 'MoveToEx', 'LineTo', 'CreatePen', 'GetDeviceCaps', 'GetObjectA', 'SetTextColor', 'SetBkMode', 'SelectObject', 'GetStockObject', 'DeleteObject', 'CreateSolidBrush', 'CreateFontIndirectA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'RegCloseKey', 'RegCreateKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegSetValueA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'RegQueryValueExA', 'GetUserNameA', 'DragAcceptFiles', 'DragQueryFileA', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'SHGetMalloc', 'SHGetFileInfoA', 'DragFinish', 'ShellExecuteA', 'CoCreateInstance', 'BindImageEx', 'ImageRvaToSection', 'CheckSumMappedFile', 'ImageRvaToVa', 'ImageNtHeader', 'HESetInternalOptions', 'HEShowWindow', 'DumpFix', 'DumpFixer64', 'RebuildResourceDirectoryMemory32', 'ResizeFile', 'DumpFixer32', 'ReBasePEImage', 'ValidateDump32', 'ValidatePE', 'WipeReloc', 'RebuildPE'], ['RegCreateKeyExW', 'RegEnumKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetFileSecurityW', 'RegOpenKeyExW', 'RegEnumValueW', 'SHGetSpecialFolderLocation', 'SHFileOperationW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'ShellExecuteExW', 'SHGetFileInfoW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'IIDFromString', 'CoTaskMemFree', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetClientRect', 'EndPaint', 'DrawTextW', 'IsWindowEnabled', 'DispatchMessageW', 'wsprintfA', 'CharNextA', 'CharPrevW', 'MessageBoxIndirectW', 'GetDlgItemTextW', 'SetDlgItemTextW', 'GetSystemMetrics', 'FillRect', 'AppendMenuW', 'TrackPopupMenu', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'IsWindowVisible', 'CallWindowProcW', 'GetMessagePos', 'CheckDlgButton', 'LoadCursorW', 'SetCursor', 'GetSysColor', 'SetWindowPos', 'GetWindowLongW', 'PeekMessageW', 'SetClassLongW', 'GetSystemMenu', 'EnableMenuItem', 'ScreenToClient', 'EndDialog', 'RegisterClassW', 'SystemParametersInfoW', 'CreateWindowExW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'wsprintfW', 'SendMessageTimeoutW', 'FindWindowExW', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'EmptyClipboard', 'CreatePopupMenu', 'SetBkMode', 'SetBkColor', 'GetDeviceCaps', 'CreateFontIndirectW', 'CreateBrushIndirect', 'DeleteObject', 'SetTextColor', 'SelectObject', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDirectoryW', 'lstrcatW', 'Sleep', 'lstrcpyA', 'WriteFile', 'GetTempFileNameW', 'CreateFileW', 'lstrcmpiA', 'RemoveDirectoryW', 'CreateProcessW', 'CreateDirectoryW', 'GetLastError', 'CreateThread', 'GlobalLock', 'GetDiskFreeSpaceW', 'WideCharToMultiByte', 'lstrcpynW', 'lstrlenW', 'SetErrorMode', 'GetVersionExW', 'GetCommandLineW', 'GetTempPathW', 'GetWindowsDirectoryW', 'SetEnvironmentVariableW', 'CopyFileW', 'ExitProcess', 'GetCurrentProcess', 'GetModuleFileNameW', 'GetFileSize', 'GetTickCount', 'MulDiv', 'SetFileAttributesW', 'GetFileAttributesW', 'SetCurrentDirectoryW', 'MoveFileW', 'GetFullPathNameW', 'GetShortPathNameW', 'SearchPathW', 'CompareFileTime', 'SetFileTime', 'CloseHandle', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalFree', 'GlobalAlloc', 'GetModuleHandleW', 'LoadLibraryExW', 'MoveFileExW', 'FreeLibrary', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MultiByteToWideChar', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW'], ['CryptReleaseContext', 'CryptGenKey', 'CryptDestroyKey', 'CryptAcquireContextW', 'ImmGetDescriptionA', 'ImmGetCompositionStringW', 'ImmSetCompositionStringA', 'ImmGetGuideLineW', 'ImmEscapeW', 'ImmSetCandidateWindow', 'ImmDisableTextFrameService', 'wnsprintfA', 'StrCmpIW', 'StrFormatKBSizeW', 'StrCSpnA', 'StrCmpNW', 'DecodePointer', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'LCMapStringW', 'GetProcessHeap', 'GetStringTypeW', 'HeapSize', 'HeapReAlloc', 'SetStdHandle', 'FlushFileBuffers', 'WriteFile', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx'], ['GetFileInformationByHandle', 'GetDriveTypeA', 'FindFirstFileExA', 'GetCurrentDirectoryW', 'ActivateActCtx', 'DeactivateActCtx', 'SetLastError', 'GetModuleHandleA', 'GetLocaleInfoA', 'DeleteAtom', 'GlobalAddAtomA', 'GetTickCount', 'GetTempPathA', 'SetErrorMode', 'DeleteFileA', 'GetVersion', 'SetFileTime', 'WriteFile', 'CreateDirectoryA', 'GetFileAttributesA', 'LocalFileTimeToFileTime', 'lstrcatA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'ReadFile', 'SetFilePointer', 'GlobalSize', 'FindResourceA', 'CreateEventA', 'GetProcAddress', 'FreeLibrary', 'SetEvent', 'ResetEvent', 'LoadLibraryA', 'lstrcpyA', 'GlobalGetAtomNameA', 'MulDiv', 'lstrcmpA', 'FindClose', 'FindFirstFileA', 'UnmapViewOfFile', 'CloseHandle', 'GetLastError', 'CreateFileA', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'OpenFile', 'lstrcmpiA', 'GetTimeFormatA', 'GetDateFormatA', 'EnumTimeFormatsA', 'EnumDateFormatsA', 'GetUserDefaultLCID', 'GetLocalTime', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'MultiByteToWideChar', 'lstrlenA', 'GlobalFree', 'FindResourceW', 'GetDriveTypeW', 'ExpandEnvironmentStringsA', 'WaitForMultipleObjects', 'PeekNamedPipe', 'GetSystemDirectoryA', 'VerSetConditionMask', 'VerifyVersionInfoA', 'SleepEx', 'SetEnvironmentVariableA', 'CreateFileW', 'GetProcessHeap', 'WriteConsoleW', 'GetTimeZoneInformation', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'GetStringTypeW', 'IsValidLocale', 'lstrlenW', 'LocalFree', 'FormatMessageA', 'CopyFileA', 'GetModuleFileNameA', 'GetCurrentProcessId', 'lstrcmpW', 'LoadLibraryW', 'CompareStringA', 'GetVersionExA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GetCurrentThreadId', 'FreeResource', 'CreateActCtxW', 'ReleaseActCtx', 'GetModuleFileNameW', 'InterlockedDecrement', 'InterlockedIncrement', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'GetFileSize', 'DuplicateHandle', 'GetCurrentProcess', 'GetVolumeInformationA', 'GetFullPathNameA', 'GetFileAttributesExA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetFileSizeEx', 'GetFileTime', 'GetProfileIntA', 'SetThreadPriority', 'ResumeThread', 'WaitForSingleObject', 'SuspendThread', 'GetModuleHandleW', 'GetPrivateProfileIntA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'InterlockedExchange', 'GetSystemDefaultUILanguage', 'ConvertDefaultLocale', 'GetUserDefaultUILanguage', 'GetCurrentThread', 'LocalAlloc', 'LeaveCriticalSection', 'TlsGetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'GlobalHandle', 'InitializeCriticalSection', 'TlsAlloc', 'TlsSetValue', 'LocalReAlloc', 'DeleteCriticalSection', 'TlsFree', 'GlobalFlags', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'FindResourceExW', 'GetTempFileNameA', 'GetWindowsDirectoryA', 'GetNumberFormatA', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'SearchPathA', 'DecodePointer', 'EncodePointer', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'HeapReAlloc', 'RaiseException', 'VirtualQuery', 'ExitThread', 'CreateThread', 'HeapSize', 'HeapQueryInformation', 'GetSystemTimeAsFileTime', 'SetStdHandle', 'GetFileType', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetStdHandle', 'GetLocaleInfoW', 'IsProcessorFeaturePresent', 'GetConsoleCP', 'GetConsoleMode', 'IsValidCodePage', 'CompareStringW', 'LCMapStringW', 'HeapCreate', 'EnumSystemLocalesA', 'SetActiveWindow', 'GetForegroundWindow', 'GetWindowTextLengthA', 'SetFocus', 'IsWindow', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'SendDlgItemMessageA', 'CheckDlgButton', 'SetDlgItemTextA', 'IsDialogMessageA', 'MoveWindow', 'ShowWindow', 'CheckMenuItem', 'EnableMenuItem', 'ModifyMenuA', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EndDialog', 'CreateDialogIndirectParamA', 'GetActiveWindow', 'GetDesktopWindow', 'GetAsyncKeyState', 'MapDialogRect', 'MessageBeep', 'IsClipboardFormatAvailable', 'CountClipboardFormats', 'IsRectEmpty', 'SendNotifyMessageA', 'CopyAcceleratorTableA', 'InflateRect', 'GetMenuItemInfoA', 'DestroyMenu', 'SystemParametersInfoA', 'CharUpperA', 'GetKeyNameTextA', 'MapVirtualKeyA', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'GetCursorPos', 'TranslateAcceleratorA', 'InsertMenuItemA', 'IsIconic', 'LoadAcceleratorsA', 'SetCursor', 'DestroyIcon', 'LoadMenuA', 'ReuseDDElParam', 'UnpackDDElParam', 'CreateMenu', 'PostThreadMessageA', 'ClipCursor', 'DeleteMenu', 'GetSystemMenu', 'SetParent', 'MonitorFromPoint', 'IsZoomed', 'ShowOwnedPopups', 'ValidateRect', 'TranslateMessage', 'GetMessageA', 'GetMessagePos', 'GetSysColorBrush', 'RealChildWindowFromPoint', 'UnregisterClassA', 'LoadCursorW', 'WaitMessage', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'UnionRect', 'GetDCEx', 'LockWindowUpdate', 'LoadAcceleratorsW', 'LoadMenuW', 'GetMenuDefaultItem', 'InvertRect', 'HideCaret', 'EnableScrollBar', 'NotifyWinEvent', 'GetIconInfo', 'CopyImage', 'GetNextDlgGroupItem', 'DrawIconEx', 'SetWindowRgn', 'DispatchMessageA', 'SetClassLongA', 'DrawStateA', 'DrawEdge', 'DrawFrameControl', 'ToAsciiEx', 'GetKeyboardLayout', 'GetKeyboardState', 'CreateAcceleratorTableA', 'SetCursorPos', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'LoadImageW', 'IsCharLowerA', 'MapVirtualKeyExA', 'UpdateLayeredWindow', 'IsMenu', 'DefFrameProcA', 'DefMDIChildProcA', 'DrawMenuBar', 'TranslateMDISysAccel', 'SetMenuDefaultItem', 'FrameRect', 'GetUpdateRect', 'CopyIcon', 'CharUpperBuffA', 'GetDoubleClickTime', 'SubtractRect', 'DrawIcon', 'DestroyCursor', 'GetWindowRgn', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'ShowScrollBar', 'IsWindowVisible', 'PostMessageA', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'SetWindowPos', 'GetWindow', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'OemToCharA', 'GetMenuState', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'SetRect', 'DrawTextA', 'GrayStringA', 'DrawTextExA', 'TabbedTextOutA', 'WinHelpA', 'CreatePopupMenu', 'AppendMenuA', 'GetSysColor', 'CopyRect', 'DrawFocusRect', 'FillRect', 'GetWindowTextA', 'SetWindowTextA', 'GetFocus', 'IsChild', 'GetParent', 'GetWindowRect', 'wsprintfA', 'GetNextDlgTabItem', 'GetKeyState', 'BringWindowToTop', 'InvalidateRect', 'PtInRect', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'DestroyAcceleratorTable', 'GetMessageTime', 'GetSystemMetrics', 'GetDlgItem', 'LoadIconA', 'GetClassInfoA', 'UpdateWindow', 'OemToCharBuffA', 'CharToOemBuffA', 'MsgWaitForMultipleObjects', 'SendMessageA', 'EnableWindow', 'CharToOemA', 'PostQuitMessage', 'DeferWindowPos', 'RedrawWindow', 'LoadImageA', 'LoadIconW', 'IntersectRect', 'RegisterClipboardFormatA', 'SetForegroundWindow', 'SendMessageTimeoutA', 'GetClassNameA', 'ReleaseDC', 'GetDC', 'RegisterWindowMessageA', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'EqualRect', 'LoadCursorA', 'SetRectEmpty', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'LoadBitmapA', 'OffsetRect', 'PeekMessageA', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'CreatePatternBrush', 'CreateBitmap', 'SelectPalette', 'GetObjectType', 'CreateHatchBrush', 'GetWindowOrgEx', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CreateCompatibleBitmap', 'CreateRectRgn', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'GetWindowExtEx', 'GetPixel', 'DPtoLP', 'GetBkColor', 'GetTextFaceA', 'SetPixelV', 'SetPaletteEntries', 'ExtFloodFill', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'PtInRegion', 'GetViewportOrgEx', 'LPtoDP', 'GetRgnBox', 'OffsetRgn', 'SetPixel', 'StretchBlt', 'SetDIBColorTable', 'Polygon', 'Ellipse', 'Polyline', 'CreateEllipticRgn', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'CreateDIBSection', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateICA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetTextMetricsA', 'GetStockObject', 'GetPaletteEntries', 'GetTextColor', 'Rectangle', 'EnumFontFamiliesExA', 'EnumFontFamiliesA', 'CreateSolidBrush', 'CreateCompatibleDC', 'BitBlt', 'GetObjectA', 'DeleteObject', 'SelectObject', 'CreatePen', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'GetSystemPaletteEntries', 'RealizePalette', 'GetNearestPaletteIndex', 'CreatePalette', 'UnrealizeObject', 'GetTextCharsetInfo', 'CreateDIBitmap', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CreateDCA', 'CopyMetaFileA', 'SetBrushOrgEx', 'PatBlt', 'GetViewportExtEx', 'GetMapMode', 'CombineRgn', 'SetRectRgn', 'CreateRectRgnIndirect', 'RegCreateKeyExA', 'CryptEncrypt', 'CryptDestroyKey', 'CryptGetHashParam', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'RegQueryValueExA', 'RegSetValueExA', 'RegCloseKey', 'RegSetValueA', 'RegOpenKeyExA', 'RegOpenKeyExW', 'CryptImportKey', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegEnumValueA', 'RegEnumKeyExA', 'SHAppBarMessage', 'SHBrowseForFolderA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetDesktopFolder', 'SHGetFileInfoA', 'ExtractIconA', 'DragAcceptFiles', 'ShellAboutA', 'ShellExecuteA', 'DragQueryFileA', 'DragFinish', 'OleSetMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'CoDisconnectObject', 'CoCreateGuid', 'CoRegisterClassObject', 'CoRevokeClassObject', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'OleGetClipboard', 'DoDragDrop', 'CoInitialize', 'CreateGenericComposite', 'CreateItemMoniker', 'OleGetIconOfClass', 'OleCreateLinkToFile', 'OleCreateFromFile', 'OleSetContainedObject', 'GetHGlobalFromILockBytes', 'StgOpenStorageOnILockBytes', 'OleLoad', 'OleCreate', 'OleCreateStaticFromData', 'OleCreateLinkFromData', 'OleCreateFromData', 'OleLockRunning', 'CreateStreamOnHGlobal', 'OleSaveToStream', 'WriteClassStm', 'OleSave', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'OleDuplicateData', 'CoTaskMemAlloc', 'CreateBindCtx', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CoTaskMemFree', 'ReleaseStgMedium', 'OleUninitialize', 'OleInitialize', 'CreateFileMoniker', 'StgOpenStorage', 'TransparentBlt', 'AlphaBlend', 'ImageList_GetIconSize', 'PathStripToRootA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'PathFindFileNameA', 'PathIsUNCA', 'accept', 'sendto', 'getaddrinfo', 'freeaddrinfo', 'connect', 'socket', 'closesocket', 'getpeername', 'getsockopt', 'htons', 'bind', 'ntohs', 'getsockname', 'recvfrom', 'WSAGetLastError', 'WSACleanup', 'WSAStartup', 'WSASetLastError', '__WSAFDIsSet', 'select', 'recv', 'send', 'WSAIoctl', 'listen', 'ioctlsocket', 'gethostname', 'htonl', 'ntohl', 'setsockopt', 'CertFreeCertificateContext', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCreateFromHDC', 'GdipSetInterpolationMode', 'GdipDrawImageRectI', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromScan0', 'GdipBitmapLockBits', 'GdipBitmapUnlockBits', 'GdipGetImageGraphicsContext', 'GdipDrawImageI', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipGetImagePixelFormat', 'GdipGetImagePaletteSize', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImagePalette', 'ImmGetOpenStatus', 'ImmGetContext', 'ImmReleaseContext', 'PlaySoundA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'GetFileTitleA', 'SysAllocString', 'VarBstrFromDate', 'SysStringByteLen', 'SysFreeString', 'VariantTimeToSystemTime', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SystemTimeToVariantTime'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaAryDestruct', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaVarSetObj', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['RegCloseKey', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'WNetOpenEnumW', 'wsprintfW'], ['QueryPerformanceFrequency', 'ReleaseMutex', 'CreateFileA', 'WriteFile', 'ReadFile', 'DeviceIoControl', 'GetThreadContext', 'SetThreadContext', 'InterlockedCompareExchange', 'GetCurrentThread', 'Sleep', 'GetSystemDirectoryA', 'ReleaseSemaphore', 'InterlockedExchangeAdd', 'GetThreadPriority', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'DuplicateHandle', 'ResumeThread', 'AllocateUserPhysicalPages', 'FindResourceExA', 'LoadLibraryW', 'GetFileAttributesA', 'VirtualAlloc', 'CreateMutexA', 'IsWow64Process', 'CancelIoEx', 'GetOverlappedResult', 'LocalFree', 'SetEndOfFile', 'ReadConsoleW', 'CreateFileW', 'SetEnvironmentVariableA', 'WriteConsoleW', 'SetStdHandle', 'VerifyVersionInfoA', 'CompareStringW', 'FlushFileBuffers', 'OutputDebugStringW', 'SetFilePointerEx', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetConsoleMode', 'GetConsoleCP', 'GetStringTypeW', 'RtlUnwind', 'HeapSize', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetModuleHandleW', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStartupInfoW', 'GetFileType', 'GetModuleFileNameW', 'GetStdHandle', 'GetCommandLineA', 'LoadLibraryExW', 'ExitThread', 'HeapReAlloc', 'AreFileApisANSI', 'GetModuleHandleExW', 'ExitProcess', 'IsDebuggerPresent', 'EncodePointer', 'VirtualQuery', 'VirtualProtect', 'GetSystemInfo', 'DecodePointer', 'VirtualFree', 'IsProcessorFeaturePresent', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'InitializeSListHead', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'FormatMessageA', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'VerSetConditionMask', 'WaitForMultipleObjects', 'ResetEvent', 'CreateEventA', 'SetEvent', 'WaitForSingleObject', 'TlsFree', 'TlsAlloc', 'WakeAllConditionVariable', 'InitializeConditionVariable', 'TlsSetValue', 'SleepConditionVariableCS', 'TryEnterCriticalSection', 'InterlockedExchange', 'InitializeCriticalSection', 'SleepEx', 'TlsGetValue', 'CreateThread', 'DebugBreak', 'GetCurrentProcessId', 'CloseHandle', 'GetVersionExA', 'OutputDebugStringA', 'GetCurrentThreadId', 'DeleteCriticalSection', 'LoadLibraryExA', 'GetModuleHandleA', 'GetModuleFileNameA', 'LockResource', 'LoadLibraryA', 'EnterCriticalSection', 'GetProcAddress', 'lstrcmpiA', 'SetLastError', 'GetLastError', 'RaiseException', 'FlushInstructionCache', 'MultiByteToWideChar', 'IsDBCSLeadByte', 'LeaveCriticalSection', 'SizeofResource', 'InitializeCriticalSectionAndSpinCount', 'WideCharToMultiByte', 'GetCurrentProcess', 'InterlockedDecrement', 'InterlockedIncrement', 'LoadResource', 'FreeLibrary', 'lstrlenA', 'lstrcmpA', 'LCMapStringW', 'FindResourceA', 'GetShellWindow', 'EndPaint', 'DestroyWindow', 'GetMessageA', 'GetClassNameA', 'ScreenToClient', 'GetWindowRect', 'IsMenu', 'GetCursorPos', 'GetDlgItem', 'UnregisterClassA', 'MessageBoxA', 'GetWindowTextA', 'GetWindowThreadProcessId', 'GetMessagePos', 'ModifyMenuA', 'DrawFrameControl', 'DialogBoxParamA', 'LoadIconA', 'SetMenuItemInfoA', 'DestroyMenu', 'CallWindowProcA', 'UpdateWindow', 'MapWindowPoints', 'LoadImageA', 'IsWindowVisible', 'GetSystemMetrics', 'RegisterClassExA', 'MonitorFromPoint', 'PostQuitMessage', 'GetWindowDC', 'GetWindow', 'GetForegroundWindow', 'FillRect', 'GetMenuItemID', 'GetClassInfoExA', 'DrawTextA', 'GetKeyState', 'GetSubMenu', 'LoadStringA', 'GetFocus', 'LoadBitmapA', 'GetParent', 'LoadMenuA', 'CallNextHookEx', 'LoadCursorA', 'SystemParametersInfoA', 'UnhookWindowsHookEx', 'SetMenuDefaultItem', 'DispatchMessageA', 'RemoveMenu', 'PostMessageA', 'IsWindow', 'GetMenuItemCount', 'AppendMenuA', 'GetActiveWindow', 'FrameRect', 'GetSysColorBrush', 'CreatePopupMenu', 'GetDlgItemTextA', 'SetMenu', 'ShowWindow', 'MessageBeep', 'IsWindowEnabled', 'WindowFromPoint', 'CharNextA', 'GetClientRect', 'SetFocus', 'SendMessageA', 'DrawEdge', 'SetRectEmpty', 'RegisterWindowMessageA', 'BeginPaint', 'PtInRect', 'GetMonitorInfoA', 'GetDC', 'TranslateMessage', 'InflateRect', 'GetMenu', 'OffsetRect', 'TrackPopupMenuEx', 'CheckMenuRadioItem', 'SetWindowLongA', 'InvalidateRect', 'CharLowerA', 'GetWindowLongA', 'CreateWindowExA', 'PeekMessageA', 'ReleaseDC', 'TranslateAcceleratorA', 'MonitorFromWindow', 'EndDialog', 'DefWindowProcA', 'SetWindowsHookExA', 'GetSysColor', 'SetWindowPos', 'GetMenuItemInfoA', 'LoadStringW', 'LoadAcceleratorsA', 'MoveToEx', 'GetGlyphOutlineA', 'ExtTextOutA', 'TextOutA', 'GetStockObject', 'GetObjectA', 'CreatePatternBrush', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'SelectObject', 'DeleteObject', 'GetPixel', 'CreatePen', 'PlayEnhMetaFileRecord', 'PlayEnhMetaFile', 'SetBkMode', 'CreateBitmap', 'SetBkColor', 'GetCurrentObject', 'SetBrushOrgEx', 'CreateFontIndirectA', 'CreateDIBSection', 'DeleteDC', 'SetTextColor', 'PatBlt', 'BitBlt', 'LineTo', 'CloseEnhMetaFile', 'GetEnhMetaFileHeader', 'CreateEnhMetaFileA', 'GetEnhMetaFileA', 'DeleteEnhMetaFile', 'FindTextA', 'GetOpenFileNameA', 'RegSetValueExA', 'RegDeleteKeyA', 'RegEnumKeyExA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegCloseKey', 'OpenProcessToken', 'RegQueryInfoKeyW', 'SHGetDesktopFolder', 'SHBindToParent', 'SHGetFolderLocation', 'DragQueryFileA', 'CoFreeUnusedLibraries', 'ReleaseStgMedium', 'OleUninitialize', 'OleInitialize', 'StringFromGUID2', 'CLSIDFromString', 'StringFromCLSID', 'CoGetMalloc', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoInitialize', 'CoTaskMemRealloc', 'CoUninitialize', 'CoCreateInstance', 'VarUI4FromStr', 'VariantClear', 'PathUnExpandEnvStringsW', 'ImageList_Destroy', 'ImageList_DrawIndirect', 'ImageList_AddMasked', 'ImageList_LoadImageA', 'InitCommonControlsEx', 'ImageList_Create', 'ImageList_GetImageCount', 'ImageList_Draw', 'midiOutGetNumDevs', 'mmioStringToFOURCCA', 'joyGetNumDevs', 'auxGetNumDevs', 'waveInGetNumDevs', 'midiInGetNumDevs', 'waveOutGetNumDevs', 'ScriptGetGlyphABCWidth', 'ScriptCacheGetHeight', 'ScriptFreeCache', 'ScriptGetFontProperties', 'ScriptGetCMap'], ['RegCloseKey', 'RegQueryValueExW', 'RegSetValueExW', 'OpenSCManagerW', 'EnumServicesStatusW', 'OpenServiceW', 'CloseServiceHandle', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'RegEnumKeyExW', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegQueryInfoKeyW', 'RegEnumValueW', 'RegDeleteValueW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'InitiateShutdownW', 'DeleteFileW', 'MoveFileExW', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'GetSystemInfo', 'GetPhysicallyInstalledSystemMemory', 'GlobalMemoryStatusEx', 'GetCurrentProcess', 'FindFirstFileW', 'CopyFileW', 'FreeLibrary', 'FormatMessageW', 'LocalFree', 'HeapSetInformation', 'RegisterApplicationRestart', 'OpenProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetCommandLineW', 'CompareStringW', 'SetFileAttributesW', 'CreateDirectoryW', 'CreateSemaphoreW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrcmpiW', 'lstrlenW', 'FindClose', 'RtlCompareMemory', 'FindNextFileW', 'GetDateFormatW', 'QueryDosDeviceW', 'LocalAlloc', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'Sleep', 'InterlockedPushEntrySList', 'VirtualAlloc', 'InterlockedPopEntrySList', 'GetProcessHeap', 'VirtualFree', 'HeapFree', 'HeapAlloc', 'GetNativeSystemInfo', 'CloseHandle', 'CreateThread', 'GetModuleHandleW', 'LoadLibraryW', 'GetProcAddress', 'ExpandEnvironmentStringsW', 'GetTimeFormatW', 'GetLastError', 'FlushInstructionCache', 'GetTextMetricsW', 'SelectObject', 'GetTextExtentPoint32W', 'SetCursor', 'LoadCursorW', 'GetFocus', 'ShowWindow', 'MessageBoxW', 'IsWindowEnabled', 'GetSystemMetrics', 'EndDialog', 'SetFocus', 'SetWindowTextW', 'LoadStringW', 'GetActiveWindow', 'GetDlgItem', 'GetDlgItemTextW', 'GetClientRect', 'SendMessageW', 'LoadIconW', 'CharNextW', 'FindWindowW', 'SetForegroundWindow', 'IsIconic', 'GetLastActivePopup', 'IsDlgButtonChecked', 'CheckDlgButton', 'SetDlgItemInt', 'SetDlgItemTextW', 'GetWindowTextLengthW', 'GetWindowTextW', 'SetWindowLongPtrW', 'GetDC', 'ReleaseDC', 'GetKeyState', 'CallWindowProcW', 'GetWindowLongPtrW', 'EnableWindow', '??1type_info@@UEAA@XZ', '_unlock', '__dllonexit', '_lock', '_onexit', '_amsg_exit', '_initterm', '_wcmdln', 'exit', '_cexit', '_exit', '_XcptFilter', '__C_specific_handler', '__wgetmainargs', '__CxxFrameHandler3', '?terminate@@YAXXZ', '_CxxThrowException', '??0exception@@QEAA@AEBQEBDH@Z', 'iswdigit', 'wcsrchr', '_wtoi', 'memmove', 'calloc', '_vsnwprintf', '_wtol', '_itow_s', 'memcpy', 'memcmp', '_snwscanf_s', '_wcsupr', 'wcsnlen', 'strncmp', 'wcsncpy_s', '__set_app_type', '_fmode', '_commode', '_callnewh', 'memset', '_ultow_s', 'wcschr', '_wcsnicmp', 'wcstoul', 'swprintf_s', 'wcscpy_s', 'wcscat_s', '_wcsicmp', '??0exception@@QEAA@XZ', 'memmove_s', '??0exception@@QEAA@AEBQEBD@Z', '??1exception@@UEAA@XZ', '?what@exception@@UEBAPEBDXZ', 'memcpy_s', '??0exception@@QEAA@AEBV0@@Z', '_wcsicoll', 'wcstok', 'wcsstr', '_wcslwr', '_purecall', 'free', 'malloc', '__setusermatherr', 'ShellExecuteW', 'SHEvaluateSystemCommandTemplate', 'SHGetSpecialFolderPathW', 'SysAllocString', 'VariantChangeType', 'VariantClear', 'SysFreeString', 'VariantInit', 'CreateStreamOnHGlobal', 'CoInitializeEx', 'CoTaskMemFree', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'RtlNtStatusToDosError', 'RtlInitUnicodeString', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'WinSqmAddToStream', 'NtResetEvent', 'NtDeleteFile', 'NtQueryVolumeInformationFile', 'LdrGetDllHandle', 'NtQueryInformationFile', 'RtlStringFromGUID', 'NtQuerySystemInformation', 'RtlFreeHeap', 'RtlFreeUnicodeString', 'RtlGUIDFromString', 'NtClose', 'RtlAllocateHeap', 'NtOpenFile', 'NtDeviceIoControlFile', 'NtWaitForSingleObject', 'NtCreateEvent', 'NtQueryKey', 'NtEnumerateKey', 'NtQueryAttributesFile', 'NtOpenKey', 'RtlCreateAcl', 'NtSaveKey', 'NtUnloadKey', 'RtlFreeSid', 'RtlSetDaclSecurityDescriptor', 'NtDeleteValueKey', 'NtLoadKey', 'NtOpenThreadToken', 'NtCreateKey', 'NtCreateFile', 'RtlLengthSecurityDescriptor', 'RtlAddAccessAllowedAceEx', 'NtOpenProcessToken', 'NtSetSecurityObject', 'NtQueryValueKey', 'NtSetValueKey', 'NtAdjustPrivilegesToken', 'NtDeleteKey', 'RtlAllocateAndInitializeSid', 'RtlLengthSid', 'RtlCreateSecurityDescriptor', 'RtlSetOwnerSecurityDescriptor', 'NtAllocateUuids', 'RtlInitAnsiString', 'NtOpenSymbolicLinkObject', 'LdrGetProcedureAddress', 'NtQuerySymbolicLinkObject', 'WinSqmIncrementDWORD'], ['ImageList_Create', 'ImageList_Add', 'SetupOpenInfFileA', 'SetupInstallFromInfSectionA', 'SetupCloseInfFile', 'SetupDiOpenClassRegKey', 'GetVolumeInformationA', 'GetVolumePathNameA', 'FindNextVolumeW', 'QueryDosDeviceW', 'FindFirstVolumeW', 'WriteFile', 'LocalFree', 'VirtualUnlock', 'DefineDosDeviceA', 'GetCurrentProcessId', 'ExitProcess', 'FormatMessageW', 'ReleaseMutex', 'OpenMutexA', 'GetVolumeInformationW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'FlushFileBuffers', 'GetFileSize', 'GetCurrentProcess', 'GetModuleHandleA', 'GetVersionExA', 'GetCurrentDirectoryA', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceA', 'GetFileAttributesA', 'SetFilePointer', 'GetModuleFileNameW', 'SetErrorMode', 'SetCurrentDirectoryA', 'GetDiskFreeSpaceA', 'InterlockedExchangeAdd', 'InterlockedExchange', 'SetEvent', 'WaitForSingleObject', 'ResetEvent', 'CreateEventA', 'GetFileAttributesExA', 'FindNextFileW', 'CreateFileW', 'FindFirstFileW', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetStartupInfoA', 'GetProcessWorkingSetSize', 'GetProcessTimes', 'GetThreadTimes', 'GlobalMemoryStatus', 'GetProcessHeap', 'GetCurrentThread', 'GetShortPathNameA', 'GetStringTypeA', 'GetLocaleInfoA', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'PeekNamedPipe', 'GetFileInformationByHandle', 'GetFullPathNameA', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'SetHandleCount', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'InitializeCriticalSectionAndSpinCount', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'GetStdHandle', 'GetStringTypeW', 'GetCPInfo', 'LCMapStringW', 'LCMapStringA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'CreateThread', 'ExitThread', 'GetFileType', 'SetStdHandle', 'GetSystemTimeAsFileTime', 'GetFileAttributesW', 'GetConsoleMode', 'GetConsoleCP', 'HeapAlloc', 'GetModuleHandleW', 'HeapFree', 'RtlUnwind', 'RaiseException', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'InterlockedCompareExchange', 'GetDriveTypeA', 'GetTempPathA', 'CopyFileA', 'VirtualLock', 'GetVolumeNameForVolumeMountPointA', 'DeleteVolumeMountPointA', 'SetVolumeMountPointA', 'GetSystemInfo', 'FindFirstFileA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'FindNextFileA', 'FindClose', 'SetFilePointerEx', 'CreateFileA', 'GetFileSizeEx', 'GetFileTime', 'ReadFile', 'SetFileTime', 'SetEnvironmentVariableA', 'SetLastError', 'GetLogicalDrives', 'GetCommandLineA', 'GetCommandLineW', 'GetTickCount', 'CreateMutexA', 'Sleep', 'GetSystemDirectoryA', 'CreateDirectoryA', 'GetModuleFileNameA', 'CreateProcessA', 'CloseHandle', 'SetProcessShutdownParameters', 'GetCurrentThreadId', 'lstrlenW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'InterlockedIncrement', 'GetLastError', 'InterlockedDecrement', 'DeviceIoControl', 'FindFirstVolumeA', 'QueryDosDeviceA', 'FindNextVolumeA', 'FindVolumeClose', 'DeleteFileA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'GetLocaleInfoW', 'SetEndOfFile', 'GetTimeZoneInformation', 'CompareStringA', 'CompareStringW', 'InitializeCriticalSection', 'GetKeyState', 'EnumChildWindows', 'GetDlgCtrlID', 'GetClassNameA', 'LoadCursorA', 'SetCursor', 'DefDlgProcA', 'UnregisterClassA', 'LoadIconA', 'RegisterClassA', 'GetUpdateRect', 'BeginPaint', 'DefWindowProcA', 'GetDialogBaseUnits', 'EndPaint', 'PeekMessageA', 'GetSystemMenu', 'GetOpenClipboardWindow', 'SetWindowsHookExA', 'MoveWindow', 'GetDC', 'ReleaseDC', 'MessageBoxA', 'GetActiveWindow', 'GetMessagePos', 'EnumWindows', 'RegisterWindowMessageA', 'IsWindowEnabled', 'SystemParametersInfoA', 'DrawMenuBar', 'PostMessageA', 'GetCursorPos', 'MessageBeep', 'SetMenuItemInfoW', 'GetSubMenu', 'SetLayeredWindowAttributes', 'CreateWindowExA', 'RegisterClassExA', 'TrackMouseEvent', 'SystemParametersInfoW', 'SendMessageTimeoutA', 'wsprintfA', 'GetClassInfoA', 'DrawTextA', 'UnhookWindowsHookEx', 'CallNextHookEx', 'GetCaretPos', 'GetQueueStatus', 'GetWindowTextW', 'GetProcessWindowStation', 'DestroyWindow', 'GetMessageTime', 'GetInputState', 'GetFocus', 'GetSystemMetrics', 'EnableWindow', 'GetDlgItem', 'GetCapture', 'GetClipboardOwner', 'GetClipboardViewer', 'GetWindowInfo', 'GetDesktopWindow', 'LoadBitmapA', 'FlashWindowEx', 'GetDlgItemInt', 'CreatePopupMenu', 'TrackPopupMenu', 'DestroyMenu', 'SetDlgItemInt', 'GetMenu', 'EnableMenuItem', 'SetWindowLongA', 'GetWindowLongA', 'CallWindowProcA', 'GetWindowRect', 'SetForegroundWindow', 'LoadImageA', 'GetDlgItemTextA', 'SetDlgItemTextA', 'SendDlgItemMessageA', 'SetFocus', 'SendDlgItemMessageW', 'GetKeyboardLayout', 'LoadKeyboardLayoutA', 'MessageBoxW', 'GetWindowTextA', 'SetWindowTextA', 'GetWindowTextLengthA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'PostThreadMessageA', 'GetParent', 'SetTimer', 'GetWindowTextLengthW', 'KillTimer', 'GetAsyncKeyState', 'RegisterHotKey', 'UnregisterHotKey', 'wsprintfW', 'DialogBoxParamW', 'ShowWindow', 'SetWindowTextW', 'GetClientRect', 'SetWindowPos', 'InvalidateRect', 'SendMessageW', 'EndDialog', 'SendMessageA', 'DeleteMenu', 'AppendMenuA', 'AppendMenuW', 'GetDlgItemTextW', 'IsDlgButtonChecked', 'SetDlgItemTextW', 'CheckDlgButton', 'MoveToEx', 'LineTo', 'GetCurrentObject', 'GetObjectA', 'CreateCompatibleBitmap', 'SetStretchBltMode', 'CreatePen', 'DeleteDC', 'BitBlt', 'CreateCompatibleDC', 'SetMapMode', 'GetDeviceCaps', 'SelectObject', 'GetTextExtentPoint32W', 'GetTextMetricsA', 'GetStockObject', 'CreateFontIndirectW', 'StretchBlt', 'DeleteObject', 'GetSaveFileNameW', 'GetOpenFileNameW', 'RegisterEventSourceA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'CryptAcquireContextA', 'CryptGenRandom', 'CryptReleaseContext', 'GetTokenInformation', 'IsWellKnownSid', 'QueryServiceStatus', 'ControlService', 'StartServiceA', 'OpenProcessToken', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'ChangeServiceConfigA', 'OpenSCManagerA', 'CreateServiceA', 'ChangeServiceConfig2A', 'OpenServiceA', 'DeleteService', 'RegCloseKey', 'SetServiceStatus', 'DeregisterEventSource', 'ReportEventA', 'RegisterServiceCtrlHandlerA', 'StartServiceCtrlDispatcherA', 'CloseServiceHandle', 'SHGetFileInfoA', 'ShellExecuteA', 'SHGetMalloc', 'SHBrowseForFolderW', 'SHGetPathFromIDListA', 'CommandLineToArgvW', 'SHChangeNotify', 'SHGetFolderPathA', 'DragAcceptFiles', 'DragQueryFileA', 'DragFinish', 'Shell_NotifyIconA', 'Shell_NotifyIconW', 'ShellExecuteW', 'CoCreateInstance', 'StringFromGUID2', 'CoGetObject', 'CoInitialize', 'CoUninitialize', 'CoRegisterClassObject', 'CoRevokeClassObject', 'SysStringByteLen', 'SysAllocStringLen', 'SysFreeString', 'SysAllocStringByteLen'], ['GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetEnvironmentVariableA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetTimeZoneInformation', 'GetACP', 'HeapSize', 'HeapReAlloc', 'TerminateProcess', 'RaiseException', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'HeapAlloc', 'RtlUnwind', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SetErrorMode', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'GlobalFlags', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'GetLastError', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetProcAddress', 'CloseHandle', 'GetModuleFileNameA', 'GlobalAlloc', 'lstrcmpA', 'GetCurrentThread', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'GlobalFree', 'lstrlenA', 'lstrcpynA', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'SetLastError', 'LoadLibraryA', 'FreeLibrary', 'FindResourceA', 'LoadResource', 'LockResource', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'lstrcmpiA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcpyA', 'GetModuleHandleA', 'GetStringTypeA', 'ModifyMenuA', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetDC', 'ReleaseDC', 'GetWindowDC', 'SetRectEmpty', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'GetDesktopWindow', 'GetActiveWindow', 'DestroyMenu', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'BringWindowToTop', 'CreateDialogIndirectParamA', 'EndDialog', 'IsZoomed', 'WindowFromPoint', 'SetParent', 'IsRectEmpty', 'AppendMenuA', 'DeleteMenu', 'GetSystemMenu', 'PostQuitMessage', 'ShowOwnedPopups', 'ValidateRect', 'TranslateMessage', 'GetMessageA', 'CharUpperA', 'GetClassNameA', 'GetSysColorBrush', 'LoadStringA', 'SetRect', 'InvertRect', 'GetDCEx', 'LockWindowUpdate', 'LoadIconA', 'PostMessageA', 'SendDlgItemMessageA', 'MapWindowPoints', 'PeekMessageA', 'DispatchMessageA', 'GetFocus', 'SetActiveWindow', 'IsWindow', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'SetMenuItemBitmaps', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetMenuItemID', 'TrackPopupMenu', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetKeyState', 'DestroyWindow', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'GetLastActivePopup', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'RegisterWindowMessageA', 'IntersectRect', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'GetParent', 'ClientToScreen', 'LoadMenuA', 'GetSubMenu', 'EnableMenuItem', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'DrawStateA', 'DestroyIcon', 'FillRect', 'GetWindowRect', 'OffsetRect', 'SystemParametersInfoA', 'CheckMenuItem', 'GetNextDlgTabItem', 'IsWindowEnabled', 'SetCursor', 'GetCursorPos', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'SetFocus', 'ScreenToClient', 'SetCapture', 'PtInRect', 'GetDlgCtrlID', 'MoveWindow', 'InflateRect', 'BeginPaint', 'SetWindowTextA', 'IsDialogMessageA', 'GetClientRect', 'EndPaint', 'ShowWindow', 'InvalidateRect', 'GetSysColor', 'UpdateWindow', 'SendMessageA', 'IsWindowVisible', 'LoadBitmapA', 'MessageBoxA', 'EnableWindow', 'LoadCursorA', 'GetDlgItem', 'UnregisterClassA', 'SetBkMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SelectObject', 'DeleteObject', 'ExtSelectClipRgn', 'GetDeviceCaps', 'CreatePen', 'CreateSolidBrush', 'PatBlt', 'CreateRectRgnIndirect', 'StretchDIBits', 'GetCharWidthA', 'CreateFontA', 'GetTextMetricsA', 'CombineRgn', 'RestoreDC', 'SaveDC', 'DeleteDC', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'Escape', 'ExtTextOutA', 'TextOutA', 'SetBrushOrgEx', 'RectVisible', 'PtVisible', 'CreateBitmap', 'CreatePatternBrush', 'CreateCompatibleBitmap', 'CreateRectRgn', 'SetRectRgn', 'GetTextExtentPoint32A', 'CreateFontIndirectA', 'GetStockObject', 'CreateCompatibleDC', 'GetObjectA', 'BitBlt', 'GetFileTitleA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegOpenKeyExW', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCloseKey', 'DragFinish', 'DragQueryFileA', 'ImageList_Draw', 'ImageList_AddMasked', 'ImageList_GetIcon', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_GetIconSize', 'ImageList_Duplicate', 'TransparentBlt', 'GradientFill'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '_adj_fdiv_m32', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr'], ['DecodePointer', 'EncodePointer', 'GetDriveTypeW', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetSystemInfo', 'VirtualQuery', 'HeapValidate', 'IsBadReadPtr', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'CreateThread', 'ExitThread', 'RaiseException', 'GetSystemTimeAsFileTime', 'SetStdHandle', 'GetFileType', 'GetStdHandle', 'OutputDebugStringA', 'WriteConsoleW', 'OutputDebugStringW', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'GetLocaleInfoW', 'GetCurrentDirectoryW', 'HeapAlloc', 'HeapReAlloc', 'HeapSize', 'HeapQueryInformation', 'HeapFree', 'HeapCreate', 'GetTimeZoneInformation', 'QueryPerformanceCounter', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStringTypeW', 'LCMapStringW', 'CompareStringW', 'GetConsoleCP', 'GetConsoleMode', 'GetExitCodeProcess', 'CreateProcessA', 'IsValidLocale', 'EnumSystemLocalesA', 'SetEnvironmentVariableA', 'CreateFileW', 'OpenEventA', 'FileTimeToLocalFileTime', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateFileMappingA', 'Sleep', 'SearchPathA', 'FindResourceExW', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetTickCount', 'GetTempPathA', 'GetFileAttributesExA', 'GetFileSizeEx', 'GetUserDefaultLCID', 'GetTempFileNameA', 'GetFileTime', 'GetCPInfo', 'FileTimeToSystemTime', 'lstrcmpiA', 'GetFullPathNameA', 'GetVolumeInformationA', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'GetHandleInformation', 'GetProfileIntA', 'VirtualProtect', 'GetACP', 'GetAtomNameA', 'GetThreadLocale', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'DeleteFileA', 'GlobalFlags', 'SetErrorMode', 'InterlockedIncrement', 'GetCurrentDirectoryA', 'GetModuleFileNameW', 'ReleaseActCtx', 'CreateActCtxW', 'LoadLibraryW', 'GetVersionExA', 'lstrcmpW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'MulDiv', 'lstrlenW', 'GlobalSize', 'FormatMessageA', 'LocalFree', 'ResumeThread', 'SetThreadPriority', 'GetCurrentProcessId', 'GlobalAddAtomA', 'SetEvent', 'WaitForSingleObject', 'GlobalUnlock', 'GetModuleHandleA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'FindResourceA', 'FreeResource', 'GlobalFree', 'CompareStringA', 'ActivateActCtx', 'DeactivateActCtx', 'SetLastError', 'GlobalLock', 'GlobalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'GlobalDeleteAtom', 'lstrcmpA', 'GetCurrentThread', 'GetCurrentThreadId', 'GetLocaleInfoA', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'InitializeCriticalSectionAndSpinCount', 'GetOEMCP', 'GetLastError', 'lstrlenA', 'MultiByteToWideChar', 'InterlockedExchange', 'EnterCriticalSection', 'LeaveCriticalSection', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'ExitProcess', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'GetEnvironmentVariableA', 'GlobalMemoryStatusEx', 'InterlockedDecrement', 'CopyFileA', 'GetModuleFileNameA', 'OpenProcess', 'LoadLibraryA', 'GetProcAddress', 'CloseHandle', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'VirtualAlloc', 'GetFileAttributesA', 'lstrcpyA', 'GetProcessHeap', 'DestroyIcon', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'ReuseDDElParam', 'LoadImageA', 'GetKeyNameTextA', 'MapVirtualKeyA', 'MonitorFromPoint', 'UpdateLayeredWindow', 'UnregisterClassA', 'DrawIconEx', 'DestroyAcceleratorTable', 'CreateAcceleratorTableA', 'ToAsciiEx', 'GetKeyboardLayout', 'GetKeyboardState', 'SetCursorPos', 'SetClassLongA', 'RegisterClipboardFormatA', 'GetIconInfo', 'CopyImage', 'LoadImageW', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'PtInRect', 'OffsetRect', 'CopyIcon', 'IsRectEmpty', 'CharUpperBuffA', 'DefFrameProcA', 'TranslateMDISysAccel', 'DefMDIChildProcA', 'IsClipboardFormatAvailable', 'GetDoubleClickTime', 'IsCharLowerA', 'MapVirtualKeyExA', 'DestroyCursor', 'SetRect', 'InflateRect', 'IntersectRect', 'UnionRect', 'SubtractRect', 'OpenClipboard', 'WindowFromPoint', 'SetParent', 'IsChild', 'GetTopWindow', 'ChildWindowFromPoint', 'ShowScrollBar', 'GetNextDlgTabItem', 'GetNextDlgGroupItem', 'SetCapture', 'GetCapture', 'KillTimer', 'SetTimer', 'EnableScrollBar', 'RedrawWindow', 'LockWindowUpdate', 'ShowOwnedPopups', 'IsWindowVisible', 'InvalidateRgn', 'InvalidateRect', 'GetUpdateRect', 'UpdateWindow', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'EndPaint', 'CharNextA', 'ScreenToClient', 'ClientToScreen', 'MapWindowPoints', 'GetClientRect', 'GetWindowRect', 'BringWindowToTop', 'GetWindowRgn', 'SetWindowRgn', 'IsZoomed', 'IsIconic', 'GetSystemMenu', 'DrawMenuBar', 'UnhookWindowsHookEx', 'LoadMenuW', 'LoadMenuA', 'RemoveMenu', 'ModifyMenuA', 'InsertMenuItemA', 'InsertMenuA', 'CharUpperA', 'GetMenuItemInfoA', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'EnableMenuItem', 'CheckMenuItem', 'AppendMenuA', 'DeleteMenu', 'IsMenu', 'CreatePopupMenu', 'CreateMenu', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawStateA', 'DrawIcon', 'InvertRect', 'FrameRect', 'FillRect', 'GetSysColorBrush', 'GetClassNameA', 'MessageBoxA', 'GetLastActivePopup', 'GetWindowThreadProcessId', 'GetKeyState', 'CallNextHookEx', 'PeekMessageA', 'GetCursorPos', 'SetWindowsHookExA', 'ValidateRect', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'SetMenuItemBitmaps', 'GetFocus', 'TabbedTextOutA', 'PostMessageA', 'EndDialog', 'GetDesktopWindow', 'GetActiveWindow', 'SetActiveWindow', 'IsWindow', 'EnableWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'RegisterWindowMessageA', 'MapDialogRect', 'SetWindowPos', 'GetWindow', 'SetWindowContextHelpId', 'GetParent', 'PostQuitMessage', 'DestroyMenu', 'LoadAcceleratorsW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'SystemParametersInfoA', 'RealChildWindowFromPoint', 'WaitMessage', 'CreateWindowExA', 'GetClassInfoExA', 'MonitorFromWindow', 'GetMonitorInfoA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'WinHelpA', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowPlacement', 'GetClassLongA', 'SetPropA', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'SetMenu', 'GetMenu', 'GetMessageTime', 'GetMessagePos', 'ShowWindow', 'MoveWindow', 'SetWindowLongA', 'GetDlgCtrlID', 'SetWindowTextA', 'IsDialogMessageA', 'SendDlgItemMessageA', 'CheckDlgButton', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetFocus', 'UnpackDDElParam', 'GetClipboardFormatNameA', 'SetRectEmpty', 'GetAsyncKeyState', 'MessageBeep', 'GetSubMenu', 'CopyAcceleratorTableA', 'LoadIconW', 'LoadIconA', 'LoadCursorW', 'PostThreadMessageA', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'NotifyWinEvent', 'GetForegroundWindow', 'SetForegroundWindow', 'HideCaret', 'BeginPaint', 'SendMessageA', 'ReleaseCapture', 'LoadCursorA', 'RegisterClassA', 'DefWindowProcA', 'GetClassInfoA', 'SetCursor', 'GetSysColor', 'GetSystemMetrics', 'SetPaletteEntries', 'GetPaletteEntries', 'CreatePalette', 'DeleteObject', 'GetStockObject', 'GetObjectA', 'CreateDIBSection', 'SelectObject', 'CreateCompatibleDC', 'DeleteDC', 'CreateCompatibleBitmap', 'CreateFontA', 'CreateFontIndirectA', 'CreatePatternBrush', 'CreateHatchBrush', 'GetNearestPaletteIndex', 'SetDIBColorTable', 'CreateSolidBrush', 'ExtCreatePen', 'CreatePen', 'GetObjectType', 'CreateBitmap', 'ExtTextOutA', 'EnumFontFamiliesExA', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'GetTextCharsetInfo', 'EnumFontFamiliesA', 'ExtSelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'LineTo', 'MoveToEx', 'IntersectClipRect', 'ExcludeClipRect', 'SelectClipRgn', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'RestoreDC', 'SaveDC', 'CopyMetaFileA', 'CreateRectRgn', 'CreateRectRgnIndirect', 'CreateEllipticRgn', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'SetRectRgn', 'CombineRgn', 'OffsetRgn', 'GetRgnBox', 'PtInRegion', 'CreateDCA', 'GetDeviceCaps', 'RealizePalette', 'GetBkColor', 'GetTextColor', 'GetMapMode', 'GetViewportOrgEx', 'GetViewportExtEx', 'GetWindowOrgEx', 'GetWindowExtEx', 'DPtoLP', 'LPtoDP', 'FillRgn', 'FrameRgn', 'PtVisible', 'RectVisible', 'Polyline', 'Ellipse', 'Polygon', 'Rectangle', 'PatBlt', 'BitBlt', 'StretchBlt', 'GetPixel', 'SetPixel', 'ExtFloodFill', 'TextOutA', 'GetTextExtentPoint32A', 'GetTextFaceA', 'GetTextMetricsA', 'Escape', 'GetBoundsRect', 'StartDocA', 'StartPage', 'EndPage', 'AbortDoc', 'EndDoc', 'SetPixelV', 'PolyBezier', 'RegEnumKeyA', 'SetThreadToken', 'RevertToSelf', 'OpenThreadToken', 'RegEnumValueA', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'GetLengthSid', 'OpenProcessToken', 'RegEnumKeyExA', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'DoDragDrop', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'OleLockRunning', 'CLSIDFromString', 'CreateStreamOnHGlobal', 'CoRegisterMessageFilter', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'OleGetClipboard', 'CLSIDFromProgID', 'CoCreateGuid', 'CoRevokeClassObject', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'StringFromGUID2', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'ReleaseStgMedium', 'CoTaskMemAlloc', 'StringFromCLSID', 'CoTaskMemFree', 'OleDuplicateData', 'CoCreateInstance', 'CoInitializeSecurity', 'CoInitializeEx', 'SysFreeString', 'SysAllocString', 'SystemTimeToVariantTime', 'VariantClear', 'VariantInit', 'VariantTimeToSystemTime', 'SysAllocStringLen', 'SysAllocStringByteLen', 'VariantChangeType', 'SysStringLen', 'OleCreateFontIndirect', 'SafeArrayDestroy', 'VariantCopy', 'VarBstrFromDate', 'GradientFill', 'AlphaBlend', 'TransparentBlt', 'ImageList_GetIconSize', 'InitCommonControlsEx', 'PathFindExtensionA', 'PathFindFileNameA', 'PathRemoveFileSpecW', 'PathIsUNCA', 'PathStripToRootA', 'GdipCreateBitmapFromStream', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdiplusStartup', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipAlloc', 'GdipFree', 'GdipDisposeImage', 'GdiplusShutdown', 'GdipCreateBitmapFromStreamICM', 'inet_addr', 'socket', 'WSAStartup', 'WSACleanup', 'closesocket', 'recv', 'connect', 'send', 'htons', 'CreateStdAccessibleObject', 'LresultFromObject', 'AccessibleObjectFromWindow', 'ImmReleaseContext', 'ImmGetContext', 'ImmGetOpenStatus', 'PlaySoundA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'GetFileTitleA', 'SHAppBarMessage', 'ShellExecuteA', 'DragQueryFileA', 'DragFinish', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHBrowseForFolderA', 'SHGetMalloc', 'SHGetPathFromIDListA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'GetParent', 'CreateFontIndirectA', 'QueryServiceConfigA', 'ShellExecuteA'], ['__vbaVarSub', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaVarVargNofree', '__vbaFreeVar', '__vbaAryMove', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaVarCmpNe', '__vbaRecDestruct', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaExitProc', '__vbaVarForInit', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaBoolVarNull', '_CIsin', '__vbaErase', '__vbaVarZero', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaVarLikeVar', '__vbaVarOr', '__vbaRedimPreserve', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaAryLock', '__vbaVarDup', '__vbaVarCopy', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaStrVarCopy', '_allmul', '_CItan', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaI4ErrVar', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '__vbaStrComp', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['CreateFileW', 'FindFirstFileW', 'FindClose', 'FindNextFileW', 'GetWindowsDirectoryW', 'WaitForSingleObject', 'GetModuleHandleW', 'GetTickCount', 'Sleep', 'CreateProcessA', 'GetModuleFileNameW', 'GetStartupInfoA', 'ReadFile', 'GetFileSize', 'DeleteFileA', 'CreateThread', 'GetProcAddress', 'LoadLibraryA', 'GetCurrentProcess', 'GetLastError', 'GetSystemInfo', 'GetModuleHandleA', 'GlobalAlloc', 'GlobalFree', 'GetTempFileNameA', 'CreateFileA', 'CloseHandle', 'GetVersionExA', 'CreateToolhelp32Snapshot', 'GetDiskFreeSpaceA', 'HeapReAlloc', 'Process32Next', 'GetCurrentDirectoryW', 'GetSystemDirectoryA', 'GetFileAttributesW', 'GetVolumeInformationA', 'OpenProcess', 'GetDriveTypeA', 'GetLogicalDrives', 'Process32First', 'GetDriveTypeW', 'GetComputerNameA', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetTempPathA', 'GetWindowRect', 'GetWindowDC', 'ReleaseDC', 'GetDesktopWindow', 'CreateDIBSection', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'BitBlt', 'SelectObject', 'GetTokenInformation', 'OpenProcessToken', 'GetUserNameA', 'CreateWellKnownSid', 'CheckTokenMembership', 'DuplicateToken', 'SHGetFolderPathW', 'CreateStreamOnHGlobal', '_snwprintf', '_wcsicmp', 'sprintf', 'memcpy', 'memset', 'InternetReadFile', 'InternetSetOptionA', 'HttpOpenRequestA', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'HttpQueryInfoA', 'InternetConnectA', 'GetAdaptersInfo', 'GdipSaveImageToStream', 'GdipGetImageEncodersSize', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncoders', 'GdiplusStartup', 'GetModuleFileNameExA', 'WNetCloseEnum', 'WNetOpenEnumW', 'WNetEnumResourceW', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '_adj_fdiv_m32', '__vbaCyAdd', '__vbaOnError', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaCyI4', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr'], ['CryptBinaryToStringA', 'GdipFree', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'ShellExecuteA', 'GetDesktopWindow'], ['StrFormatByteSizeA', 'StrToIntExA', 'PathRemoveArgsW', 'PathAddExtensionW', 'PathCombineW', 'PathIsURLW', 'SHRegEnumUSKeyW', 'PathIsRelativeW', 'PathQuoteSpacesA', 'SHRegQueryInfoUSKeyA', 'PathFindFileNameA', 'PathRemoveExtensionW', 'SHSetValueA', 'PathCompactPathW', 'PathRemoveArgsA', 'PathStripPathW', 'SHRegEnumUSKeyA', 'SHRegDeleteEmptyUSKeyA', 'PathCanonicalizeA', 'PathFindNextComponentA', 'PathCombineA', 'PathFindOnPathW', 'StrSpnW', 'PathAppendW', 'SHGetValueW', 'ChrCmpIW', 'PathSearchAndQualifyW', 'PathFindNextComponentW', 'StrCmpIW', 'SHCreateShellPalette', 'SHRegOpenUSKeyA', 'PathStripToRootW', 'PathCanonicalizeW', 'ChrCmpIA', 'PathMatchSpecW', 'PathIsUNCServerW', 'PathParseIconLocationA', 'SHDeleteValueW', 'StrIsIntlEqualW', 'PathIsSameRootW', 'PathRelativePathToA', 'SHDeleteEmptyKeyW', 'StrNCatW', 'StrToIntA', 'SHRegDeleteUSValueA', 'StrFromTimeIntervalW', 'PathIsUNCW', 'PathRenameExtensionA', 'StrCpyW', 'PathFindExtensionW', 'SHRegDeleteEmptyUSKeyW', 'PathSearchAndQualifyA', 'PathGetArgsW', 'PathStripToRootA', 'PathIsUNCServerA', 'PathRemoveFileSpecW', 'PathFindFileNameW', 'StrCmpW', 'StrTrimW', 'PathRelativePathToW', 'PathSkipRootW', 'PathRemoveBackslashW', 'SHRegCreateUSKeyW', 'StrTrimA', 'PathParseIconLocationW', 'SHRegGetBoolUSValueW', 'SHEnumValueA', 'PathCompactPathA', 'SHDeleteEmptyKeyA', 'StrCSpnIA', 'SHQueryValueExA', 'StrFormatByteSizeW', 'PathRemoveFileSpecA', 'PathSetDlgItemPathA', 'PathUnmakeSystemFolderW', 'StrPBrkW', 'StrCSpnW', 'PathIsPrefixW', 'SHRegWriteUSValueW', 'PathMakePrettyW', 'PathIsUNCServerShareW', 'PathIsFileSpecA', 'PathIsDirectoryW', 'PathSkipRootA', 'PathFindOnPathA', 'PathGetArgsA', 'PathIsSystemFolderW', 'PathBuildRootA', 'SHDeleteValueA', 'SHRegWriteUSValueA', 'PathMakeSystemFolderA', 'PathIsDirectoryA', 'PathUnquoteSpacesA', 'PathIsFileSpecW', 'PathCompactPathExA', 'PathMakePrettyA', 'PathCommonPrefixW', 'StrDupW', 'StrNCatA', 'PathFindExtensionA', 'PathCompactPathExW', 'SHDeleteKeyA', 'SHRegQueryUSValueA', 'SHEnumValueW', 'PathQuoteSpacesW', 'StrCatW', 'SHOpenRegStreamA', 'SHRegSetUSValueW', 'StrIsIntlEqualA', 'SHRegGetUSValueW', 'PathRemoveExtensionA', 'SHRegEnumUSValueW', 'StrToIntW', 'PathGetDriveNumberA', 'PathIsURLA', 'SHEnumKeyExA', 'SHDeleteKeyW', 'PathRenameExtensionW', 'PathAddExtensionA', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '__p__commode', '__p__fmode', '__set_app_type', '_controlfp', '_except_handler3', 'VarBstrFromCy', 'SafeArrayDestroyData', 'VarDecCmp', 'VarUI2FromR8', 'VarBoolFromCy', 'VarDateFromUdate', 'SafeArrayCreateVector', 'VarBoolFromR8', 'VarDecMul', 'RegisterTypeLib', 'VarBstrCat', 'UnRegisterTypeLib', 'VarI2FromI1', 'VarR8Pow', 'OleSavePictureFile', 'VarCyFromDisp', 'VarEqv', 'SystemTimeToVariantTime', 'VarR8FromDate', 'SysReAllocString', 'VarR4CmpR8', 'SafeArrayGetIID', 'VarBoolFromI2', 'VARIANT_UserMarshal', 'VarCyFromDec', 'LoadTypeLib', 'SysStringLen', 'BSTR_UserUnmarshal', 'DosDateTimeToVariantTime', 'VarI2FromR4', 'GetErrorInfo', 'VarUI4FromStr', 'VarCat', 'VarBoolFromStr', 'VarUI1FromBool', 'VarUI1FromUI2', 'OleLoadPictureEx', 'SafeArrayAccessData', 'GetRecordInfoFromTypeInfo', 'VarXor', 'VarBoolFromUI4', 'SafeArrayGetElemsize', 'VarUI2FromBool', 'VarDecFromUI4', 'VarDecFromR8', 'VarDecFromI4', 'LoadTypeLibEx', 'VarCyFromI1', 'SafeArrayAllocDescriptorEx', 'ImageList_DragShowNolock', 'UninitializeFlatSB', 'FlatSB_ShowScrollBar', 'ImageList_GetIconSize', 'CreateStatusWindowW', 'ImageList_GetImageCount', 'ImageList_DragLeave', 'CreatePropertySheetPageW', 'ImageList_SetIconSize', 'ImageList_GetBkColor', 'DestroyPropertySheetPage', 'PropertySheetA', 'CoRegisterSurrogate', 'CoTaskMemRealloc', 'CreateItemMoniker', 'CoGetMalloc', 'CoInitialize', 'CoReleaseMarshalData', 'CLIPFORMAT_UserUnmarshal', 'CoGetInterfaceAndReleaseStream', 'CoGetPSClsid', 'CoCreateGuid', 'GetOpenFileNameA', 'FindTextA', 'GetStartupInfoA', 'GetModuleHandleA', 'SetJobA', 'AddPrinterW', 'SetPrinterDataExA', 'DeletePrinterKeyW', 'DeletePrinter', 'GetPrinterDriverW', 'AddMonitorW', 'PrinterProperties', 'FreePrinterNotifyInfo', 'StartDocPrinterA', 'GetJobA', 'DeletePrinterConnectionA', 'AdvancedDocumentPropertiesA', 'DeletePortW', 'EnumPortsA', 'DeletePrinterDriverExW', 'SHGetPathFromIDListA', 'SHGetFileInfoA', 'SHGetInstanceExplorer', 'SHGetSpecialFolderLocation', 'Shell_NotifyIconA', 'SHFileOperationW', 'ShellExecuteA'], ['RtlUnwind', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'TerminateProcess', 'HeapFree', 'HeapAlloc', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'Sleep', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedExchange', 'GetCurrentProcess', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'WritePrivateProfileStringA', 'GlobalFlags', 'lstrcpynA', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'LocalFree', 'MulDiv', 'SetLastError', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'FreeLibrary', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'GetModuleHandleA', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'CloseHandle', 'GetModuleFileNameA', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'lstrlenA', 'lstrcatA', 'GetLastError', 'LoadLibraryA', 'SetHandleCount', 'GetProcAddress', 'CopyRect', 'AdjustWindowRectEx', 'SetFocus', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'UpdateWindow', 'IsDialogMessageA', 'SetWindowTextA', 'ShowWindow', 'ClientToScreen', 'GetDC', 'ReleaseDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'LoadCursorA', 'GetClassNameA', 'PtInRect', 'GetSysColorBrush', 'LoadStringA', 'DestroyMenu', 'GetTopWindow', 'GetCapture', 'WinHelpA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'SetWindowLongA', 'SetWindowPos', 'RegisterWindowMessageA', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'GetCursorPos', 'SetWindowsHookExA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'MessageBoxA', 'SetCursor', 'PostQuitMessage', 'PostMessageA', 'wsprintfA', 'LoadIconA', 'EnableWindow', 'GetClientRect', 'IsIconic', 'SendMessageA', 'DrawIcon', 'GetSystemMetrics', 'UnregisterClassA', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetObjectA', 'DeleteObject', 'GetDeviceCaps', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'DeleteDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'recv', 'closesocket', 'socket', 'htons', 'ioctlsocket', 'connect', 'WSAStartup', 'send', 'InternetCloseHandle', 'InternetReadFile', 'FtpGetFileSize', 'InternetWriteFile', 'InternetOpenA', 'InternetConnectA', 'FtpOpenFileA', 'InternetCrackUrlA'], ['RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'GetLastError', 'GetSystemDirectoryW', 'FreeLibrary', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryExW', 'GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'WerRegisterMemoryBlock', 'VirtualProtect', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'HeapSetInformation', 'GetProcessHeap', 'QueryPerformanceCounter', '_except_handler4_common', '__telemetry_main_return_trigger', 'memset', '__telemetry_main_invoke_trigger', 'wcsncat_s', '_set_fmode', '__stdio_common_vsnwprintf_s', '__p__commode', '_initialize_onexit_table', 'terminate', '_c_exit', '_cexit', '_crt_atexit', '_exit', 'exit', '_initterm_e', '_initterm', '_get_narrow_winmain_command_line', '_initialize_narrow_environment', '_configure_narrow_argv', '_controlfp_s', '_set_app_type', '_seh_filter_exe', '_register_onexit_function', '_register_thread_local_exe_atexit_callback', '__setusermatherr', '_configthreadlocale', '_set_new_mode'], ['ShellExecuteW', 'SHBrowseForFolderW', 'SHGetSpecialFolderPathW', 'SHGetPathFromIDListW', 'SHGetFileInfoW', 'ShellExecuteExW', 'SHGetMalloc', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'DeleteDC', 'GetCurrentObject', 'StretchBlt', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'SetStretchBltMode', 'GetObjectW', 'FreeSid', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'EnableMenuItem', 'IsWindow', 'EnableWindow', 'MessageBeep', 'LoadIconW', 'LoadImageW', 'SetWindowsHookExW', 'PtInRect', 'CallNextHookEx', 'DefWindowProcW', 'CallWindowProcW', 'DrawIconEx', 'DialogBoxIndirectParamW', 'GetWindow', 'ClientToScreen', 'GetDC', 'DrawTextW', 'ShowWindow', 'SystemParametersInfoW', 'GetSystemMetrics', 'SetFocus', 'UnhookWindowsHookEx', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'GetSystemMenu', 'GetDlgItem', 'GetKeyState', 'MessageBoxA', 'wsprintfA', 'SetWindowPos', 'GetWindowDC', 'ReleaseDC', 'CopyImage', 'GetClassNameA', 'GetWindowLongW', 'GetMenu', 'GetSysColor', 'SetWindowTextW', 'GetParent', 'GetWindowRect', 'ScreenToClient', 'GetWindowTextLengthW', 'GetWindowTextW', 'CreateWindowExW', 'CreateWindowExA', 'GetMessageW', 'DispatchMessageW', 'KillTimer', 'SetTimer', 'CharUpperW', 'SendMessageW', 'EndDialog', 'wsprintfW', 'wvsprintfW', 'GetClientRect', 'DestroyWindow', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoCreateInstance', 'SysFreeString', 'VariantClear', 'SysAllocStringLen', 'OleLoadPicture', 'SysAllocString', 'SetFileTime', 'SetEndOfFile', 'GetFileInformationByHandle', 'SetUnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetTickCount', 'WaitForMultipleObjects', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'FormatMessageW', 'lstrcpyW', 'LocalFree', 'IsBadReadPtr', 'SuspendThread', 'TerminateThread', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'GetVersionExW', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetProcessWorkingSetSize', 'SetCurrentDirectoryW', 'GetDriveTypeW', 'CreateFileW', 'GetCommandLineW', 'GetStartupInfoW', 'CreateProcessW', 'CreateJobObjectW', 'AssignProcessToJobObject', 'CreateIoCompletionPort', 'SetInformationJobObject', 'ResumeThread', 'GetQueuedCompletionStatus', 'GetExitCodeProcess', 'SetEnvironmentVariableW', 'GetTempPathW', 'CloseHandle', 'VirtualAlloc', 'GlobalMemoryStatusEx', 'lstrlenW', 'GetSystemTimeAsFileTime', 'ExpandEnvironmentStringsW', 'CompareFileTime', 'GetEnvironmentVariableW', 'lstrcmpiW', 'GetLocaleInfoW', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLCID', 'GlobalAlloc', 'GlobalFree', 'MulDiv', 'FindResourceExA', 'SizeofResource', 'LoadResource', 'LockResource', 'GetProcAddress', 'lstrcmpiA', 'LoadLibraryA', 'SetThreadLocale', 'GetModuleHandleW', 'VirtualFree', 'FindFirstFileW', 'lstrcmpW', 'DeleteFileW', 'FindNextFileW', 'ExitProcess', 'lstrcatW', 'AddVectoredExceptionHandler', 'RemoveVectoredExceptionHandler', 'GetDiskFreeSpaceExW', 'SetFileAttributesW', 'SetLastError', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'SystemTimeToFileTime', 'GetLocalTime', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFileAttributesW', 'CreateDirectoryW', 'lstrlenA', 'WriteFile', 'GetStdHandle', 'RemoveDirectoryW', 'FindClose', 'GetCurrentProcessId', '__CxxFrameHandler', '_purecall', '??3@YAXPEAX@Z', 'memcmp', '??2@YAPEAX_K@Z', 'memmove', 'free', 'memcpy', '_wtol', 'malloc', 'wcsncmp', 'strncmp', '_wcsnicmp', 'memset', '?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z', '_beginthreadex', 'wcscmp', '_CxxThrowException', '__C_specific_handler', '_unlock', '__dllonexit', '_lock', '_onexit', '??1type_info@@UEAA@XZ', '__getmainargs', '_XcptFilter', '_exit', '_ismbblead', '_cexit', 'exit', '_acmdln', '_initterm', '_amsg_exit', '__setusermatherr', '_commode', '_fmode', '__set_app_type', '?terminate@@YAXXZ'], ['__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__wgetmainargs', '_wcmdln', 'exit', '_cexit', '_XcptFilter', '_exit', '__p__fmode', '_onexit', '__dllonexit', 'calloc', 'realloc', '_msize', 'strlen', 'qsort', '_wcslwr', '_itow', '_memicmp', 'wcstoul', 'wcsrchr', '__set_app_type', '_controlfp', '_except_handler3', '_c_exit', 'swscanf', '_wcsicmp', 'malloc', '_ultow', 'towupper', 'wcscmp', 'free', 'modf', '??2@YAPAXI@Z', '??3@YAXPAX@Z', 'wcslen', '_wtoi', 'memcmp', '_purecall', 'wcschr', 'memcpy', 'wcscpy', 'memset', 'wcscat', '_snwprintf', 'wcsncat', 'CreateStatusWindowW', 'CreateToolbarEx', 'ImageList_SetImageCount', 'ImageList_AddMasked', 'ImageList_Create', 'VerQueryValueW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'WNetGetUniversalNameW', 'GetCurrentProcess', 'ReadProcessMemory', 'GetCurrentProcessId', 'ExitProcess', 'Sleep', 'GlobalFree', 'CreateProcessW', 'SetErrorMode', 'DeleteFileW', 'GetCurrentDirectoryW', 'GetStdHandle', 'GetPrivateProfileStringW', 'EnumResourceNamesW', 'OpenProcess', 'EnumResourceTypesW', 'GetModuleHandleA', 'GetStartupInfoW', 'FileTimeToSystemTime', 'GetPrivateProfileIntW', 'WritePrivateProfileStringW', 'GetTempPathW', 'WideCharToMultiByte', 'LoadLibraryExW', 'GlobalUnlock', 'GetFileAttributesW', 'CompareFileTime', 'GetSystemTimeAsFileTime', 'FreeLibrary', 'SystemTimeToFileTime', 'LoadLibraryW', 'GetProcAddress', 'WaitForSingleObject', 'SetEvent', 'GetModuleHandleW', 'CreateFileW', 'GetLongPathNameW', 'CreateEventW', 'CloseHandle', 'CreateThread', 'ExpandEnvironmentStringsW', 'GetLastError', 'GetLocaleInfoW', 'FindNextFileW', 'SizeofResource', 'GlobalLock', 'FormatMessageW', 'GetDateFormatW', 'GetTempFileNameW', 'GetVersionExW', 'FindClose', 'GetFileSize', 'FindFirstFileW', 'GetTimeFormatW', 'GetWindowsDirectoryW', 'FileTimeToLocalFileTime', 'ReadFile', 'GetModuleFileNameW', 'WriteFile', 'GetNumberFormatW', 'LocalFree', 'LockResource', 'lstrcpyW', 'FindResourceW', 'lstrlenW', 'LoadResource', 'GlobalAlloc', 'SystemTimeToTzSpecificLocalTime', 'SetForegroundWindow', 'CallWindowProcW', 'CreatePopupMenu', 'RegisterWindowMessageW', 'KillTimer', 'GetKeyState', 'DeleteMenu', 'SetCursor', 'LoadCursorW', 'GetSysColorBrush', 'ShowWindow', 'RegisterClipboardFormatW', 'SetWindowLongW', 'EndPaint', 'GetDlgItem', 'InvalidateRect', 'GetWindow', 'DrawFrameControl', 'SetDlgItemInt', 'SetWindowTextW', 'BeginPaint', 'UpdateWindow', 'GetClientRect', 'SetDlgItemTextW', 'GetDlgItemTextW', 'GetSystemMetrics', 'DeferWindowPos', 'CreateWindowExW', 'GetWindowRect', 'GetDlgItemInt', 'SendDlgItemMessageW', 'EndDialog', 'SetMenu', 'SetWindowPos', 'GetWindowPlacement', 'LoadAcceleratorsW', 'PostMessageW', 'DefWindowProcW', 'SendMessageW', 'TranslateAcceleratorW', 'RegisterClassW', 'MessageBoxW', 'LoadImageW', 'GetWindowLongW', 'EndDeferWindowPos', 'BeginDeferWindowPos', 'SetFocus', 'EnableMenuItem', 'InsertMenuItemW', 'ReleaseDC', 'GetClassNameW', 'OpenClipboard', 'MoveWindow', 'GetMenuStringW', 'GetMenuItemCount', 'CheckMenuItem', 'CloseClipboard', 'GetCursorPos', 'GetParent', 'GetSysColor', 'SetClipboardData', 'EnableWindow', 'MapWindowPoints', 'GetMenu', 'GetSubMenu', 'GetDC', 'EmptyClipboard', 'ModifyMenuW', 'GetMenuItemInfoW', 'GetDlgCtrlID', 'DestroyMenu', 'DialogBoxParamW', 'CreateDialogParamW', 'DestroyWindow', 'EnumChildWindows', 'LoadStringW', 'GetDesktopWindow', 'GetWindowTextW', 'LoadMenuW', 'LoadIconW', 'DestroyIcon', 'AppendMenuW', 'TrackPopupMenu', 'PostQuitMessage', 'GetMessageW', 'DispatchMessageW', 'IsDialogMessageW', 'TranslateMessage', 'SetTimer', 'DrawTextExW', 'ChildWindowFromPoint', 'SetBkMode', 'CreateFontIndirectW', 'SetTextColor', 'DeleteObject', 'SetBkColor', 'GetStockObject', 'GetTextExtentPoint32W', 'SelectObject', 'GetDeviceCaps', 'FindTextW', 'GetOpenFileNameW', 'GetSaveFileNameW', 'GetFileSecurityW', 'Shell_NotifyIconW', 'SHGetDesktopFolder', 'SHBindToParent', 'SHGetMalloc', 'ShellExecuteExW', 'SHGetFileInfoW', 'ShellExecuteW', 'CoUninitialize', 'CoInitialize'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaLsetFixstr', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaVarXor', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '__vbaI2I4', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '__vbaDerefAry1', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaAryLock', '__vbaStrToAnsi', '__vbaVarMod', '__vbaFpI4', '__vbaVarLateMemCallLd', '__vbaLateMemCallLd', '__vbaVarSetObjAddref', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaAryUnlock', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaExitProc', '__vbaStrLike', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaErase', '__vbaVarZero', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaRedimPreserve', '_adj_fpatan', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', '__vbaObjIs', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaUbound', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaAryLock', '__vbaVarDup', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaStrVarCopy', '_allmul', '_CItan', '__vbaAryUnlock', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'GetSaveFileNameA', 'DeleteDC', 'OleInitialize', 'VariantInit', 'SHGetMalloc', 'GetDC'], ['IpRenewAddress', 'RtlInterlockedPopEntrySList', 'InternetQueryDataAvailable', 'InternetSetCookieA', 'acmStreamSize', 'acmDriverRemove', 'RpcMgmtEnableIdleCleanup', 'I_RpcMapWin32Status', 'NdrStubCall2', 'SHDeleteKeyW', 'SHRegEnumUSValueW', 'CopyImage', 'DestroyWindow', 'DrawTextW', 'BroadcastSystemMessageA', 'IsProcessDPIAware', 'PdhBrowseCountersW', 'CM_Locate_DevNodeW', 'SetupDiDrawMiniIcon', 'CertEnumCRLsInStore', 'CertSerializeCertificateStoreElement', 'mixerGetDevCapsW', 'GetObjectType', 'wprintf', 'EncryptMessage', 'VarR8FromUI4', 'VarDateFromR8', 'AddAce', 'CloseEncryptedFileRaw', 'GetComputerNameExW', 'QueueUserWorkItem', 'AttachConsole', 'SizeofResource', 'lstrlenA', 'Thread32Next', 'FindFirstFileNameTransactedW', 'SetSystemTimeAdjustment', 'VirtualProtectEx', 'OpenThread', 'GetNativeSystemInfo', 'SetEnvironmentVariableA', 'ExpandEnvironmentStringsA', 'GetExitCodeThread', 'Process32Next', 'ReadFile', 'CreateDirectoryExW', 'ExtractAssociatedIconW', 'HICON_UserMarshal', 'CoGetObjectContext', 'CoGetMalloc', 'OleCreate'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaObjVar', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaLateMemCall', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['OleIsRunning', 'OleRun', 'HBITMAP_UserFree', 'CopyBindInfo', 'HlinkNavigateString', 'ReleaseBindInfo', 'MkParseDisplayNameEx', 'HlinkSimpleNavigateToMoniker', 'EndPagePrinter', 'ConnectToPrinterDlg', 'AddPrinterDriverExW', 'ExtDeviceMode', 'PdhCollectQueryData', 'PdhGetDefaultPerfObjectW', 'WNetGetResourceParentW', 'WNetAddConnectionA', 'WNetEnumResourceW', 'WNetGetResourceParentA', 'WNetCancelConnectionW', 'WNetGetUserW', 'EditStreamSetName', 'AVIStreamSetFormat', 'EditStreamClone', 'DrawDibOpen', 'UnloadPerfCounterTextStringsA', 'LoadPerfCounterTextStringsA'], ['HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SetEnvironmentVariableA', 'InterlockedExchange', 'HeapReAlloc', 'GetCommandLineA', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'HeapAlloc', 'RtlUnwind', 'HeapFree', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'WriteFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'LeaveCriticalSection', 'InterlockedIncrement', 'FindResourceExA', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'lstrcmpA', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'InterlockedDecrement', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'MulDiv', 'FormatMessageA', 'lstrcpynA', 'VirtualProtect', 'SizeofResource', 'ExitProcess', 'GetFileSize', 'GlobalAlloc', 'GlobalFree', 'ReadFile', 'GlobalUnlock', 'GlobalReAlloc', 'SetFilePointer', 'CreateFileA', 'CloseHandle', 'GlobalLock', 'GetLastError', 'FindResourceA', 'LoadResource', 'LockResource', 'LocalAlloc', 'LocalFree', 'lstrlenA', 'lstrcmpiA', 'GetStringTypeExA', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'MultiByteToWideChar', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetVersionExA', 'SetUnhandledExceptionFilter', 'PostQuitMessage', 'WindowFromPoint', 'KillTimer', 'SetTimer', 'SetRect', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'InflateRect', 'LoadMenuA', 'DestroyMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'SetCursor', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'SetMenu', 'RedrawWindow', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'BringWindowToTop', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'wsprintfA', 'SetWindowTextA', 'IsDialogMessageA', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'RegisterWindowMessageA', 'WinHelpA', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'DestroyIcon', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'IsWindow', 'IsChild', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'LoadIconA', 'PeekMessageA', 'MapWindowPoints', 'MessageBoxA', 'TrackPopupMenu', 'GetKeyState', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'LockWindowUpdate', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'SetForegroundWindow', 'IsWindowVisible', 'GetMenu', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetClassInfoA', 'SetCapture', 'GetDCEx', 'RegisterClassA', 'UnregisterClassA', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'CopyRect', 'PtInRect', 'GetMenuItemInfoA', 'LoadCursorA', 'GetSysColorBrush', 'GetClassLongA', 'ShowOwnedPopups', 'ShowWindow', 'UpdateWindow', 'IsWindowEnabled', 'GetDlgItem', 'GetParent', 'GetWindowLongA', 'PostMessageA', 'GetWindowRect', 'SetFocus', 'GetFocus', 'GetAsyncKeyState', 'SetActiveWindow', 'GetActiveWindow', 'GetCapture', 'SetWindowPos', 'MapDialogRect', 'GetSubMenu', 'GetWindow', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'CreateSolidBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'StretchDIBits', 'GetCharWidthA', 'CreateFontA', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetBkColor', 'EnumFontFamiliesExA', 'GetStockObject', 'CreatePatternBrush', 'DeleteDC', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'CreateRectRgn', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'PatBlt', 'CreateDIBitmap', 'SelectClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'BitBlt', 'DeleteObject', 'CreatePalette', 'SelectPalette', 'RealizePalette', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegSetValueA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'SetFileSecurityA', 'GetFileSecurityA', 'RegCreateKeyA', 'RegCloseKey', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PropertySheetA', 'DestroyPropertySheetPage', 'CreatePropertySheetPageA', 'ImageList_Draw', 'ImageList_GetImageInfo', 'ImageList_Destroy', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['FreeSid', 'DeleteDC', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'free', 'CoInitialize', 'SysAllocString', 'SHGetMalloc', 'GetDC'], ['SetupDiEnumDriverInfoW', 'I_RpcGetBufferWithObject', 'RpcMgmtEpEltInqBegin', 'GetROP2', 'EndDoc', 'SHGetFolderPathA', 'PathCanonicalizeA', 'fputws', 'JetSetColumns', 'CryptAcquireContextW', 'ICSeqCompressFrameStart', 'VarBoolFromI8', 'VariantClear', 'EmptyClipboard', 'EnableMenuItem', 'SetPhysicalCursorPos', 'RealChildWindowFromPoint', 'GetParent', 'IsProcessDPIAware', 'CountClipboardFormats', 'mouse_event', 'IsHungAppWindow', 'ReuseDDElParam', 'GetMenuState', 'SetWindowPos', 'GetCaretBlinkTime', 'CloseClipboard', 'DestroyCaret', 'TranslateAcceleratorA', 'IsCharAlphaW', 'GetClipboardData', 'Heap32ListFirst', 'GetOEMCP', 'SetSystemTimeAdjustment', 'CreateMemoryResourceNotification', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetComputerNameExA', 'GetSystemDefaultLCID'], ['SetFileAttributesA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'RtlUnwind', 'HeapAlloc', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'GetStartupInfoA', 'GetCommandLineA', 'ExitProcess', 'RaiseException', 'HeapFree', 'TerminateProcess', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'HeapSize', 'GetACP', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'VirtualAlloc', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'SetFileTime', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'Sleep', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetVersionExA', 'SetConsoleCtrlHandler', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetLocaleInfoW', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetFileTime', 'GetProfileStringA', 'InterlockedExchange', 'GetFileAttributesA', 'GetShortPathNameA', 'GetThreadLocale', 'GetStringTypeExA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'SetErrorMode', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'SizeofResource', 'GlobalFlags', 'lstrcpynA', 'FormatMessageA', 'LocalFree', 'MulDiv', 'SetLastError', 'CreateEventA', 'SuspendThread', 'SetThreadPriority', 'ResumeThread', 'SetEvent', 'WaitForSingleObject', 'GetModuleFileNameA', 'lstrcmpA', 'GetCurrentThread', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'InterlockedDecrement', 'InterlockedIncrement', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'lstrcmpiA', 'GlobalUnlock', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcpyA', 'GetModuleHandleA', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'WinExec', 'GetWindowsDirectoryA', 'LoadLibraryA', 'FreeLibrary', 'GetFileSize', 'ReadFile', 'IsBadWritePtr', 'CreateFileA', 'WriteFile', 'FlushFileBuffers', 'CloseHandle', 'GetLastError', 'LoadLibraryW', 'GetProcAddress', 'GlobalAlloc', 'GlobalSize', 'GlobalLock', 'GetEnvironmentStrings', 'SetFocus', 'GetFocus', 'DispatchMessageA', 'PeekMessageA', 'MapWindowPoints', 'SendDlgItemMessageA', 'UpdateWindow', 'PostMessageA', 'CheckDlgButton', 'CheckRadioButton', 'GetDlgItemInt', 'GetDlgItemTextA', 'SetDlgItemInt', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'ShowWindow', 'EnableMenuItem', 'CheckMenuItem', 'SetMenuItemBitmaps', 'ModifyMenuA', 'GetMenuState', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'wvsprintfA', 'CharToOemA', 'OemToCharA', 'PostQuitMessage', 'ShowOwnedPopups', 'GetCursorPos', 'ValidateRect', 'TranslateMessage', 'GetMessageA', 'LoadStringA', 'DestroyMenu', 'ClientToScreen', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'WindowFromPoint', 'GetClassNameA', 'GetDesktopWindow', 'GetDialogBaseUnits', 'GetSysColorBrush', 'SetCapture', 'ReleaseCapture', 'WaitMessage', 'GetWindowThreadProcessId', 'InsertMenuA', 'DeleteMenu', 'GetMenuStringA', 'SetRectEmpty', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'BringWindowToTop', 'CharUpperA', 'IsWindowVisible', 'ScrollWindow', 'GetScrollInfo', 'SetScrollInfo', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'MessageBoxA', 'IsChild', 'GetCapture', 'AdjustWindowRectEx', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetMenuItemID', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'GetKeyState', 'DefWindowProcA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetLastActivePopup', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindow', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetNextDlgTabItem', 'EndDialog', 'GetActiveWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowLongA', 'GetDlgItem', 'IsWindowEnabled', 'LoadMenuA', 'GetSubMenu', 'DrawFocusRect', 'LoadCursorA', 'CopyIcon', 'GetWindowRect', 'GetDC', 'ReleaseDC', 'InflateRect', 'GetSysColor', 'SetCursor', 'GetMessagePos', 'ScreenToClient', 'PtInRect', 'SetTimer', 'MessageBeep', 'GetParent', 'SetWindowLongA', 'RedrawWindow', 'IsWindow', 'InvalidateRect', 'KillTimer', 'DestroyCursor', 'EnableWindow', 'CloseClipboard', 'GetClipboardData', 'UnregisterClassA', 'HideCaret', 'ShowCaret', 'RegisterWindowMessageA', 'IsIconic', 'GetSystemMetrics', 'GetClientRect', 'DrawIcon', 'GetSystemMenu', 'AppendMenuA', 'SendMessageA', 'InSendMessage', 'CreateWindowExW', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'WinHelpA', 'EndDeferWindowPos', 'LoadIconA', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'IsWindowUnicode', 'CharNextA', 'DefDlgProcA', 'ExcludeUpdateRgn', 'CreateWindowExA', 'DeleteDC', 'StartDocA', 'SaveDC', 'RestoreDC', 'SelectObject', 'SelectPalette', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'SetArcDirection', 'CreateBitmap', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'DeleteObject', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetDeviceCaps', 'GetViewportExtEx', 'GetWindowExtEx', 'CreatePen', 'ExtCreatePen', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetMapMode', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'CreateRectRgnIndirect', 'DPtoLP', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'GetTextMetricsA', 'GetCharWidthA', 'GetTextExtentPoint32A', 'CreateSolidBrush', 'GetStockObject', 'GetObjectA', 'PolyDraw', 'CreateDIBitmap', 'GetTextExtentPointA', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectA', 'GetFileTitleA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegQueryValueA', 'RegOpenKeyA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'DragQueryFileA', 'DragFinish', 'DragAcceptFiles', 'ShellExecuteA', 'SHGetFileInfoA'], ['GetExitCodeThread', 'Sleep', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'GetTempPathW', 'GetFileAttributesW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FindFirstFileW', 'FindClose', 'CompareFileTime', 'CreateDirectoryW', 'ExpandEnvironmentStringsW', 'lstrlenA', 'lstrcmpW', 'GetSystemTimeAsFileTime', 'DeleteFileW', 'FindNextFileW', 'RemoveDirectoryW', 'GetEnvironmentVariableW', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLCID', 'lstrcmpiW', 'GetLocaleInfoW', 'LoadLibraryA', 'SetEnvironmentVariableW', 'GetModuleHandleW', 'GetCommandLineW', 'GetModuleFileNameW', 'SetProcessWorkingSetSize', 'GetCurrentProcess', 'GetDriveTypeW', 'CreateFileW', 'WriteFile', 'CreateEventW', 'SetEvent', 'ResetEvent', 'CreateThread', 'InitializeCriticalSection', 'GetCurrentThreadId', 'MulDiv', 'FindResourceA', 'LoadResource', 'LockResource', 'GetSystemDirectoryW', 'SuspendThread', 'TerminateThread', 'ResumeThread', 'FormatMessageW', 'lstrcpyW', 'LocalFree', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'VirtualFree', 'VirtualAlloc', 'GetFileSize', 'SetFilePointer', 'ReadFile', 'SetFileTime', 'SetEndOfFile', 'GetFileInformationByHandle', 'WaitForMultipleObjects', 'InterlockedExchange', 'InterlockedCompareExchange', 'GetStartupInfoA', 'SetUnhandledExceptionFilter', 'GetModuleHandleA', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'TerminateProcess', 'UnhandledExceptionFilter', 'SystemTimeToFileTime', 'GetLocalTime', 'SetLastError', 'SetFileAttributesW', 'GetLastError', 'CloseHandle', 'WaitForSingleObject', 'GetProcAddress', 'lstrlenW', 'ClientToScreen', 'DialogBoxIndirectParamW', 'MessageBeep', 'DefWindowProcW', 'CallWindowProcW', 'GetWindowDC', 'DrawIconEx', 'GetSystemMenu', 'EnableMenuItem', 'EnableWindow', 'wvsprintfW', 'ReleaseDC', 'SystemParametersInfoW', 'SetWindowsHookExW', 'CallNextHookEx', 'PtInRect', 'GetSystemMetrics', 'GetClientRect', 'GetDlgItem', 'IsWindow', 'GetKeyState', 'MessageBoxA', 'DrawTextW', 'GetDC', 'ShowWindow', 'GetWindow', 'LoadImageW', 'LoadIconW', 'SetWindowPos', 'SetWindowTextW', 'ScreenToClient', 'SetFocus', 'UnhookWindowsHookEx', 'KillTimer', 'SetWindowLongW', 'GetWindowLongW', 'GetWindowRect', 'GetParent', 'GetWindowTextW', 'GetWindowTextLengthW', 'CharUpperW', 'wsprintfW', 'SendMessageW', 'EndDialog', 'GetDeviceCaps', 'SelectObject', 'DeleteObject', 'GetObjectW', 'CreateFontIndirectW', 'AllocateAndInitializeSid', 'FreeSid', 'CheckTokenMembership', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHGetSpecialFolderPathW', 'ShellExecuteExW', 'SHGetMalloc', 'CoCreateInstance', 'VariantClear', 'SysAllocStringLen', 'wcsncmp', '_wgetenv', '?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z', '_beginthreadex', 'free', 'malloc', 'wcsstr', '_unlock', '__dllonexit', '_lock', '_onexit', '??1type_info@@UAE@XZ', '__getmainargs', '_cexit', '_exit', '_XcptFilter', '_ismbblead', 'exit', '_acmdln', '_initterm', '_amsg_exit', '__setusermatherr', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler4_common', '?terminate@@YAXXZ', '_controlfp', 'memmove', '_wcsnicmp', 'wcsncpy', 'strncpy', '_purecall', '_wtol', '??2@YAPAXI@Z', '??3@YAXPAX@Z', '_CxxThrowException', 'memset', 'memcpy', '__CxxFrameHandler3'], ['CompareFileTime', 'SearchPathA', 'GetShortPathNameA', 'GetFullPathNameA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'GetLastError', 'CreateDirectoryA', 'SetFileAttributesA', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'GetWindowsDirectoryA', 'SetFileTime', 'GetCommandLineA', 'SetErrorMode', 'LoadLibraryA', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'lstrlenA', 'lstrcatA', 'GetSystemDirectoryA', 'GetVersion', 'CloseHandle', 'lstrcmpiA', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'GlobalFree', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GetModuleHandleA', 'LoadLibraryExA', 'GetProcAddress', 'FreeLibrary', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'WriteFile', 'ReadFile', 'SetFilePointer', 'MulDiv', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'DeleteFileA', 'GetTempPathA', 'EndDialog', 'ScreenToClient', 'GetWindowRect', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'RegisterClassA', 'OpenClipboard', 'TrackPopupMenu', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'wvsprintfA', 'DispatchMessageA', 'PeekMessageA', 'DestroyWindow', 'CreateDialogParamA', 'SetTimer', 'SetWindowTextA', 'PostQuitMessage', 'ShowWindow', 'wsprintfA', 'SendMessageTimeoutA', 'FindWindowExA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'EmptyClipboard', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongA', 'LoadImageA', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndPaint', 'SetForegroundWindow', 'SetBkColor', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectA', 'SetBkMode', 'SetTextColor', 'SelectObject', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'SHGetSpecialFolderLocation', 'RegQueryValueExA', 'RegSetValueExA', 'RegEnumKeyA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegCreateKeyExA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ChooseColorA', 'Pie', 'OleRun', 'VariantChangeType', 'RasHangUpA', 'ShellExecuteA', 'GetDC', 'InternetOpenA', 'waveOutOpen', 'ClosePrinter', 'recvfrom'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutRestart', 'waveOutPrepareHeader', 'WSACleanup', 'inet_ntoa', 'closesocket', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'CreateMutexA', 'ReleaseMutex', 'SuspendThread', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'TerminateThread', 'GetVersion', 'GetTimeZoneInformation', 'SetLastError', 'LoadLibraryExA', 'GetWindowsDirectoryA', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'lstrlenW', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'InterlockedExchange', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetUserDefaultLCID', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'ExpandEnvironmentStringsA', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'DeleteFileA', 'CopyFileA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSysColorBrush', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'GetSubMenu', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'GetDlgItem', 'GetWindowTextA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'CallNextHookEx', 'SetWindowsHookExA', 'UnhookWindowsHookEx', 'SetWindowTextA', 'LoadStringA', 'CopyIcon', 'GetIconInfo', 'CreateIconIndirect', 'CallWindowProcA', 'CreateWindowExA', 'RegisterHotKey', 'UnregisterHotKey', 'GetForegroundWindow', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'DeleteMenu', 'UnregisterClassA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'GetPropA', 'SetPropA', 'GetClassLongA', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'MoveWindow', 'CheckMenuItem', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'CreateFontIndirectA', 'GetStockObject', 'GetObjectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SetStretchBltMode', 'CreateDIBSection', 'CreateRectRgnIndirect', 'SetBkColor', 'OffsetRgn', 'GetTextMetricsA', 'SetTextColor', 'LineTo', 'MoveToEx', 'CreateFontA', 'TranslateCharsetInfo', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'ExtSelectClipRgn', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'CreatePen', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'GetClipRgn', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'SelectPalette', 'CreatePolygonRgn', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'DragQueryFileA', 'DragFinish', 'DragAcceptFiles', 'CLSIDFromProgID', 'OleRun', 'CoCreateInstance', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'UnRegisterTypeLib', 'LoadTypeLib', 'LHashValOfNameSys', 'RegisterTypeLib', 'SysAllocString', 'VariantInit', 'VariantCopyInd', 'VariantChangeType', 'VariantClear', 'ImageList_GetIcon', 'ImageList_GetImageCount', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_EndDrag', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutRestart', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutPrepareHeader', 'WSACleanup', 'inet_ntoa', 'closesocket', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'TerminateThread', 'CreateMutexA', 'ReleaseMutex', 'SuspendThread', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'LoadLibraryExA', 'GetWindowsDirectoryA', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'lstrlenW', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetUserDefaultLCID', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'HeapSize', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetMenu', 'SetMenu', 'PeekMessageA', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'LoadIconA', 'GetDesktopWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'GetClassNameA', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'GetSysColorBrush', 'GetKeyState', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'GetDlgItem', 'GetWindowTextA', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'CallNextHookEx', 'SetWindowsHookExA', 'UnhookWindowsHookEx', 'SetWindowTextA', 'LoadStringA', 'CopyIcon', 'GetIconInfo', 'CreateIconIndirect', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'IntersectRect', 'ScreenToClient', 'UnregisterClassA', 'TranslateMessage', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'SetPropA', 'GetClassLongA', 'CreateWindowExA', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetViewportExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateDIBSection', 'CreateRectRgnIndirect', 'SetBkColor', 'OffsetRgn', 'GetTextMetricsA', 'SetTextColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetROP2', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'EndDoc', 'EndPage', 'GetObjectA', 'GetStockObject', 'CreateFontIndirectA', 'CreateSolidBrush', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'CreatePalette', 'SelectPalette', 'GetDeviceCaps', 'RealizePalette', 'StretchBlt', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromProgID', 'OleRun', 'CoCreateInstance', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'UnRegisterTypeLib', 'LoadTypeLib', 'LHashValOfNameSys', 'RegisterTypeLib', 'SysAllocString', 'VariantInit', 'VariantCopyInd', 'VariantChangeType', 'VariantClear', 'ImageList_GetIcon', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutRestart', 'waveOutPrepareHeader', 'WSACleanup', 'inet_ntoa', 'closesocket', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'GetVersion', 'CreateMutexA', 'ReleaseMutex', 'SuspendThread', 'GetACP', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'GetTimeZoneInformation', 'SetLastError', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'TerminateThread', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'RemoveDirectoryA', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'InterlockedExchange', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetClassInfoA', 'IsZoomed', 'DefWindowProcA', 'GetSystemMenu', 'GetSysColorBrush', 'LoadStringA', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'DrawEdge', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'PostQuitMessage', 'MoveWindow', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'DrawFrameControl', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'GetWindowTextA', 'GetForegroundWindow', 'CallWindowProcA', 'CreateWindowExA', 'RegisterHotKey', 'UnregisterHotKey', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'CheckMenuItem', 'IsWindowEnabled', 'GetWindow', 'UnregisterClassA', 'TranslateMessage', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SetBkColor', 'CreateFontA', 'TranslateCharsetInfo', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'ExtSelectClipRgn', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'RestoreDC', 'SaveDC', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'CreateRectRgnIndirect', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'Ellipse', 'GetSystemPaletteEntries', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'DragAcceptFiles', 'DragQueryFileA', 'ShellExecuteA', 'Shell_NotifyIconA', 'DragFinish', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_EndDrag', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['SizeofResource', 'LoadResource', 'FindResourceA', 'SetFilePointer', 'WideCharToMultiByte', 'CompareStringW', 'CompareStringA', 'SetEndOfFile', 'IsBadCodePtr', 'IsBadReadPtr', 'SetStdHandle', 'GetStringTypeW', 'GetStringTypeA', 'FlushFileBuffers', 'SetUnhandledExceptionFilter', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FreeResource', 'LCMapStringW', 'LCMapStringA', 'GetOEMCP', 'GetACP', 'CreateThread', 'HeapSize', 'GetProcAddress', 'IsBadWritePtr', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetLastError', 'RaiseException', 'GetVersion', 'GetCommandLineA', 'GetStartupInfoA', 'GetCurrentProcess', 'TerminateProcess', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'GlobalMemoryStatus', 'LoadLibraryA', 'CreateFileA', 'GetFileSize', 'ReadFile', 'CloseHandle', 'UnhandledExceptionFilter', 'ExitProcess', 'HeapReAlloc', 'RtlUnwind', 'GetModuleHandleA', 'GetModuleFileNameA', 'HeapFree', 'SetEnvironmentVariableA', 'HeapAlloc', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'DeleteFileA', 'Sleep', 'GlobalAlloc', 'GetCPInfo', 'GlobalFree', 'MultiByteToWideChar', 'CopyImage', 'SendDlgItemMessageA', 'ReleaseDC', 'GetDC', 'EndPaint', 'BeginPaint', 'UpdateWindow', 'GetClientRect', 'EndDialog', 'InvalidateRect', 'PostQuitMessage', 'GetWindowTextA', 'SetWindowTextA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'SetWindowPos', 'ShowWindow', 'CreateDialogParamA', 'GetCursorPos', 'GetDlgItem', 'SendMessageA', 'TrackPopupMenu', 'GetSubMenu', 'MessageBoxA', 'LoadMenuA', 'CreateWindowExA', 'MoveWindow', 'SetFocus', 'GetWindowTextLengthA', 'OpenClipboard', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'DialogBoxParamA', 'LoadImageA', 'ReleaseCapture', 'SaveDC', 'SelectObject', 'BitBlt', 'RestoreDC', 'DeleteObject', 'DeleteDC', 'SetDIBits', 'CreateCompatibleBitmap', 'GetDIBits', 'GetObjectA', 'CreateCompatibleDC', 'ChooseColorA', 'GetOpenFileNameA', 'IsTextUnicode', 'ShellExecuteA', 'CreateStreamOnHGlobal', 'OleLoadPicture', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Create', 'gethostbyname', 'listen', 'bind', 'htons', 'htonl', 'WSACleanup', 'setsockopt', 'sendto', 'ioctlsocket', 'recvfrom', 'inet_addr', 'connect', 'gethostname', 'WSAStartup', 'inet_ntoa', 'WSAGetLastError', 'WSASetLastError', 'accept', 'recv', 'send', 'closesocket', 'socket', 'WSAAsyncSelect'], ['__vbaR8FixI4', '_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaStrI4', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaVarTstLt', '__vbaFpR8', '_CIsin', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaGet3', '__vbaVarTstEq', '__vbaAryConstruct2', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', '__vbaRedim', '__vbaStrR8', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarAdd', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetStringTypeW', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'OutputDebugStringW', 'CreateFileW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'LoadLibraryExW', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'GetCurrentProcess', 'Sleep', 'InitializeCriticalSectionAndSpinCount', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'LCMapStringW', 'lstrcpynA', 'SetFilePointerEx', 'SetEndOfFile', 'ReadFile', 'ReadConsoleW', 'lstrcpyA', 'LocalFree', 'CloseHandle', 'CreateMutexA', 'LocalAlloc', 'OpenMutexA', 'VirtualAlloc', 'GlobalUnlock', 'MultiByteToWideChar', 'CreateEventA', 'SetStdHandle', 'GetStartupInfoW', 'GetFileType', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'HeapSize', 'DeleteCriticalSection', 'GetCurrentThreadId', 'SetLastError', 'GetModuleFileNameW', 'WriteFile', 'GetStdHandle', 'GetProcessHeap', 'RtlUnwind', 'RaiseException', 'GetCommandLineA', 'IsProcessorFeaturePresent', 'lstrlenA', 'ExitProcess', 'GetTempPathA', 'FindFirstFileExW', 'FindNextFileW', 'FindClose', 'IsDebuggerPresent', 'AreFileApisANSI', 'GetProcAddress', 'GetModuleHandleExW', 'HeapReAlloc', 'WideCharToMultiByte', 'DecodePointer', 'FormatMessageA', 'GetTickCount', 'WaitForSingleObject', 'LocalSize', 'CompareStringW', 'EncodePointer', 'LeaveCriticalSection', 'EnterCriticalSection', 'HeapAlloc', 'HeapFree', 'GetLastError', 'SetCurrentDirectoryA', 'GlobalLock', 'WriteConsoleW', 'FindWindowA', 'GetWindowThreadProcessId', 'MapWindowPoints', 'GetSystemMetrics', 'AdjustWindowRectEx', 'MoveWindow', 'EnableWindow', 'LoadCursorA', 'LoadStringA', 'DispatchMessageA', 'IsDlgButtonChecked', 'ShowWindow', 'GetCursorPos', 'GetSysColor', 'GetDlgItem', 'PeekMessageA', 'SetScrollPos', 'CreateWindowExA', 'InvalidateRect', 'SetWindowLongA', 'ClientToScreen', 'ScreenToClient', 'GetWindowRect', 'SetActiveWindow', 'RegisterClipboardFormatA', 'SetKeyboardState', 'MsgWaitForMultipleObjects', 'SetForegroundWindow', 'InsertMenuItemA', 'GetParent', 'LoadIconA', 'GetClientRect', 'SendMessageA', 'BeginPaint', 'GetDC', 'GetKeyboardState', 'InflateRect', 'OffsetRect', 'GetWindowTextA', 'EnumFontFamiliesA', 'MoveToEx', 'BitBlt', 'LineTo', 'SetTextColor', 'CreateFontIndirectA', 'SetBrushOrgEx', 'SetBkColor', 'CreateDCA', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'StartDocA', 'Ellipse', 'SetStretchBltMode', 'GetObjectA', 'CreatePen', 'GetTextMetricsA', 'SetTextAlign', 'GetStockObject', 'CreateSolidBrush', 'OpenPrinterA', 'GetPrinterA', 'SHGetFolderPathA', 'DragQueryFileA', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'ReleaseStgMedium', 'VariantTimeToSystemTime', 'WSAStringToAddressA', 'WSAIoctl', 'closesocket', 'WSAStartup', 'socket', 'AVIStreamStart', 'AVIStreamGetFrameClose', 'AVIStreamLength', 'capGetDriverDescriptionA', 'acmDriverOpen', 'mixerGetLineControlsW', 'waveOutMessage', 'mixerGetDevCapsW', 'mixerGetID', 'CertGetNameStringA', 'CryptExportPublicKeyInfoEx', 'GetAdaptersInfo', 'PathIsDirectoryA', 'PathFindExtensionA', 'PathMatchSpecA', 'StrChrA', 'PathFindFileNameA', 'ImageList_Create', 'UuidIsNil', 'UuidCreateSequential', 'UuidHash', 'SetupDiDestroyDeviceInfoList', 'SetupDiGetClassDevsA', 'SetupDiEnumDeviceInterfaces', 'OpenThemeData', 'lineAnswer', 'lineBlindTransferA'], ['FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'UnhandledExceptionFilter', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetVersionExA', 'SetConsoleCtrlHandler', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetLocaleInfoW', 'IsBadWritePtr', 'VirtualAlloc', 'FatalAppExitA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'GetACP', 'HeapSize', 'HeapReAlloc', 'TerminateProcess', 'ExitThread', 'CreateThread', 'HeapFree', 'RaiseException', 'InterlockedExchange', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'RtlUnwind', 'HeapAlloc', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'SetErrorMode', 'GetCurrentDirectoryA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'SetFileAttributesA', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetFileSize', 'GetShortPathNameA', 'GetThreadLocale', 'GetStringTypeExA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'SizeofResource', 'GetOEMCP', 'GetCPInfo', 'SetLastError', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetProcessVersion', 'GlobalAlloc', 'GetCurrentThread', 'MulDiv', 'SuspendThread', 'SetThreadPriority', 'ResetEvent', 'ResumeThread', 'CloseHandle', 'lstrcmpA', 'GetModuleFileNameA', 'GetLastError', 'GetDiskFreeSpaceA', 'GetFileTime', 'SetFileTime', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileAttributesA', 'GlobalFree', 'FormatMessageA', 'LocalFree', 'MultiByteToWideChar', 'InterlockedDecrement', 'InterlockedIncrement', 'LoadLibraryA', 'FreeLibrary', 'FindResourceA', 'LoadResource', 'LockResource', 'GetCurrentThreadId', 'lstrcmpiA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GetModuleHandleA', 'GetProcAddress', 'lstrcatA', 'GlobalLock', 'lstrcpynA', 'GlobalUnlock', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'lstrcpyA', 'lstrlenA', 'GetVersion', 'GetExitCodeThread', 'CreateEventA', 'Sleep', 'WideCharToMultiByte', 'SetEvent', 'WaitForSingleObject', 'IsValidLocale', 'AppendMenuA', 'DeleteMenu', 'GetSystemMenu', 'CharToOemA', 'OemToCharA', 'CreateDialogIndirectParamA', 'EndDialog', 'wvsprintfA', 'GetCursorPos', 'ValidateRect', 'TranslateMessage', 'GetMessageA', 'DestroyCursor', 'LoadCursorA', 'SetRect', 'FillRect', 'FindWindowA', 'LoadStringA', 'PostQuitMessage', 'ShowOwnedPopups', 'GetSysColorBrush', 'GetClassNameA', 'ClientToScreen', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'SetTimer', 'KillTimer', 'WindowFromPoint', 'InflateRect', 'SetCapture', 'InvertRect', 'GetDCEx', 'LockWindowUpdate', 'GetDialogBaseUnits', 'CharUpperA', 'GetTabbedTextExtentA', 'InsertMenuA', 'GetMenuStringA', 'DestroyIcon', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetNextDlgTabItem', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'CheckDlgButton', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'DispatchMessageA', 'ScreenToClient', 'DeferWindowPos', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'ScrollWindow', 'GetScrollInfo', 'IsRectEmpty', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetTopWindow', 'MessageBoxA', 'IsChild', 'RegisterClassA', 'TrackPopupMenu', 'SetWindowPlacement', 'GetWindowTextLengthA', 'GetWindowTextA', 'DefWindowProcA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'SetForegroundWindow', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetLastActivePopup', 'IsWindowVisible', 'IsIconic', 'GetFocus', 'EqualRect', 'CopyRect', 'GetDlgItem', 'InvalidateRect', 'GetKeyState', 'GetDlgCtrlID', 'UnpackDDElParam', 'ReuseDDElParam', 'SetActiveWindow', 'WinHelpA', 'SetMenu', 'LoadIconA', 'GetClassInfoA', 'LoadMenuA', 'DestroyMenu', 'SetFocus', 'ShowWindow', 'GetDesktopWindow', 'GetWindow', 'IsWindowEnabled', 'SetCursor', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'LoadAcceleratorsA', 'SetRectEmpty', 'RegisterWindowMessageA', 'GetActiveWindow', 'wsprintfA', 'GetParent', 'GetMenuItemID', 'AdjustWindowRectEx', 'RedrawWindow', 'SetWindowPos', 'GetClientRect', 'GetWindowLongA', 'SetWindowLongA', 'IsWindow', 'SetParent', 'PtInRect', 'GetDC', 'ReleaseDC', 'SetScrollInfo', 'IsZoomed', 'DefMDIChildProcA', 'DrawMenuBar', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'DefFrameProcA', 'CreateWindowExA', 'BringWindowToTop', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'SendMessageA', 'EnableWindow', 'UpdateWindow', 'LoadStringW', 'PostMessageA', 'DestroyWindow', 'UnregisterClassA', 'GetStockObject', 'Rectangle', 'DPtoLP', 'CreatePen', 'GetViewportOrgEx', 'AbortDoc', 'EndDoc', 'EndPage', 'StartPage', 'StartDocA', 'SetAbortProc', 'CreateDCA', 'LPtoDP', 'SaveDC', 'RestoreDC', 'SelectPalette', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'IntersectClipRect', 'OffsetClipRgn', 'MoveToEx', 'LineTo', 'SetTextAlign', 'SetTextJustification', 'SetTextCharacterExtra', 'SetMapperFlags', 'GetCurrentPositionEx', 'ArcTo', 'PatBlt', 'PolyDraw', 'PolylineTo', 'SetColorAdjustment', 'PolyBezierTo', 'GetClipRgn', 'CreateRectRgn', 'SelectClipPath', 'ExtSelectClipRgn', 'PlayMetaFileRecord', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'GetViewportExtEx', 'GetWindowExtEx', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'CreateFontIndirectA', 'BitBlt', 'GetBkColor', 'GetNearestColor', 'GetTextColor', 'GetStretchBltMode', 'GetPolyFillMode', 'GetTextAlign', 'GetBkMode', 'GetROP2', 'GetTextFaceA', 'GetWindowOrgEx', 'GetMapMode', 'SetRectRgn', 'CombineRgn', 'CreateRectRgnIndirect', 'CreateFontA', 'GetDeviceCaps', 'GetCharWidthA', 'DeleteObject', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'StretchDIBits', 'DeleteDC', 'GetTextMetricsA', 'SelectObject', 'GetTextExtentPoint32A', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'SetArcDirection', 'GetDCOrgEx', 'PrintDlgA', 'PageSetupDlgA', 'GetFileTitleA', 'CommDlgExtendedError', 'GetSaveFileNameA', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCreateKeyA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'GetFileSecurityA', 'SetFileSecurityA', 'SetFileSecurityW', 'RegSetValueA', 'RegDeleteValueA', 'DragFinish', 'DragAcceptFiles', 'SHGetFileInfoA', 'ExtractIconA', 'DragQueryFileA'], ['RegCloseKey', 'GetSaveFileNameA', 'DeleteDC', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'OleInitialize', 'VariantInit', 'SHGetMalloc', 'GetDC'], ['__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', 'DllFunctionCall', '__vbaLbound', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetLocaleInfoA', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'SetStdHandle', 'FlushFileBuffers', 'SetFilePointer', 'GetSystemTimeAsFileTime', 'GetTickCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'InitializeCriticalSectionAndSpinCount', 'GetFileAttributesA', 'ReadFile', 'GetWindowsDirectoryA', 'GetConsoleMode', 'GetConsoleCP', 'WideCharToMultiByte', 'IsValidCodePage', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'GetExitCodeProcess', 'CreateProcessA', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'SetEndOfFile', 'GetProcessHeap', 'LoadLibraryA', 'GetTempFileNameA', 'GlobalFree', 'CreateDirectoryA', 'GetFileSize', 'SetConsoleCP', 'SetConsoleOutputCP', 'EnumSystemGeoID', 'GlobalAlloc', 'LocalAlloc', 'LocalFree', 'GetCurrentProcessId', 'CreateToolhelp32Snapshot', 'Module32First', 'Module32Next', 'OpenFileMappingA', 'MapViewOfFile', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'DeleteFileA', 'CancelIo', 'CloseHandle', 'DeviceIoControl', 'GetOverlappedResult', 'SetCurrentDirectoryA', 'GetLastError', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetModuleFileNameA', 'WriteFile', 'HeapCreate', 'VirtualAlloc', 'VirtualFree', 'HeapSize', 'CreateFileA', 'CreateEventA', 'WaitForSingleObject', 'InterlockedDecrement', 'GetCurrentThreadId', 'SetLastError', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'Sleep', 'GetModuleHandleA', 'GetProcAddress', 'GetCurrentProcess', 'TlsGetValue', 'GetSystemInfo', 'GetTempPathA', 'MultiByteToWideChar', 'EnterCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'ExitProcess', 'GetCommandLineA', 'GetStartupInfoA', 'HeapReAlloc', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetFocus', 'SetClassLongA', 'GetWindowThreadProcessId', 'LoadCursorA', 'FindWindowA', 'PtInRect', 'DrawFocusRect', 'CharLowerA', 'FillRect', 'BeginPaint', 'EndPaint', 'TrackMouseEvent', 'GetDC', 'CallWindowProcA', 'GetCursorPos', 'TrackPopupMenu', 'SetTimer', 'SetFocus', 'SetCursor', 'GetForegroundWindow', 'GetWindowLongA', 'SetActiveWindow', 'SetWindowLongA', 'IsDlgButtonChecked', 'TranslateAcceleratorA', 'SendMessageA', 'EndDialog', 'SetDlgItemTextA', 'GetClientRect', 'CreateWindowExA', 'GetSystemMetrics', 'LoadIconA', 'ShowWindow', 'GetAsyncKeyState', 'ReleaseDC', 'GetParent', 'GetNextDlgTabItem', 'GetDlgItemTextA', 'GetDlgItem', 'DialogBoxIndirectParamA', 'CreateFontA', 'MoveToEx', 'CreateSolidBrush', 'DeleteObject', 'SetDIBColorTable', 'GdiTransparentBlt', 'GetDeviceCaps', 'SelectObject', 'CreatePen', 'LineTo', 'ChooseColorA', 'ImpersonateLoggedOnUser', 'QueryServiceStatus', 'CloseServiceHandle', 'DeleteService', 'StartServiceA', 'QueryServiceConfigA', 'OpenServiceA', 'CreateServiceA', 'OpenSCManagerA', 'OpenProcessToken', 'AllocateAndInitializeSid', 'SetEntriesInAclA', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'SetNamedSecurityInfoW', 'FreeSid', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'GetSecurityDescriptorSacl', 'SetSecurityDescriptorSacl', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'ControlService', 'SHGetDesktopFolder', 'StringFromGUID2', 'FtpSetCurrentDirectoryA', 'SCardGetProviderIdW', 'CertGetNameStringA', 'GetTcpTable', 'ChrCmpIA', 'StrToIntExA', 'PathIsRootW', 'PathIsRelativeA', 'PathIsPrefixA', 'StrChrA', 'StrCmpNIA', 'ImageList_ReplaceIcon', 'ImageList_Create', 'PdhCollectQueryData', 'DnsRecordSetCompare', 'DnsRecordSetCopyEx'], ['_CIcos', '_adj_fptan', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '_CIatan', '_allmul', '_CItan', '_CIexp'], ['HeapSize', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'FatalAppExitA', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'IsBadReadPtr', 'IsBadCodePtr', 'GetTimeFormatA', 'GetDateFormatA', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'IsValidLocale', 'IsValidCodePage', 'SetConsoleCtrlHandler', 'SetStdHandle', 'GetLocaleInfoW', 'SetEnvironmentVariableA', 'InterlockedExchange', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'GetCommandLineA', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'HeapAlloc', 'RtlUnwind', 'HeapFree', 'LocalLock', 'LocalUnlock', 'SetErrorMode', 'SetFileAttributesA', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'WriteFile', 'DeleteFileA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'LeaveCriticalSection', 'InterlockedIncrement', 'FindResourceExA', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'lstrcmpA', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcpyA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'InterlockedDecrement', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'CopyFileA', 'MulDiv', 'GlobalSize', 'FormatMessageA', 'lstrcpynA', 'VirtualProtect', 'SizeofResource', 'ExitProcess', 'GetFileSize', 'GlobalAlloc', 'GlobalFree', 'ReadFile', 'GlobalUnlock', 'GlobalReAlloc', 'SetFilePointer', 'CreateFileA', 'CloseHandle', 'GlobalLock', 'GetLastError', 'FindResourceA', 'LoadResource', 'LockResource', 'LocalAlloc', 'LocalFree', 'lstrlenA', 'lstrcmpiA', 'lstrcmpiW', 'GetStringTypeExA', 'GetStringTypeExW', 'lstrlenW', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'GetEnvironmentVariableA', 'MultiByteToWideChar', 'GetEnvironmentVariableW', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetVersionExA', 'SetUnhandledExceptionFilter', 'IsClipboardFormatAvailable', 'MessageBeep', 'GetTabbedTextExtentA', 'PostQuitMessage', 'WindowFromPoint', 'KillTimer', 'SetTimer', 'SetRect', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'InflateRect', 'LoadMenuA', 'DestroyMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'SetCursor', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'SetMenu', 'RedrawWindow', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'BringWindowToTop', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'wsprintfA', 'ScrollWindowEx', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'SetDlgItemInt', 'GetDlgItemTextA', 'GetDlgItemInt', 'CheckRadioButton', 'GetDesktopWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'RegisterWindowMessageA', 'WinHelpA', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'DestroyIcon', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'IsWindow', 'IsChild', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'LoadIconA', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'MessageBoxA', 'TrackPopupMenuEx', 'TrackPopupMenu', 'GetKeyState', 'CheckDlgButton', 'CharLowerW', 'CharLowerA', 'CharUpperW', 'CharUpperA', 'EnableWindow', 'SendMessageA', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'LockWindowUpdate', 'ScreenToClient', 'ClientToScreen', 'GetClientRect', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetMenu', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'GetClassInfoA', 'SetCapture', 'GetDCEx', 'UnionRect', 'MapVirtualKeyA', 'GetKeyNameTextA', 'RegisterClassA', 'UnregisterClassA', 'SetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetSystemMetrics', 'CopyRect', 'PtInRect', 'GetMenuItemInfoA', 'LoadCursorA', 'GetSysColorBrush', 'GetDialogBaseUnits', 'GetClassLongA', 'ShowOwnedPopups', 'ShowWindow', 'UpdateWindow', 'IsWindowEnabled', 'GetDlgItem', 'GetParent', 'GetWindowLongA', 'PostMessageA', 'GetWindowRect', 'SetFocus', 'GetFocus', 'GetAsyncKeyState', 'SetActiveWindow', 'GetActiveWindow', 'GetCapture', 'SetWindowPos', 'MapDialogRect', 'RemoveMenu', 'GetSubMenu', 'GetWindow', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetObjectType', 'EnumMetaFile', 'PlayMetaFile', 'CreatePen', 'ExtCreatePen', 'CreateSolidBrush', 'CreateHatchBrush', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PlayMetaFileRecord', 'DPtoLP', 'StretchDIBits', 'GetCharWidthA', 'CreateFontA', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetBkColor', 'EnumFontFamiliesExA', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'GetStockObject', 'CreatePatternBrush', 'CreateDIBPatternBrushPt', 'DeleteDC', 'ExtSelectClipRgn', 'PolyBezierTo', 'PolylineTo', 'PolyDraw', 'ArcTo', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'CreateRectRgn', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'PatBlt', 'CreateDIBitmap', 'GetClipRgn', 'SelectClipRgn', 'SetColorAdjustment', 'SetArcDirection', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'MoveToEx', 'LineTo', 'OffsetClipRgn', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDCOrgEx', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'CreateCompatibleDC', 'SelectObject', 'StretchBlt', 'BitBlt', 'DeleteObject', 'CreatePalette', 'SelectPalette', 'RealizePalette', 'SelectClipPath', 'PageSetupDlgA', 'FindTextA', 'ReplaceTextA', 'GetFileTitleA', 'CommDlgExtendedError', 'PrintDlgA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetJobA', 'RegSetValueA', 'RegOpenKeyA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'SetFileSecurityA', 'GetFileSecurityA', 'RegCreateKeyA', 'RegCloseKey', 'DragQueryFileA', 'ExtractIconA', 'SHGetFileInfoA', 'DragFinish', 'PropertySheetA', 'DestroyPropertySheetPage', 'CreatePropertySheetPageA', 'ImageList_Draw', 'ImageList_GetImageInfo', 'ImageList_Read', 'ImageList_Write', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_LoadImageA', 'ImageList_Merge', 'PathRemoveExtensionA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'WriteClassStg', 'OleRegGetUserType', 'SetConvertStg', 'CoTaskMemFree', 'ReadFmtUserTypeStg', 'ReadClassStg', 'StringFromCLSID', 'CoTreatAsClass', 'CreateBindCtx', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'OleDuplicateData', 'CoDisconnectObject', 'CoCreateInstance', 'StringFromGUID2', 'CLSIDFromString', 'WriteFmtUserTypeStg', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SysAllocStringByteLen', 'SysStringByteLen', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetElemsize', 'SafeArrayGetDim', 'SafeArrayCreate', 'SafeArrayRedim', 'VariantCopy', 'SafeArrayAllocData', 'SafeArrayAllocDescriptor', 'SafeArrayCopy', 'SafeArrayGetElement', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayLock', 'SafeArrayUnlock', 'SafeArrayDestroy', 'SafeArrayDestroyData', 'SafeArrayDestroyDescriptor', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysAllocString', 'SysReAllocStringLen', 'VarDateFromStr', 'VarBstrFromDec', 'VarDecFromStr', 'VarCyFromStr', 'VarBstrFromCy', 'VarBstrFromDate'], ['SetFileTime', 'CompareFileTime', 'SearchPathW', 'GetShortPathNameW', 'GetFullPathNameW', 'MoveFileW', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'GetLastError', 'CreateDirectoryW', 'SetFileAttributesW', 'Sleep', 'GetTickCount', 'CreateFileW', 'GetFileSize', 'GetModuleFileNameW', 'GetCurrentProcess', 'CopyFileW', 'ExitProcess', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'SetErrorMode', 'CloseHandle', 'lstrlenW', 'lstrcpynW', 'GetDiskFreeSpaceW', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'LoadLibraryW', 'CreateProcessW', 'lstrcmpiA', 'GetTempFileNameW', 'lstrcatW', 'GetProcAddress', 'LoadLibraryA', 'GetModuleHandleA', 'OpenProcess', 'lstrcpyW', 'GetVersionExW', 'GetSystemDirectoryW', 'GetVersion', 'lstrcpyA', 'RemoveDirectoryW', 'lstrcmpA', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GlobalFree', 'GetModuleHandleW', 'LoadLibraryExW', 'FreeLibrary', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'WideCharToMultiByte', 'lstrlenA', 'MulDiv', 'WriteFile', 'ReadFile', 'MultiByteToWideChar', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW', 'lstrcpynA', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'ScreenToClient', 'GetMessagePos', 'CallWindowProcW', 'IsWindowVisible', 'LoadBitmapW', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'GetWindowRect', 'AppendMenuW', 'CreatePopupMenu', 'GetSystemMetrics', 'EndDialog', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'SetWindowPos', 'DialogBoxParamW', 'CheckDlgButton', 'CreateWindowExW', 'SystemParametersInfoW', 'RegisterClassW', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharNextA', 'CharUpperW', 'CharPrevW', 'wvsprintfW', 'DispatchMessageW', 'PeekMessageW', 'wsprintfA', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'wsprintfW', 'SendMessageTimeoutW', 'LoadCursorW', 'SetCursor', 'GetWindowLongW', 'GetSysColor', 'CharNextW', 'GetClassInfoW', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'EndPaint', 'FindWindowExW', 'SetBkColor', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectW', 'SetBkMode', 'SetTextColor', 'SelectObject', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'SHGetSpecialFolderLocation', 'RegEnumKeyW', 'RegOpenKeyExW', 'RegCloseKey', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegEnumValueW', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', 'DllFunctionCall', '__vbaRedimPreserve', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['WideCharToMultiByte', 'FreeLibrary', 'SystemTimeToFileTime', 'GetProcessHeap', 'GetCurrentProcessId', 'GetFileSize', 'LockFileEx', 'LocalFree', 'CreateFileMappingA', 'GetProcAddress', 'UnlockFile', 'HeapDestroy', 'HeapCompact', 'HeapAlloc', 'LoadLibraryW', 'GetSystemInfo', 'HeapReAlloc', 'DeleteFileW', 'DeleteFileA', 'GetVersionExA', 'WaitForSingleObjectEx', 'LoadLibraryA', 'CreateFileA', 'FlushViewOfFile', 'OutputDebugStringW', 'GetFileAttributesExW', 'GetFileAttributesA', 'GetDiskFreeSpaceA', 'FormatMessageW', 'MultiByteToWideChar', 'HeapSize', 'HeapValidate', 'UnmapViewOfFile', 'GetVersionExW', 'GetFileAttributesW', 'CreateFileW', 'GetTempPathW', 'UnlockFileEx', 'SetEndOfFile', 'GetFullPathNameA', 'SetFilePointer', 'LockFile', 'OutputDebugStringA', 'GetDiskFreeSpaceW', 'InterlockedCompareExchange', 'WriteFile', 'GetFullPathNameW', 'HeapFree', 'HeapCreate', 'ReadFile', 'AreFileApisANSI', 'GetCurrentThreadId', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'LocalAlloc', 'GetProcessWorkingSetSize', 'OpenProcess', 'GetSystemTimeAsFileTime', 'GetOverlappedResult', 'WaitForMultipleObjects', 'DeviceIoControl', 'ConnectNamedPipe', 'DisconnectNamedPipe', 'TransactNamedPipe', 'lstrcpyW', 'lstrlenA', 'lstrlenW', 'CreateEventW', 'GetModuleFileNameW', 'GetCompressedFileSizeW', 'CreateNamedPipeA', 'EnumLanguageGroupLocalesA', 'SetStdHandle', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'IsValidCodePage', 'FindNextFileA', 'FindFirstFileExA', 'FindClose', 'GetTimeZoneInformation', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'GetFileType', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'GetACP', 'GetStdHandle', 'GetModuleFileNameA', 'ExitProcess', 'GetModuleHandleExW', 'FreeLibraryAndExitThread', 'ExitThread', 'LoadLibraryExW', 'WriteConsoleW', 'RtlUnwind', 'RaiseException', 'InitializeSListHead', 'GetStartupInfoW', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'GetSystemTime', 'FormatMessageA', 'CreateFileMappingW', 'MapViewOfFile', 'GetTickCount', 'SetLastError', 'FlushFileBuffers', 'GetLastError', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'SetCurrentDirectoryA', 'GetTempPathA', 'UnhandledExceptionFilter', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'CreateMutexW', 'CloseHandle', 'LCMapStringW', 'CompareStringW', 'GetModuleHandleW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SwitchToThread', 'InitializeCriticalSectionAndSpinCount', 'DecodePointer', 'EncodePointer', 'WaitForSingleObject', 'Sleep', 'lstrcpyA', 'CreateThread', 'DispatchMessageA', 'WaitForInputIdle', 'DefWindowProcA', 'PostQuitMessage', 'IsWindow', 'DestroyWindow', 'ShowWindow', 'GetDlgItem', 'TranslateMessage', 'GetMessageA', 'wsprintfW', 'PostMessageA', 'AttachThreadInput', 'IsDlgButtonChecked', 'SendDlgItemMessageA', 'GetDlgCtrlID', 'GetDialogBaseUnits', 'OpenClipboard', 'CloseClipboard', 'GetClipboardData', 'IsClipboardFormatAvailable', 'GetKeyboardState', 'SetKeyboardState', 'MapVirtualKeyA', 'SetCapture', 'GetSystemMetrics', 'DrawTextA', 'UpdateWindow', 'BeginPaint', 'EndPaint', 'SetScrollPos', 'GetWindowTextA', 'GetClientRect', 'LoadCursorA', 'GetWindowThreadProcessId', 'EnumChildWindows', 'GetParent', 'SetWindowLongA', 'GetWindowLongA', 'OffsetRect', 'InflateRect', 'ClientToScreen', 'SetCursor', 'MessageBoxA', 'GetWindowRect', 'SetRect', 'RealizePalette', 'Rectangle', 'DeleteObject', 'CreateFontIndirectA', 'CreateCompatibleDC', 'SelectPalette', 'RegQueryValueExA', 'SetSecurityDescriptorDacl', 'RegCloseKey', 'RegEnumKeyExA', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'InitializeSecurityDescriptor', 'RegOpenKeyExA', 'CreateDataAdviseHolder', 'StringFromGUID2', 'CreateDataCache', 'ImageList_GetIconSize', 'socket', 'recv', 'WSAStartup', 'WSACleanup', 'WSAGetLastError', 'inet_ntoa', 'inet_addr', 'send', 'htons', 'connect', 'closesocket', 'gethostbyname', 'PathUnquoteSpacesA', 'ColorRGBToHLS', 'StrChrA', 'PathFileExistsW', 'PathRemoveFileSpecW', 'NetAuditClear', 'NetWkstaGetInfo', 'HttpSendRequestA', 'InternetOpenA', 'InternetCloseHandle', 'FtpSetCurrentDirectoryA', 'FtpFindFirstFileA', 'InternetFindNextFileA', 'UnlockUrlCacheEntryStream', 'InternetConnectA', 'HttpOpenRequestA', 'PdhCalculateCounterFromRawValue', 'PdhGetFormattedCounterValue', 'PdhCloseQuery', 'UuidCreate', 'UuidToStringA', 'DWriteCreateFactory'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '__vbaRedimPreserve', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['LocalFree', 'GetSystemTime', 'SetFilePointer', 'FileTimeToDosDateTime', 'GetTempFileNameA', 'CompareStringA', 'FileTimeToLocalFileTime', 'GetFileInformationByHandle', 'GetTempPathA', 'DeleteFileA', 'SystemTimeToFileTime', 'GetCurrentProcess', 'WideCharToMultiByte', 'CompareStringW', 'MultiByteToWideChar', 'FindFirstFileA', 'GetVersionExA', 'GetTempFileNameW', 'EnterCriticalSection', 'GetSystemTimeAsFileTime', 'HeapDestroy', 'HeapCreate', 'CreateDirectoryW', 'SetEvent', 'InitializeCriticalSection', 'TerminateThread', 'CreateEventA', 'lstrcmpiA', 'DeleteCriticalSection', 'HeapSize', 'GetModuleFileNameW', 'LeaveCriticalSection', 'FormatMessageA', 'CreateThread', 'DeleteFileW', 'CloseHandle', 'GetCurrentThreadId', 'GetCurrentDirectoryA', 'FindNextFileW', 'GetModuleFileNameA', 'CreatePipe', 'FindClose', 'SetLastError', 'GetEnvironmentVariableA', 'CreateFileW', 'ReadFile', 'TerminateProcess', 'CreateProcessA', 'GetExitCodeProcess', 'Sleep', 'lstrlenA', 'WriteFile', 'SetFileTime', 'GetTickCount', 'WaitForSingleObject', 'SetHandleInformation', 'PeekNamedPipe', 'FindFirstFileW', 'GetFileSize', 'HeapReAlloc', 'GetLastError', 'FlushFileBuffers', 'WriteConsoleW', 'lstrlenW', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'CreateFileA', 'SetStdHandle', 'GetStringTypeW', 'LCMapStringW', 'LoadLibraryW', 'GetConsoleMode', 'GetConsoleCP', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetVersion', 'HeapSetInformation', 'GetStartupInfoW', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetCommandLineA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'EncodePointer', 'DecodePointer', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'FlsAlloc', 'RtlUnwindEx', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'GetStdHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'wsprintfW', 'wsprintfA', 'CharLowerW', 'StartServiceCtrlDispatcherA', 'OpenProcessToken', 'GetUserNameW', 'SetSecurityDescriptorControl', 'SetSecurityDescriptorGroup', 'ControlService', 'OpenSCManagerA', 'SetServiceStatus', 'QueryServiceStatus', 'StartServiceA', 'CreateServiceA', 'RegisterServiceCtrlHandlerA', 'ChangeServiceConfig2A', 'DeleteService', 'CloseServiceHandle', 'OpenServiceA', 'SetSecurityDescriptorSacl', 'IsValidSecurityDescriptor', 'SetEntriesInAclW', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorDacl', 'LookupAccountNameW', 'InitializeSecurityDescriptor', 'CopySid', 'GetTokenInformation', 'RegGetValueA', 'SHGetFolderPathW', 'PathFindFileNameA', 'PathRemoveFileSpecW', 'PathFileExistsW', 'PathAppendA', 'PathAppendW', 'PathRemoveBackslashW', 'PathFileExistsA', 'InternetConnectW', 'InternetWriteFile', 'InternetSetOptionW', 'InternetReadFile', 'HttpOpenRequestW', 'HttpEndRequestW', 'InternetCloseHandle', 'InternetOpenW', 'HttpQueryInfoA', 'HttpAddRequestHeadersW', 'HttpSendRequestExW', 'ObtainUserAgentString'], ['GetConsoleCP', 'GetConsoleMode', 'CreateFileW', 'SetEnvironmentVariableA', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'TerminateProcess', 'RtlCaptureContext', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsValidCodePage', 'HeapCreate', 'GetVersion', 'HeapSetInformation', 'FlsAlloc', 'FlsFree', 'FlsSetValue', 'GetProcAddress', 'FlsGetValue', 'GetFileType', 'SetStdHandle', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapQueryInformation', 'VirtualQuery', 'GetSystemInfo', 'SetThreadStackGuarantee', 'GetTimeZoneInformation', 'RtlPcToFileHeader', 'RaiseException', 'CreateThread', 'ExitThread', 'ExitProcess', 'GetStartupInfoW', 'GetCommandLineA', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'DecodePointer', 'EncodePointer', 'RtlUnwindEx', 'RtlLookupFunctionEntry', 'FindResourceExW', 'VirtualProtect', 'SearchPathA', 'Sleep', 'GetProfileIntA', 'InitializeCriticalSectionAndSpinCount', 'GetTickCount', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'SetErrorMode', 'CompareStringW', 'LCMapStringW', 'VirtualAlloc', 'GetStringTypeW', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'GetACP', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'lstrcmpiA', 'GetThreadLocale', 'lstrcpyA', 'DeleteFileA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetCurrentDirectoryA', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'GetModuleFileNameW', 'ReleaseActCtx', 'CreateActCtxW', 'MulDiv', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'GetVersionExA', 'LoadLibraryW', 'lstrcmpW', 'GlobalUnlock', 'GlobalFree', 'FindResourceA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'lstrlenA', 'GetModuleHandleA', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetModuleFileNameA', 'GetLocaleInfoA', 'CompareStringA', 'ActivateActCtx', 'GetLastError', 'DeactivateActCtx', 'SetLastError', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceW', 'LoadLibraryA', 'WriteConsoleW', 'IsClipboardFormatAvailable', 'SetMenuDefaultItem', 'PostThreadMessageA', 'CreateMenu', 'IsMenu', 'UpdateLayeredWindow', 'UnionRect', 'MonitorFromPoint', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'RegisterClipboardFormatA', 'CopyImage', 'GetIconInfo', 'EnableScrollBar', 'HideCaret', 'InvertRect', 'GetMenuDefaultItem', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'LoadImageA', 'LoadAcceleratorsA', 'InsertMenuItemA', 'TranslateAcceleratorA', 'LockWindowUpdate', 'BringWindowToTop', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToAsciiEx', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'DrawStateA', 'LoadMenuW', 'SetClassLongPtrA', 'GetAsyncKeyState', 'NotifyWinEvent', 'CreatePopupMenu', 'DestroyAcceleratorTable', 'SetParent', 'SetWindowRgn', 'IsZoomed', 'UnregisterClassA', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'OffsetRect', 'CharNextA', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'GetSysColorBrush', 'LoadCursorA', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'SetRectEmpty', 'KillTimer', 'RealChildWindowFromPoint', 'DeleteMenu', 'IntersectRect', 'InsertMenuA', 'RemoveMenu', 'SystemParametersInfoA', 'GetMenuStringA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'FillRect', 'FrameRect', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckDlgButton', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'GetClassLongPtrA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetWindowLongPtrA', 'SetWindowLongPtrA', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetWindowRect', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'MapVirtualKeyA', 'GetKeyNameTextA', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'GetWindowRgn', 'DestroyCursor', 'SubtractRect', 'MapVirtualKeyExA', 'IsCharLowerA', 'GetDoubleClickTime', 'CharUpperBuffA', 'CopyIcon', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'GetUpdateRect', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageA', 'PostQuitMessage', 'RedrawWindow', 'InvalidateRect', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'IsWindow', 'GetSysColor', 'LoadIconW', 'EnableWindow', 'SetTimer', 'GetClientRect', 'IsIconic', 'GetSystemMenu', 'SendMessageA', 'AppendMenuA', 'DrawIcon', 'GetSystemMetrics', 'LoadCursorW', 'GetTextExtentPoint32A', 'CopyMetaFileA', 'CreateDCA', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'CreateDIBitmap', 'GetTextMetricsA', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'CreateDIBSection', 'CreateRoundRectRgn', 'CreatePolygonRgn', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'OffsetRgn', 'SetDIBColorTable', 'StretchBlt', 'CreateFontIndirectA', 'Rectangle', 'EnumFontFamiliesExA', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'GetTextFaceA', 'SetPixelV', 'SetViewportOrgEx', 'SelectObject', 'CreateSolidBrush', 'CreateHatchBrush', 'GetPixel', 'CreatePen', 'GetDeviceCaps', 'OffsetViewportOrgEx', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetPixel', 'CreateCompatibleBitmap', 'GetWindowExtEx', 'GetViewportExtEx', 'SelectClipRgn', 'DeleteObject', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'PatBlt', 'CreateRectRgnIndirect', 'CreateBitmap', 'Escape', 'ExtTextOutA', 'TextOutA', 'BitBlt', 'RectVisible', 'PtVisible', 'CreateCompatibleDC', 'CreateRectRgn', 'SetViewportExtEx', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegEnumKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCloseKey', 'RegEnumValueA', 'SHAppBarMessage', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'SHGetDesktopFolder', 'SHBrowseForFolderA', 'ShellExecuteA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'ImageList_GetIconSize', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'DoDragDrop', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CreateStreamOnHGlobal', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CoInitializeEx', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'CoCreateGuid', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'OleGetClipboard', 'StgCreateDocfileOnILockBytes', 'CoRegisterMessageFilter', 'CreateILockBytesOnHGlobal', 'CoRevokeClassObject', 'SysFreeString', 'VarBstrFromDate', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'SysAllocStringByteLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipDrawImageI', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundA'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['FreeResource', 'FindResourceW', 'LoadResource', 'CreateProcessW', 'WaitForSingleObject', 'SizeofResource', 'FormatMessageW', 'GetExitCodeProcess', 'GetModuleFileNameW', 'GetStartupInfoW', 'GetLastError', 'GetCurrentDirectoryW', 'FindClose', 'LockResource', 'WideCharToMultiByte', 'MultiByteToWideChar', 'LCMapStringW', 'FindFirstFileW', 'HeapReAlloc', 'GetStringTypeW', 'RtlUnwind', 'HeapSize', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'GetTickCount', 'QueryPerformanceCounter', 'GetFileType', 'GetTempFileNameW', 'CreateThread', 'lstrcpyW', 'ResumeThread', 'SuspendThread', 'CloseHandle', 'lstrcatW', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetTempPathW', 'lstrlenW', 'FreeEnvironmentStringsW', 'HeapCreate', 'RaiseException', 'GetStdHandle', 'CreateFileW', 'Sleep', 'WriteFile', 'IsProcessorFeaturePresent', 'InterlockedDecrement', 'GetCurrentThreadId', 'SetLastError', 'InterlockedIncrement', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'LoadLibraryW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RegisterClassW', 'CreateWindowExW', 'ShowWindow', 'UpdateWindow', 'LoadCursorW', 'MoveWindow', 'SendMessageW', 'DefWindowProcW', 'LoadIconW', 'GetMessageW', 'PostQuitMessage', 'TranslateMessage', 'RegisterClassExW', 'DispatchMessageW', 'WaitForInputIdle', 'GetClientRect', 'wsprintfW', 'MessageBoxW', 'GetStockObject', 'CreateSolidBrush', 'RegCloseKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'ShellExecuteW', 'InternetOpenUrlW', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'IcmpCloseHandle', 'IcmpSendEcho', 'IcmpCreateFile', 'gethostbyname', 'WSACleanup', 'WSAStartup'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'SetRectEmpty', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'SetStretchBltMode', 'LPtoDP', 'GetClipRgn', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'GetOpenFileNameA', 'memcpy', 'CommandLineToArgvW', 'EndDialog'], ['GetFileAttributesA', 'CreateFileA', 'CloseHandle', 'GetSystemInfo', 'CreateThread', 'HeapAlloc', 'GetThreadContext', 'GetProcAddress', 'VirtualAllocEx', 'LocalFree', 'GetLastError', 'ReadProcessMemory', 'GetProcessHeap', 'CreateProcessA', 'CreateDirectoryA', 'SetThreadContext', 'WriteConsoleW', 'ReadConsoleW', 'SetEndOfFile', 'SetFilePointerEx', 'GetTempPathA', 'Sleep', 'SetCurrentDirectoryA', 'GetModuleHandleA', 'GetComputerNameExW', 'ResumeThread', 'GetVersionExW', 'CreateMutexA', 'VirtualAlloc', 'WriteFile', 'VirtualFree', 'HeapFree', 'WriteProcessMemory', 'GetModuleFileNameA', 'RemoveDirectoryA', 'ReadFile', 'HeapReAlloc', 'HeapSize', 'GetTimeZoneInformation', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetStringTypeW', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'SetStdHandle', 'GetFullPathNameW', 'GetCurrentDirectoryW', 'DeleteFileW', 'LCMapStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RaiseException', 'SetLastError', 'RtlUnwind', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetModuleFileNameW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'CompareStringW', 'DecodePointer', 'RegCloseKey', 'RegQueryValueExA', 'GetUserNameA', 'RegSetValueExA', 'RegOpenKeyExA', 'ConvertSidToStringSidW', 'GetUserNameW', 'LookupAccountNameW', 'SHGetFolderPathA', 'ShellExecuteA', 'SHFileOperationA', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetOpenA', 'InternetOpenW', 'InternetOpenUrlA'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaR8Sgn', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaI2I4', '__vbaObjVar', '__vbaVarLateMemSt', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetFileSize', 'GetFileTime', 'SetErrorMode', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'TerminateProcess', 'GetStartupInfoA', 'GetCommandLineA', 'ExitThread', 'GetTimeZoneInformation', 'GetSystemTime', 'GetLocalTime', 'HeapSize', 'GetACP', 'SetStdHandle', 'GetFileType', 'SetUnhandledExceptionFilter', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualAlloc', 'IsBadWritePtr', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'IsValidLocale', 'IsValidCodePage', 'GetLocaleInfoA', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetLocaleInfoW', 'GetOEMCP', 'GetCPInfo', 'SizeofResource', 'GetProfileStringA', 'InterlockedExchange', 'GetProcessVersion', 'GlobalFlags', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'GlobalReAlloc', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'FormatMessageA', 'LocalFree', 'LocalAlloc', 'EnterCriticalSection', 'GetLastError', 'lstrcpynA', 'MulDiv', 'SetLastError', 'LoadLibraryA', 'FreeLibrary', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'GetModuleHandleA', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'InterlockedDecrement', 'InterlockedIncrement', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'WaitForSingleObject', 'CloseHandle', 'GlobalLock', 'GlobalAlloc', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'Sleep', 'CreateDirectoryA', 'MoveFileA', 'WritePrivateProfileStringA', 'WinExec', 'GetFileAttributesA', 'GetCurrentDirectoryA', 'GetPrivateProfileStringA', 'CreateThread', 'DeleteFileA', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualFree', 'GetModuleFileNameA', 'PtInRect', 'GetSysColorBrush', 'LoadStringA', 'DestroyMenu', 'InvalidateRect', 'ScreenToClient', 'CopyRect', 'GetTopWindow', 'GetCapture', 'WinHelpA', 'wsprintfA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'GetClassNameA', 'DefWindowProcA', 'GetMessageTime', 'GetMessagePos', 'SetForegroundWindow', 'GetWindow', 'SetWindowLongA', 'SetWindowPos', 'RegisterWindowMessageA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'EndDialog', 'SetActiveWindow', 'IsWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'GetMenuState', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'GetFocus', 'GetNextDlgTabItem', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'GetKeyState', 'CallNextHookEx', 'ValidateRect', 'IsWindowVisible', 'PeekMessageA', 'GetCursorPos', 'LoadIconA', 'SendMessageA', 'DrawIcon', 'UnregisterClassA', 'HideCaret', 'ShowCaret', 'SetWindowsHookExA', 'GetParent', 'GetLastActivePopup', 'IsWindowEnabled', 'GetWindowLongA', 'MessageBoxA', 'SetCursor', 'PostQuitMessage', 'PostMessageA', 'RemovePropA', 'EnableWindow', 'GetClientRect', 'ExcludeUpdateRgn', 'DrawFocusRect', 'DefDlgProcA', 'CharNextA', 'IsWindowUnicode', 'GetSystemMetrics', 'IsIconic', 'LoadCursorA', 'CharUpperA', 'InflateRect', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'ShowWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'AdjustWindowRectEx', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'GetSysColor', 'GetForegroundWindow', 'SetFocus', 'GetStockObject', 'SetBkMode', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'IntersectClipRect', 'SelectObject', 'GetDeviceCaps', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'PatBlt', 'RestoreDC', 'SaveDC', 'DeleteDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'DeleteObject', 'CreateDIBitmap', 'GetTextExtentPointA', 'BitBlt', 'CreateCompatibleDC', 'CreateSolidBrush', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegCloseKey', 'InternetGetLastResponseInfoA', 'InternetCrackUrlA', 'InternetCanonicalizeUrlA', 'InternetQueryOptionA', 'InternetOpenA', 'InternetCloseHandle', 'InternetOpenUrlA', 'InternetSetStatusCallback', 'InternetSetFilePointer', 'InternetWriteFile', 'InternetReadFile', 'InternetQueryDataAvailable'], ['__vbaVarSub', '__vbaVarTstGt', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaStrI4', '__vbaVarMove', '__vbaVarVargNofree', '__vbaAryMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '__vbaNextEachVar', '__vbaFreeObjList', '_adj_fprem1', '__vbaRecAnsiToUni', '__vbaStrCat', '__vbaForEachCollAd', '__vbaLsetFixstr', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaExitProc', '__vbaVarForInit', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaStrFixstr', '__vbaVargVar', '__vbaBoolVarNull', '_CIsin', '__vbaVarZero', '__vbaVarCmpGt', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaVarTstEq', '__vbaPutOwner3', '__vbaI2I4', '__vbaObjVar', 'DllFunctionCall', '__vbaVarLateMemSt', '__vbaVarOr', '__vbaRedimPreserve', '_adj_fpatan', '__vbaRedim', '__vbaRecUniToAnsi', 'EVENT_SINK_Release', '__vbaNew', '__vbaUI1I2', '_CIsqrt', '__vbaObjIs', 'EVENT_SINK_QueryInterface', '__vbaUI1I4', '__vbaVarMul', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '__vbaInStrVar', '__vbaUbound', '__vbaStrVarVal', '__vbaVarCat', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaVarLateMemCallLdRf', '__vbaVar2Vec', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarCmpLt', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarSetVar', '__vbaI4Var', '__vbaAryLock', '__vbaVarAdd', '__vbaLateMemCall', '__vbaVarDup', '__vbaUnkVar', '__vbaFpI4', '__vbaVarCopy', '__vbaVarLateMemCallLd', '__vbaVarSetObjAddref', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '__vbaForEachVar', '_allmul', '_CItan', '__vbaNextEachCollAd', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaFreeStr', '__vbaFreeObj', '__vbaI4ErrVar'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaI2I4', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaUI1Str', '__vbaCastObj', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['waveInClose', 'waveInAddBuffer', 'waveInStart', 'waveInStop', 'waveInPrepareHeader', 'waveInUnprepareHeader', 'waveInOpen', 'WsFileTimeToDateTime', 'BCryptOpenAlgorithmProvider', 'BCryptSetProperty', 'BCryptGenerateSymmetricKey', 'BCryptDecrypt', 'GetTickCount', 'HeapAlloc', 'GetProcessHeap', 'GetCommandLineA', 'GetStartupInfoA', 'HeapFree', 'VirtualAlloc', 'HeapReAlloc', 'VirtualQuery', 'LocalAlloc', 'LocalFree', 'SystemTimeToFileTime', 'TerminateThread', 'CreateThread', 'WriteProcessMemory', 'GetCurrentProcess', 'OpenProcess', 'GetWindowsDirectoryA', 'VirtualProtectEx', 'VirtualAllocEx', 'CreateRemoteThread', 'GetModuleHandleW', 'IsWow64Process', 'WriteFile', 'WaitForSingleObject', 'CreateFileW', 'LoadLibraryW', 'GetLocalTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'ReadFile', 'FindFirstFileA', 'GetBinaryTypeW', 'FindNextFileA', 'lstrcpyW', 'CreateFileA', 'GlobalAlloc', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'GetFileSize', 'FreeLibrary', 'SetDllDirectoryW', 'GetFileSizeEx', 'WaitForMultipleObjects', 'CreatePipe', 'PeekNamedPipe', 'DuplicateHandle', 'SetEvent', 'CreateProcessW', 'CreateEventA', 'GetModuleFileNameW', 'LoadResource', 'FindResourceW', 'GetComputerNameW', 'GlobalMemoryStatusEx', 'LoadLibraryExW', 'FindFirstFileW', 'FindNextFileW', 'SetFilePointer', 'GetLogicalDriveStringsW', 'CopyFileW', 'GetDriveTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'CreateMutexA', 'ReleaseMutex', 'TerminateProcess', 'K32GetModuleFileNameExW', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'DeleteFileW', 'SizeofResource', 'VirtualProtect', 'GetSystemDirectoryW', 'LockResource', 'GetWindowsDirectoryW', 'GlobalLock', 'GlobalUnlock', 'Process32First', 'Process32Next', 'WideCharToMultiByte', 'lstrcpyA', 'Sleep', 'MultiByteToWideChar', 'lstrcatA', 'lstrcmpA', 'lstrlenA', 'ExpandEnvironmentStringsW', 'lstrlenW', 'lstrcmpW', 'CreateProcessA', 'WinExec', 'ExitProcess', 'GetProcAddress', 'CloseHandle', 'lstrcatW', 'LoadLibraryA', 'GetLastError', 'GetPrivateProfileStringW', 'GetModuleHandleA', 'GetTempPathW', 'VirtualFree', 'SetLastError', 'GetModuleFileNameA', 'CreateDirectoryW', 'GetFullPathNameA', 'GetWindowTextW', 'GetLastInputInfo', 'wsprintfW', 'CharLowerW', 'PostQuitMessage', 'ToUnicode', 'TranslateMessage', 'RegisterRawInputDevices', 'DefWindowProcA', 'MapVirtualKeyA', 'GetRawInputData', 'RegisterClassW', 'GetAsyncKeyState', 'GetKeyboardState', 'CreateWindowExW', 'SetClipboardViewer', 'DispatchMessageA', 'MapVirtualKeyW', 'GetMessageA', 'GetKeyState', 'ReleaseDC', 'GetSystemMetrics', 'GetForegroundWindow', 'OpenClipboard', 'CloseClipboard', 'GetClipboardData', 'GetDC', 'RegQueryValueExW', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'AllocateAndInitializeSid', 'OpenProcessToken', 'FreeSid', 'LookupAccountSidW', 'GetTokenInformation', 'RegQueryInfoKeyA', 'RegOpenKeyW', 'CloseServiceHandle', 'SetSecurityDescriptorDacl', 'RegDeleteKeyA', 'InitializeSecurityDescriptor', 'GetUserNameW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegSetValueExA', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegEnumKeyExW', 'RegQueryValueExA', 'RegQueryInfoKeyW', 'RegCloseKey', 'OpenServiceW', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'EnumServicesStatusExW', 'StartServiceW', 'RegSetValueExW', 'RegCreateKeyExA', 'OpenSCManagerW', 'RegDeleteValueW', 'SHFileOperationW', 'SHGetSpecialFolderPathW', 'SHCreateDirectoryExW', 'SHGetFolderPathW', 'ShellExecuteW', 'SHGetKnownFolderPath', 'URLDownloadToFileW', 'GdiplusStartup', 'GdipGetImageEncoders', 'GdipSaveImageToFile', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncodersSize', 'GdiplusShutdown', 'WSAConnect', 'WSAStartup', 'shutdown', 'closesocket', 'WSACleanup', 'connect', 'InetNtopW', 'gethostbyname', 'send', 'socket', 'recv', 'htons', 'freeaddrinfo', 'setsockopt', 'getaddrinfo', 'inet_addr', 'CreateStreamOnHGlobal', 'CoInitialize', 'CoCreateInstance', 'CoTaskMemFree', 'CoUninitialize', 'CoInitializeSecurity', 'AssocQueryStringW', 'StrStrW', 'PathRemoveFileSpecA', 'PathCombineA', 'PathFindFileNameW', 'PathFindExtensionW', 'PathFileExistsW', 'StrStrA', 'NetUserAdd', 'NetApiBufferFree', 'NetUserGetInfo', 'NetLocalGroupAddMembers', 'VariantInit', 'CryptStringToBinaryW', 'CryptStringToBinaryA', 'CryptUnprotectData', 'InternetTimeToSystemTimeA', 'CreateCompatibleDC', 'SelectObject', 'CreateCompatibleBitmap', 'BitBlt', 'DeleteObject'], ['GdipReleaseDC', 'GdipDeleteGraphics', 'GdiplusShutdown', 'GdipCreateFromHDC', 'GdipDrawImageRectI', 'GdipLoadImageFromFile', 'GdipLoadImageFromFileICM', 'GdipAlloc', 'GdipFree', 'GdipDisposeImage', 'GdiplusStartup', 'GdipCloneImage', 'GdipGetImageWidth', 'GdipGetImageHeight', 'GdipDrawImageRectRectI', 'GdipSetClipRectI', 'GdipGraphicsClear', 'GdipResetClip', 'GdipDrawImagePointRectI', '_controlfp', '_onexit', '__dllonexit', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__wgetmainargs', '_wcmdln', '_XcptFilter', '_exit', 'time', 'fprintf', '_ftol', 'calloc', '_CIpow', 'isdigit', 'sprintf', '_wfopen', 'fseek', 'ftell', 'malloc', 'fclose', 'fread', 'wcscmp', 'memmove', 'realloc', '_except_handler3', 'free', 'exit', '??2@YAPAXI@Z', '_purecall', 'printf', '??3@YAXPAX@Z', '_CxxThrowException', '??1type_info@@UAE@XZ', 'LocalFree', 'GetVersionExA', 'lstrlenA', 'GetStartupInfoW', 'GetModuleHandleW', 'lstrcpyA', 'GetFileSize', 'ReadFile', 'CopyFileW', 'MultiByteToWideChar', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'OpenProcess', 'TerminateProcess', 'Process32NextW', 'CreateDirectoryW', 'CreateFileW', 'WriteFile', 'FindFirstFileW', 'Sleep', 'DeleteFileW', 'FindNextFileW', 'FindClose', 'RemoveDirectoryW', 'SetProcessWorkingSetSize', 'lstrcmpiA', 'LoadLibraryA', 'InterlockedDecrement', 'lstrcmpW', 'InterlockedIncrement', 'FlushInstructionCache', 'DeleteCriticalSection', 'HeapDestroy', 'InitializeCriticalSection', 'GetModuleFileNameW', 'LoadLibraryW', 'GetProcAddress', 'GlobalLock', 'GlobalUnlock', 'FindResourceW', 'LoadResource', 'CloseHandle', 'GetLastError', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'CreateFileA', 'LeaveCriticalSection', 'EnterCriticalSection', 'FreeResource', 'GlobalFree', 'GlobalHandle', 'GlobalAlloc', 'lstrlenW', 'LockResource', 'IsWindow', 'RedrawWindow', 'GetDesktopWindow', 'CreateAcceleratorTableW', 'CreateWindowExW', 'wsprintfW', 'ReleaseCapture', 'SetCapture', 'InvalidateRect', 'InvalidateRgn', 'GetDlgItem', 'LoadStringW', 'SystemParametersInfoW', 'MoveWindow', 'SetTimer', 'ShowWindow', 'CopyRect', 'MapWindowPoints', 'KillTimer', 'GetParent', 'MessageBoxW', 'LoadCursorFromFileW', 'SetCursor', 'GetCursorPos', 'TrackMouseEvent', 'GetClassNameW', 'SetWindowPos', 'BeginPaint', 'GetClientRect', 'FillRect', 'GetWindowTextW', 'GetFocus', 'IsChild', 'SetFocus', 'CallWindowProcW', 'GetSysColor', 'GetDC', 'GetWindowRect', 'ReleaseDC', 'DestroyCursor', 'DestroyWindow', 'PostQuitMessage', 'SetWindowTextW', 'SetWindowLongW', 'GetWindow', 'DefWindowProcW', 'RegisterWindowMessageW', 'GetClassInfoExW', 'LoadCursorW', 'RegisterClassExW', 'SendMessageW', 'GetWindowLongW', 'CreateDialogIndirectParamW', 'PeekMessageW', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'LoadIconW', 'GetWindowTextLengthW', 'EndPaint', 'CreateStreamOnHGlobal', 'OleInitialize', 'OleUninitialize', 'CoUninitialize', 'CLSIDFromProgID', 'CLSIDFromString', 'CoCreateInstance', 'CoTaskMemFree', 'StringFromCLSID', 'CoTaskMemAlloc', 'OleLockRunning', 'CoSetProxyBlanket', 'CoInitializeSecurity', 'CoInitialize', 'LoadRegTypeLib', 'SysStringLen', 'DispCallFunc', 'VariantClear', 'SysAllocString', 'SysAllocStringLen', 'SysFreeString', 'InitCommonControlsEx', 'CreateCompatibleBitmap', 'CreateSolidBrush', 'CreateDIBSection', 'GetStockObject', 'GetObjectW', 'CreateCompatibleDC', 'DeleteObject', 'SelectObject', 'BitBlt', 'DeleteDC', 'GetDeviceCaps', 'MiniDumpWriteDump', 'InternetReadFile', 'HttpSendRequestW', 'InternetCrackUrlW', 'InternetOpenW', 'InternetConnectW', 'InternetCloseHandle', 'DeleteUrlCacheEntryW', 'FindNextUrlCacheEntryW', 'FindFirstUrlCacheEntryW', 'HttpQueryInfoW', 'HttpOpenRequestW', 'StrStrIW', 'StrCmpIW', 'StrCmpNIW', 'StrChrW', 'PathAppendW', 'StrCpyW', 'PathRemoveFileSpecW', 'PathAddExtensionW', 'PathRemoveExtensionW', 'PathCanonicalizeW', 'UrlCanonicalizeW', 'StrCatW', 'StrStrW', 'PathFileExistsW', 'UrlEscapeW', 'ShellExecuteW', 'SHGetFolderPathW'], ['SetUnhandledExceptionFilter', 'GetStartupInfoA', 'QueryPerformanceCounter', 'Sleep', 'InterlockedExchange', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'LoadLibraryA', 'GlobalUnlock', 'GetLastError', 'GlobalLock', 'lstrlenA', 'GetModuleFileNameA', 'FindFirstFileA', 'GetFileAttributesA', 'FindNextFileA', 'FindClose', 'GetProcAddress', 'GetCurrentThreadId', 'CloseHandle', 'HeapAlloc', 'CreateFileA', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'FreeLibrary', 'FormatMessageA', 'GetModuleHandleA', 'InterlockedCompareExchange', 'IsDebuggerPresent', 'BeginPaint', 'GetClientRect', 'LoadMenuA', 'SystemParametersInfoA', 'DefWindowProcA', 'TrackPopupMenuEx', 'SetMenu', 'AppendMenuW', 'CreateMenu', 'ChangeDisplaySettingsA', 'PostQuitMessage', 'LoadCursorA', 'CloseClipboard', 'EnumDisplaySettingsA', 'GetWindowThreadProcessId', 'IsWindow', 'MoveWindow', 'GetWindowRect', 'DispatchMessageA', 'TranslateMessage', 'TranslateAcceleratorA', 'GetMessageA', 'ShowWindow', 'CreateAcceleratorTableA', 'MessageBoxA', 'SetCaretPos', 'SetScrollInfo', 'GetScrollInfo', 'GetCursorPos', 'SetClipboardViewer', 'ReleaseDC', 'GetDC', 'GetClipboardData', 'OpenClipboard', 'KillTimer', 'PtInRect', 'ScreenToClient', 'GetSysColor', 'FillRect', 'DrawTextA', 'EndPaint', 'GetDlgItem', 'LoadIconA', 'SendMessageA', 'GetWindowLongA', 'SetTimer', 'InvalidateRect', 'SetWindowTextA', 'CreateWindowExA', 'InsertMenuItemA', 'SetMapMode', 'RestoreDC', 'CreateSolidBrush', 'SaveDC', 'GdiComment', 'PlayMetaFile', 'TextOutA', 'GetColorAdjustment', 'SetBkColor', 'GetStockObject', 'SelectObject', 'SetTextColor', 'GetObjectA', 'CreateFontIndirectA', 'DeleteObject', 'EnumFontsA', 'ChooseFontA', 'InitializeSecurityDescriptor', 'SetEntriesInAclA', 'ConvertStringSecurityDescriptorToSecurityDescriptorA', 'AllocateAndInitializeSid', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?swap@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXAAV12@@Z', '??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV01@ABV01@@Z', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@PBD@Z', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z', 'PathAppendA', 'PathRemoveFileSpecA', 'InitCommonControlsEx', 'CreateStatusWindowW', 'PdhOpenQueryA', 'PdhAddCounterW', 'PdhCollectQueryData', 'PdhCloseQuery', 'OpenThemeData', 'DrawThemeBackground', 'CloseThemeData', '__dllonexit', '_unlock', '?_type_info_dtor_internal_method@type_info@@QAEXXZ', '?terminate@@YAXXZ', '__set_app_type', '_encode_pointer', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_configthreadlocale', '_initterm_e', '_lock', '_acmdln', '_ismbblead', '_XcptFilter', '_exit', '_cexit', '__getmainargs', '_amsg_exit', 'strlen', 'malloc', 'fopen', 'fseek', 'ftell', 'rewind', 'fread', '_onexit', '_decode_pointer', '_except_handler4_common', '_invoke_watson', '_controlfp_s', '_crt_debugger_hook', '_initterm', 'strtok', 'free', 'strcpy', 'strcat', 'strcmp', 'memset', 'memcpy', '__iob_func', 'fprintf', 'abort', 'exit', '??2@YAPAXI@Z', '_invalid_parameter_noinfo', '??0exception@std@@QAE@ABV01@@Z', '_CxxThrowException', '__CxxFrameHandler3', '??0exception@std@@QAE@ABQBD@Z', '?what@exception@std@@UBEPBDXZ', '??1exception@std@@UAE@XZ', '??3@YAXPAX@Z', '??0exception@std@@QAE@XZ'], ['__vbaR8FixI4', '_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaInStrB', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaFPInt', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['lstrcmpiW', 'LocalAlloc', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'WideCharToMultiByte', 'LocalFree', 'lstrcmpA', 'FindFirstFileW', 'GetDriveTypeA', 'lstrcatA', 'lstrcmpW', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'FindFirstFileA', 'GetLogicalDriveStringsA', 'CopyFileA', 'FindClose', 'FindNextFileA', 'lstrcatW', 'FindNextFileW', 'DeleteFileW', 'GetCurrentProcessId', 'lstrcpyW', 'DeleteFileA', 'CopyFileW', 'CreateFileA', 'GetFileSize', 'WriteFile', 'ReadFile', 'MultiByteToWideChar', 'CloseHandle', 'FreeLibrary', 'Process32First', 'OpenProcess', 'GetFileAttributesA', 'TerminateProcess', 'FileTimeToSystemTime', 'GetFileSizeEx', 'GetProcAddress', 'LoadLibraryA', 'Process32Next', 'GetPrivateProfileSectionNamesA', 'GetCurrentDirectoryA', 'CreateToolhelp32Snapshot', 'GetVersionExA', 'GetFullPathNameW', 'GetFullPathNameA', 'HeapReAlloc', 'CreateMutexW', 'HeapCompact', 'SetFilePointer', 'TryEnterCriticalSection', 'MapViewOfFile', 'UnmapViewOfFile', 'SetEndOfFile', 'SystemTimeToFileTime', 'QueryPerformanceCounter', 'WaitForSingleObject', 'InterlockedCompareExchange', 'UnlockFile', 'LockFile', 'WaitForSingleObjectEx', 'OutputDebugStringW', 'VirtualAlloc', 'UnlockFileEx', 'GetSystemTimeAsFileTime', 'FormatMessageA', 'InitializeCriticalSection', 'LoadLibraryW', 'FormatMessageW', 'GetVersionExW', 'HeapDestroy', 'LeaveCriticalSection', 'HeapCreate', 'HeapValidate', 'GetFileAttributesW', 'CreateFileW', 'FlushFileBuffers', 'GetTempPathW', 'GetLastError', 'HeapSize', 'LockFileEx', 'EnterCriticalSection', 'GetDiskFreeSpaceW', 'CreateFileMappingA', 'CreateFileMappingW', 'GetDiskFreeSpaceA', 'GetSystemInfo', 'GetFileAttributesExW', 'DeleteCriticalSection', 'GetCurrentThreadId', 'OutputDebugStringA', 'GetTempPathA', 'GetSystemTime', 'AreFileApisANSI', 'GetComputerNameA', 'GetUserDefaultLocaleName', 'GlobalMemoryStatus', 'GetLocaleInfoA', 'TzSpecificLocalTimeToSystemTime', 'GetTimeZoneInformation', 'IsWow64Process', 'GetModuleHandleA', 'GetLocalTime', 'GetFileInformationByHandle', 'CompareStringW', 'SetStdHandle', 'Sleep', 'VirtualAllocExNuma', 'VirtualFree', 'GetCurrentProcess', 'GetStringTypeW', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'GetLocaleInfoW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetModuleFileNameA', 'SetEnvironmentVariableA', 'SetEnvironmentVariableW', 'GetConsoleMode', 'GetConsoleCP', 'GetModuleFileNameW', 'SetLastError', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'IsValidCodePage', 'GetTickCount', 'ExitProcess', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'EncodePointer', 'DecodePointer', 'ExitThread', 'CreateThread', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RaiseException', 'RtlUnwind', 'LCMapStringW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetModuleHandleW', 'IsProcessorFeaturePresent', 'InitializeCriticalSectionAndSpinCount', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetACP', 'GetOEMCP', 'WriteConsoleW', 'GetDesktopWindow', 'GetUserNameA', 'RegEnumValueA', 'RegOpenKeyExA', 'ShellExecuteA', 'SHFileOperationA', 'SHGetFolderPathA', 'PathMatchSpecA', 'PathMatchSpecW', 'GdiplusStartup', 'GdipCloneImage', 'GdipSaveImageToFile', 'GdiplusShutdown', 'GdipFree', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncoders', 'CryptUnprotectData'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaObjVar', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaLateMemCall', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutRestart', 'waveOutPrepareHeader', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'ntohl', 'recvfrom', 'ioctlsocket', 'recv', 'accept', 'getpeername', 'TerminateProcess', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'CreateMutexA', 'ReleaseMutex', 'TerminateThread', 'SuspendThread', 'GetFileSize', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'SetFilePointer', 'GetCurrentProcess', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'RemoveDirectoryA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GetTempPathA', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'DeleteFileA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetActiveWindow', 'SetFocus', 'IsIconic', 'PeekMessageA', 'SetMenu', 'GetMenu', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'GetSysColorBrush', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'DispatchMessageA', 'GetMessageA', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'LoadStringA', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'DeleteMenu', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'GetSystemMenu', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetForegroundWindow', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'GetWindowTextA', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PtInRect', 'PostQuitMessage', 'ChildWindowFromPointEx', 'UnregisterClassA', 'SetRectEmpty', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'PtVisible', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'DeleteObject', 'GetSystemPaletteEntries', 'DPtoLP', 'CreatePalette', 'CreateDIBitmap', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'SHGetSpecialFolderPathA', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['CreateFileMappingA', 'DecodePointer', 'lstrcatA', 'WriteConsoleW', 'CloseHandle', 'CreateFileW', 'MapViewOfFile', 'VirtualAlloc', 'ExitProcess', 'CreateFileA', 'GetEnvironmentVariableA', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'WriteFile', 'FlushFileBuffers', 'SetStdHandle', 'HeapReAlloc', 'HeapSize', 'GetStringTypeW', 'GetFileType', 'GetStdHandle', 'GetProcessHeap', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'HeapFree', 'HeapAlloc', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'RaiseException', 'SendInput', 'DrawStateW', 'PostThreadMessageW', 'GetKeyNameTextA', 'AVIMakeStreamFromClipboard', 'AVIFileInfo', 'AVIFileCreateStream', 'AVIFileExit', 'AVIFileAddRef', 'CoInternetGetSecurityUrl', 'CreateAsyncBindCtxEx', 'CreateAsyncBindCtx', 'CoInternetCombineUrl', 'WriteHitLogging', 'UrlMkSetSessionOption', 'RegisterMediaTypes', 'NdrConformantVaryingArrayBufferSize', 'NdrSimpleStructBufferSize', 'IUnknown_Release_Proxy', 'NdrProxyGetBuffer', 'I_RpcFree'], ['RegCloseKey', 'GetFileTitleA', 'DPtoLP', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'OleInitialize', 'SysStringLen', 'ShellExecuteA', 'GetDC', 'InternetOpenA', 'PlaySoundA', 'OpenPrinterA'], ['wcslen', 'atoi', '__dllonexit', '_setmbcp', '_onexit', '_exit', '_XcptFilter', 'exit', '_acmdln', '_initterm', '__getmainargs', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '__CxxFrameHandler', 'GetCurrentProcess', 'GetProcAddress', 'LoadLibraryExA', 'LoadLibraryExW', 'lstrcmpiA', 'GetModuleHandleA', 'GetStartupInfoA', 'SizeofResource', 'GetForegroundWindow', 'GetWindowTextA', 'GetParent', 'IsWindow', 'LoadCursorA', 'SetCursor', 'GetSystemMetrics', 'SendMessageA', 'UpdateWindow', 'GetSystemMenu', 'EnableWindow', 'IsIconic', 'VariantClear', '??1Init@ios_base@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ', '?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAAV12@PBDI@Z', '??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ', '?_C@?1??_Nullstr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@CAPBGXZ@4GB', '??Hstd@@YA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@ABV10@0@Z', '?assign@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV12@PBGI@Z', '?_Tidy@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@AAEX_N@Z', '?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z', '??6std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z', '?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A', '??0_Winit@std@@QAE@XZ'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFpCDblR8', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaVarDup', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaForEachCollAd', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR4', '_CIsin', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaPrintFile', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaVarCat', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarDup', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '__vbaAryCopy', '_allmul', '_CItan', '__vbaNextEachCollAd', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['CreateWindowExW', 'MessageBoxW', 'MessageBoxA', 'SystemParametersInfoW', 'DestroyIcon', 'SetWindowLongW', 'GetWindowLongW', 'GetClientRect', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'DrawTextW', 'GetDialogBaseUnits', 'EndDialog', 'DialogBoxIndirectParamW', 'MoveWindow', 'SendMessageW', 'GetACP', 'IsValidCodePage', 'GetStringTypeW', 'GetFileAttributesExW', 'FlushFileBuffers', 'GetCurrentDirectoryW', 'GetOEMCP', 'GetCPInfo', 'GetModuleHandleW', 'MulDiv', 'GetLastError', 'SetDllDirectoryW', 'GetModuleFileNameW', 'GetProcAddress', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'FreeLibrary', 'LoadLibraryExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW', 'SetEndOfFile', 'GetCommandLineW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'DecodePointer', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RaiseException', 'GetCommandLineA', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'SetStdHandle', 'SetConsoleCtrlHandler', 'DeleteFileW', 'ReadFile', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'CompareStringW', 'LCMapStringW', 'OpenProcessToken', 'GetTokenInformation', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ConvertSidToStringSidW', 'SelectObject', 'DeleteObject', 'CreateFontIndirectW'], ['GetTickCount', 'RtlUnwind', 'GetCommandLineA', 'ExitProcess', 'TerminateProcess', 'RaiseException', 'HeapSize', 'GetACP', 'GetTimeZoneInformation', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'VirtualAlloc', 'IsBadWritePtr', 'SetHandleCount', 'GetStdHandle', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'GetFileTime', 'GetFileSize', 'GetFileAttributesA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'GetCurrentProcess', 'DuplicateHandle', 'GetOEMCP', 'GetCPInfo', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetProcessVersion', 'GetLastError', 'WritePrivateProfileStringA', 'GlobalFlags', 'lstrcpynA', 'SetErrorMode', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'GlobalUnlock', 'MulDiv', 'SetLastError', 'GetThreadLocale', 'GetVersion', 'lstrcatA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'lstrcpyA', 'GetModuleHandleA', 'FormatMessageA', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'FindResourceA', 'LoadResource', 'LockResource', 'CloseHandle', 'GetModuleFileNameA', 'GlobalLock', 'GlobalDeleteAtom', 'lstrcmpA', 'lstrcmpiA', 'GetCurrentThread', 'GetCurrentThreadId', 'GetProcAddress', 'GlobalAlloc', 'GlobalFree', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetVersionExA', 'LoadLibraryA', 'LoadLibraryExA', 'FreeLibrary', 'lstrlenW', 'lstrlenA', 'GetFileType', 'GetUserDefaultLCID', 'CreateDialogIndirectParamA', 'EndDialog', 'MessageBeep', 'GetNextDlgGroupItem', 'SetRect', 'CopyAcceleratorTableA', 'LoadStringA', 'GetSysColorBrush', 'GetDesktopWindow', 'PtInRect', 'GetClassNameA', 'UnregisterClassA', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'CharNextA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'LoadIconA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'SetActiveWindow', 'AdjustWindowRectEx', 'CopyRect', 'GetTopWindow', 'IsChild', 'GetCapture', 'WinHelpA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetSubMenu', 'GetMenuItemID', 'GetDlgItem', 'GetWindowTextA', 'GetDlgCtrlID', 'DefWindowProcA', 'DestroyWindow', 'CreateWindowExA', 'GetClassLongA', 'SetPropA', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetMessagePos', 'GetForegroundWindow', 'wsprintfA', 'LoadBitmapA', 'IsWindow', 'GetClientRect', 'LoadCursorA', 'EnableWindow', 'SetFocus', 'GetSysColor', 'SetForegroundWindow', 'SetWindowLongA', 'RegisterWindowMessageA', 'OffsetRect', 'SystemParametersInfoA', 'IsIconic', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'UnhookWindowsHookEx', 'PostThreadMessageA', 'RegisterClipboardFormatA', 'MapDialogRect', 'SetWindowPos', 'IsRectEmpty', 'PostQuitMessage', 'PostMessageA', 'SendMessageA', 'SetCursor', 'MessageBoxA', 'GetWindowLongA', 'IsWindowEnabled', 'GetLastActivePopup', 'GetParent', 'SetWindowsHookExA', 'GetCursorPos', 'PeekMessageA', 'IsWindowVisible', 'ValidateRect', 'CallNextHookEx', 'GetKeyState', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'GetNextDlgTabItem', 'GetFocus', 'EnableMenuItem', 'CheckMenuItem', 'SetMenuItemBitmaps', 'ModifyMenuA', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'SetWindowContextHelpId', 'GetWindow', 'CharUpperA', 'DestroyMenu', 'GetViewportExtEx', 'GetWindowExtEx', 'CreateSolidBrush', 'PtVisible', 'RectVisible', 'ExtTextOutA', 'Escape', 'DPtoLP', 'LPtoDP', 'GetMapMode', 'TextOutA', 'DeleteObject', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectObject', 'RestoreDC', 'SaveDC', 'DeleteDC', 'GetBkColor', 'GetTextColor', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateBitmap', 'GetDeviceCaps', 'PatBlt', 'CreateCompatibleDC', 'BitBlt', 'GetObjectA', 'GetStockObject', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegSetValueExA', 'RegCloseKey', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegQueryValueA', 'RegOpenKeyA', 'OleUninitialize', 'OleInitialize', 'CoFreeUnusedLibraries', 'CoTaskMemAlloc', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromProgID', 'CreateStreamOnHGlobal', 'StringFromIID', 'CoTaskMemFree', 'IIDFromString', 'CLSIDFromString', 'CoCreateInstance', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'LoadRegTypeLib', 'SysFreeString', 'VariantClear', 'VariantChangeType', 'VariantInit', 'VariantCopyInd', 'GetRecordInfoFromTypeInfo', 'SysAllocString', 'VariantCopy', 'SysAllocStringLen', 'VariantTimeToSystemTime', 'SysStringLen', 'SysAllocStringByteLen'], ['midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'PlaySoundA', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'accept', 'getpeername', 'recv', 'ioctlsocket', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'DrawDibDraw', 'AVIStreamInfoA', 'AVIStreamGetFrame', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'DuplicateHandle', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'lstrcmpiA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'lstrcmpA', 'LocalAlloc', 'TlsAlloc', 'GlobalHandle', 'TlsFree', 'TlsSetValue', 'LocalReAlloc', 'TlsGetValue', 'GetFileTime', 'GetCurrentThread', 'GlobalFlags', 'SetErrorMode', 'GetProcessVersion', 'GetCPInfo', 'GetOEMCP', 'GetStartupInfoA', 'RtlUnwind', 'GetSystemTime', 'GetLocalTime', 'RaiseException', 'HeapSize', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'GetVersion', 'GetTimeZoneInformation', 'SetLastError', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'CopyFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedExchange', 'lstrcpynA', 'GetSysColorBrush', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'CheckMenuItem', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'SendDlgItemMessageA', 'MapWindowPoints', 'AdjustWindowRectEx', 'GetScrollPos', 'RegisterClassA', 'GetMenuItemCount', 'GetMenuItemID', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'RemovePropA', 'GetMessageTime', 'GetLastActivePopup', 'GetForegroundWindow', 'RegisterWindowMessageA', 'GetWindowPlacement', 'EndDialog', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'CharUpperA', 'GetWindowTextLengthA', 'UnregisterHotKey', 'RegisterHotKey', 'CreateWindowExA', 'CallWindowProcA', 'DrawStateA', 'FrameRect', 'GetNextDlgTabItem', 'GetWindowTextA', 'GetDlgItem', 'FindWindowA', 'GetWindowThreadProcessId', 'GetClassNameA', 'GetDesktopWindow', 'UnregisterClassA', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'LoadStringA', 'DrawIconEx', 'SetCapture', 'CreateCompatibleBitmap', 'CreateDCA', 'GetPolyFillMode', 'CreateBitmap', 'CreatePatternBrush', 'SelectObject', 'GetObjectA', 'CreatePen', 'GetStretchBltMode', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'GetROP2', 'FillRgn', 'TextOutA', 'SetBkMode', 'SetTextColor', 'SetDIBitsToDevice', 'CreateFontA', 'TranslateCharsetInfo', 'SaveDC', 'RestoreDC', 'SetPolyFillMode', 'CreateSolidBrush', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'GetStockObject', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'ExtSelectClipRgn', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'GetPixel', 'CreateCompatibleDC', 'Ellipse', 'SetBkColor', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'CreateRectRgnIndirect', 'CreateDIBSection', 'SetROP2', 'GetDeviceCaps', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA', 'GetFileTitleA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'DragFinish', 'DragQueryFileA', 'DragAcceptFiles', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', '_TrackMouseEvent', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_EndDrag'], ['GetModuleHandleA', 'GetProcAddress', 'listen', 'wsprintfA', 'CryptEncrypt', 'ShellExecuteA', 'GetIpAddrTable'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '__vbaRedimPreserve', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['RtlUnwind', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'RaiseException', 'GetSystemTimeAsFileTime', 'GetTimeFormatA', 'GetDateFormatA', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'VirtualAlloc', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'SetStdHandle', 'GetFileType', 'ExitProcess', 'HeapSize', 'Sleep', 'GetACP', 'GetTimeZoneInformation', 'GetStringTypeA', 'GetStringTypeW', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'SetErrorMode', 'WritePrivateProfileStringA', 'GetFileTime', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetOEMCP', 'GetCPInfo', 'GetThreadLocale', 'GlobalFlags', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'CloseHandle', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'FileTimeToSystemTime', 'GetCurrentProcessId', 'GetModuleFileNameA', 'GetProfileIntA', 'lstrcmpA', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpW', 'InterlockedDecrement', 'GetModuleFileNameW', 'GlobalFree', 'CopyFileA', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'lstrlenA', 'CompareStringW', 'CompareStringA', 'lstrlenW', 'GetVersion', 'MultiByteToWideChar', 'InterlockedExchange', 'GetWindowsDirectoryA', 'FreeLibrary', 'GetTickCount', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'MulDiv', 'GlobalReAlloc', 'GetLastError', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetVersionExA', 'WideCharToMultiByte', 'FindResourceA', 'LoadResource', 'LockResource', 'GetStdHandle', 'SizeofResource', 'GetWindowThreadProcessId', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'IsWindowEnabled', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'PeekMessageA', 'MapWindowPoints', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetScrollInfo', 'SetScrollInfo', 'GetDlgCtrlID', 'CallWindowProcA', 'GetWindowLongA', 'SetWindowLongA', 'SetWindowPos', 'IsIconic', 'GetWindowPlacement', 'GetWindow', 'UnhookWindowsHookEx', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'GetMenuState', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'CharUpperA', 'EnumChildWindows', 'LoadIconA', 'GetSystemMenu', 'GetMenu', 'EnableMenuItem', 'SendMessageA', 'ReleaseDC', 'GetDC', 'SystemParametersInfoA', 'ShowWindow', 'SetRect', 'InflateRect', 'CheckMenuItem', 'AppendMenuA', 'MoveWindow', 'CopyIcon', 'TranslateMessage', 'DispatchMessageA', 'DrawFrameControl', 'OffsetRect', 'GetDoubleClickTime', 'WindowFromPoint', 'IsWindowVisible', 'ClientToScreen', 'IsRectEmpty', 'CopyRect', 'EnableWindow', 'ReleaseCapture', 'PostThreadMessageA', 'UnregisterClassA', 'GetSysColorBrush', 'DestroyMenu', 'GetMessageA', 'ValidateRect', 'PostQuitMessage', 'RegisterClipboardFormatA', 'FillRect', 'FrameRect', 'DrawEdge', 'LoadCursorA', 'SetCursor', 'DrawTextA', 'GetSysColor', 'GetKeyState', 'PtInRect', 'IntersectRect', 'InvertRect', 'PostMessageA', 'GetWindowRect', 'GetClientRect', 'ScreenToClient', 'InvalidateRect', 'SetTimer', 'KillTimer', 'GetCapture', 'SetCapture', 'GetFocus', 'GetParent', 'TabbedTextOutA', 'DrawTextExA', 'GrayStringA', 'DefWindowProcA', 'GetClassInfoA', 'IsWindow', 'IsClipboardFormatAvailable', 'GetSystemMetrics', 'GetMessagePos', 'GetCursorPos', 'ClipCursor', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'DeleteDC', 'GetStockObject', 'CreateSolidBrush', 'DeleteObject', 'MoveToEx', 'CreateBitmap', 'CreateFontIndirectA', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'CopyMetaFileA', 'GetTextMetricsA', 'PatBlt', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'EndDoc', 'AbortDoc', 'EndPage', 'StartPage', 'StartDocA', 'BitBlt', 'GetBkColor', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'GetObjectA', 'CreateFontA', 'CreatePen', 'GetCurrentObject', 'GetDeviceCaps', 'GetTextExtentPoint32A', 'LineTo', 'GetFileTitleA', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyA', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'ShellExecuteA', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'DoDragDrop', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CreateStreamOnHGlobal', 'OleGetClipboard', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'CoRegisterMessageFilter', 'OleSetClipboard', 'CoRevokeClassObject', 'SystemTimeToVariantTime', 'VarUdateFromDate', 'VariantClear', 'VariantChangeType', 'VariantInit', 'VariantTimeToSystemTime'], ['DrawDibDraw', 'AVIStreamGetFrame', 'midiStreamRestart', 'inet_ntoa', 'RasGetConnectStatusA', 'GetSystemDirectoryA', 'LoadStringA', 'RoundRect', 'DocumentPropertiesA', 'ChooseColorA', 'RegCloseKey', 'Shell_NotifyIconA', 'OleInitialize', 'LoadTypeLib', 'InternetConnectA'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaFreeVar', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaStrComp', '__vbaFpI4', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '__vbaFpI2', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_controlfp', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '_itoa', '__CxxFrameHandler', '_CxxThrowException', '_except_handler3', '_mbscmp', 'atoi', '_ftol', '_CIfmod', 'floor', '_strlwr', 'memmove', '__dllonexit', '_onexit', '?terminate@@YAXXZ', '??1type_info@@UAE@XZ', 'GlobalLock', 'GlobalUnlock', 'GetStartupInfoA', 'Sleep', 'ExitProcess', 'IsBadReadPtr', 'LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'FreeLibrary', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetModuleHandleA', 'VirtualFree', 'HeapReAlloc', 'PostMessageA', 'GetFocus', 'SetRect', 'LoadCursorA', 'EnableWindow', 'UpdateWindow', 'GetSystemMetrics', 'DrawIcon', 'SendMessageA', 'GetSystemMenu', 'AppendMenuA', 'GetClientRect', 'MessageBoxA', 'LoadIconA', 'GetWindowRect', 'IsIconic', 'GetDeviceCaps', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'FrameRgn', 'GetCurrentObject', 'GetObjectA', 'CreateFontIndirectA', 'GetTextExtentPoint32A', 'GetBoundsRect', 'GetTextMetricsA', 'RegOpenKeyExA'], ['_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '__CxxFrameHandler', '_EH_prolog', '_setmbcp', '_CxxThrowException', '_mbscmp', 'sscanf', 'memcpy', '_ftol', 'strcpy', 'memset', 'wcslen', 'rand', 'srand', 'time', '??1type_info@@UAE@XZ', '__dllonexit', '_onexit', '_exit', '_controlfp', '_XcptFilter', 'exit', '_acmdln', '__getmainargs', '_initterm', 'LoadLibraryW', 'ExitProcess', 'GetProcAddress', 'GetModuleHandleA', 'GetStartupInfoA', 'lstrlenA', 'InterlockedDecrement', 'LocalFree', 'LocalAlloc', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetLastError', 'GetSysColor', 'InsertMenuA', 'CreatePopupMenu', 'ActivateKeyboardLayout', 'EnableWindow', 'SendMessageA', 'SetCapture', 'ReleaseCapture', 'PtInRect', 'GetWindowRect', 'DrawEdge', 'GetCursorPos', 'ScreenToClient', 'LoadCursorA', 'SetCursor', 'CopyRect', 'DrawStateA', 'LockWindowUpdate', 'LoadBitmapA', 'OffsetRect', 'GetWindowLongA', 'GetClientRect', 'LoadImageA', 'FrameRect', 'InvalidateRect', 'DrawFrameControl', 'InflateRect', 'IsWindow', 'CreateFontIndirectA', 'CreateCompatibleDC', 'CreateSolidBrush', 'LPtoDP', 'SHGetFileInfoA', 'ShellExecuteA', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'CLSIDFromProgID', 'CLSIDFromString', 'CoTaskMemAlloc', 'OleRun', 'SysAllocStringByteLen', 'GetErrorInfo', 'LoadRegTypeLib', 'SysStringByteLen', 'SafeArrayGetDim', 'SysFreeString', 'VariantClear', 'VariantInit', 'VariantCopy', 'SysAllocString'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFpCDblR8', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaI2Str', '__vbaFPException', '_CIlog', '__vbaR8Str', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_unlock', '_lock', '_commode', '__dllonexit', '_onexit', '_fmode', '?terminate@@YAXXZ', '??1type_info@@UEAA@XZ', '_vsnwprintf', '_wcsicmp', 'memcpy', 'bsearch', 'fclose', '_wfopen', '_itow_s', 'wcstoul', '??0exception@@QEAA@XZ', '??0exception@@QEAA@AEBQEBD@Z', 'wcschr', 'memmove_s', '__uncaught_exception', '__C_specific_handler', '_initterm', '__setusermatherr', '_cexit', '_exit', 'exit', '__set_app_type', '__wgetmainargs', '_amsg_exit', '_XcptFilter', '_CxxThrowException', '_callnewh', '?what@exception@@UEBAPEBDXZ', '??1exception@@UEAA@XZ', '??0exception@@QEAA@AEBV0@@Z', '??0exception@@QEAA@AEBQEBDH@Z', 'malloc', 'wcsncmp', 'wcsrchr', 'free', '_purecall', 'memcpy_s', '__CxxFrameHandler3', '_wcsnicmp', 'memset', 'GetModuleFileNameW', 'GetModuleHandleExW', 'LoadLibraryExW', 'MapViewOfFile', 'CreateFileMappingW', 'FreeLibrary', 'LoadResource', 'FindResourceExW', 'UnmapViewOfFile', 'GetVersionExW', 'GetProcAddress', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'SearchPathW', 'SetErrorMode', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'EnterCriticalSection', 'QueryPerformanceCounter', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetLocaleInfoW', 'GetStartupInfoW', 'RtlVirtualUnwind', 'FindFirstFileW', 'LeaveCriticalSection', 'RtlLookupFunctionEntry', 'CompareStringW', 'RtlCaptureContext', 'SetLastError', 'SleepConditionVariableSRW', 'GetCurrentProcess', 'GetStdHandle', 'WriteFile', 'WakeAllConditionVariable', 'ExpandEnvironmentStringsW', 'AcquireSRWLockExclusive', 'ReleaseSRWLockExclusive', 'Sleep', 'SetThreadUILanguage', 'GetCurrentProcessId', 'FindClose', 'CreateFileW', 'GetFileAttributesW', 'FormatMessageW', 'IsWow64Process', 'GetLastError', 'CloseHandle', 'SetConsoleTitleW', 'GetFileType', 'WriteConsoleW', 'LocalFree', 'VerSetConditionMask', 'GetModuleHandleW', 'VerifyVersionInfoW', 'SysAllocString', 'SysFreeString', 'SafeArrayCreate', 'SysStringLen', 'SafeArrayPutElement', 'VariantClear', 'RegCloseKey', 'RegGetValueW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumKeyExW', 'CoInitialize', 'PropVariantClear', 'CoTaskMemAlloc', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'LoadStringW', 'CorBindToRuntimeEx'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaBoolStr', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaDateVar', '_CIlog', '__vbaNew2', '__vbaR8Str', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '__vbaDerefAry1', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaAryCopy', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaObjVar', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaLateMemCall', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaHresultCheck', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaVarTstEq', '__vbaCastObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarErrI4', '__vbaFPException', '__vbaStrVarVal', '_CIlog', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarSetObj', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarDup', '__vbaStrComp', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaFPInt', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_except_handler3', '__set_app_type', '_controlfp', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_onexit', '_exit', '_setmbcp', '_XcptFilter', '__p__fmode', '_acmdln', 'exit', '_mbscmp', '__CxxFrameHandler', '__dllonexit', '_ftol', 'GetModuleFileNameA', 'GetStartupInfoA', 'GetModuleHandleA', 'InvalidateRect', 'GetClientRect', 'EnableWindow', 'UpdateWindow', 'SetPixel', 'RegCloseKey', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegEnumKeyExA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryInfoKeyA', 'SHChangeNotify'], ['SelectObject', 'GetObjectA', 'CreateCompatibleDC', 'BitBlt', 'VirtualProtect', 'GetModuleHandleW', 'LoadImageA', 'ReleaseDC', 'GetDC', '__vbaVarSub', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFpCDblR4', '__vbaAryMove', '__vbaFreeVar', '__vbaLenBstr', '__vbaStrVarMove', '__vbaEnd', '__vbaFreeVarList', '__vbaPut3', '_adj_fdiv_m64', '__vbaRaiseEvent', '__vbaFreeObjList', '_adj_fprem1', '__vbaResume', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaLateMemSt', '__vbaExitProc', '__vbaFileCloseAll', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaVarIndexLoad', '__vbaFpR4', '__vbaBoolVar', '__vbaRefVarAry', '__vbaFpR8', '_CIsin', '__vbaErase', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaGet3', '__vbaAryConstruct2', '__vbaPutOwner3', '__vbaDateR8', 'DllFunctionCall', '__vbaCastObjVar', '__vbaRedimPreserve', '_adj_fpatan', '__vbaR4Var', '__vbaRedim', 'EVENT_SINK_Release', '__vbaNew', '_CIsqrt', '__vbaObjIs', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaUbound', '__vbaStrVarVal', '__vbaGetOwner3', '__vbaVarCat', '__vbaDateVar', '__vbaI2Var', '_CIlog', '__vbaFileOpen', '__vbaVar2Vec', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaPowerR8', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaAryLock', '__vbaStrToAnsi', '__vbaVarDup', '__vbaFpI2', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '__vbaFpCSngR4', '_CItan', '__vbaFPInt', '__vbaAryUnlock', '__vbaFpCSngR8', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetCurrentThreadId', 'lstrcmpiA', 'SetFileAttributesA', 'SetErrorMode', 'OpenEventA', 'GetSystemInfo', 'GlobalMemoryStatus', 'LoadLibraryW', 'FreeLibrary', 'WaitForMultipleObjects', 'TerminateProcess', 'DisconnectNamedPipe', 'GetTickCount', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'GetProcessHeap', 'HeapAlloc', 'HeapFree', 'GetLocalTime', 'GetSystemDirectoryA', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'GetCurrentProcess', 'SetLastError', 'GetModuleFileNameA', 'WriteFile', 'SetFilePointer', 'ReadFile', 'CreateFileA', 'GetFileSize', 'RemoveDirectoryA', 'LocalAlloc', 'FindFirstFileA', 'LocalReAlloc', 'FindNextFileA', 'LocalFree', 'FindClose', 'GetLogicalDriveStringsA', 'GetVolumeInformationA', 'GetDiskFreeSpaceExA', 'CreateProcessA', 'GetFileAttributesA', 'CreateDirectoryA', 'GetLastError', 'DeleteFileA', 'GetVersionExA', 'GetPrivateProfileStringA', 'lstrcmpA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetWindowsDirectoryA', 'lstrcatA', 'GetPrivateProfileSectionNamesA', 'lstrlenA', 'lstrcpyA', 'CancelIo', 'InterlockedExchange', 'ResetEvent', 'Sleep', 'EnterCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'GetProcAddress', 'DeleteCriticalSection', 'InitializeCriticalSection', 'CreateThread', 'ResumeThread', 'CreateEventA', 'SetEvent', 'WaitForSingleObject', 'GetProfileStringA', 'GetLocaleInfoW', 'SetEnvironmentVariableA', 'CompareStringW', 'CompareStringA', 'SetStdHandle', 'SetConsoleCtrlHandler', 'GetUserDefaultLCID', 'EnumSystemLocalesA', 'GetLocaleInfoA', 'IsValidCodePage', 'IsValidLocale', 'GetExitCodeProcess', 'IsBadCodePtr', 'IsBadReadPtr', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'IsBadWritePtr', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'TerminateThread', 'CloseHandle', 'HeapDestroy', 'GetEnvironmentVariableA', 'SetUnhandledExceptionFilter', 'FatalAppExitA', 'GetSystemTime', 'GetTimeZoneInformation', 'GetACP', 'HeapSize', 'HeapReAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'GetCurrentThread', 'GlobalDeleteAtom', 'GlobalAlloc', 'SetThreadPriority', 'SuspendThread', 'LoadResource', 'FindResourceA', 'LockResource', 'GetModuleHandleA', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'GetVersion', 'InterlockedIncrement', 'InterlockedDecrement', 'MulDiv', 'lstrcpynA', 'TlsAlloc', 'GlobalHandle', 'TlsFree', 'GlobalReAlloc', 'TlsSetValue', 'TlsGetValue', 'GlobalFlags', 'GetPrivateProfileIntA', 'WritePrivateProfileStringA', 'GetCurrentDirectoryA', 'GetProcessVersion', 'SizeofResource', 'GetThreadLocale', 'GetCPInfo', 'GetOEMCP', 'DuplicateHandle', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'MoveFileA', 'GetFullPathNameA', 'GetStringTypeExA', 'GetShortPathNameA', 'lstrlenW', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetFileTime', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'SetFileTime', 'FormatMessageA', 'CopyFileA', 'RtlUnwind', 'RaiseException', 'ExitProcess', 'ExitThread', 'CheckMenuItem', 'SetMenuItemBitmaps', 'ModifyMenuA', 'GetMenuState', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'SetActiveWindow', 'EndDialog', 'SetWindowContextHelpId', 'GetWindow', 'SetWindowPos', 'MapDialogRect', 'GetWindowRect', 'GetWindowPlacement', 'IntersectRect', 'OffsetRect', 'RegisterWindowMessageA', 'SetWindowLongA', 'SetForegroundWindow', 'GetMessagePos', 'GetMessageTime', 'DefWindowProcA', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'GetDlgCtrlID', 'GetWindowTextLengthA', 'SetWindowPlacement', 'TrackPopupMenu', 'GetMenuItemID', 'GetSubMenu', 'GetMenuItemCount', 'GetMenu', 'RegisterClassA', 'GetClassInfoA', 'WinHelpA', 'GetCapture', 'IsChild', 'GetTopWindow', 'GetWindowLongA', 'GetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCursor', 'SetScrollInfo', 'GetScrollInfo', 'ScrollWindow', 'EndDeferWindowPos', 'CopyRect', 'BeginDeferWindowPos', 'DeferWindowPos', 'EqualRect', 'ScreenToClient', 'AdjustWindowRectEx', 'SetFocus', 'GetSysColor', 'MapWindowPoints', 'SendDlgItemMessageA', 'UpdateWindow', 'LoadIconA', 'CheckDlgButton', 'EnableMenuItem', 'GetDlgItemInt', 'GetDlgItemTextA', 'SetDlgItemInt', 'SetDlgItemTextA', 'IsDlgButtonChecked', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'ShowWindow', 'CharToOemA', 'OemToCharA', 'LoadStringA', 'DestroyMenu', 'ClientToScreen', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'ReleaseCapture', 'WaitMessage', 'GetClassNameA', 'PtInRect', 'InsertMenuA', 'DeleteMenu', 'GetMenuStringA', 'GetSysColorBrush', 'GetDialogBaseUnits', 'CopyAcceleratorTableA', 'GetNextDlgGroupItem', 'MessageBeep', 'SetRectEmpty', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'LoadMenuA', 'SetMenu', 'ReuseDDElParam', 'UnpackDDElParam', 'InvalidateRect', 'BringWindowToTop', 'CharUpperA', 'InflateRect', 'RegisterClipboardFormatA', 'RemoveMenu', 'UnregisterClassA', 'PostThreadMessageA', 'DestroyIcon', 'IsWindowUnicode', 'DefDlgProcA', 'DrawFocusRect', 'ExcludeUpdateRgn', 'ShowCaret', 'HideCaret', 'GetActiveWindow', 'CallNextHookEx', 'ValidateRect', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'wsprintfA', 'CharNextA', 'MessageBoxA', 'GetWindowTextA', 'EnumWindows', 'GetForegroundWindow', 'GetAsyncKeyState', 'GetNextDlgTabItem', 'GetFocus', 'PeekMessageA', 'SetWindowsHookExA', 'GetParent', 'ShowOwnedPopups', 'PostQuitMessage', 'GetLastActivePopup', 'CheckRadioButton', 'IsWindowEnabled', 'ShowScrollBar', 'SetScrollPos', 'wvsprintfA', 'IsWindow', 'CloseWindow', 'CreateWindowExA', 'PostMessageA', 'OpenDesktopA', 'GetThreadDesktop', 'GetUserObjectInformationA', 'OpenInputDesktop', 'SetThreadDesktop', 'CloseDesktop', 'IsWindowVisible', 'GetWindowThreadProcessId', 'ExitWindowsEx', 'GetProcessWindowStation', 'OpenWindowStationA', 'SetProcessWindowStation', 'GetCursorInfo', 'GetCursorPos', 'SetRect', 'GetDesktopWindow', 'GetDC', 'ReleaseDC', 'SystemParametersInfoA', 'DestroyCursor', 'LoadCursorA', 'GetClipboardData', 'OpenClipboard', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'SetCursorPos', 'WindowFromPoint', 'SetCapture', 'mouse_event', 'MapVirtualKeyA', 'GetClientRect', 'IsIconic', 'DrawIcon', 'GetSystemMetrics', 'SendMessageA', 'GetSystemMenu', 'AppendMenuA', 'EnableWindow', 'GetKeyState', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SelectPalette', 'GetStockObject', 'RestoreDC', 'SaveDC', 'StartDocA', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'SetViewportOrgEx', 'GetDCOrgEx', 'CreateBitmap', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'ExcludeClipRect', 'DeleteDC', 'CreateCompatibleDC', 'GetClipBox', 'OffsetViewportOrgEx', 'CreateDIBitmap', 'GetTextExtentPointA', 'CreateDCA', 'CopyMetaFileA', 'CreateRectRgnIndirect', 'CombineRgn', 'SetRectRgn', 'PatBlt', 'GetMapMode', 'LPtoDP', 'DPtoLP', 'GetBkColor', 'GetTextColor', 'CreateFontIndirectA', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'CreateDIBPatternBrushPt', 'CreatePatternBrush', 'CreateHatchBrush', 'CreateSolidBrush', 'ExtCreatePen', 'CreatePen', 'GetWindowExtEx', 'GetViewportExtEx', 'GetDeviceCaps', 'PlayMetaFile', 'EnumMetaFile', 'GetObjectType', 'PlayMetaFileRecord', 'ExtSelectClipRgn', 'SelectClipPath', 'CreateRectRgn', 'GetClipRgn', 'PolyBezierTo', 'SetColorAdjustment', 'PolylineTo', 'PolyDraw', 'SetArcDirection', 'ArcTo', 'GetCurrentPositionEx', 'SetMapperFlags', 'SetTextCharacterExtra', 'SetTextJustification', 'SetTextAlign', 'LineTo', 'MoveToEx', 'OffsetClipRgn', 'IntersectClipRect', 'DeleteObject', 'GetDIBits', 'CreateCompatibleBitmap', 'BitBlt', 'SelectObject', 'CreateDIBSection', 'ICSeqCompressFrame', 'ICSendMessage', 'ICOpen', 'ICClose', 'ICCompressorFree', 'ICSeqCompressFrameEnd', 'ICSeqCompressFrameStart', 'OpenEventLogA', 'RegEnumKeyA', 'LsaClose', 'LsaRetrievePrivateData', 'LsaOpenPolicy', 'IsValidSid', 'LookupAccountNameA', 'LsaFreeMemory', 'RegCloseKey', 'RegQueryValueA', 'RegOpenKeyExA', 'CloseServiceHandle', 'DeleteService', 'ControlService', 'QueryServiceStatus', 'OpenServiceA', 'OpenSCManagerA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueExA', 'GetTokenInformation', 'LookupAccountSidA', 'RegDeleteKeyA', 'RegEnumKeyExA', 'RegEnumValueA', 'AllocateAndInitializeSid', 'GetLengthSid', 'InitializeAcl', 'AddAccessAllowedAce', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'RegSetKeySecurity', 'FreeSid', 'RegDeleteValueA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'RegSetValueA', 'ClearEventLogA', 'CloseEventLog', 'SetEntriesInAclA', 'GetNamedSecurityInfoA', 'BuildExplicitAccessWithNameA', 'SetNamedSecurityInfoA', 'RegOpenKeyA', 'SHGetSpecialFolderPathA', 'SHGetFileInfoA', 'DragAcceptFiles', 'DragFinish', 'DragQueryFileA', 'ExtractIconA', 'SHDeleteKeyA', 'waveOutReset', 'waveInClose', 'waveInUnprepareHeader', 'waveInReset', 'waveInStop', 'waveOutUnprepareHeader', 'waveOutGetNumDevs', 'waveOutOpen', 'waveOutPrepareHeader', 'waveInGetNumDevs', 'waveInOpen', 'waveOutWrite', 'waveOutClose', 'waveInStart', 'waveInAddBuffer', 'waveInPrepareHeader', 'WSAGetLastError', 'ioctlsocket', 'gethostname', 'recvfrom', 'sendto', 'listen', 'accept', 'getpeername', 'bind', 'getsockname', 'ntohs', 'inet_addr', '__WSAFDIsSet', 'send', 'closesocket', 'socket', 'gethostbyname', 'htons', 'connect', 'setsockopt', 'WSAIoctl', 'WSACleanup', 'inet_ntoa', 'select', 'recv', 'WSAStartup', 'InternetGetConnectedState', 'GetModuleFileNameExA', 'WTSQuerySessionInformationA', 'WTSFreeMemory', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA', 'OleSetClipboard', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoRegisterMessageFilter', 'CoTreatAsClass', 'StringFromCLSID', 'ReadClassStg', 'ReadFmtUserTypeStg', 'OleRegGetUserType', 'WriteClassStg', 'WriteFmtUserTypeStg', 'SetConvertStg', 'CreateBindCtx', 'OleFlushClipboard', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'CoDisconnectObject', 'OleRun', 'CoCreateInstance', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'OleIsCurrentClipboard', 'OleDuplicateData', 'CreateStreamOnHGlobal', 'ReleaseStgMedium', 'SafeArrayDestroyData', 'SafeArrayDestroy', 'SafeArrayUnlock', 'SafeArrayLock', 'SafeArrayPutElement', 'SafeArrayPtrOfIndex', 'SafeArrayGetElement', 'SafeArrayAllocDescriptor', 'SafeArrayAllocData', 'SafeArrayCopy', 'VarBstrFromDate', 'VarDateFromStr', 'VarBstrFromCy', 'VarCyFromStr', 'SysStringByteLen', 'SysAllocStringByteLen', 'SafeArrayRedim', 'SafeArrayCreate', 'SafeArrayGetDim', 'SafeArrayGetElemsize', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayAccessData', 'SafeArrayUnaccessData', 'SysAllocString', 'SysReAllocStringLen', 'VariantChangeType', 'VariantCopy', 'VariantTimeToSystemTime', 'VariantClear', 'SysAllocStringLen', 'SysFreeString', 'LoadTypeLib', 'SysStringLen', 'SafeArrayDestroyDescriptor'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaVarIdiv', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaI2Var', '__vbaLsetFixstrFree', '_CIlog', '__vbaErrorOverflow', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaLateMemCall', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaStrI4', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaStrErrVarCopy', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaVarForInit', '__vbaFileCloseAll', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaI2I4', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaUI1I4', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaInStrVar', '__vbaDateVar', '__vbaFileSeek', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaInStr', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaFpCy', '__vbaInStrB', '__vbaStrComp', '__vbaVarDup', '__vbaStrToAnsi', '__vbaVarCopy', '__vbaR8IntI2', '_CIatan', '__vbaStrMove', '__vbaCastObj', '__vbaR8IntI4', '__vbaI4Cy', '_allmul', '_CItan', '__vbaVarForNext', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['__vbaVarTstGt', '__vbaVarSub', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaVarForInit', '__vbaExitProc', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaBoolVarNull', '_CIsin', '__vbaErase', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaVarTstEq', '__vbaAryConstruct2', '__vbaObjVar', 'DllFunctionCall', '__vbaVarLateMemSt', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaStrUI1', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaI2Var', '_CIlog', '__vbaFileOpen', '__vbaVarLateMemCallLdRf', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarAdd', '__vbaLateMemCall', '__vbaStrToAnsi', '__vbaFpI2', '__vbaVarLateMemCallLd', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaFPInt', '__vbaVarForNext', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['CryptMemAlloc', 'GetFileAttributesA', 'GetFileTime', 'GetTickCount', 'HeapAlloc', 'RaiseException', 'RtlUnwind', 'HeapFree', 'HeapReAlloc', 'VirtualProtect', 'VirtualAlloc', 'GetSystemInfo', 'VirtualQuery', 'GetCommandLineA', 'GetProcessHeap', 'GetStartupInfoA', 'ExitProcess', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'VirtualFree', 'HeapDestroy', 'HeapCreate', 'GetStdHandle', 'GetACP', 'LCMapStringA', 'LCMapStringW', 'Sleep', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'SetEnvironmentVariableA', 'GetProcAddress', 'GetModuleHandleW', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'GetLastError', 'GetVersion', 'CompareStringA', 'CompareStringW', 'lstrlenA', 'GetModuleHandleA', 'GlobalDeleteAtom', 'FreeLibrary', 'GlobalAlloc', 'lstrcmpA', 'GlobalLock', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'LoadLibraryA', 'GetLocaleInfoA', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'GetCurrentThreadId', 'GetCurrentThread', 'CloseHandle', 'GlobalAddAtomA', 'FileTimeToLocalFileTime', 'SetErrorMode', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetThreadLocale', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'WritePrivateProfileStringA', 'GetModuleFileNameW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'GetVersionExA', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'SetLastError', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'IsRectEmpty', 'CopyAcceleratorTableA', 'CharNextA', 'GetSysColorBrush', 'ReleaseCapture', 'LoadCursorA', 'SetCapture', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetForegroundWindow', 'UpdateWindow', 'GetMenu', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'CopyRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowLongA', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'DrawIcon', 'SendMessageA', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'GetMenuItemID', 'GetMenuItemCount', 'GetSubMenu', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'UnregisterClassA', 'DestroyMenu', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'GetWindowTextLengthA', 'SetRect', 'GetSystemMetrics', 'CharUpperA', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'SetWindowsHookExA', 'SetCursor', 'MessageBoxA', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongA', 'GetWindowThreadProcessId', 'EndDialog', 'GetNextDlgTabItem', 'GetDlgItem', 'GetCapture', 'SetMapMode', 'DeleteObject', 'GetViewportExtEx', 'GetWindowExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SelectObject', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'ExtSelectClipRgn', 'DeleteDC', 'GetStockObject', 'GetBkColor', 'GetTextColor', 'CreateRectRgnIndirect', 'GetRgnBox', 'GetMapMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetDeviceCaps', 'SetWindowExtEx', 'CreateBitmap', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegCloseKey', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'SetFileSecurityW', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoTaskMemAlloc', 'CoRevokeClassObject', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'CoInitialize', 'CoCreateInstance', 'OleRun', 'CoUninitialize', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'SysAllocStringByteLen', 'SysStringByteLen', 'SysFreeString', 'VariantInit', 'VariantCopy', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'SysStringLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'GetErrorInfo', 'SysAllocString'], ['TerminateThread', 'CreateThread', 'WriteFile', 'CreateFileW', 'LoadLibraryW', 'GetLocalTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'ReadFile', 'FindFirstFileA', 'GetBinaryTypeW', 'FindNextFileA', 'GetFullPathNameA', 'GetTempPathW', 'GetPrivateProfileStringW', 'CreateFileA', 'GlobalAlloc', 'GetCurrentDirectoryW', 'SetCurrentDirectoryW', 'LocalFree', 'GetFileSize', 'FreeLibrary', 'WaitForSingleObject', 'GetCurrentProcess', 'WaitForMultipleObjects', 'CreatePipe', 'PeekNamedPipe', 'DuplicateHandle', 'SetEvent', 'CreateProcessW', 'CreateEventA', 'GetModuleFileNameW', 'LoadResource', 'FindResourceW', 'GetComputerNameW', 'HeapFree', 'LoadLibraryExW', 'FindFirstFileW', 'FindNextFileW', 'SetFilePointer', 'GetLogicalDriveStringsW', 'DeleteFileW', 'VirtualQuery', 'GetDriveTypeW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'CreateMutexA', 'ReleaseMutex', 'TerminateProcess', 'OpenProcess', 'CreateToolhelp32Snapshot', 'Process32NextW', 'Process32FirstW', 'CreateProcessA', 'SizeofResource', 'VirtualProtect', 'GetSystemDirectoryW', 'LockResource', 'GetWindowsDirectoryW', 'IsWow64Process', 'GetStartupInfoA', 'Process32First', 'WriteProcessMemory', 'Process32Next', 'GetWindowsDirectoryA', 'VirtualProtectEx', 'VirtualAllocEx', 'CreateRemoteThread', 'WinExec', 'GetTempPathA', 'GetCommandLineA', 'GetModuleHandleA', 'ExitProcess', 'GetProcAddress', 'LoadLibraryA', 'GetProcessHeap', 'HeapAlloc', 'lstrcmpW', 'GetTickCount', 'lstrcpyW', 'WideCharToMultiByte', 'HeapReAlloc', 'VirtualAlloc', 'CopyFileW', 'lstrcpyA', 'Sleep', 'MultiByteToWideChar', 'lstrcatA', 'lstrcmpA', 'lstrlenA', 'ExpandEnvironmentStringsW', 'lstrlenW', 'CloseHandle', 'lstrcatW', 'VirtualFree', 'GetLastError', 'SetLastError', 'GetModuleFileNameA', 'CreateDirectoryW', 'GlobalMemoryStatusEx', 'MessageBoxA', 'GetKeyState', 'GetMessageA', 'DispatchMessageA', 'CreateWindowExW', 'CallNextHookEx', 'wsprintfW', 'wsprintfA', 'GetWindowTextW', 'GetAsyncKeyState', 'RegisterClassW', 'GetRawInputData', 'ToUnicode', 'DefWindowProcA', 'RegisterRawInputDevices', 'TranslateMessage', 'GetForegroundWindow', 'GetKeyNameTextW', 'PostQuitMessage', 'GetLastInputInfo', 'MapVirtualKeyA', 'SetSecurityDescriptorDacl', 'RegDeleteKeyA', 'InitializeSecurityDescriptor', 'RegEnumKeyExW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegCloseKey', 'OpenServiceW', 'ChangeServiceConfigW', 'QueryServiceConfigW', 'EnumServicesStatusExW', 'StartServiceW', 'RegSetValueExW', 'RegCreateKeyExA', 'OpenSCManagerW', 'CloseServiceHandle', 'GetTokenInformation', 'LookupAccountSidW', 'FreeSid', 'OpenProcessToken', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'RegDeleteValueW', 'RegSetValueExA', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegQueryValueExA', 'ShellExecuteW', 'ShellExecuteExA', 'ShellExecuteExW', 'SHGetSpecialFolderPathW', 'SHCreateDirectoryExW', 'SHGetFolderPathW', 'URLDownloadToFileW', 'send', 'WSAStartup', 'shutdown', 'closesocket', 'WSACleanup', 'ioctlsocket', 'ntohs', 'gethostbyname', 'inet_addr', 'getaddrinfo', 'setsockopt', 'freeaddrinfo', 'htons', 'recv', 'connect', 'socket', 'CoInitializeSecurity', 'CoUninitialize', 'CoCreateInstance', 'CoTaskMemFree', 'CoInitialize', 'StrStrA', 'StrStrW', 'PathFindExtensionW', 'PathCombineA', 'PathFindFileNameW', 'PathFileExistsW', 'PathRemoveFileSpecA', 'NetUserAdd', 'NetLocalGroupAddMembers', 'VariantInit', 'CryptStringToBinaryA', 'CryptUnprotectData', 'GetModuleFileNameExW'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaLateMemSt', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarSetVar', '__vbaVarAdd', '__vbaLateMemCall', '__vbaStrToAnsi', '__vbaVarDup', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['lstrcmpiA', 'lstrcpyW', 'lstrcpynW', 'lstrlenW', 'GetStringTypeW', 'GetStringTypeA', 'LCMapStringW', 'LCMapStringA', 'GetLocaleInfoA', 'HeapSize', 'HeapReAlloc', 'HeapAlloc', 'IsValidCodePage', 'GetOEMCP', 'WriteProcessMemory', 'IsDebuggerPresent', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'HeapFree', 'HeapCreate', 'TlsFree', 'TlsAlloc', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'SetUnhandledExceptionFilter', 'GetCommandLineA', 'WritePrivateProfileStructW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'VerifyVersionInfoA', 'UnmapViewOfFile', 'UnhandledExceptionFilter', 'TlsSetValue', 'TlsGetValue', 'SystemTimeToTzSpecificLocalTime', 'SystemTimeToFileTime', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetProcessShutdownParameters', 'SetLastError', 'SetFilePointerEx', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetConsoleCursor', 'RtlUnwind', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'RemoveDirectoryA', 'ReleaseMutex', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'QueryPerformanceCounter', 'OutputDebugStringW', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'MoveFileW', 'Module32FirstW', 'LockResource', 'LocalFree', 'LocalAlloc', 'LoadResource', 'LoadLibraryW', 'LoadLibraryExW', 'LoadLibraryExA', 'LoadLibraryA', 'LeaveCriticalSection', 'IsValidLocale', 'IsBadStringPtrA', 'IsBadHugeReadPtr', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InitializeCriticalSection', 'InitAtomTable', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetWindowsDirectoryW', 'GetVersionExW', 'GetVersionExA', 'GetVersion', 'GetUserDefaultUILanguage', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLangID', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetNumberFormatW', 'GetNamedPipeHandleStateW', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileInformationByHandle', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDevicePowerState', 'GetDefaultCommConfigA', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleFontSize', 'GetConsoleAliasExesW', 'GetCommandLineW', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageW', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceW', 'FindNextVolumeA', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsW', 'ExitThread', 'ExitProcess', 'EnumSystemLanguageGroupsW', 'EnumSystemLanguageGroupsA', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateTimerQueueTimer', 'CreateThread', 'CreateFileW', 'CreateEventW', 'CreateEventA', 'CreateConsoleScreenBuffer', 'CompareStringW', 'InitializeCriticalSectionAndSpinCount', 'CloseHandle', 'ShowCursor', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SubtractRect', 'SystemParametersInfoW', 'ToAscii', 'TrackPopupMenu', 'TrackPopupMenuEx', 'TranslateMDISysAccel', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WaitMessage', 'WindowFromPoint', 'LoadCursorFromFileA', 'LoadIconA', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenuContextHelpId', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScrollDC', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterDeviceNotificationW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RegisterClassA', 'RedrawWindow', 'RealChildWindowFromPoint', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'PeekMessageA', 'OpenClipboard', 'OffsetRect', 'NotifyWinEvent', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MonitorFromRect', 'MessageBoxW', 'MessageBoxExW', 'MessageBoxA', 'MessageBeep', 'MapWindowPoints', 'LockWindowUpdate', 'LoadStringW', 'ShowCaret', 'LoadImageW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuW', 'InsertMenuItemW', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetWindow', 'GetUserObjectInformationW', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetMonitorInfoW', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMessageA', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardFormatNameW', 'GetClipboardData', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowRgn', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'LoadKeyboardLayoutW', 'SetScrollInfo', 'ActivateKeyboardLayout', 'AdjustWindowRectEx', 'BeginDeferWindowPos', 'BeginPaint', 'CallMsgFilter', 'CallNextHookEx', 'CallWindowProcW', 'CharLowerBuffW', 'CharLowerW', 'CharNextW', 'CharUpperBuffW', 'CheckMenuItem', 'ClientToScreen', 'CloseClipboard', 'CopyImage', 'CountClipboardFormats', 'CreateIcon', 'CreateMenu', 'CreatePopupMenu', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowW', 'FindWindowExW', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndMenu', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExW', 'DrawStateW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DialogBoxIndirectParamW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcW', 'DefWindowProcA', 'DefMDIChildProcW', 'DefFrameProcW', 'CreateWindowExW', 'CreateWindowExA', 'MapVirtualKeyW', 'GetCurrentPositionEx', 'GetDCOrgEx', 'GetDIBColorTable', 'GetDIBits', 'GetDeviceCaps', 'GetEnhMetaFileBits', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileHeader', 'GetEnhMetaFilePaletteEntries', 'GetMapMode', 'GetNearestPaletteIndex', 'GetObjectW', 'GetPaletteEntries', 'GetPixel', 'GetRgnBox', 'GetStockObject', 'GetSystemPaletteEntries', 'GetTextAlign', 'GetTextColor', 'GetTextExtentExPointW', 'GetTextExtentPoint32W', 'GetTextExtentPointW', 'GetTextMetricsW', 'GetWinMetaFileBits', 'GetWindowOrgEx', 'IntersectClipRect', 'LPtoDP', 'LineTo', 'MaskBlt', 'MoveToEx', 'OffsetRgn', 'PatBlt', 'Pie', 'PlayEnhMetaFile', 'GetCurrentObject', 'PolyBezierTo', 'Polygon', 'Polyline', 'RealizePalette', 'RectVisible', 'Rectangle', 'ResizePalette', 'RestoreDC', 'RoundRect', 'SaveDC', 'SelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetBrushOrgEx', 'SetDIBColorTable', 'SetDIBits', 'SetEnhMetaFileBits', 'SetMapMode', 'SetPixel', 'SetROP2', 'SetStretchBltMode', 'SetTextAlign', 'SetTextColor', 'SetViewportOrgEx', 'SetWinMetaFileBits', 'SetWindowOrgEx', 'StartPage', 'StretchBlt', 'StretchDIBits', 'UnrealizeObject', 'XLATEOBJ_iXlate', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiGetDevmodeForPage', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePatternBrush', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'Chord', 'PolyBezier', 'Arc', 'BitBlt', 'RegCloseKey', 'RegDeleteValueW', 'RegFlushKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegSetValueExW', 'RegOpenKeyA', 'RegCreateKeyExW', 'ExtractIconExA', 'SHEmptyRecycleBinW', 'SHGetDesktopFolder', 'SHGetFileInfoW', 'SHGetMalloc', 'SHGetPathFromIDListA', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'ShellExecuteW', 'ExtractAssociatedIconW', 'StringFromCLSID', 'RevokeDragDrop', 'ReleaseStgMedium', 'RegisterDragDrop', 'OleUninitialize', 'OleSetClipboard', 'OleInitialize', 'OleGetClipboard', 'IsEqualGUID', 'DoDragDrop', 'CreateStreamOnHGlobal', 'CreateDataAdviseHolder', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitialize', 'CoCreateInstance', 'CLSIDFromString', 'ImageList_Read', 'ImageList_GetImageCount', 'ImageList_GetIconSize', 'ImageList_GetDragImage', 'ImageList_GetBkColor', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_Remove', 'ImageList_DragEnter', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_BeginDrag', 'ImageList_Add', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', 'ImageList_Replace', 'ImageList_SetBkColor', 'ImageList_SetIconSize', 'ImageList_SetImageCount', 'ImageList_Write', 'InitializeFlatSB', 'ImageList_DragLeave', '_TrackMouseEvent'], ['FileTimeToLocalFileTime', 'InitializeCriticalSectionEx', 'CreateFileMappingW', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileW', 'SetEnvironmentVariableA', 'GetTimeZoneInformation', 'GetFileAttributesExW', 'CreateProcessA', 'GetExitCodeProcess', 'LCMapStringEx', 'CompareStringEx', 'SetFilePointerEx', 'ReadConsoleW', 'GetConsoleMode', 'GetConsoleCP', 'GetStringTypeW', 'lstrlenA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount64', 'QueryPerformanceCounter', 'InitOnceExecuteOnce', 'GetProcessHeap', 'HeapAlloc', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'HeapFree', 'WaitForSingleObjectEx', 'GetCurrentDirectoryW', 'IsValidCodePage', 'GetStartupInfoW', 'TerminateProcess', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'FlsAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'SetStdHandle', 'WriteConsoleW', 'OutputDebugStringW', 'GetFileType', 'GetStdHandle', 'GetSystemTimeAsFileTime', 'RaiseException', 'ExitThread', 'CreateThread', 'RtlUnwind', 'GetCommandLineA', 'HeapValidate', 'VirtualQuery', 'GetSystemInfo', 'SetThreadStackGuarantee', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetDriveTypeW', 'AreFileApisANSI', 'GetModuleHandleExW', 'DecodePointer', 'EncodePointer', 'Sleep', 'SearchPathA', 'GetTempPathA', 'GetUserDefaultUILanguage', 'FindResourceExW', 'GetWindowsDirectoryA', 'GetTickCount', 'GetTempFileNameA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesExA', 'GetFileAttributesA', 'GetCPInfo', 'GetOEMCP', 'InitializeCriticalSectionAndSpinCount', 'FileTimeToSystemTime', 'VerifyVersionInfoA', 'VerSetConditionMask', 'OpenEventW', 'lstrcmpiA', 'GetCurrentProcess', 'GetHandleInformation', 'DuplicateHandle', 'WriteFile', 'UnlockFile', 'SetFilePointer', 'SetEndOfFile', 'ReadFile', 'LockFile', 'GetFullPathNameA', 'GetFileSize', 'FlushFileBuffers', 'CreateFileA', 'VirtualProtect', 'GetProfileIntA', 'GetACP', 'GetThreadLocale', 'GetAtomNameA', 'SetErrorMode', 'DeleteFileA', 'GlobalFlags', 'GetCurrentDirectoryA', 'InterlockedIncrement', 'LocalReAlloc', 'LocalAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'lstrcmpW', 'FormatMessageA', 'MulDiv', 'LocalFree', 'GlobalSize', 'ResumeThread', 'SetThreadPriority', 'GetCurrentProcessId', 'GlobalAddAtomA', 'WaitForSingleObject', 'SetEvent', 'LoadLibraryW', 'GlobalUnlock', 'GetModuleFileNameW', 'GetVersion', 'SetLastError', 'OutputDebugStringA', 'GetFileAttributesW', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetModuleHandleW', 'GetModuleHandleA', 'FindResourceA', 'GlobalFree', 'FreeResource', 'GetLocaleInfoEx', 'GetThreadPreferredUILanguages', 'CompareStringA', 'ApplicationRecoveryFinished', 'ApplicationRecoveryInProgress', 'RegisterApplicationRestart', 'RegisterApplicationRecoveryCallback', 'lstrcmpA', 'GlobalDeleteAtom', 'GlobalLock', 'GlobalAlloc', 'LoadLibraryExW', 'FreeLibrary', 'GetVersionExA', 'GetCurrentThreadId', 'GetCurrentThread', 'GetLastError', 'MultiByteToWideChar', 'InterlockedExchange', 'EnterCriticalSection', 'LeaveCriticalSection', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'ExitProcess', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'GetEnvironmentVariableA', 'GlobalMemoryStatusEx', 'InterlockedDecrement', 'CopyFileA', 'GetModuleFileNameA', 'OpenProcess', 'LoadLibraryA', 'GetProcAddress', 'CloseHandle', 'Process32Next', 'Process32First', 'lstrcpyA', 'CreateToolhelp32Snapshot', 'VirtualAlloc', 'GetVolumeInformationA', 'GetClassInfoExA', 'CallWindowProcA', 'GetMessageTime', 'GetMessagePos', 'IsDialogMessageA', 'SetWindowLongA', 'GetWindowTextLengthA', 'GetWindowTextA', 'SetWindowTextA', 'SetFocus', 'GetDlgCtrlID', 'CheckDlgButton', 'MoveWindow', 'ShowWindow', 'SendDlgItemMessageA', 'NotifyWinEvent', 'LoadIconW', 'LoadIconA', 'LoadCursorW', 'GetTopWindow', 'SetParent', 'WindowFromPoint', 'MapWindowPoints', 'ScreenToClient', 'ClientToScreen', 'HideCaret', 'GetWindowRect', 'GetClientRect', 'EnableScrollBar', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'LockWindowUpdate', 'RedrawWindow', 'InvalidateRgn', 'InvalidateRect', 'GetWindowRgn', 'SetWindowRgn', 'GetUpdateRect', 'EndPaint', 'BeginPaint', 'ReleaseDC', 'GetWindowDC', 'GetDC', 'SetForegroundWindow', 'GetForegroundWindow', 'UpdateWindow', 'GetSystemMenu', 'DrawMenuBar', 'KillTimer', 'SetTimer', 'SetCapture', 'GetCapture', 'OpenClipboard', 'GetNextDlgTabItem', 'GetNextDlgGroupItem', 'IsZoomed', 'BringWindowToTop', 'IsIconic', 'CreateWindowExA', 'ShowOwnedPopups', 'IsChild', 'CharNextA', 'LoadAcceleratorsW', 'UnhookWindowsHookEx', 'InvertRect', 'FrameRect', 'FillRect', 'DrawFocusRect', 'GetSysColorBrush', 'DrawStateA', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'DrawIcon', 'SetMenuDefaultItem', 'GetMenuDefaultItem', 'SetMenuItemInfoA', 'GetMenuItemInfoA', 'InsertMenuItemA', 'DeleteMenu', 'RemoveMenu', 'ModifyMenuA', 'AppendMenuA', 'InsertMenuA', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'EnableMenuItem', 'CheckMenuItem', 'CreatePopupMenu', 'CreateMenu', 'GetMenuState', 'GetMenuStringA', 'LoadMenuW', 'LoadMenuA', 'IsMenu', 'DrawFrameControl', 'DrawEdge', 'GetClassNameA', 'GetLastActivePopup', 'GetWindowThreadProcessId', 'MessageBoxA', 'CallNextHookEx', 'SetWindowsHookExA', 'GetCursorPos', 'ValidateRect', 'GetKeyState', 'CopyAcceleratorTableA', 'MessageBeep', 'SetRectEmpty', 'GetAsyncKeyState', 'GetClipboardFormatNameA', 'GetSystemMetrics', 'GetSysColor', 'SetCursor', 'PeekMessageA', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'LoadBitmapW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'GetFocus', 'TabbedTextOutA', 'PostMessageA', 'GetDesktopWindow', 'GetWindowLongA', 'SetActiveWindow', 'IsWindowEnabled', 'EnableWindow', 'GetActiveWindow', 'GetDlgItem', 'EndDialog', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetWindowPlacement', 'SetWindowPlacement', 'BeginDeferWindowPos', 'DeferWindowPos', 'EndDeferWindowPos', 'GetMenu', 'SetMenu', 'TrackPopupMenu', 'ScrollWindow', 'SetPropA', 'GetPropA', 'RemovePropA', 'AdjustWindowRectEx', 'CopyRect', 'EqualRect', 'GetClassLongA', 'SetScrollInfo', 'IsWindow', 'RegisterWindowMessageA', 'GetScrollInfo', 'WinHelpA', 'MonitorFromWindow', 'GetMonitorInfoA', 'WaitMessage', 'CopyImage', 'SystemParametersInfoA', 'IsWindowVisible', 'RealChildWindowFromPoint', 'SubtractRect', 'UnionRect', 'IntersectRect', 'InflateRect', 'SetRect', 'GetClassInfoA', 'DefWindowProcA', 'RegisterClassA', 'LoadCursorA', 'ReleaseCapture', 'SendMessageA', 'PostQuitMessage', 'SetWindowPos', 'SetWindowContextHelpId', 'GetParent', 'GetWindow', 'MapDialogRect', 'DestroyMenu', 'UnpackDDElParam', 'DestroyIcon', 'CharUpperA', 'LoadAcceleratorsA', 'TranslateAcceleratorA', 'LoadImageA', 'ReuseDDElParam', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'GetKeyNameTextA', 'MapVirtualKeyA', 'TrackMouseEvent', 'UpdateLayeredWindow', 'MonitorFromPoint', 'UnregisterClassA', 'RegisterClipboardFormatA', 'DrawIconEx', 'GetKeyboardLayout', 'GetKeyboardState', 'ToAsciiEx', 'CreateAcceleratorTableA', 'DestroyAcceleratorTable', 'PtInRect', 'GetComboBoxInfo', 'DestroyCursor', 'IsClipboardFormatAvailable', 'TranslateMDISysAccel', 'DefMDIChildProcA', 'DefFrameProcA', 'MapVirtualKeyExA', 'IsCharLowerA', 'GetDoubleClickTime', 'GetIconInfo', 'CopyIcon', 'IsRectEmpty', 'OffsetRect', 'CharUpperBuffA', 'LoadImageW', 'EmptyClipboard', 'SetClipboardData', 'CloseClipboard', 'ChangeWindowMessageFilter', 'SetClassLongA', 'PostThreadMessageA', 'SetCursorPos', 'CreateFontIndirectA', 'CreateHatchBrush', 'CreatePalette', 'CreatePen', 'CreatePatternBrush', 'CreateRectRgn', 'CreateRectRgnIndirect', 'CreateRoundRectRgn', 'CreateSolidBrush', 'Ellipse', 'Escape', 'ExtFloodFill', 'FillRgn', 'FrameRgn', 'GetBkColor', 'GetBoundsRect', 'GetDeviceCaps', 'GetMapMode', 'GetNearestPaletteIndex', 'GetObjectType', 'GetPaletteEntries', 'GetPixel', 'GetRgnBox', 'GetTextColor', 'GetTextExtentPoint32A', 'GetViewportExtEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetWindowOrgEx', 'OffsetRgn', 'PatBlt', 'PtInRegion', 'PtVisible', 'RectVisible', 'Rectangle', 'RealizePalette', 'RoundRect', 'SetPaletteEntries', 'SetPixel', 'SetPixelV', 'StretchBlt', 'SetRectRgn', 'GetTextMetricsA', 'TextOutA', 'CreatePolygonRgn', 'DPtoLP', 'LPtoDP', 'Polygon', 'Polyline', 'GetTextFaceA', 'CopyMetaFileA', 'ExcludeClipRect', 'GetClipBox', 'IntersectClipRect', 'LineTo', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetTextAlign', 'MoveToEx', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'CreateDIBitmap', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'EnumFontFamiliesExA', 'SetDIBColorTable', 'GetSystemPaletteEntries', 'CreateDCA', 'CreateCompatibleBitmap', 'CombineRgn', 'BitBlt', 'CreateBitmap', 'ExtTextOutA', 'DeleteDC', 'CreateEllipticRgn', 'CreateCompatibleDC', 'CreateDIBSection', 'SelectObject', 'GetObjectA', 'GetStockObject', 'DeleteObject', 'AlphaBlend', 'TransparentBlt', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegEnumKeyExA', 'RegQueryValueA', 'RegEnumKeyA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetLengthSid', 'OpenProcessToken', 'SetThreadToken', 'OpenThreadToken', 'RevertToSelf', 'RegEnumValueA', 'DragQueryFileA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderA', 'SHGetDesktopFolder', 'SHCreateItemFromParsingName', 'SHAppBarMessage', 'ShellExecuteA', 'DragFinish', 'SHGetFileInfoA', 'SHGetKnownFolderPath', 'InitCommonControlsEx', 'PathFindFileNameA', 'PathRemoveFileSpecW', 'PathIsUNCA', 'PathStripToRootA', 'PathFindExtensionA', 'StrFormatKBSizeA', 'GetThemePartSize', 'IsThemeBackgroundPartiallyTransparent', 'DrawThemeParentBackground', 'DrawThemeTextEx', 'BufferedPaintInit', 'BufferedPaintUnInit', 'BeginBufferedPaint', 'EndBufferedPaint', 'GetThemeColor', 'GetCurrentThemeName', 'GetThemeSysColor', 'GetWindowTheme', 'CloseThemeData', 'OpenThemeData', 'IsAppThemed', 'DrawThemeBackground', 'DwmDefWindowProc', 'DwmIsCompositionEnabled', 'DwmSetWindowAttribute', 'CoTaskMemFree', 'CoTaskMemAlloc', 'StringFromCLSID', 'CoInitialize', 'OleCreateMenuDescriptor', 'CLSIDFromString', 'CoCreateGuid', 'CoUninitialize', 'CoInitializeSecurity', 'RegisterDragDrop', 'CoLockObjectExternal', 'OleGetClipboard', 'OleDestroyMenuDescriptor', 'IsAccelerator', 'OleDuplicateData', 'ReleaseStgMedium', 'CoGetClassObject', 'StringFromGUID2', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CreateILockBytesOnHGlobal', 'CoFreeUnusedLibraries', 'OleInitialize', 'OleUninitialize', 'CoRevokeClassObject', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'DoDragDrop', 'CreateStreamOnHGlobal', 'CoRegisterMessageFilter', 'CoInitializeEx', 'RevokeDragDrop', 'OleTranslateAccelerator', 'CoCreateInstance', 'OleLockRunning', 'CLSIDFromProgID', 'VariantChangeType', 'OleCreateFontIndirect', 'SysStringLen', 'SafeArrayDestroy', 'SysAllocStringByteLen', 'SysFreeString', 'VariantCopy', 'VarBstrFromDate', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'SysAllocStringLen', 'SysAllocString', 'VariantClear', 'VariantInit', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromStreamICM', 'GdipCreateBitmapFromStream', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipGetImageGraphicsContext', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipDeleteGraphics', 'GdipCreateFromHDC', 'GdiplusStartup', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromHBITMAP', 'GdipCloneImage', 'GdipAlloc', 'GdipFree', 'GdipDisposeImage', 'GdiplusShutdown', 'GdipDrawImageI', 'recv', 'socket', 'inet_addr', 'htons', 'WSACleanup', 'closesocket', 'WSAStartup', 'send', 'connect', 'AccessibleObjectFromWindow', 'LresultFromObject', 'CreateStdAccessibleObject', 'ImmReleaseContext', 'ImmGetOpenStatus', 'ImmGetContext', 'PlaySoundA'], ['GetSystemDirectoryA', 'GetFileSize', 'IsValidCodePage', 'SetNamedPipeHandleState', 'GetCurrentProcessId', 'WideCharToMultiByte', 'TransactNamedPipe', 'SetLastError', 'LocalAlloc', 'LocalFree', 'CreateNamedPipeW', 'DisconnectNamedPipe', 'WaitNamedPipeA', 'DuplicateHandle', 'RemoveDirectoryW', 'CopyFileW', 'ConnectNamedPipe', 'CreateThread', 'GetWindowsDirectoryW', 'LoadLibraryExW', 'GetSystemDirectoryW', 'LoadLibraryExA', 'FindNextFileW', 'SetEnvironmentVariableA', 'GetOEMCP', 'FindFirstFileW', 'CompareStringW', 'CompareStringA', 'GetCPInfo', 'GetStringTypeW', 'GetStringTypeA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'LCMapStringW', 'LCMapStringA', 'HeapReAlloc', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetVersion', 'GetStartupInfoA', 'TerminateProcess', 'ExitProcess', 'HeapAlloc', 'HeapFree', 'RtlUnwind', 'GetDriveTypeA', 'GetVersionExA', 'SetErrorMode', 'GetCommandLineA', 'GetCommandLineW', 'GetModuleFileNameW', 'GetModuleFileNameA', 'GlobalAlloc', 'GlobalFree', 'LoadLibraryA', 'GetUserDefaultLCID', 'WinExec', 'CopyFileA', 'GetPrivateProfileStringA', 'GetWindowsDirectoryA', 'GetEnvironmentVariableW', 'GetEnvironmentVariableA', 'DosDateTimeToFileTime', 'LocalFileTimeToFileTime', 'CreateFileA', 'CreateFileW', 'SetFilePointer', 'ReadFile', 'WriteFile', 'SetFileTime', 'DeleteFileA', 'WritePrivateProfileStringA', 'CreateDirectoryW', 'CreateDirectoryA', 'GetTickCount', 'Sleep', 'GetCurrentProcess', 'OpenProcess', 'GetModuleHandleA', 'CloseHandle', 'GetProcAddress', 'GetLastError', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'MultiByteToWideChar', 'GetFileAttributesA', 'GetACP', 'SetFileAttributesA', 'OemToCharA', 'CharPrevW', 'LoadIconA', 'RegisterClassA', 'CreateWindowExA', 'GetMessageA', 'FindWindowA', 'GetUserObjectSecurity', 'CharLowerA', 'BeginPaint', 'EndPaint', 'PostQuitMessage', 'DefWindowProcA', 'GetSystemMetrics', 'DrawTextW', 'BringWindowToTop', 'SetForegroundWindow', 'LoadCursorA', 'IsWindowUnicode', 'CharPrevA', 'MessageBoxA', 'UpdateWindow', 'CharUpperA', 'PostMessageA', 'MessageBoxW', 'EnumWindows', 'GetClassNameA', 'GetWindowTextA', 'GetClassLongA', 'GetWindowThreadProcessId', 'EnableWindow', 'CheckRadioButton', 'GetKeyState', 'IsDlgButtonChecked', 'CheckDlgButton', 'SetFocus', 'DialogBoxParamW', 'SetCursor', 'DialogBoxParamA', 'MessageBeep', 'SendDlgItemMessageW', 'EndDialog', 'SendMessageW', 'SendMessageA', 'GetDlgItemTextA', 'DestroyWindow', 'CreateDialogParamW', 'CreateDialogParamA', 'GetDlgItem', 'ShowWindow', 'IsIconic', 'GetSystemMenu', 'DeleteMenu', 'GetDC', 'GetClientRect', 'FillRect', 'wsprintfA', 'GetSysColor', 'DrawTextA', 'ReleaseDC', 'SendDlgItemMessageA', 'SetWindowTextA', 'SetDlgItemTextW', 'SetDlgItemTextA', 'GetWindowRect', 'GetParent', 'MoveWindow', 'PeekMessageA', 'IsDialogMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetDlgItemTextW', 'CreateFontA', 'SelectObject', 'GetStockObject', 'DeleteObject', 'CreateSolidBrush', 'SetBkColor', 'SetBkMode', 'SetTextColor', 'IntersectClipRect', 'RegOpenKeyA', 'AddAccessAllowedAce', 'RegCreateKeyExW', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorOwner', 'SetSecurityDescriptorDacl', 'IsValidSecurityDescriptor', 'GetLengthSid', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'GetUserNameA', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegQueryValueExW', 'RegOpenKeyExW', 'LookupAccountNameW', 'RegSetValueExA', 'RegDeleteKeyA', 'GetSecurityDescriptorOwner', 'RegCreateKeyExA', 'RegCreateKeyA', 'FreeSid', 'LookupAccountSidA', 'AllocateAndInitializeSid', 'GetTokenInformation', 'GetUserNameW', 'LookupAccountSidW', 'InitializeAcl', 'ShellExecuteW'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaFreeVarList', '__vbaEnd', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaInStrVarB', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '__vbaRedimPreserve', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaVarCat', '__vbaLsetFixstrFree', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '__vbaInStr', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['GetCurrentProcess', 'SetFileAttributesA', 'Sleep', 'GetTickCount', 'CreateFileA', 'GetFileSize', 'GetModuleFileNameA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'CopyFileA', 'ExitProcess', 'SetEnvironmentVariableA', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetCommandLineA', 'lstrlenA', 'ReadFile', 'GetLastError', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateDirectoryA', 'CreateProcessA', 'RemoveDirectoryA', 'GetTempFileNameA', 'WriteFile', 'lstrcpyA', 'MoveFileExA', 'lstrcatA', 'GetSystemDirectoryA', 'GetProcAddress', 'CloseHandle', 'lstrcmpiA', 'MoveFileA', 'GetFullPathNameA', 'GetShortPathNameA', 'SearchPathA', 'CompareFileTime', 'SetFileTime', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'SetErrorMode', 'GetVersion', 'GlobalFree', 'DeleteFileA', 'FindFirstFileA', 'FindNextFileA', 'FindClose', 'SetFilePointer', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'MultiByteToWideChar', 'FreeLibrary', 'MulDiv', 'LoadLibraryExA', 'GetModuleHandleA', 'GetExitCodeProcess', 'WaitForSingleObject', 'GlobalAlloc', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'EnableMenuItem', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'ScreenToClient', 'GetWindowRect', 'GetDlgItem', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'wvsprintfA', 'DispatchMessageA', 'PeekMessageA', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'EndDialog', 'RegisterClassA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'LoadImageA', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamA', 'SetWindowTextA', 'PostQuitMessage', 'SetWindowLongA', 'ShowWindow', 'wsprintfA', 'SendMessageTimeoutA', 'FindWindowExA', 'IsWindow', 'TrackPopupMenu', 'OpenClipboard', 'AppendMenuA', 'DrawTextA', 'EndPaint', 'CharNextA', 'SetForegroundWindow', 'SetTimer', 'SelectObject', 'SetTextColor', 'SetBkMode', 'CreateFontIndirectA', 'CreateBrushIndirect', 'DeleteObject', 'GetDeviceCaps', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'RegDeleteKeyA', 'SetFileSecurityA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegOpenKeyExA', 'RegEnumValueA', 'RegDeleteValueA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['GetExitCodeProcess', 'lstrcpynA', 'WaitForSingleObject', 'GetDateFormatA', 'GetSystemDirectoryA', 'GetCommandLineA', 'GetVersionExA', 'CreateMutexA', 'GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'lstrcmpA', 'GetSystemTime', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetWindowsDirectoryA', 'GetSystemInfo', 'GetComputerNameA', 'SetEndOfFile', 'LCMapStringA', 'GetStringTypeW', 'GetStringTypeA', 'GetModuleFileNameA', 'GetACP', 'GetCPInfo', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'HeapSize', 'HeapReAlloc', 'VirtualAlloc', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetStartupInfoA', 'RtlUnwind', 'TerminateProcess', 'HeapAlloc', 'HeapFree', 'SetFileTime', 'GlobalMemoryStatus', 'GetShortPathNameA', 'LoadLibraryExA', 'WritePrivateProfileStringA', 'WritePrivateProfileSectionA', 'MoveFileExA', 'GetCurrentProcess', 'ExitProcess', 'WideCharToMultiByte', 'CreateProcessA', 'RemoveDirectoryA', 'GetFileTime', 'VerLanguageNameA', 'CompareFileTime', 'MoveFileA', 'CopyFileA', 'GetFileSize', 'DeviceIoControl', 'GetLogicalDriveStringsA', 'FreeLibrary', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'SetErrorMode', 'MultiByteToWideChar', 'SetFileAttributesA', 'GetTempPathA', 'GetFileAttributesA', 'CreateDirectoryA', 'GetLocaleInfoA', 'FindFirstFileA', 'lstrcmpiA', 'LCMapStringW', 'FindNextFileA', 'FindClose', 'GetDriveTypeA', 'lstrcatA', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress', 'GetTickCount', 'Sleep', 'GetCurrentThread', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'GetThreadPriority', 'SetThreadPriority', 'GlobalReAlloc', 'GlobalUnlock', 'GlobalFree', 'GlobalAlloc', 'GlobalLock', 'GetUserDefaultLangID', 'MulDiv', 'lstrlenA', 'GetLastError', 'FormatMessageA', 'WriteFile', 'ReadFile', 'lstrcpyA', 'SetFilePointer', 'CreateFileA', 'CloseHandle', 'GetOEMCP', 'DeleteFileA', 'FindWindowA', 'IsIconic', 'PostMessageA', 'RegisterClassW', 'RegisterClassA', 'SetRectEmpty', 'CharUpperA', 'ExitWindowsEx', 'PeekMessageA', 'MsgWaitForMultipleObjects', 'GetMessageA', 'DispatchMessageA', 'OffsetRect', 'GetActiveWindow', 'EndDialog', 'EnableWindow', 'FillRect', 'SetWindowPos', 'LoadBitmapA', 'CreateDialogParamA', 'SendDlgItemMessageW', 'IsWindowEnabled', 'GetSystemMetrics', 'GetClassInfoExW', 'WaitMessage', 'CreateWindowExW', 'GetClassInfoExA', 'RegisterClassExA', 'GetClientRect', 'SetTimer', 'IsWindowVisible', 'PtInRect', 'SetCursor', 'InvalidateRect', 'GetDlgItemTextA', 'PostQuitMessage', 'LoadIconA', 'LoadImageA', 'GetSysColor', 'KillTimer', 'GetWindowTextLengthA', 'GetFocus', 'IsDialogMessageA', 'MessageBoxA', 'MessageBoxW', 'CopyRect', 'SetWindowTextW', 'DrawEdge', 'GetDlgItem', 'SendDlgItemMessageA', 'SetDlgItemTextA', 'SetWindowTextA', 'ReleaseDC', 'GetDC', 'EnumDisplaySettingsA', 'SendMessageW', 'RegisterClassExW', 'DestroyWindow', 'DefWindowProcA', 'DefWindowProcW', 'GetWindowRect', 'GetWindowLongA', 'GetWindowTextA', 'DrawTextA', 'DrawFocusRect', 'GetDesktopWindow', 'SystemParametersInfoA', 'SetForegroundWindow', 'DialogBoxParamA', 'CreateWindowExA', 'SetWindowLongA', 'MoveWindow', 'SetFocus', 'GetSystemMenu', 'DeleteMenu', 'AppendMenuA', 'ShowWindow', 'LoadCursorA', 'GetCursorPos', 'ScreenToClient', 'SendMessageA', 'TranslateMessage', 'SetMapMode', 'SetViewportOrgEx', 'RestoreDC', 'StartDocA', 'StartPage', 'EndPage', 'EndDoc', 'RemoveFontResourceA', 'CreateScalableFontResourceA', 'AddFontResourceA', 'CreatePalette', 'CreateDIBitmap', 'CreateBitmap', 'GetTextExtentPoint32W', 'TextOutW', 'StretchDIBits', 'CreateCompatibleBitmap', 'SetBkColor', 'CreateCompatibleDC', 'GetStockObject', 'CreateSolidBrush', 'SetTextColor', 'TextOutA', 'SetBkMode', 'SelectObject', 'CreateFontA', 'GetDeviceCaps', 'BitBlt', 'DeleteDC', 'DeleteObject', 'SaveDC', 'GetTextExtentPoint32A', 'SetTextAlign', 'PrintDlgA', 'GetOpenFileNameA', 'SetSecurityDescriptorDacl', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteValueA', 'RegQueryInfoKeyA', 'RegEnumKeyExA', 'OpenThreadToken', 'DuplicateToken', 'AllocateAndInitializeSid', 'InitializeSecurityDescriptor', 'GetLengthSid', 'InitializeAcl', 'AddAccessAllowedAce', 'RegCloseKey', 'SetSecurityDescriptorGroup', 'SetSecurityDescriptorOwner', 'IsValidSecurityDescriptor', 'AccessCheck', 'FreeSid', 'GetUserNameA', 'RegSetValueExA', 'RegCreateKeyExA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'SHChangeNotify', 'SHFileOperationA', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'SHGetMalloc', 'ShellExecuteA', 'SHGetSpecialFolderLocation', 'CoCreateInstance', 'CoUninitialize', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'midiOutGetNumDevs', 'joyGetPos', 'waveOutGetNumDevs', 'ImageList_Create', 'ImageList_Add', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['GetLocaleInfoA', 'HeapSize', 'HeapReAlloc', 'HeapAlloc', 'IsValidCodePage', 'GetOEMCP', 'InitializeCriticalSectionAndSpinCount', 'IsDebuggerPresent', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'HeapFree', 'LCMapStringA', 'HeapCreate', 'TlsFree', 'TlsAlloc', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'GetModuleFileNameA', 'SetUnhandledExceptionFilter', 'GetCommandLineA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'lstrlenW', 'lstrcpynW', 'lstrcpyW', 'lstrcmpiA', 'WriteProcessMemory', 'WritePrivateProfileStructW', 'WriteFile', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'VirtualQueryEx', 'VirtualQuery', 'VirtualFree', 'VirtualAlloc', 'VerifyVersionInfoA', 'UnmapViewOfFile', 'UnhandledExceptionFilter', 'TlsSetValue', 'TlsGetValue', 'SystemTimeToTzSpecificLocalTime', 'SystemTimeToFileTime', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetThreadPriority', 'SetThreadLocale', 'SetProcessShutdownParameters', 'SetLastError', 'SetFilePointerEx', 'SetFilePointer', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'SetConsoleCursor', 'RtlUnwind', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryW', 'RemoveDirectoryA', 'ReleaseMutex', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'QueryPerformanceCounter', 'OutputDebugStringW', 'OpenProcess', 'MultiByteToWideChar', 'MulDiv', 'MoveFileW', 'Module32FirstW', 'LockResource', 'LocalFree', 'LocalAlloc', 'LoadResource', 'LoadLibraryW', 'LoadLibraryExW', 'LoadLibraryExA', 'LoadLibraryA', 'LeaveCriticalSection', 'IsValidLocale', 'IsBadStringPtrA', 'IsBadHugeReadPtr', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'InitializeCriticalSection', 'InitAtomTable', 'GlobalUnlock', 'GlobalSize', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetWindowsDirectoryW', 'GetVersionExW', 'GetVersionExA', 'GetVersion', 'GetUserDefaultUILanguage', 'GetUserDefaultLCID', 'GetTimeZoneInformation', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLangID', 'GetStdHandle', 'GetStartupInfoA', 'GetProcAddress', 'GetNumberFormatW', 'GetNamedPipeHandleStateW', 'GetModuleHandleW', 'GetModuleHandleA', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileInformationByHandle', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDriveTypeW', 'GetDiskFreeSpaceW', 'GetDevicePowerState', 'GetDefaultCommConfigA', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetConsoleFontSize', 'GetConsoleAliasExesW', 'GetCommandLineW', 'GetCPInfo', 'GetACP', 'FreeResource', 'FreeLibrary', 'FormatMessageW', 'FormatMessageA', 'FlushFileBuffers', 'FindResourceW', 'FindNextVolumeA', 'FindNextFileW', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsW', 'ExitThread', 'ExitProcess', 'EnumSystemLanguageGroupsW', 'EnumSystemLanguageGroupsA', 'EnumCalendarInfoW', 'EnterCriticalSection', 'DeleteFileW', 'DeleteCriticalSection', 'CreateTimerQueueTimer', 'CreateThread', 'CreateFileW', 'CreateEventW', 'CreateEventA', 'CreateConsoleScreenBuffer', 'CompareStringW', 'CloseHandle', 'UnregisterClassW', 'UpdateWindow', 'ValidateRect', 'WaitMessage', 'WindowFromPoint', 'LoadIconA', 'OemKeyScan', 'GetClipboardOwner', 'CharNextA', 'LoadCursorFromFileW', 'GetProcessWindowStation', 'CharLowerA', 'IsCharAlphaNumericA', 'CloseWindowStation', 'IsCharLowerW', 'GetDoubleClickTime', 'GetWindowTextLengthA', 'ShowOwnedPopups', 'ShowCursor', 'ShowCaret', 'SetWindowsHookExW', 'SetWindowTextW', 'SetWindowRgn', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenuContextHelpId', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursorPos', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScrollDC', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterDeviceNotificationW', 'RegisterClipboardFormatW', 'RegisterClassW', 'RegisterClassA', 'RedrawWindow', 'RealChildWindowFromPoint', 'PtInRect', 'PostQuitMessage', 'PostMessageW', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'NotifyWinEvent', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MonitorFromRect', 'MessageBoxW', 'MessageBoxExW', 'MessageBoxA', 'UnionRect', 'MapWindowPoints', 'MapVirtualKeyW', 'LockWindowUpdate', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadImageW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuW', 'InsertMenuItemW', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowDC', 'GetWindow', 'GetUserObjectInformationW', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropW', 'GetParent', 'GetMonitorInfoW', 'GetMessagePos', 'GetMessageExtraInfo', 'GetMessageA', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenuDefaultItem', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardFormatNameW', 'GetClipboardData', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenuEx', 'TrackPopupMenu', 'ToAscii', 'SystemParametersInfoW', 'SubtractRect', 'ShowWindow', 'MessageBeep', 'ShowScrollBar', 'ActivateKeyboardLayout', 'AdjustWindowRectEx', 'BeginDeferWindowPos', 'BeginPaint', 'CallMsgFilter', 'CallNextHookEx', 'CallWindowProcW', 'CharLowerBuffW', 'CharLowerW', 'CharNextW', 'CharUpperBuffW', 'CheckMenuItem', 'ClientToScreen', 'CloseClipboard', 'CopyImage', 'CountClipboardFormats', 'CreateIcon', 'CreateMenu', 'CreatePopupMenu', 'GetClientRect', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetAsyncKeyState', 'GetActiveWindow', 'FrameRect', 'FindWindowW', 'FindWindowExW', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EndMenu', 'EndDeferWindowPos', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextW', 'DrawTextExW', 'DrawStateW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DialogBoxIndirectParamW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DeferWindowPos', 'DefWindowProcW', 'DefWindowProcA', 'DefMDIChildProcW', 'DefFrameProcW', 'CreateWindowExW', 'CreateWindowExA', 'PeekMessageA', 'GetCurrentPositionEx', 'GetDCOrgEx', 'GetDIBColorTable', 'GetDIBits', 'GetDeviceCaps', 'GetEnhMetaFileBits', 'GetEnhMetaFileDescriptionW', 'GetEnhMetaFileHeader', 'GetEnhMetaFilePaletteEntries', 'GetMapMode', 'GetNearestPaletteIndex', 'GetObjectW', 'GetPaletteEntries', 'GetPixel', 'GetRgnBox', 'GetStockObject', 'GetSystemPaletteEntries', 'GetTextAlign', 'GetTextColor', 'GetTextExtentExPointW', 'GetTextExtentPoint32W', 'GetTextExtentPointW', 'GetTextMetricsW', 'GetWinMetaFileBits', 'GetWindowOrgEx', 'IntersectClipRect', 'LPtoDP', 'LineTo', 'MaskBlt', 'MoveToEx', 'OffsetRgn', 'PatBlt', 'Pie', 'PlayEnhMetaFile', 'PolyBezier', 'PolyBezierTo', 'Polygon', 'Polyline', 'RealizePalette', 'RectVisible', 'GetCurrentObject', 'ResizePalette', 'RestoreDC', 'RoundRect', 'SaveDC', 'SelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetBrushOrgEx', 'SetDIBColorTable', 'SetDIBits', 'SetEnhMetaFileBits', 'SetMapMode', 'SetPixel', 'SetROP2', 'SetStretchBltMode', 'SetTextAlign', 'SetTextColor', 'SetViewportOrgEx', 'SetWinMetaFileBits', 'SetWindowOrgEx', 'StartPage', 'StretchBlt', 'StretchDIBits', 'UnrealizeObject', 'XLATEOBJ_iXlate', 'GetTextCharacterExtra', 'CancelDC', 'DeleteColorSpace', 'CloseEnhMetaFile', 'StrokePath', 'AbortPath', 'GetPixelFormat', 'AddFontResourceA', 'SwapBuffers', 'SetMetaRgn', 'UpdateColors', 'AddFontResourceW', 'DeleteMetaFile', 'GetClipBox', 'GetBrushOrgEx', 'GetBkColor', 'GetBitmapBits', 'GdiGetDevmodeForPage', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExtFloodFill', 'ExcludeClipRect', 'EnumFontsW', 'EnumFontFamiliesExW', 'EndPage', 'EndDoc', 'Ellipse', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePatternBrush', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'Chord', 'Rectangle', 'Arc', 'BitBlt', 'RegCloseKey', 'RegDeleteValueW', 'RegFlushKey', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegSetValueExW', 'RegOpenKeyA', 'RegCreateKeyExW', 'ExtractIconExA', 'SHEmptyRecycleBinW', 'SHGetDesktopFolder', 'SHGetFileInfoW', 'SHGetMalloc', 'SHGetPathFromIDListA', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'ShellExecuteW', 'ExtractAssociatedIconW', 'StringFromCLSID', 'RevokeDragDrop', 'ReleaseStgMedium', 'RegisterDragDrop', 'OleUninitialize', 'OleSetClipboard', 'OleInitialize', 'OleGetClipboard', 'IsEqualGUID', 'DoDragDrop', 'CreateStreamOnHGlobal', 'CreateDataAdviseHolder', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoInitialize', 'CoCreateInstance', 'CLSIDFromString', 'ImageList_Read', 'ImageList_GetImageCount', 'ImageList_GetIconSize', 'ImageList_GetDragImage', 'ImageList_GetBkColor', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_Remove', 'ImageList_DragEnter', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_BeginDrag', 'ImageList_Add', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', 'ImageList_Replace', 'ImageList_SetBkColor', 'ImageList_SetIconSize', 'ImageList_SetImageCount', 'ImageList_Write', 'InitializeFlatSB', 'ImageList_DragLeave', '_TrackMouseEvent'], ['AllocateUserPhysicalPages', 'CreateFileW', 'ReadConsoleW', 'SetStdHandle', 'SetFilePointerEx', 'ReadFile', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'VerifyVersionInfoW', 'QueryPerformanceCounter', 'LoadLibraryExW', 'OutputDebugStringW', 'GetProcessHeap', 'IsDebuggerPresent', 'HeapSize', 'ExitProcess', 'SetEventWhenCallbackReturns', 'GetUserDefaultLCID', 'GetModuleHandleA', 'GetLocaleInfoW', 'LCMapStringW', 'GetVersionExA', 'CreateFileA', 'GetModuleHandleW', 'LoadLibraryA', 'CreateEventA', 'lstrlenW', 'lstrlenA', 'lstrcpynW', 'GetSystemInfo', 'WriteFile', 'WaitForSingleObject', 'GetCurrentProcess', 'GetShortPathNameW', 'VirtualAlloc', 'GetProcAddress', 'VerSetConditionMask', 'GetCurrentProcessId', 'TrySubmitThreadpoolCallback', 'GetStartupInfoW', 'TlsFree', 'CreateEventW', 'GetTickCount', 'CloseHandle', 'Sleep', 'WaitForMultipleObjects', 'GetLastError', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'TerminateProcess', 'InitializeCriticalSectionAndSpinCount', 'SetLastError', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCPInfo', 'GetCommandLineW', 'CloseThreadpool', 'SetThreadpoolThreadMinimum', 'SetThreadpoolThreadMaximum', 'EnumSystemLocalesW', 'CreateThreadpool', 'IsProcessorFeaturePresent', 'RtlUnwind', 'RaiseException', 'WriteConsoleW', 'GetModuleHandleExW', 'GetModuleFileNameW', 'GetFileType', 'GetStdHandle', 'GetSystemTimeAsFileTime', 'HeapReAlloc', 'HeapAlloc', 'IsValidLocale', 'GetCurrentThreadId', 'HeapFree', 'GetStringTypeW', 'MultiByteToWideChar', 'DecodePointer', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'EncodePointer', 'SendMessageA', 'PostQuitMessage', 'DestroyWindow', 'SetWindowPos', 'PeekMessageA', 'DispatchMessageA', 'DrawFrameControl', 'SetWindowLongW', 'GetDlgItem', 'DialogBoxParamW', 'GetFocus', 'EnableWindow', 'IsWindowEnabled', 'GetMenu', 'PostMessageW', 'SendMessageW', 'LoadBitmapA', 'DrawMenuBar', 'EnableMenuItem', 'GetSubMenu', 'DdeCreateStringHandleW', 'DefMDIChildProcA', 'TrackPopupMenuEx', 'GetWindowThreadProcessId', 'GetTopWindow', 'DrawFocusRect', 'WindowFromPoint', 'GetCursorPos', 'GetClientRect', 'SetWindowTextA', 'EnumPropsA', 'GetForegroundWindow', 'EndDialog', 'SetWindowExtEx', 'ExtTextOutA', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateDIBSection', 'SetTextColor', 'SetBkColor', 'SelectObject', 'GetStockObject', 'Ellipse', 'DeleteObject', 'DeleteDC', 'CreateFontA', 'CreateCompatibleDC', 'CreateBitmap', 'BitBlt', 'SetBrushOrgEx', 'IsValidDevmodeA', 'ConnectToPrinterDlg', 'StartServiceA', 'QueryServiceStatusEx', 'OpenServiceA', 'OpenSCManagerA', 'CloseServiceHandle', 'SHGetFileInfoW', 'SHAppBarMessage', 'CoInitialize', 'CoTaskMemFree', 'RegisterDragDrop', 'CoCreateInstance', 'SafeArrayCreate', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_AddMasked', 'SetupDiGetClassDevsA', 'DrawThemeParentBackground', 'GetThemeSysSize', 'IsThemeBackgroundPartiallyTransparent', 'DrawThemeBackground', 'OpenThemeData', 'CloseThemeData', 'CreateEnvironmentBlock', 'capGetDriverDescriptionA', 'PdhGetDataSourceTimeRangeA', 'PdhFormatFromRawValue', 'PdhExpandCounterPathW'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaVarXor', '__vbaAryDestruct', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', '__vbaCyVar', 'EVENT_SINK_AddRef', '__vbaVarTstEq', 'DllFunctionCall', '_adj_fpatan', '__vbaLateIdCallLd', '__vbaRedim', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaVarCat', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '__vbaDerefAry1', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaAryLock', '__vbaLateMemCall', '__vbaStrToAnsi', '__vbaVarMod', '__vbaFpI4', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaAryUnlock', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['SetHandleCount', 'HeapCreate', 'QueryPerformanceCounter', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetTimeZoneInformation', 'LCMapStringW', 'GetConsoleCP', 'GetConsoleMode', 'WriteConsoleW', 'SetEnvironmentVariableA', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetFileType', 'SetStdHandle', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'GetSystemTimeAsFileTime', 'ExitProcess', 'HeapQueryInformation', 'HeapSize', 'CreateThread', 'ExitThread', 'HeapReAlloc', 'EncodePointer', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineW', 'FindResourceExW', 'SearchPathW', 'GetProfileIntW', 'GetTickCount', 'GetNumberFormatW', 'GetWindowsDirectoryW', 'GetTempFileNameW', 'GetCurrentDirectoryW', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'lstrcpyW', 'GetSystemDirectoryW', 'GetUserDefaultUILanguage', 'GetLocaleInfoW', 'InterlockedExchange', 'GetEnvironmentStringsW', 'GetFullPathNameW', 'GetVolumeInformationW', 'FindFirstFileW', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'WriteFile', 'lstrcmpiW', 'GlobalFlags', 'FreeResource', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GetVersionExW', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryW', 'lstrcmpW', 'FileTimeToSystemTime', 'lstrlenA', 'lstrcmpA', 'GlobalGetAtomNameW', 'CompareStringW', 'InterlockedIncrement', 'GetModuleHandleW', 'GetProcAddress', 'WaitForSingleObject', 'GetCurrentThreadId', 'ResumeThread', 'SetThreadPriority', 'MultiByteToWideChar', 'CopyFileW', 'GlobalSize', 'FormatMessageW', 'MulDiv', 'lstrlenW', 'WideCharToMultiByte', 'GetCurrentProcessId', 'FreeLibrary', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'InterlockedDecrement', 'GetModuleFileNameW', 'ActivateActCtx', 'ReleaseActCtx', 'DeactivateActCtx', 'TlsFree', 'GlobalFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalAlloc', 'GlobalHandle', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalLock', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'FreeEnvironmentStringsW', 'GetStdHandle', 'LocalFree', 'LocalAlloc', 'GetLastError', 'SetLastError', 'GetStringTypeW', 'CloseHandle', 'DeleteCriticalSection', 'VirtualProtect', 'GetTempPathW', 'CreateFileW', 'ReadFile', 'Sleep', 'SetFilePointer', 'IsProcessorFeaturePresent', 'GetFileSize', 'LoadLibraryA', 'SetPixel', 'StretchBlt', 'PatBlt', 'GetTextExtentPoint32W', 'SetPixelV', 'GetTextFaceW', 'SetPaletteEntries', 'ExtFloodFill', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'PtInRegion', 'GetViewportOrgEx', 'GetWindowOrgEx', 'LPtoDP', 'EnumFontFamiliesExW', 'Rectangle', 'SetDIBColorTable', 'GetRgnBox', 'OffsetRgn', 'GetSystemPaletteEntries', 'RealizePalette', 'GetNearestPaletteIndex', 'GetPaletteEntries', 'CreatePalette', 'Polygon', 'Ellipse', 'Polyline', 'CreateEllipticRgn', 'GetTextColor', 'GetBkColor', 'CreatePolygonRgn', 'CreateRoundRectRgn', 'CreateDIBSection', 'DPtoLP', 'CombineRgn', 'SetRectRgn', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'GetTextMetricsW', 'CreateRectRgnIndirect', 'CreateDIBitmap', 'CreateHatchBrush', 'CreateSolidBrush', 'CreatePen', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'TextOutW', 'RectVisible', 'PtVisible', 'GetPixel', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'ExtTextOutW', 'BitBlt', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'GetObjectW', 'SetBkColor', 'SetTextColor', 'CreateBitmap', 'CreateDCW', 'CopyMetaFileW', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'GetForegroundWindow', 'SetFocus', 'IsWindow', 'RemovePropW', 'GetPropW', 'SetPropW', 'GetClassNameW', 'GetClassLongW', 'GetCapture', 'IsChild', 'WinHelpW', 'SendDlgItemMessageA', 'SendDlgItemMessageW', 'LoadIconW', 'RegisterWindowMessageW', 'MoveWindow', 'ShowWindow', 'ClientToScreen', 'RealChildWindowFromPoint', 'GetDesktopWindow', 'DestroyIcon', 'CharUpperW', 'InflateRect', 'GetMenuItemInfoW', 'DestroyMenu', 'SystemParametersInfoW', 'FillRect', 'TabbedTextOutW', 'DrawTextW', 'DrawTextExW', 'GrayStringW', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'PostQuitMessage', 'CopyImage', 'SetRectEmpty', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'IsIconic', 'InvalidateRect', 'IntersectRect', 'SetCursor', 'ShowOwnedPopups', 'DeleteMenu', 'SetTimer', 'KillTimer', 'IsRectEmpty', 'OffsetRect', 'IsZoomed', 'SetWindowRgn', 'SetParent', 'DestroyAcceleratorTable', 'CreatePopupMenu', 'WindowFromPoint', 'NotifyWinEvent', 'GetAsyncKeyState', 'SetClassLongW', 'LoadMenuW', 'GetSystemMenu', 'SetCapture', 'ReleaseCapture', 'MessageBeep', 'DrawStateW', 'DrawIconEx', 'DrawEdge', 'DrawFrameControl', 'DrawFocusRect', 'CopyAcceleratorTableW', 'ToUnicodeEx', 'MapVirtualKeyW', 'GetKeyboardLayout', 'GetKeyboardState', 'LoadAcceleratorsW', 'CreateAcceleratorTableW', 'RedrawWindow', 'SetCursorPos', 'BringWindowToTop', 'LockWindowUpdate', 'SetActiveWindow', 'InvertRect', 'HideCaret', 'EnableScrollBar', 'GetNextDlgTabItem', 'LoadImageW', 'GetNextDlgGroupItem', 'EndDialog', 'CreateDialogIndirectParamW', 'TranslateAcceleratorW', 'InsertMenuItemW', 'ReuseDDElParam', 'UnpackDDElParam', 'DefFrameProcW', 'DefMDIChildProcW', 'DrawMenuBar', 'TranslateMDISysAccel', 'MonitorFromPoint', 'UnionRect', 'UpdateLayeredWindow', 'IsMenu', 'CreateMenu', 'PostThreadMessageW', 'WaitMessage', 'SetMenuDefaultItem', 'IsClipboardFormatAvailable', 'FrameRect', 'GetUpdateRect', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'EmptyClipboard', 'RegisterClipboardFormatW', 'CopyIcon', 'CharUpperBuffW', 'GetDoubleClickTime', 'IsCharLowerW', 'GetKeyNameTextW', 'MapVirtualKeyExW', 'SubtractRect', 'MapDialogRect', 'DrawIcon', 'DestroyCursor', 'GetWindowRgn', 'DefWindowProcW', 'SetWindowTextW', 'LoadBitmapW', 'SendMessageTimeoutW', 'CheckDlgButton', 'UpdateWindow', 'GetClientRect', 'PostMessageW', 'CreateWindowExW', 'ValidateRect', 'GetMenuState', 'GetMenuStringW', 'AppendMenuW', 'GetMenuItemID', 'InsertMenuW', 'GetMenuItemCount', 'GetSubMenu', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoW', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'GetClassInfoExW', 'GetClassInfoW', 'RegisterClassW', 'IsDialogMessageW', 'GetIconInfo', 'AdjustWindowRectEx', 'GetWindowRect', 'UnhookWindowsHookEx', 'MessageBoxW', 'EnableWindow', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowLongW', 'GetParent', 'SendMessageW', 'GetWindowThreadProcessId', 'RemoveMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'GetMenuDefaultItem', 'ShowScrollBar', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'GetCursorPos', 'CallWindowProcW', 'GetMenu', 'SetWindowLongW', 'SetWindowPos', 'CopyRect', 'PtInRect', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'ModifyMenuW', 'EnableMenuItem', 'CheckMenuItem', 'GetWindowTextLengthW', 'GetWindowTextW', 'LoadCursorW', 'GetSystemMetrics', 'GetDC', 'ReleaseDC', 'GetSysColor', 'GetSysColorBrush', 'SetWindowsHookExW', 'CallNextHookEx', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'SetRect', 'PeekMessageW', 'DestroyPropertySheetPage', 'ImageList_SetOverlayImage', 'PropertySheetW', 'CreateStatusWindowW', 'CreateToolbarEx', 'ImageList_GetIconSize', 'GetFileTitleW', 'ChooseColorW', 'GetOpenFileNameW', 'GetSaveFileNameW', 'VariantClear', 'VariantChangeType', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysStringLen', 'SysAllocStringLen', 'VarBstrFromDate', 'VariantInit', 'SysAllocString', 'SysFreeString', 'DocumentPropertiesW', 'OpenPrinterW', 'ClosePrinter', 'LresultFromObject', 'CreateStdAccessibleObject', 'AccessibleObjectFromWindow', 'SHAppBarMessage', 'SHGetFileInfoW', 'SHGetDesktopFolder', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderW', 'DragQueryFileW', 'DragFinish', 'ShellExecuteW', 'DoDragDrop', 'CreateStreamOnHGlobal', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'OleGetClipboard', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'CoInitializeEx', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'PathRemoveFileSpecW', 'PathFindExtensionW', 'PathIsUNCW', 'PathStripToRootW', 'PathFindFileNameW', 'RegDeleteValueW', 'RegQueryValueExW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegCloseKey', 'RegOpenKeyExW', 'RegCreateKeyExW', 'RegDeleteKeyW', 'TransparentBlt', 'AlphaBlend', 'ImmGetOpenStatus', 'ImmGetContext', 'ImmReleaseContext'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'GetOpenFileNameW', 'DeleteDC', 'OleInitialize', 'VariantInit', 'SHGetMalloc', 'SHAutoComplete', 'GetDC'], ['HeapCreate', 'VirtualFree', 'IsBadWritePtr', 'GetTimeZoneInformation', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'UnhandledExceptionFilter', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'HeapDestroy', 'SetUnhandledExceptionFilter', 'LCMapStringA', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'HeapSize', 'TerminateProcess', 'InterlockedExchange', 'HeapReAlloc', 'GetCommandLineA', 'GetDateFormatA', 'GetTimeFormatA', 'GetDriveTypeA', 'SetCurrentDirectoryA', 'SetEnvironmentVariableA', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'HeapAlloc', 'RtlUnwind', 'HeapFree', 'GetTickCount', 'GetCurrentDirectoryA', 'LocalFileTimeToFileTime', 'GetShortPathNameA', 'CreateFileA', 'GetVolumeInformationA', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'DeleteFileA', 'MoveFileA', 'SystemTimeToFileTime', 'GetOEMCP', 'GetCPInfo', 'GlobalFlags', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'EnterCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'LeaveCriticalSection', 'LocalAlloc', 'InterlockedIncrement', 'DeleteCriticalSection', 'InitializeCriticalSection', 'RaiseException', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'CloseHandle', 'GetCurrentThread', 'GetModuleFileNameA', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'lstrcmpA', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'lstrcpyA', 'FindFirstFileA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindNextFileA', 'FindClose', 'InterlockedDecrement', 'FreeResource', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'LoadLibraryA', 'FreeLibrary', 'lstrcatA', 'lstrcmpW', 'GetModuleHandleA', 'GetProcAddress', 'SetLastError', 'GlobalFree', 'MulDiv', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'lstrcpynA', 'LocalFree', 'LoadResource', 'LockResource', 'SizeofResource', 'FindResourceA', 'ExitProcess', 'GetLastError', 'GetComputerNameA', 'lstrlenA', 'lstrcmpiA', 'GetStringTypeExA', 'WideCharToMultiByte', 'CompareStringA', 'CompareStringW', 'MultiByteToWideChar', 'GetVersion', 'GetThreadLocale', 'GetLocaleInfoA', 'GetACP', 'GetVersionExA', 'GetSystemTimeAsFileTime', 'LockWindowUpdate', 'GetDCEx', 'SetWindowRgn', 'DrawIcon', 'FindWindowA', 'DestroyIcon', 'GetMenuItemInfoA', 'GetSysColorBrush', 'WindowFromPoint', 'KillTimer', 'SetTimer', 'SetRect', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'LoadCursorA', 'DestroyCursor', 'SetCursorPos', 'SetCapture', 'RedrawWindow', 'InflateRect', 'IsZoomed', 'LoadMenuA', 'DestroyMenu', 'UnpackDDElParam', 'ReuseDDElParam', 'ReleaseCapture', 'LoadAcceleratorsA', 'InsertMenuItemA', 'CreatePopupMenu', 'SetRectEmpty', 'BringWindowToTop', 'SetMenu', 'TranslateAcceleratorA', 'wsprintfA', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'ShowOwnedPopups', 'SetCursor', 'PostQuitMessage', 'GetDesktopWindow', 'GetActiveWindow', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'SetMenuItemBitmaps', 'ModifyMenuA', 'EnableMenuItem', 'CheckMenuItem', 'GetMenuCheckMarkDimensions', 'IsWindowEnabled', 'IsDialogMessageA', 'RegisterWindowMessageA', 'WinHelpA', 'GetCapture', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassInfoExA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SendDlgItemMessageA', 'IsWindow', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'LoadIconA', 'PeekMessageA', 'MapWindowPoints', 'ScrollWindow', 'MessageBoxA', 'TrackPopupMenu', 'GetKeyState', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'GetClientRect', 'GetMenu', 'PostMessageA', 'GetSysColor', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'GetClassInfoA', 'RegisterClassA', 'UnregisterClassA', 'RegisterClipboardFormatA', 'DefWindowProcA', 'CallWindowProcA', 'SetWindowPos', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'CopyRect', 'PtInRect', 'GetWindow', 'GetDlgCtrlID', 'GetTabbedTextExtentA', 'PostThreadMessageA', 'CreateMenu', 'SetDlgItemTextA', 'CopyAcceleratorTableA', 'GetFocus', 'IsChild', 'GetParent', 'InvalidateRect', 'IsIconic', 'AdjustWindowRectEx', 'GetMenuState', 'GetMenuStringA', 'AppendMenuA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'ShowWindow', 'UpdateWindow', 'LoadBitmapA', 'SendMessageA', 'GetWindowLongA', 'SetWindowLongA', 'EnableWindow', 'CharUpperA', 'SetWindowTextA', 'CreateSolidBrush', 'CreateRectRgnIndirect', 'PatBlt', 'TextOutA', 'CreateCompatibleBitmap', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'StretchDIBits', 'GetCharWidthA', 'CreateFontA', 'GetBkColor', 'GetViewportOrgEx', 'DPtoLP', 'Rectangle', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'CreateFontIndirectA', 'SetRectRgn', 'CombineRgn', 'CreateEllipticRgn', 'LPtoDP', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextColor', 'GetTextAlign', 'GetTextFaceA', 'GetWindowOrgEx', 'RectVisible', 'PtVisible', 'StartDocA', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'CreateRectRgn', 'SelectClipRgn', 'DeleteObject', 'CreatePen', 'GetStockObject', 'CreateCompatibleDC', 'CreatePatternBrush', 'DeleteDC', 'GetCurrentPositionEx', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'Ellipse', 'GetDeviceCaps', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'SetMapMode', 'SetStretchBltMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateDCA', 'ExtTextOutA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'PrintDlgA', 'CommDlgExtendedError', 'GetFileTitleA', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetJobA', 'RegCreateKeyA', 'RegSetValueA', 'RegOpenKeyA', 'SetFileSecurityA', 'GetFileSecurityA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegCloseKey', 'DragQueryFileA', 'SHGetFileInfoA', 'ExtractIconA', 'DragFinish', 'ImageList_SetBkColor', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'ImageList_Draw', 'ImageList_GetImageInfo', 'PathFindFileNameA', 'PathStripToRootA', 'PathFindExtensionA', 'PathIsUNCA', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'VariantClear', 'SysAllocStringLen', 'VariantInit', 'VariantChangeType'], ['DeleteFileA', 'DeleteFileW', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetTickCount', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersionExA', 'GlobalAlloc', 'lstrlenA', 'GetModuleFileNameA', 'FindResourceA', 'GetModuleHandleA', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetLocaleInfoA', 'GetNumberFormatA', 'GetProcAddress', 'DosDateTimeToFileTime', 'GetDateFormatA', 'GetTimeFormatA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsA', 'WaitForSingleObject', 'SetCurrentDirectoryA', 'Sleep', 'GetTempPathA', 'MoveFileExA', 'GetModuleFileNameW', 'SetEnvironmentVariableA', 'GetCommandLineA', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemTime', 'IsDBCSLeadByte', 'GetCPInfo', 'FreeLibrary', 'LoadLibraryA', 'GetCurrentDirectoryA', 'GetFullPathNameA', 'SetFileAttributesW', 'SetFileAttributesA', 'GetFileAttributesW', 'GetFileAttributesA', 'WriteFile', 'GetStdHandle', 'ReadFile', 'SetLastError', 'CreateFileW', 'CreateFileA', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'MoveFileA', 'SetFileTime', 'GetCurrentProcess', 'CloseHandle', 'GetLastError', 'lstrcmpiA', 'ReleaseDC', 'GetDC', 'SendMessageA', 'wsprintfA', 'SetDlgItemTextA', 'EndDialog', 'DestroyIcon', 'SendDlgItemMessageA', 'GetDlgItemTextA', 'DialogBoxParamA', 'IsWindowVisible', 'WaitForInputIdle', 'GetSysColor', 'PostMessageA', 'SetMenu', 'SetFocus', 'LoadBitmapA', 'LoadIconA', 'CharToOemA', 'OemToCharA', 'GetClassNameA', 'CharUpperA', 'GetWindowRect', 'GetParent', 'MapWindowPoints', 'CreateWindowExA', 'UpdateWindow', 'SetWindowTextA', 'LoadCursorA', 'RegisterClassExA', 'SetWindowLongA', 'GetWindowLongA', 'DefWindowProcA', 'PeekMessageA', 'GetMessageA', 'DispatchMessageA', 'DestroyWindow', 'GetClientRect', 'CopyRect', 'IsWindow', 'MessageBoxA', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'FindWindowExA', 'wvsprintfA', 'CharToOemBuffA', 'LoadStringA', 'SetWindowPos', 'GetWindowTextA', 'GetWindow', 'GetSystemMetrics', 'OemToCharBuffA', 'TranslateMessage', 'GetDeviceCaps', 'GetObjectA', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'GetSaveFileNameA', 'CommDlgExtendedError', 'GetOpenFileNameA', 'LookupPrivilegeValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SetFileSecurityW', 'SetFileSecurityA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'ShellExecuteExA', 'SHFileOperationA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'SHChangeNotify', 'CreateStreamOnHGlobal', 'OleInitialize', 'CoCreateInstance', 'OleUninitialize', 'CLSIDFromString', 'VariantInit'], ['RtlMoveMemory', 'SysAllocStringLen', 'SysAllocStringByteLen', 'SysStringLen', 'LoadStringW', '__vbaVarTstGt', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaStrI4', '__vbaVarMove', '__vbaVarVargNofree', '__vbaFreeVar', '__vbaAryMove', '__vbaStrVarMove', '__vbaLenBstr', '__vbaLateIdCall', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaRaiseEvent', '__vbaFreeObjList', '_adj_fprem1', '__vbaRecAnsiToUni', '__vbaCopyBytes', '__vbaVarCmpNe', '__vbaStrCat', '__vbaLsetFixstr', '__vbaRecDestruct', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaLateMemSt', '__vbaForEachCollObj', '__vbaExitProc', '__vbaVarForInit', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaVarIndexLoad', '__vbaFpR4', '__vbaStrFixstr', '__vbaBoolVar', '__vbaRefVarAry', '__vbaFpR8', '__vbaVarTstLt', '__vbaBoolVarNull', '_CIsin', '__vbaNextEachCollObj', '__vbaVargVarMove', '__vbaVarCmpGt', '__vbaChkstk', '__vbaI2Cy', '__vbaCyVar', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '__vbaI2I4', 'DllFunctionCall', '__vbaVarOr', '__vbaCastObjVar', '__vbaRedimPreserve', '__vbaLbound', '_adj_fpatan', '__vbaR4Var', '__vbaLateIdCallLd', '__vbaStrR8', '__vbaRedim', '__vbaR8Cy', '__vbaRecUniToAnsi', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', '__vbaObjIs', '__vbaVarAnd', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaVarMul', '__vbaExceptHandler', '__vbaStrToUnicode', '__vbaPrintFile', '_adj_fprem', '_adj_fdivr_m64', '__vbaR8ErrVar', '__vbaI2Str', '__vbaLateIdStAd', '__vbaVarDiv', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '__vbaCheckType', '__vbaLsetFixstrFree', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaInStr', '__vbaVar2Vec', '__vbaNew2', '__vbaCyMulI2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaI4Str', '__vbaFreeStrList', '__vbaVarCmpLt', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaAryLock', '__vbaVarAdd', '__vbaStrToAnsi', '__vbaVarDup', '__vbaStrComp', '__vbaVerifyVarObj', '__vbaFpI2', '__vbaFpI4', '__vbaRecDestructAnsi', '__vbaLateMemCallLd', '_CIatan', '__vbaCastObj', '__vbaAryCopy', '__vbaStrMove', '_allmul', '__vbaFpCSngR4', '__vbaLenVarB', '__vbaLateIdSt', '_CItan', '__vbaUI1Var', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaRecAssign', '__vbaI4ErrVar', '__vbaFreeStr', '__vbaFreeObj'], ['PrintDlgA', 'EndDoc', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'exit', 'OleRun', 'VariantClear', 'IsIconic'], ['LoadStringW', 'SysFreeString', 'SysAllocStringLen', 'SysAllocStringByteLen', '__vbaVarSub', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaVarVargNofree', '__vbaAryMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaVarForInit', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaFpR4', '__vbaFpR8', '__vbaBoolVarNull', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaVarTstEq', '__vbaObjVar', '__vbaI2I4', 'DllFunctionCall', '__vbaVarLateMemSt', '_adj_fpatan', '__vbaR4Var', '__vbaLateIdCallLd', '__vbaStrR8', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', '__vbaLateIdCallSt', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '__vbaR8Str', '__vbaVar2Vec', '__vbaNew2', '__vbaVarInt', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarAdd', '__vbaAryLock', '__vbaVarDup', '__vbaVarLateMemCallLd', '_CIatan', '__vbaStrMove', '__vbaR8IntI4', '_allmul', '_CItan', '__vbaFPInt', '__vbaAryUnlock', '__vbaVarForNext', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetTickCount', 'GetShortPathNameA', 'GetFullPathNameA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'SetFileAttributesA', 'CompareFileTime', 'SearchPathA', 'CreateFileA', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'GetWindowsDirectoryA', 'Sleep', 'lstrcmpiA', 'lstrlenA', 'GetVersion', 'SetErrorMode', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'GetLastError', 'CreateDirectoryA', 'CreateProcessA', 'RemoveDirectoryA', 'GetTempFileNameA', 'lstrcatA', 'GetSystemDirectoryA', 'WaitForSingleObject', 'SetFileTime', 'CloseHandle', 'GlobalFree', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'GetExitCodeProcess', 'GlobalAlloc', 'GetCommandLineA', 'GetTempPathA', 'GetProcAddress', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'SetFilePointer', 'ReadFile', 'FindClose', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'WriteFile', 'MulDiv', 'MultiByteToWideChar', 'LoadLibraryExA', 'GetModuleHandleA', 'FreeLibrary', 'SetCursor', 'GetWindowRect', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'EndDialog', 'ScreenToClient', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetForegroundWindow', 'GetWindowLongA', 'RegisterClassA', 'TrackPopupMenu', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'ExitWindowsEx', 'SetTimer', 'PostQuitMessage', 'SetWindowLongA', 'SendMessageTimeoutA', 'LoadImageA', 'wsprintfA', 'GetDlgItem', 'FindWindowExA', 'IsWindow', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'EndPaint', 'CreateDialogParamA', 'DestroyWindow', 'ShowWindow', 'SetWindowTextA', 'SelectObject', 'SetBkMode', 'CreateFontIndirectA', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'SHFileOperationA', 'ShellExecuteA', 'RegDeleteValueA', 'SetFileSecurityA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegEnumValueA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['GetCurrentDirectoryA', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetDateFormatA', 'GetDiskFreeSpaceExW', 'GetDriveTypeA', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'GetExitCodeProcess', 'GetExitCodeThread', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFileSizeEx', 'GetFileTime', 'GetFileType', 'GetFullPathNameA', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetLogicalDrives', 'GetLongPathNameW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetNumberOfConsoleMouseButtons', 'GetOEMCP', 'GetOverlappedResult', 'GetPrivateProfileIntW', 'GetPrivateProfileSectionNamesW', 'GetPrivateProfileSectionW', 'GetPrivateProfileStringW', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetProcessIoCounters', 'GetStartupInfoA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeA', 'GetStringTypeExW', 'GetStringTypeW', 'GetSystemDefaultLangID', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemPowerStatus', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetSystemTimes', 'GetSystemWindowsDirectoryW', 'GetTempFileNameW', 'GetTempPathW', 'GetThreadLocale', 'GetTickCount', 'GetTimeFormatA', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersion', 'GetVersionExW', 'GetVolumeInformationW', 'GetWindowsDirectoryW', 'GlobalAlloc', 'GlobalFindAtomA', 'GlobalFree', 'GlobalUnWire', 'HeapAlloc', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InterlockedCompareExchange', 'InterlockedDecrement', 'InterlockedExchange', 'InterlockedIncrement', 'IsBadReadPtr', 'IsDBCSLeadByte', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'IsWow64Process', 'LCMapStringA', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'GetConsoleScreenBufferInfo', 'LocalFree', 'LockFile', 'LockResource', 'MapViewOfFileEx', 'Module32FirstW', 'MoveFileW', 'MulDiv', 'MultiByteToWideChar', 'OpenEventA', 'OpenEventW', 'OpenMutexA', 'OpenMutexW', 'OpenProcess', 'OpenThread', 'OutputDebugStringW', 'PeekNamedPipe', 'Process32FirstW', 'Process32NextW', 'ProcessIdToSessionId', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleInputA', 'ReadDirectoryChangesW', 'ReadFile', 'ReadProcessMemory', 'ReleaseMutex', 'ReleaseSemaphore', 'ReplaceFile', 'ResetEvent', 'ResumeThread', 'RtlUnwind', 'ScrollConsoleScreenBufferA', 'SearchPathA', 'SetConsoleCtrlHandler', 'SetConsoleCursorPosition', 'SetConsoleMode', 'SetConsoleTextAttribute', 'SetCurrentDirectoryW', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetErrorMode', 'SetEvent', 'SetFileAttributesA', 'SetFilePointer', 'SetFilePointerEx', 'SetFileTime', 'SetHandleCount', 'SetLastError', 'SetNamedPipeHandleState', 'SetStdHandle', 'SetThreadLocale', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'SizeofResource', 'Sleep', 'SystemTimeToFileTime', 'TerminateProcess', 'TerminateThread', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnmapViewOfFile', 'VerSetConditionMask', 'VerifyVersionInfoW', 'VirtualAlloc', 'VirtualAllocEx', 'VirtualFree', 'VirtualFreeEx', 'VirtualLock', 'WTSGetActiveConsoleSessionId', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteConsoleA', 'WriteConsoleOutputCharacterA', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileSectionW', 'WritePrivateProfileStringW', '_lclose', '_lcreat', '_llseek', '_lopen', '_lread', '_lwrite', 'lstrcatA', 'lstrcmpA', 'lstrcmpiA', 'lstrcmpiW', 'lstrcpyA', 'lstrcpynA', 'lstrcpynW', 'lstrlen', 'lstrlenA', 'lstrlenW', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetConsoleCP', 'GetConsoleAliasesW', 'GetCommandLineW', 'GetCommandLineA', 'GetCommState', 'GetCPInfoExA', 'GetCPInfo', 'GetAtomNameW', 'GetACP', 'FreeResource', 'FreeLibrary', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'FreeConsole', 'FormatMessageW', 'FormatMessageA', 'FlushInstructionCache', 'FlushFileBuffers', 'FindResourceW', 'FindResourceExW', 'FindNextFileW', 'FindFirstFileW', 'FindFirstFileA', 'FindCloseChangeNotification', 'FindClose', 'FindAtomW', 'FillConsoleOutputCharacterA', 'FillConsoleOutputAttribute', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FatalAppExitA', 'ExitThread', 'ExitProcess', 'EnumSystemLocalesA', 'EnterCriticalSection', 'DuplicateHandle', 'DosDateTimeToFileTime', 'DisconnectNamedPipe', 'DeviceIoControl', 'DeleteVolumeMountPointW', 'DeleteFileW', 'DeleteFileA', 'DeleteCriticalSection', 'DeleteAtom', 'CreateWaitableTimerA', 'CreateToolhelp32Snapshot', 'CreateThread', 'CreateSemaphoreW', 'CreateSemaphoreA', 'CreateRemoteThread', 'CreateProcessW', 'CreateNamedPipeW', 'CreateMutexW', 'CreateMutexA', 'CreateFileW', 'CreateFileMappingW', 'CreateFileA', 'CreateEventW', 'CreateEventA', 'CreateDirectoryW', 'CreateDirectoryA', 'CopyFileW', 'CopyFileExA', 'ConnectNamedPipe', 'CompareStringW', 'CompareStringA', 'CompareFileTime', 'CloseHandle', 'CancelIo', 'LocalFileTimeToFileTime', 'AddAtomW', 'wvsprintfW', 'PostThreadMessageW', 'MessageBoxW', 'LoadStringW', 'GetMessageW', 'DispatchMessageW', 'CharNextW', 'GetTextExtentPoint32W', 'GetStockObject', 'GetObjectW', 'GetBkMode', 'DeleteObject', 'DeleteDC', 'SelectObject', 'CreateFontIndirectW', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'SetTextColor', 'CreateFontW', 'SetDIBColorTable', 'StartServiceW', 'SetSecurityDescriptorDacl', 'SetNamedSecurityInfoW', 'SetEntriesInAclW', 'RevertToSelf', 'RegSetValueExW', 'RegQueryValueExW', 'RegQueryValueExA', 'RegQueryInfoKeyW', 'RegOpenKeyW', 'RegOpenKeyExW', 'RegOpenKeyExA', 'RegNotifyChangeKeyValue', 'RegEnumKeyExW', 'RegEnumKeyExA', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExW', 'RegCreateKeyA', 'RegCloseKey', 'ReadEventLogW', 'QueryServiceStatus', 'OpenServiceW', 'OpenSCManagerW', 'OpenProcessToken', 'OpenEventLogW', 'LookupPrivilegeValueW', 'LookupAccountSidW', 'InitializeSecurityDescriptor', 'ImpersonateLoggedOnUser', 'GetUserNameW', 'GetTokenInformation', 'GetNamedSecurityInfoW', 'FreeSid', 'EqualSid', 'DuplicateTokenEx', 'DuplicateToken', 'CryptReleaseContext', 'CryptGenRandom', 'CryptAcquireContextW', 'CreateWellKnownSid', 'ConvertStringSidToSidW', 'ConvertSidToStringSidW', 'CloseServiceHandle', 'CloseEventLog', 'CheckTokenMembership', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'RegOpenKeyA', 'Shell_NotifyIconW', 'ShellExecuteW', 'ShellExecuteExW', 'ShellExecuteA', 'SHLoadInProc', 'SHGetSpecialFolderPathW', 'SHGetMalloc', 'SHGetIconOverlayIndexW', 'SHGetFolderPathW', 'SHGetFolderPathA', 'SHFileOperationA', 'SHCreateDirectoryExW', 'SHChangeNotify', 'ExtractAssociatedIconExW', 'DragQueryFileA', 'StrCmpNA', 'ImmDisableIME', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext'], ['LoadStringW', 'SysAllocStringLen', 'SysAllocStringByteLen', 'SysStringLen', 'GetProcAddress', 'VirtualAlloc', 'VirtualProtect', 'RtlMoveMemory', 'WideCharToMultiByte', 'GetModuleHandleW', '__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaVarVargNofree', '__vbaAryMove', '__vbaFreeVar', '__vbaLenBstr', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaFreeObjList', '_adj_fprem1', '__vbaResume', '__vbaStrCat', '__vbaNameFile', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaExitProc', '__vbaObjSet', '__vbaOnError', '__vbaCyAdd', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaBoolVarNull', '__vbaRefVarAry', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaCyI2', '__vbaVarTstEq', '__vbaDateR8', '__vbaObjVar', '__vbaVarLateMemSt', '__vbaLbound', '_adj_fpatan', '__vbaLateIdCallLd', '__vbaRedim', 'EVENT_SINK_Release', '__vbaUI1I2', '_CIsqrt', '__vbaVarAnd', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaFpCmpCy', '__vbaUI1I4', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaUbound', '__vbaVarCat', '_CIlog', '__vbaErrorOverflow', '__vbaVarLateMemCallLdRf', '__vbaVar2Vec', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarNot', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaPowerR8', '__vbaR8Var', '_adj_fdiv_r', '__vbaI4Var', '__vbaLateMemCall', '__vbaVarAdd', '__vbaAryLock', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaFpI4', '__vbaVarSetObjAddref', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaAryUnlock', '_CIexp', '__vbaFreeObj', '__vbaI4ErrVar', '__vbaFreeStr'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', 'DllFunctionCall', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaI2Var', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaI4Str', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaI4Var', '__vbaVarDup', '_CIatan', '__vbaStrMove', '__vbaCastObj', '_allmul', '_CItan', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaLenBstr', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaOnError', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaCyI4', 'DllFunctionCall', '_adj_fpatan', '__vbaLateIdCallLd', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaI4Var', '__vbaStrToAnsi', '__vbaFpI4', '_CIatan', '__vbaStrMove', '__vbaI4Cy', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['DirectDrawCreateEx', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetACP', 'IsValidCodePage', 'GetStdHandle', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'HeapCreate', 'VirtualFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'ClearCommError', 'UnhandledExceptionFilter', 'FindAtomW', 'FindAtomA', 'CreateFileW', 'GetProcessHeap', 'GetProcAddress', 'GetModuleHandleA', 'ClearCommBreak', 'FreeConsole', 'GetTickCount', 'DeleteFileA', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceA', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'DeleteCriticalSection', 'Sleep', 'CloseHandle', 'TerminateThread', 'WaitForSingleObject', 'ResumeThread', 'SetLastError', 'GetLastError', 'lstrlenA', 'MultiByteToWideChar', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'LoadLibraryA', 'GetCurrentProcessId', 'GlobalUnlock', 'GlobalLock', 'GetVersionExA', 'lstrcmpW', 'CompareStringA', 'FreeLibrary', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'TerminateProcess', 'HeapSize', 'ExitProcess', 'HeapReAlloc', 'VirtualQuery', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'RaiseException', 'HeapFree', 'HeapAlloc', 'GetStartupInfoA', 'GetCommandLineA', 'CreateThread', 'ExitThread', 'RtlUnwind', 'SetErrorMode', 'GetFileSizeEx', 'LocalFileTimeToFileTime', 'FileTimeToLocalFileTime', 'CreateFileA', 'GetShortPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'lstrcmpiA', 'GetStringTypeExA', 'MoveFileA', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetThreadLocale', 'GetModuleHandleW', 'GetOEMCP', 'GetCPInfo', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'GlobalFlags', 'InterlockedDecrement', 'GetModuleFileNameW', 'GetDiskFreeSpaceA', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileTime', 'SetFileTime', 'GetFileAttributesA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetLocaleInfoA', 'InterlockedExchange', 'lstrcmpA', 'GetModuleFileNameA', 'GlobalFree', 'GlobalAlloc', 'FormatMessageA', 'LocalFree', 'MulDiv', 'FreeResource', 'GetCurrentThreadId', 'PostThreadMessageA', 'GetTabbedTextExtentA', 'RegisterClipboardFormatA', 'CharUpperA', 'DestroyIcon', 'SetCapture', 'LockWindowUpdate', 'GetDCEx', 'WindowFromPoint', 'GetSysColorBrush', 'GetMenuItemInfoA', 'DestroyCursor', 'SetWindowContextHelpId', 'MapDialogRect', 'CreateDialogIndirectParamA', 'GetNextDlgTabItem', 'EndDialog', 'ShowOwnedPopups', 'GetMessageA', 'TranslateMessage', 'GetCursorPos', 'ValidateRect', 'PostQuitMessage', 'SetParent', 'GetSystemMenu', 'DeleteMenu', 'IsRectEmpty', 'IsZoomed', 'InflateRect', 'EndPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'GetMenuStringA', 'AppendMenuA', 'InsertMenuA', 'RemoveMenu', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'SetDlgItemTextA', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'IsChild', 'SetWindowsHookExA', 'CreateMenu', 'GetClassLongA', 'SetPropA', 'GetPropA', 'RemovePropA', 'GetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'MessageBoxA', 'GetClassInfoExA', 'RegisterClassA', 'ScreenToClient', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'DefWindowProcA', 'CallWindowProcA', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'GetSystemMetrics', 'GetClassNameA', 'GetSysColor', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'DestroyMenu', 'WinHelpA', 'SetFocus', 'GetWindowThreadProcessId', 'IsWindowEnabled', 'ClientToScreen', 'SetRect', 'GetClientRect', 'SendMessageA', 'EnumChildWindows', 'EqualRect', 'GetDlgItem', 'GetDlgCtrlID', 'GetKeyState', 'LoadIconA', 'PeekMessageA', 'GetCapture', 'ReleaseCapture', 'LoadAcceleratorsA', 'SetActiveWindow', 'IsWindowVisible', 'IsIconic', 'InsertMenuItemA', 'CreatePopupMenu', 'GetClassInfoA', 'SetWindowRgn', 'DrawIcon', 'UnregisterClassA', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'CopyAcceleratorTableA', 'CharNextA', 'CallNextHookEx', 'BringWindowToTop', 'FindWindowW', 'ShowWindow', 'UpdateWindow', 'EnableWindow', 'InvalidateRect', 'SetTimer', 'KillTimer', 'LoadCursorA', 'SetCursor', 'DefFrameProcA', 'GetMenu', 'DefMDIChildProcA', 'GetMenuItemID', 'GetSubMenu', 'GetMenuItemCount', 'GetParent', 'CreateWindowExA', 'DrawMenuBar', 'GetActiveWindow', 'TranslateMDISysAccel', 'TranslateAcceleratorA', 'IsWindow', 'SetWindowLongA', 'GetWindowLongA', 'SetWindowPos', 'RedrawWindow', 'AdjustWindowRectEx', 'GetWindow', 'GetDesktopWindow', 'SetMenu', 'PostMessageA', 'GetLastActivePopup', 'CopyRect', 'SetRectEmpty', 'OffsetRect', 'IntersectRect', 'BeginPaint', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetStretchBltMode', 'SetMapMode', 'ExcludeClipRect', 'IntersectClipRect', 'LineTo', 'MoveToEx', 'SetTextAlign', 'DeleteObject', 'SelectClipRgn', 'CreateRectRgn', 'GetViewportExtEx', 'GetWindowExtEx', 'GetPixel', 'StartDocA', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetCurrentPositionEx', 'CreateDCA', 'ExtSelectClipRgn', 'DeleteDC', 'CreatePatternBrush', 'GetStockObject', 'CreatePen', 'CreateFontIndirectA', 'CreateRectRgnIndirect', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'StartPage', 'EndPage', 'SetAbortProc', 'AbortDoc', 'EndDoc', 'GetViewportOrgEx', 'Rectangle', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'CreateEllipticRgn', 'LPtoDP', 'GetNearestColor', 'GetBkMode', 'GetPolyFillMode', 'GetROP2', 'GetStretchBltMode', 'GetTextAlign', 'GetTextFaceA', 'GetTextExtentPointA', 'GetWindowOrgEx', 'GetDeviceCaps', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'SetBitmapBits', 'BitBlt', 'CloseMetaFile', 'AngleArc', 'Ellipse', 'SelectObject', 'CreateSolidBrush', 'GetFileTitleA', 'GetJobA', 'DocumentPropertiesA', 'ClosePrinter', 'OpenPrinterA', 'RegCloseKey', 'RegCreateKeyA', 'GetFileSecurityA', 'SetFileSecurityA', 'RegDeleteValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueA', 'DragFinish', 'ExtractIconA', 'SHGetFileInfoA', 'DragQueryFileA', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'CoRevokeClassObject', 'OleIsCurrentClipboard', 'OleFlushClipboard', 'CoRegisterMessageFilter', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'IsAccelerator', 'OleTranslateAccelerator', 'CoUninitialize', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoCreateInstance', 'CLSIDFromString', 'CLSIDFromProgID', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoInitializeEx', 'OleInitialize', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysAllocStringLen', 'SysStringLen', 'SysFreeString', 'SysAllocStringByteLen', 'VariantCopy', 'SafeArrayDestroy', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysAllocString', 'OleCreateFontIndirect'], ['__vbaVarSub', '__vbaVarTstGt', '__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaVarVargNofree', '__vbaFreeVar', '__vbaStrVarMove', '__vbaGosubReturn', '__vbaLineInputStr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaLineInputVar', '__vbaFreeObjList', '__vbaVarIndexLoadRef', '_adj_fprem1', '__vbaRecAnsiToUni', '__vbaResume', '__vbaVarCmpNe', '__vbaStrCat', '__vbaSetSystemError', '__vbaNameFile', '__vbaHresultCheckObj', '__vbaVargVarCopy', '__vbaLenVar', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaVarCmpGe', '__vbaLateMemSt', '__vbaExitProc', '__vbaVarForInit', '__vbaObjSet', '__vbaOnError', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFpR4', '__vbaBoolVar', '__vbaFpR8', '__vbaVargVar', '__vbaBoolVarNull', '__vbaVarTstLt', '_CIsin', '__vbaVarCmpGt', '__vbaVargVarMove', '__vbaChkstk', '__vbaGosubFree', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '__vbaVarTstEq', '__vbaObjVar', '__vbaI2I4', 'DllFunctionCall', '__vbaVarOr', '_adj_fpatan', '__vbaRedim', '__vbaStrR8', '__vbaRecUniToAnsi', 'EVENT_SINK_Release', '_CIsqrt', '__vbaVarAnd', 'EVENT_SINK_QueryInterface', '__vbaStrUI1', '__vbaVarMul', '__vbaExceptHandler', '__vbaStrToUnicode', '__vbaPrintFile', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarDiv', '__vbaGosub', '__vbaR8ErrVar', '__vbaVarCmpLe', '__vbaFPException', '__vbaInStrVar', '__vbaStrVarVal', '__vbaVarCat', '__vbaDateVar', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaVarLateMemCallLdRf', '__vbaInStr', '__vbaNew2', '__vbaR8Str', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaVarCmpLt', '__vbaFreeStrList', '_adj_fdivr_m32', '__vbaR8Var', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarSetVar', '__vbaI4Var', '__vbaVarCmpEq', '__vbaAryLock', '__vbaLateMemCall', '__vbaVarAdd', '__vbaStrToAnsi', '__vbaVarDup', '__vbaVarLateMemCallLd', '__vbaVarTstGe', '__vbaVarCopy', '__vbaLateMemCallLd', '_CIatan', '__vbaStrMove', '__vbaStrVarCopy', '_allmul', '_CItan', '__vbaAryUnlock', '__vbaFPInt', '__vbaVarForNext', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetCurrentProcess', 'ExitThread', 'SetEndOfFile', 'CreateFileW', 'HeapSize', 'WriteConsoleW', 'ReadConsoleW', 'SetStdHandle', 'FindFirstFileExW', 'FindClose', 'GetProcAddress', 'GetCommandLineW', 'GetCommandLineA', 'GetProcessHeap', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetOEMCP', 'IsValidCodePage', 'SetFilePointerEx', 'ReadFile', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'WinExec', 'CreateProcessA', 'GetStartupInfoA', 'GetModuleFileNameW', 'CopyFileA', 'GetFileAttributesA', 'GetModuleFileNameA', 'FindNextFileW', 'GetLocalTime', 'FindFirstFileW', 'CreateThread', 'GetModuleHandleW', 'Sleep', 'GetLogicalDrives', 'VerifyVersionInfoW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetFileAttributesExW', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetFileType', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'CloseHandle', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetStringTypeW', 'EncodePointer', 'DecodePointer', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetCPInfo', 'GetLastError', 'FreeLibrary', 'LoadLibraryExW', 'RaiseException', 'RtlUnwind', 'MoveFileExW', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetACP', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'VerSetConditionMask', 'ShowWindow', 'SendMessageW', 'FindWindowW', 'DrawTextA', 'CallNextHookEx', 'GetAsyncKeyState', 'DefWindowProcW', 'PostQuitMessage', 'DestroyWindow', 'KillTimer', 'InvalidateRect', 'SetTimer', 'EndPaint', 'SetWindowsHookExW', 'DrawTextW', 'BeginPaint', 'GetSystemMetrics', 'ShowCursor', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'SetForegroundWindow', 'SetWindowLongW', 'SetWindowPos', 'CreateWindowExW', 'RegisterClassExW', 'LoadCursorW', 'MoveToEx', 'CreatePen', 'DeleteObject', 'SetTextColor', 'SetBkMode', 'SelectObject', 'CreateFontIndirectW', 'CreateSolidBrush', 'LineTo', 'SystemFunction036', 'GetUserNameA', 'RegCloseKey', 'RegQueryValueExW', 'RegOpenKeyExW', 'GetUserNameW', 'InternetOpenW', 'InternetOpenUrlW', 'InternetReadFile', 'InternetCloseHandle', 'NetUserGetInfo'], ['CallWindowProcW', 'MethCallEngine', 'EVENT_SINK_AddRef', 'DllFunctionCall', 'EVENT_SINK_Release', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', 'ProcCallEngine', 'GetProcAddress', 'FreeResource', 'RtlMoveMemory', 'LoadResource', 'SizeofResource', 'LoadLibraryA', 'FreeLibrary', 'LockResource'], ['DecodePointer', 'DeleteCriticalSection', 'InterlockedIncrement', 'OutputDebugStringW', 'MulDiv', 'MultiByteToWideChar', 'ExitProcess', 'Sleep', 'GetEnvironmentVariableA', 'FindResourceW', 'LoadResource', 'SizeofResource', 'LockResource', 'GetCurrentProcess', 'SetEvent', 'LoadLibraryW', 'TerminateProcess', 'GetTempPathW', 'OpenEventW', 'CloseHandle', 'Beep', 'GlobalLock', 'GetModuleHandleW', 'GlobalAlloc', 'FormatMessageW', 'lstrlenW', 'GlobalUnlock', 'LocalAlloc', 'CreateProcessW', 'OpenProcess', 'GetSystemDirectoryW', 'Process32FirstW', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetWindowsDirectoryW', 'GetTickCount', 'GetLastError', 'CreateTimerQueue', 'ExitThread', 'SetEndOfFile', 'ReadConsoleW', 'WriteConsoleW', 'SetStdHandle', 'CreateFileW', 'HeapReAlloc', 'SetFilePointerEx', 'ReadFile', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetModuleFileNameA', 'GetFileType', 'UnregisterWaitEx', 'QueryDepthSList', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'InterlockedPopEntrySList', 'InitializeSListHead', 'ReleaseSemaphore', 'GetModuleHandleA', 'FreeLibraryAndExitThread', 'GetThreadTimes', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'RaiseException', 'LoadLibraryExW', 'InitializeCriticalSectionAndSpinCount', 'FreeLibrary', 'InterlockedDecrement', 'GetVersionExW', 'GetConsoleMode', 'GetConsoleCP', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'GetModuleFileNameW', 'WriteFile', 'GetStdHandle', 'GetProcessHeap', 'HeapSize', 'GetModuleHandleExW', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CreateThread', 'CreateSemaphoreW', 'GetStartupInfoW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'CreateEventW', 'UnregisterWait', 'RegisterWaitForSingleObject', 'SetThreadAffinityMask', 'GetProcessAffinityMask', 'GetNumaHighestNodeNumber', 'SetLastError', 'DeleteTimerQueueTimer', 'ChangeTimerQueueTimer', 'CreateTimerQueueTimer', 'GetLogicalProcessorInformation', 'GetThreadPriority', 'SetThreadPriority', 'SwitchToThread', 'SignalObjectAndWait', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'GetStringTypeW', 'DuplicateHandle', 'GetCurrentThread', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'lstrlenA', 'LocalFree', 'HeapFree', 'HeapAlloc', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetCommandLineA', 'RtlUnwind', 'GetCPInfo', 'GetProcAddress', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'RegOpenKeyExW', 'RegQueryValueExW', 'GetDeviceCaps', 'BitBlt', 'GdiplusShutdown', 'GdipFree', 'GdipCreateBitmapFromHICON', 'GdipAlloc', 'GdipGetImageEncodersSize', 'GdipDisposeImage', 'GdipGetImageEncoders', 'GdipCloneImage', 'GdiplusStartup', 'GdipSaveImageToStream', 'CoSetProxyBlanket', 'CoUninitialize', 'OleLockRunning', 'OleSetContainedObject', 'OleCreate', 'CoInitializeEx', 'OleInitialize', 'CLSIDFromProgID', 'CreateStreamOnHGlobal', 'OleRun', 'CoCreateInstance', 'VariantInit', 'SysAllocStringLen', 'SysFreeString', 'VariantClear', 'SysAllocString', 'GetErrorInfo', 'SHGetFolderPathW', 'ShellExecuteW', 'SHGetSpecialFolderPathW', 'Shell_NotifyIconW', 'ExtractIconExW', 'SetFocus', 'IsWindowVisible', 'PostQuitMessage', 'GetClassNameW', 'FindWindowW', 'IsIconic', 'SystemParametersInfoW', 'GetWindowRect', 'wsprintfW', 'GetClientRect', 'MoveWindow', 'DefWindowProcW', 'UpdateWindow', 'GetSystemMetrics', 'MessageBoxW', 'CreateWindowExW', 'ShowWindow', 'SetWindowPos', 'SetWindowLongW', 'ReleaseDC', 'GetWindowLongW', 'GetDesktopWindow', 'GetDC', 'RegisterClassExW', 'LoadIconW', 'OffsetRect', 'KillTimer', 'GetMessageW', 'TranslateMessage', 'DispatchMessageW', 'MessageBoxA', 'SetTimer', 'PostMessageW', 'SetRect', 'VerQueryValueW', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW'], ['SetCurrentDirectoryW', 'GetFileAttributesW', 'GetFullPathNameW', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameW', 'MoveFileW', 'SetFileAttributesW', 'GetCurrentProcess', 'ExitProcess', 'SetEnvironmentVariableW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'GetVersion', 'SetErrorMode', 'lstrlenW', 'lstrcpynW', 'CopyFileW', 'CompareFileTime', 'GlobalLock', 'CreateThread', 'GetLastError', 'CreateDirectoryW', 'CreateProcessW', 'RemoveDirectoryW', 'lstrcmpiA', 'CreateFileW', 'GetTempFileNameW', 'WriteFile', 'lstrcpyA', 'lstrcpyW', 'MoveFileExW', 'lstrcatW', 'GetSystemDirectoryW', 'LoadLibraryW', 'GetProcAddress', 'GetModuleHandleA', 'ExpandEnvironmentStringsW', 'GetShortPathNameW', 'SearchPathW', 'lstrcmpiW', 'SetFileTime', 'CloseHandle', 'GlobalFree', 'lstrcmpW', 'GlobalAlloc', 'WaitForSingleObject', 'GlobalUnlock', 'GetDiskFreeSpaceW', 'GetExitCodeProcess', 'FindFirstFileW', 'FindNextFileW', 'DeleteFileW', 'SetFilePointer', 'ReadFile', 'FindClose', 'MulDiv', 'MultiByteToWideChar', 'lstrlenA', 'WideCharToMultiByte', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'FreeLibrary', 'LoadLibraryExW', 'GetModuleHandleW', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'EnableMenuItem', 'SetWindowPos', 'GetSysColor', 'GetWindowLongW', 'SetCursor', 'LoadCursorW', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapW', 'CallWindowProcW', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'wsprintfW', 'ScreenToClient', 'GetWindowRect', 'GetSystemMetrics', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharPrevW', 'CharNextA', 'wsprintfA', 'DispatchMessageW', 'PeekMessageW', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'EndDialog', 'RegisterClassW', 'SystemParametersInfoW', 'CreateWindowExW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamW', 'GetDC', 'SetWindowTextW', 'PostQuitMessage', 'ShowWindow', 'GetDlgItem', 'IsWindow', 'LoadImageW', 'SetWindowLongW', 'TrackPopupMenu', 'AppendMenuW', 'CreatePopupMenu', 'EndPaint', 'SetTimer', 'FindWindowExW', 'SendMessageTimeoutW', 'SetForegroundWindow', 'SelectObject', 'SetBkMode', 'CreateFontIndirectW', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'RegDeleteKeyW', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'RegEnumValueW', 'RegDeleteValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegEnumKeyW', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['FindResourceW', 'LoadResource', 'CreateProcessW', 'WaitForSingleObject', 'SizeofResource', 'FormatMessageW', 'GetExitCodeProcess', 'GetModuleFileNameW', 'GetStartupInfoW', 'GetLastError', 'FindClose', 'WideCharToMultiByte', 'SetFilePointer', 'SystemTimeToFileTime', 'CreateDirectoryW', 'SetFileTime', 'GetFileAttributesW', 'ReadFile', 'MultiByteToWideChar', 'GetCurrentDirectoryW', 'LocalFileTimeToFileTime', 'UnmapViewOfFile', 'GetTickCount', 'FindFirstFileW', 'HeapReAlloc', 'LCMapStringW', 'GetStringTypeW', 'RtlUnwind', 'HeapSize', 'GetSystemTimeAsFileTime', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'GetFileType', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetCPInfo', 'GetSystemDefaultLangID', 'CreateThread', 'lstrcpyW', 'ResumeThread', 'SuspendThread', 'CloseHandle', 'lstrcatW', 'HeapCreate', 'GetTempPathW', 'WriteFile', 'RaiseException', 'GetStdHandle', 'InterlockedDecrement', 'GetCurrentThreadId', 'lstrlenW', 'CreateFileW', 'Sleep', 'SetLastError', 'InterlockedIncrement', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'GetProcAddress', 'GetModuleHandleW', 'ExitProcess', 'DecodePointer', 'HeapFree', 'HeapAlloc', 'GetCommandLineW', 'HeapSetInformation', 'TerminateProcess', 'GetCurrentProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'EncodePointer', 'LoadLibraryW', 'TlsAlloc', 'IsProcessorFeaturePresent', 'RegisterClassW', 'CreateWindowExW', 'ShowWindow', 'UpdateWindow', 'LoadCursorW', 'MoveWindow', 'SendMessageW', 'DefWindowProcW', 'LoadIconW', 'GetMessageW', 'PostQuitMessage', 'TranslateMessage', 'RegisterClassExW', 'DispatchMessageW', 'WaitForInputIdle', 'GetClientRect', 'wsprintfW', 'MessageBoxW', 'GetStockObject', 'CreateSolidBrush', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'ShellExecuteW', 'InternetOpenUrlW', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'IcmpSendEcho', 'IcmpCloseHandle', 'IcmpCreateFile', 'gethostbyname', 'WSACleanup', 'WSAStartup'], ['ActivateActCtx', 'CloseHandle', 'CompareStringA', 'CompareStringW', 'CopyFileA', 'CreateActCtxW', 'CreateEventW', 'CreateFileA', 'CreateFileW', 'CreateThread', 'DeactivateActCtx', 'DecodePointer', 'DeleteCriticalSection', 'DeleteFileA', 'DuplicateHandle', 'EncodePointer', 'EnterCriticalSection', 'EnumSystemLocalesW', 'ExitProcess', 'ExitThread', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindActCtxSectionStringW', 'FindClose', 'FindFirstFileA', 'FindFirstFileExW', 'FindNextFileA', 'FindNextFileW', 'FindResourceA', 'FindResourceExW', 'FindResourceW', 'FlsAlloc', 'FlsFree', 'FlsGetValue', 'FlsSetValue', 'FlushFileBuffers', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'FreeLibraryAndExitThread', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetCurrentThreadId', 'GetEnvironmentStringsW', 'GetEnvironmentVariableA', 'GetFileAttributesA', 'GetFileAttributesExA', 'GetFileSize', 'GetFileSizeEx', 'GetFileTime', 'GetFileType', 'GetFullPathNameA', 'GetLastError', 'GetLocaleInfoW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetNativeSystemInfo', 'GetOEMCP', 'GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'GetProcAddress', 'GetProcessHeap', 'GetProfileIntA', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemDefaultUILanguage', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetTempFileNameA', 'GetTempPathA', 'GetThreadLocale', 'GetTickCount64', 'GetTimeZoneInformation', 'GetUserDefaultLCID', 'GetUserDefaultUILanguage', 'GetVersionExA', 'GetVolumeInformationA', 'GetWindowsDirectoryA', 'GlobalAddAtomA', 'GlobalAlloc', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalFlags', 'GlobalFree', 'GlobalGetAtomNameA', 'GlobalHandle', 'GlobalLock', 'GlobalMemoryStatusEx', 'GlobalReAlloc', 'GlobalSize', 'GlobalUnlock', 'HeapAlloc', 'HeapDestroy', 'HeapFree', 'HeapQueryInformation', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InitializeCriticalSectionEx', 'InitializeSListHead', 'IsBadReadPtr', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'LCMapStringEx', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'LoadResource', 'LocalAlloc', 'LocalFree', 'LocalReAlloc', 'LockFile', 'LockResource', 'MulDiv', 'MultiByteToWideChar', 'OpenProcess', 'OutputDebugStringA', 'OutputDebugStringW', 'QueryActCtxW', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'ResetEvent', 'ResumeThread', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlPcToFileHeader', 'RtlUnwind', 'RtlUnwindEx', 'RtlVirtualUnwind', 'SearchPathA', 'SetEndOfFile', 'SetEnvironmentVariableW', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetFilePointerEx', 'SetLastError', 'SetStdHandle', 'SetThreadPriority', 'SetUnhandledExceptionFilter', 'SizeofResource', 'Sleep', 'SystemTimeToTzSpecificLocalTime', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'UnhandledExceptionFilter', 'UnlockFile', 'VerSetConditionMask', 'VerifyVersionInfoA', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualProtectEx', 'VirtualQuery', 'VirtualQueryEx', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', 'WritePrivateProfileStringA', 'lstrcmpA', 'lstrcmpW', 'lstrcmpiA', 'lstrcpyA', 'AdjustWindowRectEx', 'AppendMenuA', 'BeginDeferWindowPos', 'BeginPaint', 'BringWindowToTop', 'CallNextHookEx', 'CallWindowProcA', 'CharNextA', 'CharUpperA', 'CharUpperBuffA', 'CheckDlgButton', 'CheckMenuItem', 'ClientToScreen', 'CloseClipboard', 'CopyAcceleratorTableA', 'CopyIcon', 'CopyImage', 'CopyRect', 'CreateAcceleratorTableA', 'CreateDialogIndirectParamA', 'CreateMenu', 'CreatePopupMenu', 'CreateWindowExA', 'DefFrameProcA', 'DefMDIChildProcA', 'DefWindowProcA', 'DeferWindowPos', 'DeleteMenu', 'DestroyAcceleratorTable', 'DestroyCursor', 'DestroyIcon', 'DestroyMenu', 'DestroyWindow', 'DispatchMessageA', 'DrawEdge', 'DrawFocusRect', 'DrawFrameControl', 'DrawIcon', 'DrawIconEx', 'DrawMenuBar', 'DrawStateA', 'DrawTextA', 'DrawTextExA', 'EmptyClipboard', 'EnableMenuItem', 'EnableScrollBar', 'EnableWindow', 'EndDeferWindowPos', 'EndDialog', 'EndPaint', 'EnumDisplayMonitors', 'EqualRect', 'FillRect', 'FrameRect', 'GetActiveWindow', 'GetAsyncKeyState', 'GetCapture', 'GetClassInfoA', 'GetClassInfoExA', 'GetClassLongA', 'GetClassLongPtrA', 'GetClassNameA', 'GetClientRect', 'GetComboBoxInfo', 'GetCursorPos', 'GetDC', 'GetDesktopWindow', 'GetDlgCtrlID', 'GetDlgItem', 'GetDoubleClickTime', 'GetFocus', 'GetForegroundWindow', 'GetIconInfo', 'GetKeyNameTextA', 'GetKeyState', 'GetKeyboardLayout', 'GetKeyboardState', 'GetLastActivePopup', 'GetMenu', 'GetMenuCheckMarkDimensions', 'GetMenuDefaultItem', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuItemInfoA', 'GetMenuState', 'GetMenuStringA', 'GetMessageA', 'GetMessagePos', 'GetMessageTime', 'GetMonitorInfoA', 'GetNextDlgGroupItem', 'GetNextDlgTabItem', 'GetParent', 'GetPropA', 'GetScrollInfo', 'GetScrollPos', 'GetScrollRange', 'GetSubMenu', 'GetSysColor', 'GetSysColorBrush', 'GetSystemMenu', 'GetSystemMetrics', 'GetTopWindow', 'GetUpdateRect', 'GetWindow', 'GetWindowDC', 'GetWindowLongA', 'GetWindowLongPtrA', 'GetWindowPlacement', 'GetWindowRect', 'GetWindowRgn', 'GetWindowTextA', 'GetWindowTextLengthA', 'GetWindowThreadProcessId', 'GrayStringA', 'HideCaret', 'InflateRect', 'InsertMenuA', 'InsertMenuItemA', 'IntersectRect', 'InvalidateRect', 'InvalidateRgn', 'InvertRect', 'IsCharLowerA', 'IsChild', 'IsClipboardFormatAvailable', 'IsDialogMessageA', 'IsIconic', 'IsMenu', 'IsRectEmpty', 'IsWindow', 'IsWindowEnabled', 'IsWindowVisible', 'IsZoomed', 'KillTimer', 'LoadAcceleratorsA', 'LoadAcceleratorsW', 'LoadBitmapW', 'LoadCursorA', 'LoadCursorW', 'LoadIconA', 'LoadIconW', 'LoadImageA', 'LoadImageW', 'LoadMenuA', 'LoadMenuW', 'LockWindowUpdate', 'MapDialogRect', 'MapVirtualKeyA', 'MapVirtualKeyExA', 'MapWindowPoints', 'MessageBeep', 'MessageBoxA', 'ModifyMenuA', 'MonitorFromPoint', 'MonitorFromWindow', 'MoveWindow', 'NotifyWinEvent', 'OffsetRect', 'OpenClipboard', 'PeekMessageA', 'PostMessageA', 'PostQuitMessage', 'PostThreadMessageA', 'PtInRect', 'RealChildWindowFromPoint', 'RedrawWindow', 'RegisterClassA', 'RegisterClipboardFormatA', 'RegisterWindowMessageA', 'ReleaseCapture', 'ReleaseDC', 'RemoveMenu', 'RemovePropA', 'ReuseDDElParam', 'ScreenToClient', 'ScrollWindow', 'SendDlgItemMessageA', 'SendMessageA', 'SetActiveWindow', 'SetCapture', 'SetClassLongPtrA', 'SetClipboardData', 'SetCursor', 'SetCursorPos', 'SetFocus', 'SetForegroundWindow', 'SetLayeredWindowAttributes', 'SetMenu', 'SetMenuDefaultItem', 'SetMenuItemBitmaps', 'SetMenuItemInfoA', 'SetParent', 'SetPropA', 'SetRect', 'SetRectEmpty', 'SetScrollInfo', 'SetScrollPos', 'SetScrollRange', 'SetTimer', 'SetWindowContextHelpId', 'SetWindowLongA', 'SetWindowLongPtrA', 'SetWindowPlacement', 'SetWindowPos', 'SetWindowRgn', 'SetWindowTextA', 'SetWindowsHookExA', 'ShowOwnedPopups', 'ShowScrollBar', 'ShowWindow', 'SubtractRect', 'SystemParametersInfoA', 'TabbedTextOutA', 'ToAsciiEx', 'TrackMouseEvent', 'TrackPopupMenu', 'TranslateAcceleratorA', 'TranslateMDISysAccel', 'TranslateMessage', 'UnhookWindowsHookEx', 'UnionRect', 'UnpackDDElParam', 'UnregisterClassA', 'UpdateLayeredWindow', 'UpdateWindow', 'ValidateRect', 'WaitMessage', 'WinHelpA', 'WindowFromPoint', 'InitCommonControlsEx', 'EnumProcessModules', 'EnumProcesses', 'BitBlt', 'CombineRgn', 'CopyMetaFileA', 'CreateBitmap', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateDCA', 'CreateDIBSection', 'CreateDIBitmap', 'CreateEllipticRgn', 'CreateFontIndirectA', 'CreateHatchBrush', 'CreatePalette', 'CreatePatternBrush', 'CreatePen', 'CreatePolygonRgn', 'CreateRectRgn', 'CreateRectRgnIndirect', 'CreateRoundRectRgn', 'CreateSolidBrush', 'DPtoLP', 'DeleteDC', 'DeleteObject', 'Ellipse', 'EnumFontFamiliesA', 'EnumFontFamiliesExA', 'Escape', 'ExcludeClipRect', 'ExtFloodFill', 'ExtSelectClipRgn', 'ExtTextOutA', 'FillRgn', 'FrameRgn', 'GetBkColor', 'GetBoundsRect', 'GetClipBox', 'GetDeviceCaps', 'GetLayout', 'GetMapMode', 'GetNearestPaletteIndex', 'GetObjectA', 'GetObjectType', 'GetPaletteEntries', 'GetPixel', 'GetRgnBox', 'GetStockObject', 'GetSystemPaletteEntries', 'GetTextCharsetInfo', 'GetTextColor', 'GetTextExtentPoint32A', 'GetTextFaceA', 'GetTextMetricsA', 'GetViewportExtEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetWindowOrgEx', 'IntersectClipRect', 'LPtoDP', 'LineTo', 'MoveToEx', 'OffsetRgn', 'OffsetViewportOrgEx', 'OffsetWindowOrgEx', 'PatBlt', 'Polygon', 'Polyline', 'PtInRegion', 'PtVisible', 'RealizePalette', 'RectVisible', 'Rectangle', 'RestoreDC', 'RoundRect', 'SaveDC', 'ScaleViewportExtEx', 'ScaleWindowExtEx', 'SelectClipRgn', 'SelectObject', 'SelectPalette', 'SetBkColor', 'SetBkMode', 'SetDIBColorTable', 'SetLayout', 'SetMapMode', 'SetPaletteEntries', 'SetPixel', 'SetPixelV', 'SetPolyFillMode', 'SetROP2', 'SetRectRgn', 'SetTextAlign', 'SetTextColor', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'StretchBlt', 'TextOutA', 'RegCloseKey', 'RegCreateKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegEnumKeyA', 'RegEnumKeyExA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegQueryValueExA', 'RegSetValueExA', 'CLSIDFromProgID', 'CLSIDFromString', 'CoCreateGuid', 'CoCreateInstance', 'CoDisconnectObject', 'CoFreeUnusedLibraries', 'CoGetClassObject', 'CoInitialize', 'CoInitializeEx', 'CoLockObjectExternal', 'CoRegisterMessageFilter', 'CoRevokeClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CoUninitialize', 'CreateILockBytesOnHGlobal', 'CreateStreamOnHGlobal', 'DoDragDrop', 'IsAccelerator', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleDuplicateData', 'OleFlushClipboard', 'OleGetClipboard', 'OleInitialize', 'OleIsCurrentClipboard', 'OleLockRunning', 'OleTranslateAccelerator', 'OleUninitialize', 'RegisterDragDrop', 'ReleaseStgMedium', 'RevokeDragDrop', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'LoadTypeLib', 'OleCreateFontIndirect', 'SafeArrayDestroy', 'SysAllocString', 'SysAllocStringByteLen', 'SysAllocStringLen', 'SysFreeString', 'SysStringLen', 'SystemTimeToVariantTime', 'VarBstrFromDate', 'VariantChangeType', 'VariantClear', 'VariantCopy', 'VariantInit', 'VariantTimeToSystemTime', 'PathFindExtensionA', 'PathFindFileNameA', 'PathIsUNCA', 'PathRemoveFileSpecW', 'PathStripToRootA', 'StrFormatKBSizeA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'GdipAlloc', 'GdipBitmapLockBits', 'GdipBitmapUnlockBits', 'GdipCloneImage', 'GdipCreateBitmapFromHBITMAP', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipCreateFromHDC', 'GdipDeleteGraphics', 'GdipDisposeImage', 'GdipDrawImageI', 'GdipDrawImageRectI', 'GdipFree', 'GdipGetImageGraphicsContext', 'GdipGetImageHeight', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageWidth', 'GdipSetInterpolationMode', 'GdiplusShutdown', 'GdiplusStartup', 'CloseThemeData', 'DrawThemeBackground', 'DrawThemeParentBackground', 'DrawThemeText', 'GetCurrentThemeName', 'GetThemeColor', 'GetThemePartSize', 'GetThemeSysColor', 'GetWindowTheme', 'IsAppThemed', 'IsThemeBackgroundPartiallyTransparent', 'OpenThemeData', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'LresultFromObject', 'DragFinish', 'DragQueryFileA', 'SHAppBarMessage', 'SHBrowseForFolderA', 'SHGetDesktopFolder', 'SHGetFileInfoA', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'ShellExecuteA', 'AlphaBlend', 'TransparentBlt', 'ImmGetContext', 'ImmGetOpenStatus', 'ImmReleaseContext', 'PlaySoundA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '__vbaCyStr', '__vbaFpR8', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaStrCmp', '__vbaAryConstruct2', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaFpCmpCy', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaVarErrI4', '__vbaFPException', '_CIlog', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaVarAdd', '__vbaVarDup', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['CreateFileA', 'FindFirstFileA', 'ReadFile', 'GetFileSize', 'GetSystemDirectoryA', 'ExitProcess', 'FindClose', 'FindNextFileA', 'GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'CreateDirectoryA', 'WriteFile', 'GetLocalTime', 'OutputDebugStringA', 'GetCurrentDirectoryA', 'CreateProcessA', 'WritePrivateProfileStringA', 'SetFilePointer', 'VirtualProtect', 'VirtualQuery', 'GlobalAlloc', 'GetVolumeInformationA', 'GetComputerNameA', 'SuspendThread', 'DeleteFileA', 'ResumeThread', 'CopyFileA', 'InitializeCriticalSectionAndSpinCount', 'WaitForSingleObject', 'SetThreadPriority', 'TerminateThread', 'GetExitCodeThread', '_lopen', '_lcreat', '_lread', '_lwrite', '_lclose', 'CompareFileTime', 'GlobalUnlock', 'GlobalLock', 'GlobalHandle', 'GlobalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'IsDBCSLeadByte', 'LocalAlloc', 'LocalFree', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingA', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'OpenProcess', 'GetVersionExA', 'K32EnumProcesses', 'K32EnumProcessModules', 'K32GetModuleBaseNameA', 'SetEndOfFile', 'CreateFileW', 'SetStdHandle', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'lstrcmpiA', 'FindFirstFileExW', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'FlushFileBuffers', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetTimeFormatW', 'GetDateFormatW', 'SetFilePointerEx', 'GetFileSizeEx', 'GetConsoleCP', 'ReadConsoleW', 'GetConsoleMode', 'GetFileType', 'GetStdHandle', 'GetModuleFileNameW', 'GetModuleHandleExW', 'LoadLibraryExW', 'FreeLibrary', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'RtlUnwind', 'OutputDebugStringW', 'InitializeSListHead', 'QueryPerformanceCounter', 'GetStartupInfoW', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'WaitForSingleObjectEx', 'ResetEvent', 'SetEvent', 'GetCPInfo', 'GetStringTypeW', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetModuleHandleW', 'GetSystemTimeAsFileTime', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'SwitchToThread', 'CreateEventW', 'SetLastError', 'EncodePointer', 'FormatMessageW', 'LoadLibraryA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'FreeLibraryAndExitThread', 'GetTickCount', 'OpenThread', 'GetCurrentThreadId', 'CreateThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'lstrcmpA', 'DuplicateHandle', 'CloseHandle', 'IsDebuggerPresent', 'DeleteCriticalSection', 'InitializeCriticalSectionEx', 'lstrcatA', 'ExitThread', 'WriteConsoleW', 'GetCurrentThread', 'Sleep', 'Module32Next', 'Module32First', 'Thread32Next', 'Thread32First', 'CreateToolhelp32Snapshot', 'lstrlenA', 'lstrcpyA', 'FindNextFileW', 'lstrcpynA', 'DecodePointer', 'RaiseException', 'GetLastError', 'HeapDestroy', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'HeapSize', 'GetProcessHeap', 'DestroyIcon', 'CreateMenu', 'LoadIconA', 'SetForegroundWindow', 'EnableMenuItem', 'SetMenu', 'GetMenu', 'LoadMenuA', 'GetSystemMetrics', 'SetWindowPos', 'GetAsyncKeyState', 'AdjustWindowRect', 'SetWindowLongA', 'CharToOemA', 'OemToCharA', 'CharUpperA', 'PostMessageA', 'SetTimer', 'CallWindowProcA', 'SetFocus', 'UnregisterClassA', 'GetForegroundWindow', 'AdjustWindowRectEx', 'ShowCursor', 'GetWindowLongA', 'PostQuitMessage', 'CheckMenuItem', 'GetWindowTextA', 'FindWindowA', 'GetWindow', 'wsprintfA', 'CharLowerA', 'EnumWindows', 'GetClassNameA', 'GetDC', 'ReleaseDC', 'SetWindowTextA', 'GetClientRect', 'ClientToScreen', 'OffsetRect', 'SendMessageA', 'GetKeyState', 'MessageBoxA', 'LoadKeyboardLayoutA', 'GetKeyboardLayoutNameA', 'TranslateMessage', 'DispatchMessageA', 'PeekMessageA', 'DefWindowProcA', 'RegisterClassA', 'CreateWindowExA', 'DestroyWindow', 'ShowWindow', 'CreateDialogParamA', 'GetDlgItem', 'LoadCursorA', 'UpdateWindow', 'WaitMessage', 'CreateSolidBrush', 'GetTextColor', 'GetStockObject', 'SetBkMode', 'GetObjectA', 'SelectObject', 'GetDIBits', 'DeleteDC', 'CreateDCA', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'BitBlt', 'DeleteObject', 'CreateFontA', 'RegCloseKey', 'RegDeleteValueA', 'RegOpenKeyA', 'RegCreateKeyExA', 'Shell_NotifyIconA', 'ShellExecuteA', 'CoUninitialize', 'CoCreateInstance', 'CoInitialize', 'Direct3DCreate9', 'D3DXGetImageInfoFromFileInMemory', 'D3DXCreateTextureFromFileInMemoryEx', 'D3DXCreateFontA', 'timeGetTime', 'timeSetEvent', 'timeKillEvent', 'timeBeginPeriod', 'timeEndPeriod', 'mmioOpenA', 'mmioClose', 'mmioRead', 'mmioWrite', 'mmioSeek', 'mixerSetControlDetails', 'mixerGetControlDetailsA', 'mixerGetLineControlsA', 'mixerGetLineInfoA', 'mixerClose', 'mixerOpen', 'mixerGetDevCapsA', 'mmioCreateChunk', 'mmioAscend', 'mmioDescend', 'mmioAdvance', 'mmioSetInfo', 'mmioGetInfo', 'PathFileExistsA', 'ICSendMessage', 'ICClose', 'ICDecompress', 'ICLocate', 'AVIStreamOpenFromFileA', 'AVIStreamInfoA', 'AVIStreamRelease', 'AVIFileExit', 'AVIFileInit', 'AVIStreamRead', 'AVIStreamLength', 'AVIStreamReadFormat', 'GetAdaptersInfo', 'HttpQueryInfoA', 'InternetReadFile', 'InternetOpenUrlA', 'InternetCloseHandle', 'InternetOpenA', 'closesocket', 'socket', 'ioctlsocket', 'WSACleanup', 'accept', 'bind', 'connect', 'inet_ntoa', 'select', '__WSAFDIsSet', 'WSAAsyncSelect', 'WSAGetLastError', 'WSAStartup', 'gethostname', 'gethostbyname', 'htons', 'setsockopt', 'send', 'recv', 'listen', 'inet_addr', 'ImmGetDescriptionA', 'ImmGetProperty', 'ImmGetContext', 'ImmReleaseContext', 'ImmGetCompositionStringA', 'ImmGetCandidateListCountA', 'ImmGetCandidateListA', 'ImmGetConversionStatus', 'ImmSetConversionStatus', 'ImmSetOpenStatus'], ['CreateFileW', 'GetProcessHeap', 'SetEnvironmentVariableA', 'GetCurrentProcess', 'CloseHandle', 'lstrlenW', 'ActivateActCtx', 'WriteConsoleW', 'DeactivateActCtx', 'GetDriveTypeW', 'GetCurrentDirectoryW', 'FindFirstFileExA', 'GetDriveTypeA', 'GetFileInformationByHandle', 'QueryPerformanceCounter', 'WaitForMultipleObjects', 'PeekNamedPipe', 'GetSystemDirectoryA', 'VerSetConditionMask', 'VerifyVersionInfoA', 'SleepEx', 'GetTimeZoneInformation', 'CompareStringW', 'GetLastError', 'GetStringTypeW', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetConsoleMode', 'GetConsoleCP', 'LCMapStringW', 'IsValidCodePage', 'TerminateProcess', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'SetLastError', 'GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'FindResourceA', 'FreeResource', 'GetCPInfo', 'lstrlenA', 'lstrcmpiA', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersion', 'UnhandledExceptionFilter', 'GetStdHandle', 'HeapCreate', 'IsProcessorFeaturePresent', 'GetFileType', 'SetStdHandle', 'GetSystemTimeAsFileTime', 'HeapQueryInformation', 'HeapSize', 'HeapReAlloc', 'CreateThread', 'ExitThread', 'VirtualQuery', 'VirtualAlloc', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineA', 'RaiseException', 'ExitProcess', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'HeapAlloc', 'HeapFree', 'FindResourceExW', 'VirtualProtect', 'SearchPathA', 'GetProfileIntA', 'GetTickCount', 'InitializeCriticalSectionAndSpinCount', 'GetTempPathA', 'GetTempFileNameA', 'GetFileTime', 'GetFileSizeEx', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'GetNumberFormatA', 'GetFullPathNameA', 'GetVolumeInformationA', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'FileTimeToSystemTime', 'GetACP', 'GetOEMCP', 'InterlockedIncrement', 'TlsFree', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'GlobalHandle', 'GlobalReAlloc', 'TlsGetValue', 'LocalAlloc', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'GlobalFlags', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetLocaleInfoA', 'InterlockedExchange', 'GetModuleHandleW', 'GetCurrentProcessId', 'lstrcmpA', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'InterlockedDecrement', 'GetModuleFileNameW', 'ReleaseActCtx', 'GlobalFree', 'CopyFileA', 'GlobalSize', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'CompareStringA', 'LoadLibraryW', 'lstrcmpW', 'SetFileTime', 'GetCurrentDirectoryA', 'GetFileAttributesA', 'CreateDirectoryA', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'ReadFile', 'SetFilePointer', 'GetWindowsDirectoryA', 'FreeLibrary', 'WinExec', 'GetSystemInfo', 'DeleteFileA', 'UnmapViewOfFile', 'FindFirstFileA', 'FindClose', 'Sleep', 'CreateFileA', 'WriteFile', 'OpenProcess', 'VirtualAllocEx', 'ReadProcessMemory', 'VirtualFreeEx', 'GetModuleFileNameA', 'lstrcpyA', 'lstrcatA', 'ExpandEnvironmentStringsA', 'WritePrivateProfileStringA', 'GetVersionExA', 'IsIconic', 'InsertMenuItemA', 'BringWindowToTop', 'TranslateAcceleratorA', 'RealChildWindowFromPoint', 'ShowOwnedPopups', 'PostQuitMessage', 'CreateDialogIndirectParamA', 'EndDialog', 'IntersectRect', 'MapVirtualKeyA', 'GetKeyNameTextA', 'EndPaint', 'BeginPaint', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'IsWindowEnabled', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckDlgButton', 'GetCursorPos', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'GetLastActivePopup', 'SetActiveWindow', 'DispatchMessageA', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetDlgItem', 'GetTopWindow', 'DestroyWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'PeekMessageA', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'GetKeyState', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'IsWindowVisible', 'UpdateWindow', 'MessageBoxA', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'LoadAcceleratorsA', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowPos', 'GetWindow', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'GetFocus', 'CheckMenuItem', 'SetRectEmpty', 'GetMenuStringA', 'DestroyMenu', 'wsprintfA', 'SetWindowLongA', 'LoadCursorA', 'CopyIcon', 'MessageBeep', 'IsWindow', 'GetMessagePos', 'KillTimer', 'SetTimer', 'ScreenToClient', 'PtInRect', 'EnableMenuItem', 'GetWindowThreadProcessId', 'LoadIconW', 'ReleaseCapture', 'LoadMenuA', 'FindWindowA', 'FindWindowExA', 'SetRect', 'CopyRect', 'LoadBitmapW', 'FillRect', 'DrawEdge', 'DestroyCursor', 'SetCursor', 'GetWindowLongA', 'WindowFromPoint', 'GetParent', 'GetNextDlgTabItem', 'GetActiveWindow', 'ClientToScreen', 'SendMessageA', 'DrawFocusRect', 'FrameRect', 'OffsetRect', 'InflateRect', 'GetIconInfo', 'CreateIconIndirect', 'DrawStateA', 'ReuseDDElParam', 'UnpackDDElParam', 'IsRectEmpty', 'GetSystemMenu', 'SetParent', 'EnumDisplayMonitors', 'SetLayeredWindowAttributes', 'LoadCursorW', 'CharUpperA', 'UnionRect', 'RedrawWindow', 'GetMenuDefaultItem', 'IsMenu', 'LoadImageA', 'InvalidateRect', 'GetClientRect', 'GetWindowRect', 'PostMessageA', 'GetWindowDC', 'SetWindowRgn', 'GetMenuItemInfoA', 'GetSystemMetrics', 'SystemParametersInfoA', 'SetCapture', 'SetClassLongA', 'GetAsyncKeyState', 'InvertRect', 'HideCaret', 'EnableScrollBar', 'NotifyWinEvent', 'CopyImage', 'CreateMenu', 'CreatePopupMenu', 'DeleteMenu', 'AppendMenuA', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuState', 'GetSubMenu', 'InsertMenuA', 'ModifyMenuA', 'RemoveMenu', 'GetDC', 'ReleaseDC', 'GetDesktopWindow', 'EnableWindow', 'GetSysColor', 'GetSysColorBrush', 'TabbedTextOutA', 'DrawTextA', 'DrawTextExA', 'GrayStringA', 'GetNextDlgGroupItem', 'LockWindowUpdate', 'IsZoomed', 'DestroyIcon', 'DrawIconEx', 'DestroyAcceleratorTable', 'GetWindowRgn', 'DrawIcon', 'MapDialogRect', 'SubtractRect', 'GetDoubleClickTime', 'CharUpperBuffA', 'RegisterClipboardFormatA', 'GetUpdateRect', 'IsClipboardFormatAvailable', 'SetMenuDefaultItem', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'WaitMessage', 'PostThreadMessageA', 'MonitorFromPoint', 'UpdateLayeredWindow', 'MapVirtualKeyExA', 'IsCharLowerA', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToAsciiEx', 'CopyAcceleratorTableA', 'DrawFrameControl', 'LoadMenuW', 'SetWindowPlacement', 'DeleteDC', 'DeleteObject', 'SelectObject', 'CreateDIBSection', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextExtentPoint32W', 'GetDIBits', 'GetBkColor', 'StretchBlt', 'CombineRgn', 'CreateRectRgn', 'GetStockObject', 'SetTextColor', 'SetBkColor', 'CreateBitmap', 'RoundRect', 'GetCharWidthA', 'CreateFontA', 'StretchDIBits', 'CopyMetaFileA', 'CreateDCA', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetMapMode', 'GetClipBox', 'ExcludeClipRect', 'IntersectClipRect', 'LineTo', 'MoveToEx', 'SetTextAlign', 'GetLayout', 'SetLayout', 'SelectClipRgn', 'GetViewportExtEx', 'GetWindowExtEx', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'OffsetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetTextExtentPoint32A', 'ExtSelectClipRgn', 'CreatePatternBrush', 'SelectPalette', 'GetObjectType', 'CreateRectRgnIndirect', 'SetRectRgn', 'DPtoLP', 'GetTextMetricsA', 'CreateDIBitmap', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'CreateRoundRectRgn', 'CreatePolygonRgn', 'GetTextColor', 'CreateEllipticRgn', 'Polyline', 'Polygon', 'SetDIBColorTable', 'OffsetRgn', 'GetRgnBox', 'EnumFontFamiliesExA', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'SetPixelV', 'GetTextFaceA', 'SetPixel', 'GetPixel', 'BitBlt', 'PatBlt', 'Rectangle', 'Ellipse', 'GetBkMode', 'GetDeviceCaps', 'CreateCompatibleDC', 'GetObjectA', 'CreateCompatibleBitmap', 'CreateFontIndirectA', 'CreateHatchBrush', 'CreatePen', 'CreateSolidBrush', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'OpenPrinterA', 'ClosePrinter', 'DocumentPropertiesA', 'CryptImportKey', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegEnumValueA', 'RegEnumKeyExA', 'CryptReleaseContext', 'CryptGenRandom', 'CryptAcquireContextA', 'CryptCreateHash', 'CryptHashData', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptDestroyKey', 'CryptEncrypt', 'ShellExecuteExA', 'ShellExecuteA', 'DragFinish', 'DragQueryFileA', 'SHAppBarMessage', 'SHBrowseForFolderA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'SHGetDesktopFolder', 'SHGetFileInfoA', '_TrackMouseEvent', 'ImageList_GetIconSize', 'PathFindFileNameA', 'PathStripToRootA', 'PathRemoveFileSpecW', 'PathIsUNCA', 'PathStripPathA', 'PathFindExtensionA', 'OleGetClipboard', 'RegisterDragDrop', 'CoLockObjectExternal', 'RevokeDragDrop', 'CreateStreamOnHGlobal', 'DoDragDrop', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'CoInitializeEx', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'CoCreateGuid', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'SysStringLen', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'VarBstrFromDate', 'SysAllocString', 'SysFreeString', 'VariantChangeType', 'VariantInit', 'VariantClear', 'SysAllocStringLen', 'PlaySoundA', 'getsockname', 'setsockopt', 'ntohl', 'recv', 'ntohs', 'WSAGetLastError', '__WSAFDIsSet', 'WSASetLastError', 'WSAStartup', 'WSACleanup', 'bind', 'htons', 'getsockopt', 'getpeername', 'closesocket', 'socket', 'connect', 'freeaddrinfo', 'getaddrinfo', 'sendto', 'recvfrom', 'accept', 'listen', 'ioctlsocket', 'gethostname', 'select', 'htonl', 'send', 'WSAIoctl', 'CertFreeCertificateContext', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'LresultFromObject', 'GdipFree', 'GdipDrawImageI', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'ImmReleaseContext', 'ImmGetContext', 'ImmGetOpenStatus'], ['GetVersionExW', 'GetVersionExA', 'GetVersion', 'MessageBoxA', 'GetSidIdentifierAuthority', 'SHGetPathFromIDListA', 'CoCreateGuid', 'SHSetValueA', 'URLDownloadToFileA', 'closesocket', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['SendMessageA', 'EnableWindow', 'UpdateWindow', 'GetStartupInfoA', 'GetModuleHandleA', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '__p__acmdln', 'exit', '_XcptFilter', '_exit', '_onexit', '__dllonexit', '??2@YAPAXI@Z', '??3@YAXPAX@Z', '__CxxFrameHandler', '_setmbcp'], ['GetSystemTime', 'GetLocalTime', 'HeapReAlloc', 'HeapSize', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'GetVersionExA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetUnhandledExceptionFilter', 'GetTimeZoneInformation', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'GetStringTypeA', 'GetStringTypeW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'CompareStringA', 'CompareStringW', 'SetEnvironmentVariableA', 'HeapFree', 'HeapAlloc', 'RaiseException', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'ExitProcess', 'RtlUnwind', 'SetErrorMode', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetFileSize', 'GetStringTypeExA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'DeleteFileA', 'MoveFileA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'ReadFile', 'GetCurrentProcess', 'DuplicateHandle', 'GetCurrentDirectoryA', 'GetThreadLocale', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'EnterCriticalSection', 'GlobalReAlloc', 'LeaveCriticalSection', 'TlsFree', 'GlobalHandle', 'DeleteCriticalSection', 'TlsAlloc', 'InitializeCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetLastError', 'GetDiskFreeSpaceA', 'GetFileTime', 'SetFileTime', 'GetFullPathNameA', 'GetTempFileNameA', 'GetFileAttributesA', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'GetPrivateProfileIntA', 'GetCurrentThread', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GlobalAlloc', 'MulDiv', 'SetLastError', 'lstrcpynA', 'FormatMessageA', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'lstrlenA', 'InterlockedIncrement', 'GetVersion', 'lstrcatA', 'GetCurrentThreadId', 'GlobalGetAtomNameA', 'lstrcmpiA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcpyA', 'GetModuleHandleA', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LockResource', 'FindResourceA', 'LoadResource', 'InterlockedDecrement', 'GetModuleFileNameA', 'lstrcmpA', 'SetFileAttributesA', 'LoadLibraryA', 'GetProcAddress', 'FreeLibrary', 'CreateFileA', 'WriteFile', 'CloseHandle', 'LCMapStringA', 'GetTickCount', 'DeleteMenu', 'CharUpperA', 'RegisterClipboardFormatA', 'GetDCEx', 'LockWindowUpdate', 'SetCapture', 'PostThreadMessageA', 'SetParent', 'GetNextDlgGroupItem', 'SetRect', 'CopyAcceleratorTableA', 'CharNextA', 'LoadStringA', 'GetSysColorBrush', 'LoadCursorA', 'PtInRect', 'GetClassNameA', 'ShowOwnedPopups', 'PostQuitMessage', 'IsZoomed', 'InflateRect', 'MapDialogRect', 'SetWindowContextHelpId', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'ClientToScreen', 'GetMessageA', 'TranslateMessage', 'ValidateRect', 'GetCursorPos', 'BringWindowToTop', 'InvalidateRect', 'UnpackDDElParam', 'ReuseDDElParam', 'SetMenu', 'DestroyMenu', 'GetDesktopWindow', 'SetCursor', 'TranslateAcceleratorA', 'LoadAcceleratorsA', 'SetRectEmpty', 'GetMenuCheckMarkDimensions', 'LoadBitmapA', 'ModifyMenuA', 'SetMenuItemBitmaps', 'CheckMenuItem', 'EnableMenuItem', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'LoadIconA', 'PostMessageA', 'UpdateWindow', 'SendDlgItemMessageA', 'MapWindowPoints', 'SetTimer', 'PeekMessageA', 'DispatchMessageA', 'GetFocus', 'SetFocus', 'AdjustWindowRectEx', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'BeginDeferWindowPos', 'CopyRect', 'EndDeferWindowPos', 'IsWindowVisible', 'SendMessageA', 'EnableWindow', 'UnregisterClassA', 'wsprintfA', 'GetClientRect', 'GetSubMenu', 'ReleaseCapture', 'LoadMenuA', 'GetTopWindow', 'MessageBoxA', 'IsChild', 'GetCapture', 'WinHelpA', 'GetClassInfoA', 'RegisterClassA', 'GetMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetMenuStringA', 'InsertMenuA', 'WindowFromPoint', 'GetMenuState', 'KillTimer', 'TrackPopupMenu', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetDlgCtrlID', 'GetKeyState', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'IsWindowEnabled', 'GetDlgItem', 'GetWindowLongA', 'GetParent', 'DestroyWindow', 'CreateDialogIndirectParamA', 'GetSystemMetrics', 'IsWindow', 'SetActiveWindow', 'GetActiveWindow', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowRect', 'GetWindowPlacement', 'IsIconic', 'SystemParametersInfoA', 'IntersectRect', 'OffsetRect', 'RegisterWindowMessageA', 'SetWindowPos', 'SetWindowLongA', 'GetWindow', 'SetForegroundWindow', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessagePos', 'GetMessageTime', 'DefWindowProcA', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetSysColor', 'MessageBeep', 'Escape', 'GetMapMode', 'PatBlt', 'SetRectRgn', 'CombineRgn', 'CreateRectRgnIndirect', 'CreateFontIndirectA', 'DPtoLP', 'ExtTextOutA', 'GetTextMetricsA', 'GetTextColor', 'GetBkColor', 'LPtoDP', 'TextOutA', 'RectVisible', 'PtVisible', 'CreatePatternBrush', 'GetWindowExtEx', 'GetViewportExtEx', 'GetDeviceCaps', 'CreateRectRgn', 'DeleteObject', 'GetTextExtentPoint32A', 'IntersectClipRect', 'ExcludeClipRect', 'SelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'GetStockObject', 'SelectObject', 'RestoreDC', 'SaveDC', 'DeleteDC', 'CreateBitmap', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'GetFileTitleA', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'SetFileSecurityA', 'GetFileSecurityA', 'RegCloseKey', 'DragQueryFileA', 'DragFinish', 'ImageList_Destroy', 'CoFreeUnusedLibraries', 'OleUninitialize', 'OleInitialize', 'CoRegisterMessageFilter', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CLSIDFromString', 'CLSIDFromProgID', 'CoRevokeClassObject', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'VariantInit', 'VariantCopy', 'SysFreeString', 'SysAllocString', 'VariantChangeType', 'SysAllocStringLen', 'SysAllocStringByteLen', 'VariantTimeToSystemTime', 'SysStringLen', 'GetErrorInfo', 'VariantClear'], ['GetTickCount', 'EndUpdateResourceA', 'UpdateResourceA', 'SizeofResource', 'BeginUpdateResourceA', 'LockResource', 'LoadResource', 'FindResourceA', 'WriteFile', 'GetStdHandle', 'AllocConsole', 'FreeConsole', 'GetProcessWorkingSetSize', 'lstrlenA', 'MulDiv', 'ExitProcess', 'GetModuleFileNameA', 'GetVersion', 'ReadFile', 'CreateProcessA', 'WaitCommEvent', 'SetCommMask', 'ClearCommError', 'SetCommTimeouts', 'CommConfigDialogA', 'lstrcmpiA', 'LocalAlloc', 'LocalFree', 'SetFilePointer', 'CreateFileA', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'CompareStringW', 'GetProcessHeap', 'SetEndOfFile', 'WriteConsoleW', 'CreateFileW', 'GetStringTypeW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LoadLibraryW', 'HeapSize', 'GetModuleHandleA', 'GetConsoleMode', 'GetConsoleCP', 'SetHandleCount', 'LCMapStringW', 'GetModuleFileNameW', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'InterlockedDecrement', 'GetCPInfo', 'IsProcessorFeaturePresent', 'HeapCreate', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetStartupInfoW', 'HeapSetInformation', 'GetCommandLineA', 'GetLocalTime', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'SetStdHandle', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'CreateThread', 'ExitThread', 'DecodePointer', 'EncodePointer', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'HeapFree', 'GetCurrentProcessId', 'OpenProcess', 'SetThreadPriority', 'GetSystemDirectoryA', 'WaitForMultipleObjects', 'GetCurrentThreadId', 'GetCurrentThread', 'DuplicateHandle', 'GetThreadPriority', 'SetThreadAffinityMask', 'ResumeThread', 'GetThreadContext', 'SetThreadContext', 'GetVersionExA', 'FlushFileBuffers', 'SetLastError', 'ResetEvent', 'InterlockedIncrement', 'GetCurrentProcess', 'GetProcessAffinityMask', 'RaiseException', 'Sleep', 'InterlockedExchange', 'InterlockedExchangeAdd', 'CreateEventA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedCompareExchange', 'SetEvent', 'GlobalAlloc', 'GlobalLock', 'GlobalFree', 'GlobalUnlock', 'SetThreadExecutionState', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'LeaveCriticalSection', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'TlsSetValue', 'TlsGetValue', 'TlsFree', 'TlsAlloc', 'GetModuleHandleW', 'VerSetConditionMask', 'FormatMessageW', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetLastError', 'FreeLibrary', 'LoadLibraryA', 'GetProcAddress', 'SetEnvironmentVariableA', 'SendMessageA', 'GetClipboardData', 'OpenClipboard', 'EmptyClipboard', 'GetDC', 'ToUnicode', 'MapVirtualKeyW', 'SystemParametersInfoW', 'DispatchMessageW', 'TranslateMessage', 'PeekMessageW', 'RegisterDeviceNotificationW', 'ShowWindow', 'SetClipboardData', 'CloseClipboard', 'SetCursorPos', 'ScreenToClient', 'GetDlgItem', 'MessageBoxA', 'DispatchMessageA', 'GetMessageA', 'SetClassLongA', 'LoadCursorA', 'CreateWindowExW', 'DestroyWindow', 'UnregisterDeviceNotification', 'GetRawInputDeviceInfoA', 'GetRawInputDeviceList', 'GetCursorPos', 'FindWindowA', 'AttachThreadInput', 'SendDlgItemMessageA', 'GetDialogBaseUnits', 'EndDialog', 'OffsetRect', 'EndPaint', 'BeginPaint', 'DefWindowProcA', 'LoadBitmapA', 'GetDlgCtrlID', 'DestroyMenu', 'GetDlgItemTextA', 'TrackPopupMenu', 'MapWindowPoints', 'AppendMenuA', 'LoadStringA', 'CreatePopupMenu', 'InvalidateRect', 'BeginDeferWindowPos', 'WindowFromPoint', 'PtInRect', 'IsZoomed', 'IsWindowVisible', 'IsIconic', 'GetActiveWindow', 'BringWindowToTop', 'SetForegroundWindow', 'EnumDisplayDevicesW', 'EnumDisplayMonitors', 'EnumDisplaySettingsW', 'GetMonitorInfoW', 'ChangeDisplaySettingsExW', 'ReleaseDC', 'EnumDisplaySettingsExW', 'RegisterClassExW', 'LoadImageW', 'LoadCursorW', 'SetWindowPos', 'MonitorFromWindow', 'GetRawInputData', 'DrawMenuBar', 'EnableMenuItem', 'FillRect', 'GetWindow', 'GetSysColorBrush', 'RegisterClassA', 'CreateWindowExA', 'CheckDlgButton', 'GetWindowTextLengthW', 'GetWindowTextW', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowTextA', 'EnableWindow', 'EnumDesktopsA', 'EnumChildWindows', 'LoadImageA', 'KillTimer', 'wsprintfA', 'SetWindowTextA', 'PostQuitMessage', 'SetWindowLongA', 'IsDlgButtonChecked', 'SetDlgItemTextA', 'TrackMouseEvent', 'ReleaseCapture', 'GetWindowLongA', 'SetTimer', 'SetFocus', 'SetRect', 'GetWindowRect', 'SetWindowTextW', 'RemovePropW', 'DestroyIcon', 'SetPropW', 'GetWindowPlacement', 'SetWindowPlacement', 'UnregisterClassW', 'GetKeyState', 'GetWindowLongW', 'SetWindowLongW', 'SetLayeredWindowAttributes', 'RedrawWindow', 'RegisterRawInputDevices', 'GetClientRect', 'ClientToScreen', 'ClipCursor', 'SetCursor', 'AdjustWindowRectEx', 'GetPropW', 'DefWindowProcW', 'GetMessageTime', 'SetCapture', 'MapDialogRect', 'CreateHatchBrush', 'GetObjectA', 'EndDoc', 'StartDocA', 'CreateSolidBrush', 'BitBlt', 'CreateCompatibleDC', 'GetPixel', 'SelectClipRgn', 'CreateFontIndirectA', 'GetStockObject', 'TextOutA', 'SetBrushOrgEx', 'SelectObject', 'PatBlt', 'CreateBitmap', 'CreateRectRgn', 'DeleteObject', 'SetDeviceGammaRamp', 'CreateDCW', 'GetDeviceCaps', 'DeleteDC', 'SwapBuffers', 'CreatePatternBrush', 'ExcludeClipRect', 'DescribePixelFormat', 'CreateDCA', 'SetPixelFormat', 'ChoosePixelFormat', 'ClosePrinter', 'EndPagePrinter', 'WritePrinter', 'StartPagePrinter', 'StartDocPrinterA', 'OpenPrinterA', 'EnumPrintersA', 'EndDocPrinter', 'GetSaveFileNameA', 'GetOpenFileNameA', 'RegOpenKeyExA', 'RegCloseKey', 'DragQueryFileA', 'DragAcceptFiles', 'DragQueryFileW', 'DragQueryPoint', 'DragFinish', 'CreateStreamOnHGlobal', 'ReleaseStgMedium', 'CoGetInterfaceAndReleaseStream', 'CoMarshalInterThreadInterfaceInStream', 'ImmSetCompositionWindow', 'ImmGetContext', 'glClearColor', 'wglGetProcAddress', 'glGetIntegerv', 'glGetString', 'glDrawElements', 'glScissor', 'glBindTexture', 'glViewport', 'glPolygonMode', 'glDisable', 'glBlendFunc', 'glEnable', 'glIsEnabled', 'glTexImage2D', 'glPixelStorei', 'glTexParameteri', 'glGenTextures', 'glDeleteTextures', 'wglGetCurrentDC', 'glClear', 'ImageList_DrawEx', 'ImageList_Destroy', 'ImageList_AddMasked', 'ImageList_Add', 'ImageList_Create', 'GdipCreatePath', 'GdipCreatePen1', 'GdipDeletePen', 'GdipDeletePath', 'GdipCreateFromHDC', 'GdipCloneImage', 'GdipDisposeImage', 'GdipFree', 'GdipDeleteGraphics', 'GdipLoadImageFromStream', 'GdipLoadImageFromStreamICM', 'GdipAlloc', 'StrToIntA', 'StrCmpNIA', 'StrChrA', 'SetupDiDestroyDriverInfoList', 'SetupFindFirstLineA', 'SetupDiSetDeviceRegistryPropertyA', 'SetupDiGetDeviceRegistryPropertyA', 'SetupTermDefaultQueueCallback', 'SetupCommitFileQueueA', 'SetupInstallFilesFromInfSectionA', 'SetupCloseFileQueue', 'SetupInitDefaultQueueCallbackEx', 'SetupOpenFileQueue', 'SetupSetDirectoryIdA', 'SetupCloseInfFile', 'SetupOpenInfFileA', 'SetupDiDestroyDeviceInfoList', 'SetupDiOpenDevRegKey', 'SetupDiEnumDeviceInfo', 'SetupDiGetClassDevsA', 'acmDriverDetailsA', 'PdhBrowseCountersA', 'MCIWndCreateA', 'CryptUIDlgViewContext', 'CryptUIWizFreeDigitalSignContext', 'DnsQuery_W', 'DCICreateOverlay', 'DCIBeginAccess'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryVar', '__vbaAryDestruct', '__vbaBoolStr', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '__vbaFPFix', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaObjVar', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaDateVar', '_CIlog', '__vbaNew2', '__vbaR8Str', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '__vbaDerefAry1', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaLateMemCall', '__vbaVarAdd', '__vbaVarDup', '__vbaFpI4', '__vbaVarLateMemCallLd', '_CIatan', '__vbaAryCopy', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegOpenKeyA', '_TrackMouseEvent', 'GetFileTitleA', 'BitBlt', 'OleInitialize', 'SysAllocStringLen', 'DragFinish', 'PathIsUNCA', 'GetDC', 'OpenPrinterA'], ['_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaStrVarMove', '__vbaFreeVarList', '__vbaVarIdiv', '_adj_fdiv_m64', '_adj_fprem1', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenBstrB', '_adj_fdiv_m32', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '__vbaObjSetAddref', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '__vbaGenerateBoundsError', '__vbaVarTstEq', 'DllFunctionCall', '__vbaLbound', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaVarMul', '__vbaUI1I4', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaNew2', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '_CIexp', '__vbaFreeObj', '__vbaFreeStr'], ['GetFileAttributesA', 'GetFileSizeEx', 'GetFileTime', 'GetTickCount', 'RtlUnwind', 'GetCommandLineA', 'Sleep', 'ExitThread', 'CreateThread', 'RaiseException', 'GetSystemInfo', 'HeapReAlloc', 'HeapSize', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'HeapDestroy', 'GetStdHandle', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionAndSpinCount', 'GetACP', 'IsValidCodePage', 'GetStringTypeA', 'GetStringTypeW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'WriteConsoleW', 'CompareStringW', 'SetEnvironmentVariableA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'GetModuleHandleW', 'GetOEMCP', 'GetCPInfo', 'CreateFileA', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'GetThreadLocale', 'InterlockedIncrement', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'TlsAlloc', 'InitializeCriticalSection', 'GlobalHandle', 'GlobalReAlloc', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'InterlockedDecrement', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'MultiByteToWideChar', 'lstrcmpW', 'GetVersionExA', 'lstrlenA', 'WritePrivateProfileStringA', 'GlobalUnlock', 'GlobalFree', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'CreateEventA', 'SuspendThread', 'SetEvent', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'ConvertDefaultLocale', 'EnumResourceLanguagesA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'CompareStringA', 'InterlockedExchange', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleA', 'WideCharToMultiByte', 'LockResource', 'FindResourceA', 'GetLastError', 'LoadLibraryW', 'ExitProcess', 'LoadResource', 'SizeofResource', 'HeapFree', 'GetNativeSystemInfo', 'GetProcessHeap', 'HeapAlloc', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryA', 'IsBadReadPtr', 'VirtualProtect', 'SetLastError', 'VirtualAlloc', 'VirtualFree', 'GetEnvironmentStrings', 'VirtualQuery', 'RegisterClipboardFormatA', 'PostThreadMessageA', 'CharNextA', 'CharUpperA', 'GetSysColorBrush', 'ReleaseCapture', 'LoadCursorA', 'SetCapture', 'DestroyMenu', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'RegisterWindowMessageA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetForegroundWindow', 'GetTopWindow', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MapWindowPoints', 'SetMenu', 'SetForegroundWindow', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'GetSysColor', 'AdjustWindowRectEx', 'EqualRect', 'PtInRect', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'OffsetRect', 'IntersectRect', 'SystemParametersInfoA', 'GetWindowPlacement', 'GetWindowRect', 'ShowWindow', 'SetWindowLongA', 'GetWindowLongA', 'ReleaseDC', 'GetDC', 'CopyRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'MessageBeep', 'IsWindow', 'GetDlgItem', 'GetNextDlgGroupItem', 'InvalidateRgn', 'InvalidateRect', 'SetRect', 'IsRectEmpty', 'GetWindowTextA', 'CopyAcceleratorTableA', 'GetSystemMetrics', 'DrawIcon', 'AppendMenuA', 'SendMessageA', 'GetSystemMenu', 'IsIconic', 'GetClientRect', 'EnableWindow', 'LoadIconA', 'PostQuitMessage', 'PostMessageA', 'CheckMenuItem', 'EnableMenuItem', 'GetMenuState', 'ModifyMenuA', 'GetParent', 'GetFocus', 'LoadBitmapA', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'ValidateRect', 'GetCursorPos', 'PeekMessageA', 'GetKeyState', 'IsWindowVisible', 'GetActiveWindow', 'DispatchMessageA', 'TranslateMessage', 'GetMessageA', 'CallNextHookEx', 'SetWindowsHookExA', 'SetCursor', 'MessageBoxA', 'IsWindowEnabled', 'GetLastActivePopup', 'GetWindowThreadProcessId', 'EndDialog', 'GetNextDlgTabItem', 'GetStockObject', 'GetDeviceCaps', 'DeleteDC', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'GetMapMode', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'CreateBitmap', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetWindowExtEx', 'GetViewportExtEx', 'DeleteObject', 'SetMapMode', 'RestoreDC', 'SaveDC', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'GetClipBox', 'CreateRectRgnIndirect', 'Escape', 'GetFileTitleA', 'DocumentPropertiesA', 'OpenPrinterA', 'ClosePrinter', 'RegQueryValueA', 'RegSetValueExA', 'RegCreateKeyExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyA', 'RegDeleteKeyA', 'RegOpenKeyExA', 'RegQueryValueExA', 'InitCommonControlsEx', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'recv', 'connect', 'WSACleanup', 'socket', 'WSAStartup', 'htons', 'ioctlsocket', 'closesocket', 'send', 'CreateILockBytesOnHGlobal', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoTaskMemAlloc', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'CoRevokeClassObject', 'OleUninitialize', 'CoFreeUnusedLibraries', 'CoRegisterMessageFilter', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'OleInitialize', 'SysAllocStringLen', 'VariantClear', 'VariantChangeType', 'VariantInit', 'SysStringLen', 'SysAllocStringByteLen', 'OleCreateFontIndirect', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SafeArrayDestroy', 'SysAllocString', 'VariantCopy', 'SysFreeString'], ['ExpandEnvironmentStringsW', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetLastError', 'GetLocalTime', 'GetLocaleInfoW', 'GetLongPathNameW', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetNativeSystemInfo', 'GetOEMCP', 'GetProcAddress', 'GetProcessHandleCount', 'HeapSetInformation', 'HeapSize', 'InitOnceExecuteOnce', 'InitializeCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'IsValidLocale', 'IsWow64Process', 'K32GetPerformanceInfo', 'K32GetProcessMemoryInfo', 'K32QueryWorkingSetEx', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryExA', 'LoadLibraryExW', 'LoadLibraryW', 'LocalFree', 'CreateSemaphoreW', 'MapViewOfFile', 'MoveFileW', 'MultiByteToWideChar', 'OpenProcess', 'RtlCaptureContext', 'RtlCaptureStackBackTrace', 'RtlUnwind', 'SearchPathW', 'K32EnumProcessModules', 'CreateMutexA', 'GlobalHandle', 'AreFileApisANSI', 'CreateSemaphoreExW', 'ReplacePartitionUnit', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapQueryInformation', 'HeapReAlloc', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'GetEnvironmentStringsW', 'GetCommandLineW', 'GetCommandLineA', 'GetCPInfo', 'FindNextFileA', 'FindFirstFileExA', 'SetConsoleCtrlHandler', 'CreateRemoteThread', 'CreateProcessW', 'WriteConsoleW', 'OutputDebugStringW', 'CreateNamedPipeW', 'CreateMutexW', 'CreateJobObjectW', 'CreateIoCompletionPort', 'CreateFileW', 'CreateFileMappingW', 'OutputDebugStringA', 'GetStringTypeW', 'DecodePointer', 'GetCurrentThread', 'CreateEventW', 'CreateDirectoryW', 'ConnectNamedPipe', 'CompareStringW', 'CloseHandle', 'AssignProcessToJobObject', 'GetFileType', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'GetTimeFormatW', 'AcquireSRWLockExclusive', 'VirtualAllocEx', 'GetCurrentProcess', 'GetDateFormatW', 'GetSystemInfo', 'HeapValidate', 'LockFileEx', 'Sleep', 'GetACP', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'ExitProcess', 'EncodePointer', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'DeleteCriticalSection', 'EnterCriticalSection', 'SetLastError', 'InterlockedFlushSList', 'InterlockedPushEntrySList', 'VirtualQuery', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'GetStartupInfoW', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RaiseException', 'WideCharToMultiByte', 'UnregisterClassW', 'IsWindow', 'EndDeferWindowPos', 'GetProcessWindowStation', 'PostMessageW', 'TranslateMessage', 'SetProcessWindowStation', 'SetProcessDPIAware', 'GetWindowThreadProcessId', 'SendMessageTimeoutW', 'RegisterClassW', 'GetThreadDesktop', 'GetUserObjectInformationW', 'GetBitmapBits', 'PlayGdiScriptOnPrinterIC', 'IsValidSid', 'LookupPrivilegeValueW', 'SystemFunction007', 'RegConnectRegistryExA', 'InitializeSid', 'CoTaskMemFree', 'VarI1FromDisp', 'CertFreeServerOcspResponseContext', 'DhcpEnumServers', 'Socket_CloseEx', 'IsSheetAlreadyUp', 'JetPrereadKeys', 'JetOpenFileInstanceW', 'GdipAddPathCurve3I', 'GdipGetImageHeight', 'GetIScsiSessionListEx', 'MCIWndRegisterClass', 'NetUserGetInfo', 'I_RpcTransGetThreadEventThreadOptional', 'RtmAddRouteToDest', 'SetupSetDirectoryIdA', 'SetupGetBinaryField', 'SHGetInverseCMAP', 'PathIsNetworkPathA', 'PathMatchSpecW', 'CreateEnvironmentBlock', 'DestroyEnvironmentBlock', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoW', 'VerQueryValueW', 'InternetGetPerSiteCookieDecisionW', 'timeGetTime'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutRestart', 'waveOutPrepareHeader', 'WSACleanup', 'inet_ntoa', 'closesocket', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'GetVersion', 'CreateMutexA', 'ReleaseMutex', 'SuspendThread', 'GetACP', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'GetTimeZoneInformation', 'SetLastError', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'TerminateThread', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'RemoveDirectoryA', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'InterlockedExchange', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetClassInfoA', 'IsZoomed', 'DefWindowProcA', 'GetSystemMenu', 'GetSysColorBrush', 'LoadStringA', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'DrawEdge', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'PostQuitMessage', 'MoveWindow', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'DrawFrameControl', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'GetForegroundWindow', 'CallWindowProcA', 'CreateWindowExA', 'RegisterHotKey', 'UnregisterHotKey', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'CheckMenuItem', 'IsWindowEnabled', 'GetWindow', 'UnregisterClassA', 'TranslateMessage', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SetBkColor', 'CreateFontA', 'TranslateCharsetInfo', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'ExtSelectClipRgn', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'RestoreDC', 'SaveDC', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'CreateRectRgnIndirect', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'Ellipse', 'GetSystemPaletteEntries', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'DragAcceptFiles', 'DragQueryFileA', 'ShellExecuteA', 'Shell_NotifyIconA', 'DragFinish', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_EndDrag', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'SysFreeString', 'RegQueryValueExA', 'GetKeyboardType', 'CreateWindowExA', 'GradientFill', 'UnrealizeObject', 'VerQueryValueA', 'RegSetValueExA', 'SafeArrayPtrOfIndex', 'GetErrorInfo', 'CoTaskMemFree', '_TrackMouseEvent', 'Shell_NotifyIconA', 'SHGetPathFromIDListA', 'OpenPrinterA', 'ChooseFontA', 'timeGetTime'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ChooseColorA', 'LineTo', 'GdipDeletePen', 'ImmGetContext', 'OleInitialize', 'UnRegisterTypeLib', 'ShellExecuteA', 'PathFileExistsA', 'GetDC', 'PlaySoundA', 'OpenPrinterA', 'ioctlsocket'], ['PathRemoveArgsA', 'StrCmpNIA', 'PathMatchSpecW', 'IsCharSpaceA', 'PathMakeSystemFolderA', 'PathIsRelativeA', 'PathIsSameRootA', 'PathParseIconLocationW', 'PathIsUNCServerA', 'ChrCmpIW', 'PathAddExtensionW', 'PathCombineW', 'PathQuoteSpacesA', 'PathIsRootW', 'PathRenameExtensionA', 'PathIsPrefixA', 'PathRelativePathToW', 'ChrCmpIA', 'GetPrivateProfileIntW', 'LocalFree', 'WinExec', 'DeleteCriticalSection', 'GetUserDefaultUILanguage', 'FindNextFileA', 'GetOEMCP', 'SetCurrentDirectoryW', 'LocalAlloc', 'CreateFileMappingA', 'GetCompressedFileSizeA', 'GetEnvironmentVariableA', 'GetConsoleAliasExesLengthW', 'SizeofResource', 'GetDriveTypeA', 'WriteFile', 'VirtualQueryEx', 'IsBadReadPtr', 'GetCurrentThread', 'GetTickCount', 'LocalUnlock', 'GetEnvironmentVariableW', 'GetSystemDefaultUILanguage', 'FreeLibrary', 'GlobalAddAtomA', 'HeapFree', 'GetLogicalDrives', 'GetSystemDefaultLCID', 'GetModuleHandleW', 'CallWindowProcW', 'GetProcessDefaultLayout', 'UpdateWindow', 'GetClipboardOwner', 'AppendMenuA', 'GetCaretPos', 'GetSysColor', 'DestroyCursor', 'GetClipboardData', 'GetScrollInfo', 'FlashWindowEx', 'GetAsyncKeyState', 'SetLastErrorEx', 'InflateRect', 'GetCapture', 'EnumClipboardFormats', 'ShowCaret', 'CopyAcceleratorTableA', 'IsWindowEnabled', 'DdeQueryNextServer', 'LoadBitmapA', 'DeleteMenu', 'HideCaret', 'GetWindowTextLengthW', 'SwapMouseButton', 'VkKeyScanA', 'AllowSetForegroundWindow'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess'], ['HeapSize', 'TerminateProcess', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RaiseException', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetACP', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'GetStringTypeA', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'CloseHandle', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'GetCurrentThread', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'UnregisterClassA', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'RedrawWindow', 'TextOutA', 'RectVisible', 'Escape', 'GetTextMetricsA', 'PtVisible', 'ExtTextOutA', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'SetBkColor', 'CreateRectRgnIndirect', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiOutPrepareHeader', 'midiStreamOut', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegQueryValueA', 'RegOpenKeyExA', 'RegCloseKey', 'RegCreateKeyExA', 'RegSetValueExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'inet_ntoa', 'accept', 'getpeername', 'recv', 'ioctlsocket', 'recvfrom', 'WSACleanup', 'closesocket', 'WSAAsyncSelect', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['exit', '_acmdln', '__getmainargs', '_XcptFilter', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '__p__fmode', '__set_app_type', '_except_handler3', '_controlfp', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_CxxThrowException', '_exit', '__CxxFrameHandler', '_mbscmp', '_setmbcp', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'GetCurrentDirectoryA', 'GetStartupInfoA', 'GetModuleHandleA', 'AppendMenuA', 'GetSystemMenu', 'DrawIcon', 'GetClientRect', 'SendMessageA', 'GetSystemMetrics', 'LoadIconA', 'TranslateMessage', 'DispatchMessageA', 'PeekMessageA', 'GetFocus', 'IsIconic', 'EnableWindow'], ['GetTokenInformation', 'SetSecurityDescriptorGroup', 'RegQueryValueExW', 'OpenThreadToken', 'AddAccessAllowedAce', 'DuplicateTokenEx', 'SetSecurityDescriptorControl', 'GetLengthSid', 'RegDeleteValueW', 'CreateProcessAsUserW', 'RegOpenKeyExW', 'InitializeAcl', 'InitializeSecurityDescriptor', 'CheckTokenMembership', 'FreeSid', 'OpenProcessToken', 'RegSetValueExW', 'RegSetKeySecurity', 'CopySid', 'RegCreateKeyExW', 'RegFlushKey', 'AllocateAndInitializeSid', 'RegDeleteKeyW', 'SetTokenInformation', 'GetAce', 'SetSecurityDescriptorOwner', 'RegQueryInfoKeyW', 'RegEnumKeyW', 'RegCloseKey', 'RegNotifyChangeKeyValue', 'SetSecurityDescriptorDacl', 'GetTraceEnableLevel', 'AdjustTokenPrivileges', 'RegEnumValueW', 'InitiateSystemShutdownExW', 'SetSecurityInfo', 'RegUnLoadKeyW', 'QueryAllTracesW', 'GetTraceLoggerHandle', 'StopTraceW', 'UnregisterTraceGuids', 'RegisterTraceGuidsW', 'GetTraceEnableFlags', 'DeleteFileW', 'CloseHandle', 'GetNativeSystemInfo', 'LoadLibraryW', 'FindResourceExW', 'ResetEvent', 'LoadResource', 'GetOverlappedResult', 'SetFilePointerEx', 'LocalFree', 'MoveFileExW', 'ReplaceFileW', 'LockFileEx', 'DeleteCriticalSection', 'GetCurrentProcessId', 'CreateProcessW', 'GetModuleHandleW', 'FreeLibrary', 'CopyFileW', 'WideCharToMultiByte', 'SystemTimeToTzSpecificLocalTime', 'GetSystemTime', 'DosDateTimeToFileTime', 'GetSystemWindowsDirectoryW', 'MoveFileW', 'IsWow64Process', 'GetDriveTypeW', 'LoadLibraryExW', 'FlushFileBuffers', 'LockResource', 'GetCurrentThread', 'SetEvent', 'CreateFileA', 'VerifyVersionInfoW', 'IsValidLocale', 'VerSetConditionMask', 'IsValidCodePage', 'MapViewOfFile', 'CreateFileMappingW', 'CreatePipe', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'SearchPathW', 'OutputDebugStringA', 'SleepConditionVariableSRW', 'WakeAllConditionVariable', 'AcquireSRWLockExclusive', 'ReleaseSRWLockExclusive', 'GetLastError', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'GetTickCount64', 'LocalFileTimeToFileTime', 'GetTimeZoneInformation', 'Sleep', 'GetExitCodeProcess', 'MultiByteToWideChar', 'CreateEventW', 'GetLogicalDriveStringsW', 'SetFileAttributesW', 'GetSystemDirectoryW', 'OpenEventW', 'GetFileAttributesW', 'CreateFileW', 'WaitForSingleObject', 'SetFilePointer', 'FindClose', 'CreateHardLinkW', 'CreateMutexW', 'UnlockFileEx', 'SetEndOfFile', 'GetVersionExW', 'SetThreadPreferredUILanguages', 'GetLocaleInfoW', 'GetPrivateProfileIntW', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalLock', 'MulDiv', 'FindResourceW', 'SizeofResource', 'QueryDosDeviceW', 'RaiseException', 'DuplicateHandle', 'GetShortPathNameW', 'HeapSize', 'HeapReAlloc', 'IsDebuggerPresent', 'VirtualQuery', 'GetPriorityClass', 'GetThreadPriority', 'OutputDebugStringW', 'GetExitCodeThread', 'SetThreadPriority', 'SetPriorityClass', 'CreateThread', 'FormatMessageW', 'GetPrivateProfileSectionW', 'GetFileTime', 'FileTimeToSystemTime', 'CompareFileTime', 'CopyFileExW', 'SetFileInformationByHandle', 'GetFileInformationByHandle', 'DeviceIoControl', 'GetFileInformationByHandleEx', 'SetCurrentDirectoryW', 'GetCurrentDirectoryW', 'GetFinalPathNameByHandleW', 'GetLongPathNameW', 'SetLastError', 'GetTickCount', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetStartupInfoW', 'SetEnvironmentVariableW', 'WaitForMultipleObjects', 'GetModuleFileNameW', 'SetFileTime', 'TerminateProcess', 'ExpandEnvironmentStringsW', 'WriteFile', 'GetCurrentProcess', 'FindNextFileW', 'GetFullPathNameW', 'GetCommandLineW', 'EnterCriticalSection', 'CompareStringW', 'GetFileSizeEx', 'FindFirstFileW', 'ReadFile', 'CreateDirectoryW', 'GetProcessHeap', 'GetProcAddress', 'HeapAlloc', 'GetModuleHandleExW', 'HeapFree', 'GetVersionExA', 'UnmapViewOfFile', 'GetKeyState', 'GetFocus', 'IsChild', 'GetNextDlgTabItem', 'GetWindowLongW', 'RedrawWindow', 'CopyRect', 'DrawFocusRect', 'SetWindowLongW', 'SystemParametersInfoW', 'GetDC', 'GetSysColor', 'GetClientRect', 'GetParent', 'InvalidateRect', 'LoadStringW', 'PostMessageW', 'GetSystemMenu', 'GetSysColorBrush', 'ClientToScreen', 'GetSystemMetrics', 'IsWindowVisible', 'FillRect', 'AdjustWindowRectEx', 'SetCursor', 'LoadCursorW', 'TrackMouseEvent', 'EnableWindow', 'EnableMenuItem', 'DrawTextW', 'CharUpperW', 'GetWindowRect', 'MessageBoxW', 'ScreenToClient', 'SendMessageW', 'SetTimer', 'PostThreadMessageW', 'KillTimer', 'LoadImageW', 'iswspace', 'bsearch', '__CxxFrameHandler3', '__setusermatherr', '__p__fmode', '_cexit', '_exit', 'realloc', '_errno', '_wtoi', 'free', 'towlower', '_wcstoui64', 'wcstoul', 'towupper', '_vscwprintf', '_vsnprintf', '_wcsicmp', 'wcsrchr', 'exit', 'wcsncmp', '__set_app_type', '__wgetmainargs', '_amsg_exit', '__p__commode', '_XcptFilter', '_wcsnicmp', 'wcsstr', 'wcschr', '_purecall', '_vsnwprintf', 'memcpy_s', '_CxxThrowException', '__RTDynamicCast', '_ftol2', 'memcmp', 'memcpy', '_initterm', '_wcmdln', 'memmove', '_except_handler4_common', '_controlfp', '??1type_info@@UAE@XZ', '?terminate@@YAXXZ', '_onexit', '__dllonexit', '_unlock', '_lock', 'memset', 'InitCommonControlsEx', 'CoUninitialize', 'CoCreateInstance', 'CoInitializeEx', 'CommandLineToArgvW', 'NtSetInformationThread', 'NtShutdownSystem', 'RtlAllocateHeap', 'RtlNtStatusToDosError', 'NtSetInformationFile', 'RtlDosPathNameToNtPathName_U_WithStatus', 'RtlFreeHeap', 'NtWriteFile', 'RtlInitUnicodeString', 'NtReadFile', 'RtlReAllocateHeap', 'NtClose', 'RtlExpandEnvironmentStrings', 'NtQueryInformationFile', 'NtWaitForSingleObject', 'NtOpenFile', 'NtDuplicateToken', 'RtlGetVersion', 'RtlRaiseStatus', 'NtYieldExecution', 'RtlAdjustPrivilege', 'NtSetInformationProcess', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'WTSQueryUserToken', 'WdsSetupLogMessageW', 'ConstructPartialMsgVW', 'WdsGenericSetupLogInit', 'CurrentIP', 'WdsSetupLogDestroy', 'I_RpcMapWin32Status', 'UuidToStringW', 'RpcStringFreeW', 'UuidFromStringW', 'CreateICW', 'CreateSolidBrush', 'DeleteObject', 'DeleteDC', 'StretchBlt', 'CreateCompatibleDC', 'BitBlt', 'SetBrushOrgEx', 'SetBkMode', 'GetStockObject', 'GetObjectW', 'GetDeviceCaps', 'CreateFontIndirectW', 'CreateDIBSection', 'TranslateCharsetInfo', 'CreateDCW', 'EnumFontFamiliesExW', 'SetTextColor', 'VariantInit', 'VariantClear', 'SysFreeString', 'SysAllocString', 'GetFileVersionInfoExW', 'GetFileVersionInfoSizeExW', 'VerQueryValueW', 'WIMUnmountImage', 'WIMInitFileIOCallbacks', 'WIMSetFileIOCallbackTemporaryPath', 'BCryptDestroyHash', 'BCryptCloseAlgorithmProvider', 'BCryptFinishHash', 'BCryptOpenAlgorithmProvider', 'BCryptHashData', 'BCryptCreateHash', 'IsAppThemed'], ['FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'SuspendThread', 'TerminateThread', 'ReleaseMutex', 'CreateMutexA', 'GetCurrentProcess', 'GetFileSize', 'CreateSemaphoreA', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'GetStringTypeW', 'GetStringTypeA', 'SetUnhandledExceptionFilter', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'TerminateProcess', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RaiseException', 'HeapSize', 'RtlUnwind', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'GetFileAttributesA', 'DeleteFileA', 'CopyFileA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'FileTimeToLocalFileTime', 'SetLastError', 'lstrcpynA', 'DuplicateHandle', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'InterlockedIncrement', 'SetWindowsHookExA', 'WaitForInputIdle', 'wsprintfA', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'IsWindow', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'DestroyMenu', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'GetCapture', 'ReleaseCapture', 'SetTimer', 'KillTimer', 'WinHelpA', 'LoadBitmapA', 'UnregisterHotKey', 'RegisterHotKey', 'CreateWindowExA', 'CallWindowProcA', 'GetForegroundWindow', 'GetDesktopWindow', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'UnregisterClassA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'LoadStringA', 'GetSysColorBrush', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'StretchBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'CreateFontA', 'TranslateCharsetInfo', 'PatBlt', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutRestart', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegQueryValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'DragAcceptFiles', 'DragFinish', 'DragQueryFileA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Add', 'ImageList_BeginDrag', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_DragEnter', 'ImageList_DragLeave', 'ImageList_DragMove', 'ImageList_DragShowNolock', 'ImageList_EndDrag', 'WSACleanup', 'closesocket', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'inet_ntoa', 'getpeername', 'accept', 'ntohl', 'GetFileTitleA', 'GetOpenFileNameA', 'ChooseColorA', 'GetSaveFileNameA'], ['__set_app_type', '_except_handler3', '_setmbcp', '__p__fmode', 'exit', '__CxxFrameHandler', 'sprintf', '__dllonexit', '_onexit', '_exit', '_XcptFilter', '_acmdln', '__getmainargs', '_initterm', '__setusermatherr', '_adjust_fdiv', '__p__commode', '_controlfp', 'GetStartupInfoA', 'GetModuleHandleA', 'OutputDebugStringA', 'Sleep', 'CreateEventA', 'CloseHandle', 'ReleaseMutex', 'GetLastError', 'CreateMutexA', 'GetProcAddress', 'LoadLibraryA', 'VirtualAlloc', 'CreateThread', 'EndPaint', 'DrawFocusRect', 'SetRect', 'BeginPaint', 'FillRect', 'ShowWindow', 'CreateWindowExA', 'SetCapture', 'GetDC', 'RegisterClassA', 'UnregisterClassA', 'DestroyWindow', 'LoadCursorA', 'SetCursor', 'OffsetRect', 'GetWindowLongA', 'EnableWindow', 'LoadIconA', 'SendMessageA', 'AppendMenuA', 'GetSystemMenu', 'DrawIcon', 'IsIconic', 'WindowFromPoint', 'GetWindowDC', 'ReleaseDC', 'PtInRect', 'ReleaseCapture', 'DefWindowProcA', 'ClientToScreen', 'PostMessageA', 'GetParent', 'GetWindowRect', 'ScreenToClient', 'InvalidateRect', 'GetClientRect', 'wsprintfA', 'GetSysColor', 'CreateCursor', 'GetSystemMetrics', 'DestroyCursor', 'InflateRect', 'SetWindowTextA', 'GetPixel', 'GetDeviceCaps', 'CreateFontIndirectA', 'DeleteObject', 'SelectObject', 'MoveToEx', 'LineTo', 'GetStockObject', 'Rectangle', 'TextOutA', 'SetBkColor', 'ExtTextOutA', 'recv', 'send', 'gethostbyname', 'htons', 'connect', 'closesocket', 'WSACleanup', 'WSAStartup', 'socket', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ'], ['GetStartupInfoW', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'GetModuleHandleW', 'LoadLibraryA', 'DeviceIoControl', 'TerminateThread', 'CreateThread', 'CloseHandle', 'CreateFileA', 'FreeConsole', 'LocalFree', 'LocalAlloc', 'Sleep', 'WinExec', 'GetProcAddress', 'UnhandledExceptionFilter', 'RedrawWindow', 'GetWindowLongA', 'DrawIcon', 'LoadIconA', 'DrawIconEx', 'LoadCursorA', 'GetWindow', 'InvalidateRect', 'ExitWindowsEx', 'GetWindowDC', 'GetDesktopWindow', 'GetDC', 'ReleaseDC', 'GetSystemMetrics', 'GetWindowRect', 'SetWindowPos', 'CreatePen', 'TextOutA', 'CreateFontA', 'SetTextColor', 'SetBkColor', 'CreatePolygonRgn', 'CreateCompatibleBitmap', 'SelectObject', 'CreateDIBSection', 'CreateFontIndirectA', 'CreateRectRgn', 'DeleteDC', 'DeleteObject', 'BitBlt', 'SelectClipRgn', 'CreateEllipticRgn', 'CreateSolidBrush', 'StretchBlt', 'Ellipse', 'PatBlt', 'PolyBezier', 'SetBkMode', 'CreateCompatibleDC', 'PlgBlt', 'TextOutW', 'FillRgn', 'OpenProcessToken', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'AlphaBlend', '_CxxThrowException', '__std_exception_destroy', '__std_exception_copy', '_except_handler4_common', '__current_exception_context', '__current_exception', 'memset', '_time64', '_callnewh', 'free', '_set_new_mode', 'malloc', 'srand', 'rand', '_itoa_s', 'strcat_s', '_register_onexit_function', '_crt_atexit', '_controlfp_s', 'terminate', '_initterm', '_initterm_e', 'exit', '_exit', '_initialize_onexit_table', '_cexit', '_initialize_wide_environment', '_configure_wide_argv', '_c_exit', '_set_app_type', '_seh_filter_exe', '_register_thread_local_exe_atexit_callback', '_get_wide_winmain_command_line', '__setusermatherr', '_libm_sse2_acos_precise', '_libm_sse2_cos_precise', '_libm_sse2_sin_precise', '_libm_sse2_pow_precise', '_libm_sse2_sqrt_precise', 'ceil', '_set_fmode', '__p__commode', '_configthreadlocale'], ['GlobalMemoryStatus', 'lstrlenA', 'GetCPInfo', 'GetCurrentProcess', 'GetModuleHandleW', 'GetTickCount', 'GlobalAlloc', 'GetProcessHandleCount', 'GetSystemTimeAdjustment', 'AddAtomA', 'VirtualProtect', 'GetLastError', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetCommandLineA', 'GetStartupInfoA', 'TerminateProcess', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'HeapCreate', 'VirtualFree', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'VirtualAlloc', 'Sleep', 'GetProcAddress', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetCurrentThreadId', 'InterlockedDecrement', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'RaiseException', 'InitializeCriticalSectionAndSpinCount', 'RtlUnwind', 'LoadLibraryA', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'GetModuleHandleA', 'HeapSize', 'GetLocaleInfoA', 'LCMapStringA', 'MultiByteToWideChar', 'LCMapStringW', 'GetStringTypeA', 'GetStringTypeW', 'ShellExecuteA', 'ShellAboutA'], ['GetProcessHeap', 'SetEndOfFile', 'GetConsoleOutputCP', 'WriteConsoleA', 'GetLocaleInfoW', 'CreateFileA', 'SetStdHandle', 'SetEnvironmentVariableW', 'SetEnvironmentVariableA', 'CompareStringW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'ReadFile', 'FlushFileBuffers', 'GetConsoleMode', 'GetConsoleCP', 'IsValidLocale', 'EnumSystemLocalesA', 'GetUserDefaultLCID', 'HeapSize', 'GetStringTypeW', 'GetStringTypeA', 'GetLocaleInfoA', 'IsValidCodePage', 'GetOEMCP', 'GetACP', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'GetCommandLineW', 'GetCommandLineA', 'GetModuleHandleA', 'GetVersionExA', 'GetPriorityClass', 'GetModuleFileNameA', 'LoadLibraryA', 'GetProcAddress', 'GetCurrentProcessId', 'GetCurrentThreadId', 'SetLastError', 'GetStdHandle', 'CreateEventA', 'WaitForSingleObject', 'SetHandleCount', 'GetEnvironmentStrings', 'FreeEnvironmentStringsA', 'LoadLibraryW', 'CloseHandle', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'TlsFree', 'TlsSetValue', 'TlsAlloc', 'TlsGetValue', 'WriteFile', 'ExitProcess', 'VirtualAlloc', 'AllocateUserPhysicalPages', 'GetModuleHandleW', 'GetCurrentProcess', 'Sleep', 'HeapCreate', 'HeapReAlloc', 'VirtualFree', 'VirtualQuery', 'GetCPInfo', 'LCMapStringW', 'LCMapStringA', 'GetStartupInfoA', 'GetModuleFileNameW', 'GetFileType', 'WriteConsoleW', 'CreateDirectoryW', 'HeapFree', 'RtlUnwind', 'RaiseException', 'GetComputerNameA', 'SetEvent', 'GetLastError', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'HeapAlloc', 'LeaveCriticalSection', 'EnterCriticalSection', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'InterlockedExchange', 'MultiByteToWideChar', 'InitializeCriticalSection', 'DeleteCriticalSection', 'SetActiveWindow', 'GetSystemMenu', 'SetClassLongA', 'GetClassLongA', 'GetDlgItemTextA', 'IsDlgButtonChecked', 'GetDlgItem', 'GetKeyboardLayout', 'GetFocus', 'DispatchMessageA', 'TranslateMessage', 'GetSystemMetrics', 'GetWindowRect', 'SendMessageA', 'CreateWindowExA', 'GetMessageA', 'RegisterHotKey', 'RegisterClassExA', 'LoadCursorA', 'LoadIconA', 'SystemParametersInfoW', 'GetDC', 'UpdateLayeredWindow', 'ReleaseDC', 'DestroyWindow', 'LoadImageA', 'PostQuitMessage', 'EndDeferWindowPos', 'DefWindowProcA', 'GetCursorPos', 'WindowFromPoint', 'EnableMenuItem', 'GetDeviceCaps', 'Escape', 'GetStockObject', 'CreateSolidBrush', 'GetObjectA', 'CreateCompatibleDC', 'CreateDIBSection', 'SelectObject', 'DeleteObject', 'DeleteDC', 'UpdateColors', 'ExcludeClipRect', 'LsaClose', 'CommandLineToArgvW', 'SHGetDesktopFolder', 'SHGetMalloc', 'SHBrowseForFolderA', 'CoInitialize', 'CoMarshalInterface', 'CoGetMalloc', 'CoUninitialize', 'WSAEventSelect', 'NetLocalGroupAddMember', 'NetUserAdd', 'capCreateCaptureWindowA', 'acmFormatTagDetailsA', 'GdipGetImageEncoders', 'GdipGetImageEncodersSize', 'GdiplusShutdown', 'GdiplusStartup', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipCreateFromHDC', 'GdipCreateBitmapFromHBITMAP', 'GdipSaveImageToFile', 'GdipDisposeImage', 'GdipFree', 'GdipAlloc', 'GdipLoadImageFromFile', 'ImmGetOpenStatus', 'ImmGetContext', 'ImmSetOpenStatus', 'ImmReleaseContext', 'CM_Get_Res_Des_Data', 'CM_Get_Next_Res_Des', 'CM_Get_Next_Log_Conf', 'CM_Get_Log_Conf_Priority', 'CM_Get_Sibling', 'CM_Get_Version'], ['midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamRestart', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'PlaySoundA', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutWrite', 'waveOutPause', 'accept', 'getpeername', 'recv', 'ioctlsocket', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'DrawDibDraw', 'AVIStreamInfoA', 'AVIStreamGetFrame', 'WideCharToMultiByte', 'InterlockedIncrement', 'InterlockedDecrement', 'LocalFree', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'lstrcpynA', 'DuplicateHandle', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'lstrcmpiA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'lstrcmpA', 'LocalAlloc', 'TlsAlloc', 'GlobalHandle', 'TlsFree', 'TlsSetValue', 'LocalReAlloc', 'TlsGetValue', 'GetFileTime', 'GetCurrentThread', 'GlobalFlags', 'SetErrorMode', 'GetProcessVersion', 'GetCPInfo', 'GetOEMCP', 'GetStartupInfoA', 'RtlUnwind', 'GetSystemTime', 'GetLocalTime', 'RaiseException', 'HeapSize', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetVersion', 'GetTimeZoneInformation', 'SetLastError', 'MultiByteToWideChar', 'LoadLibraryExA', 'EnumResourceNamesA', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'DeleteFileA', 'CopyFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedExchange', 'GetSysColorBrush', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'CheckMenuItem', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'SendDlgItemMessageA', 'MapWindowPoints', 'AdjustWindowRectEx', 'GetScrollPos', 'RegisterClassA', 'GetMenuItemCount', 'GetMenuItemID', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetLastActivePopup', 'RegisterWindowMessageA', 'GetWindowPlacement', 'EndDialog', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'CharUpperA', 'GetWindowTextLengthA', 'GetForegroundWindow', 'GetNextDlgTabItem', 'GetWindowTextA', 'FindWindowExA', 'GetDlgItem', 'FindWindowA', 'GetWindowThreadProcessId', 'GetClassNameA', 'GetDesktopWindow', 'LoadIconA', 'UnregisterClassA', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'LoadStringA', 'DrawIconEx', 'GetScrollRange', 'TranslateMessage', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'CreateBitmap', 'CreatePatternBrush', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'GetTextColor', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateRoundRectRgn', 'CreateSolidBrush', 'SetBkMode', 'SetTextColor', 'SetDIBitsToDevice', 'SaveDC', 'RestoreDC', 'SetPolyFillMode', 'SetROP2', 'SetMapMode', 'GetStockObject', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'CreateFontIndirectA', 'MoveToEx', 'LineTo', 'ExtSelectClipRgn', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'SetBkColor', 'CreateRectRgnIndirect', 'CreateDIBSection', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'ExcludeClipRect', 'TextOutA', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'SetViewportOrgEx', 'GetDeviceCaps', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA', 'GetFileTitleA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCreateKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', '_TrackMouseEvent'], ['__vbaVarTstGt', '_CIcos', '_adj_fptan', '__vbaVarMove', '__vbaFreeVar', '__vbaAryMove', '__vbaStrVarMove', '__vbaLenBstr', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '__vbaLenVar', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaOnError', '__vbaObjSet', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaPutOwner3', '__vbaDateR8', 'DllFunctionCall', '_adj_fpatan', '__vbaStrR8', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaStrToUnicode', '__vbaPrintFile', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '__vbaStrVarVal', '__vbaVarCat', '_CIlog', '__vbaFileOpen', '__vbaNew2', '__vbaVar2Vec', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarTstNe', '__vbaI4Var', '__vbaStrToAnsi', '__vbaVarCopy', '_CIatan', '__vbaStrMove', '_allmul', '_CItan', '__vbaFPInt', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['RegCloseKey', 'ChooseColorA', 'LPtoDP', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'OleInitialize', 'UnRegisterTypeLib', 'RasHangUpA', 'ShellExecuteA', 'GetDC', 'InternetCloseHandle', 'waveOutOpen', 'OpenPrinterA', 'gethostname'], ['AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'RegCloseKey', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegSetValueExA', 'SetFileSecurityA', 'SetFileSecurityW', 'CloseHandle', 'CompareStringA', 'CreateDirectoryA', 'CreateDirectoryW', 'CreateFileA', 'CreateFileW', 'DeleteFileA', 'DeleteFileW', 'DosDateTimeToFileTime', 'ExitProcess', 'ExpandEnvironmentStringsA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileA', 'FindFirstFileW', 'FindNextFileA', 'FindNextFileW', 'FindResourceA', 'FreeLibrary', 'GetCPInfo', 'GetCommandLineA', 'GetCurrentDirectoryA', 'GetCurrentProcess', 'GetDateFormatA', 'GetFileAttributesA', 'GetFileAttributesW', 'GetFileType', 'GetFullPathNameA', 'GetLastError', 'GetLocaleInfoA', 'GetModuleFileNameA', 'GetModuleHandleA', 'GetNumberFormatA', 'GetProcAddress', 'GetProcessHeap', 'GetStdHandle', 'GetTempPathA', 'GetTickCount', 'GetTimeFormatA', 'GetVersionExA', 'GlobalAlloc', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'IsDBCSLeadByte', 'LoadLibraryA', 'LocalFileTimeToFileTime', 'MoveFileA', 'MoveFileExA', 'MultiByteToWideChar', 'ReadFile', 'SetCurrentDirectoryA', 'SetEndOfFile', 'SetEnvironmentVariableA', 'SetFileAttributesA', 'SetFileAttributesW', 'SetFilePointer', 'SetFileTime', 'SetLastError', 'Sleep', 'SystemTimeToFileTime', 'WaitForSingleObject', 'WideCharToMultiByte', 'WriteFile', 'lstrcmpiA', 'lstrlenA', 'CommDlgExtendedError', 'GetOpenFileNameA', 'GetSaveFileNameA', 'DeleteObject', 'SHBrowseForFolderA', 'SHChangeNotify', 'SHFileOperationA', 'SHGetFileInfoA', 'SHGetMalloc', 'SHGetSpecialFolderLocation', 'ShellExecuteExA', 'SHGetPathFromIDListA', 'CharToOemA', 'CharToOemBuffA', 'CharUpperA', 'CopyRect', 'CreateWindowExA', 'DefWindowProcA', 'DestroyIcon', 'DestroyWindow', 'DialogBoxParamA', 'DispatchMessageA', 'EnableWindow', 'EndDialog', 'FindWindowExA', 'GetClassNameA', 'GetClientRect', 'GetDlgItem', 'GetDlgItemTextA', 'GetMessageA', 'GetParent', 'GetSysColor', 'GetSystemMetrics', 'GetWindow', 'GetWindowLongA', 'GetWindowRect', 'GetWindowTextA', 'IsWindow', 'IsWindowVisible', 'LoadBitmapA', 'LoadCursorA', 'LoadIconA', 'LoadStringA', 'MapWindowPoints', 'MessageBoxA', 'OemToCharA', 'OemToCharBuffA', 'PeekMessageA', 'PostMessageA', 'RegisterClassExA', 'SendDlgItemMessageA', 'SendMessageA', 'SetDlgItemTextA', 'SetFocus', 'SetMenu', 'SetWindowLongA', 'SetWindowPos', 'SetWindowTextA', 'ShowWindow', 'TranslateMessage', 'UpdateWindow', 'WaitForInputIdle', 'wsprintfA', 'wvsprintfA', 'CLSIDFromString', 'CoCreateInstance', 'CreateStreamOnHGlobal', 'OleInitialize', 'OleUninitialize'], ['FlushFileBuffers', 'SetFilePointer', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'SuspendThread', 'ReleaseMutex', 'CreateMutexA', 'GetCurrentProcess', 'GetSystemDirectoryA', 'TerminateThread', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'TerminateProcess', 'RaiseException', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'ExpandEnvironmentStringsA', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'lstrcmpiA', 'InterlockedIncrement', 'GetMenuItemCount', 'WaitForInputIdle', 'wsprintfA', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'IsWindow', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'DestroyMenu', 'TrackPopupMenu', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'GetCapture', 'ReleaseCapture', 'SetTimer', 'KillTimer', 'WinHelpA', 'LoadBitmapA', 'GetForegroundWindow', 'ShowCursor', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'UnregisterClassA', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'CombineRgn', 'DeleteObject', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'CreateRectRgn', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutRestart', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'recvfrom', 'ioctlsocket', 'recv', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'inet_ntoa', 'closesocket', 'WSACleanup', 'GetFileTitleA', 'GetSaveFileNameA', 'ChooseColorA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'MultiByteToWideChar', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'InterlockedExchange', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetOEMCP', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'DispatchMessageA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Escape', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'GetTextMetricsA', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'CreateRectRgnIndirect', 'SetBkColor', 'Ellipse', 'SetStretchBltMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'SuspendThread', 'TerminateThread', 'ReleaseMutex', 'CreateMutexA', 'GetCurrentProcess', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'GetStartupInfoA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetACP', 'HeapSize', 'TerminateProcess', 'RaiseException', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GetTempPathA', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'GlobalDeleteAtom', 'lstrcmpiA', 'DuplicateHandle', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'InterlockedIncrement', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'IsWindow', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'DestroyMenu', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'GetSystemMetrics', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'GetCapture', 'ReleaseCapture', 'SetTimer', 'GetForegroundWindow', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'UnregisterClassA', 'LoadStringA', 'GetSysColorBrush', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'CreateRectRgnIndirect', 'StartDocA', 'StartPage', 'BitBlt', 'StretchBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'SetBkColor', 'DeleteDC', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutRestart', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegQueryValueA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'RegCreateKeyExA', 'Shell_NotifyIconA', 'SHGetSpecialFolderPathA', 'ShellExecuteA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'WSACleanup', 'closesocket', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'ntohl', 'recv', 'getpeername', 'accept', 'GetFileTitleA', 'GetSaveFileNameA', 'ChooseColorA', 'GetOpenFileNameA'], ['_except_handler3', 'memcpy', 'memmove', '_vsnprintf', '_vsnwprintf', '_purecall', 'memset', 'LoadLibraryW', 'FreeLibrary', 'GetProcAddress', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrcmpA', 'GlobalLock', 'GlobalAlloc', 'GlobalUnlock', 'GlobalFree', 'CreateMutexW', 'ReleaseMutex', 'FindResourceExW', 'LoadResource', 'SizeofResource', 'LockResource', 'CreateProcessW', 'SetFilePointerEx', 'FindNextFileW', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'GetSystemTime', 'GetDateFormatW', 'GetTimeFormatW', 'GetCurrentThreadId', 'HeapReAlloc', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'GetEnvironmentVariableW', 'CopyFileExW', 'GetUserDefaultUILanguage', 'DeleteCriticalSection', 'FindClose', 'FindFirstFileW', 'DeleteFileW', 'GetFileTime', 'SetLastError', 'GetFileSizeEx', 'FlushFileBuffers', 'ReadFile', 'WriteFile', 'SetFileTime', 'ResumeThread', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSection', 'QueryPerformanceCounter', 'SetFileAttributesW', 'CreateFileW', 'GetFileAttributesW', 'Sleep', 'GetTickCount', 'MoveFileExW', 'ExpandEnvironmentStringsW', 'GetVolumeInformationW', 'GetDiskFreeSpaceExW', 'WaitForMultipleObjects', 'ResetEvent', 'GetTempPathW', 'GetLogicalDrives', 'GetDriveTypeW', 'LocalFree', 'CloseHandle', 'CreateEventW', 'GetLastError', 'GetHandleInformation', 'SetThreadPriority', 'GetModuleFileNameW', 'GetCurrentThread', 'GetModuleHandleW', 'SetEvent', 'GetComputerNameW', 'WaitForSingleObject', 'SetErrorMode', 'GetCommandLineW', 'ExitProcess', 'CreateThread', 'MessageBoxIndirectW', 'InSendMessage', 'ClientToScreen', 'GetWindowLongW', 'GetClassNameW', 'GetCaretPos', 'TrackPopupMenu', 'AppendMenuW', 'GetCursorPos', 'CreatePopupMenu', 'SetMenuDefaultItem', 'DestroyMenu', 'LoadIconW', 'CloseClipboard', 'EmptyClipboard', 'OpenClipboard', 'SetClipboardData', 'SystemParametersInfoW', 'ScrollWindowEx', 'GetSystemMetrics', 'UpdateWindow', 'SetScrollInfo', 'MessageBoxW', 'EndPaint', 'ScreenToClient', 'GetWindowRect', 'DrawTextW', 'GetParent', 'GetClientRect', 'IsDialogMessageW', 'DestroyWindow', 'BeginPaint', 'DrawFocusRect', 'IntersectRect', 'GetDlgItem', 'SendMessageW', 'GetDlgCtrlID', 'SetWindowTextW', 'MoveWindow', 'GetDC', 'ReleaseDC', 'CharLowerW', 'PostQuitMessage', 'MsgWaitForMultipleObjects', 'TranslateMessage', 'PeekMessageW', 'DispatchMessageW', 'SetTimer', 'PostMessageW', 'SetFocus', 'RegisterClassExW', 'FlashWindowEx', 'InvalidateRect', 'GetWindowTextW', 'MonitorFromWindow', 'SetWindowPos', 'ShowWindow', 'GetForegroundWindow', 'AdjustWindowRectEx', 'IsWindowVisible', 'GetMonitorInfoW', 'DefWindowProcW', 'DialogBoxParamW', 'SetWindowLongW', 'EndDialog', 'CreateDialogParamW', 'MonitorFromPoint', 'UnregisterClassW', 'SetForegroundWindow', 'GetKeyState', 'ReplyMessage', 'GetScrollInfo', 'CreateWindowExW', 'CryptAcquireContextW', 'RegSetValueExW', 'RegEnumKeyExW', 'RegFlushKey', 'CryptSetKeyParam', 'CryptGetKeyParam', 'CryptReleaseContext', 'CryptImportKey', 'CryptEncrypt', 'CryptGenKey', 'CryptDestroyKey', 'CryptDecrypt', 'CryptGetHashParam', 'CryptCreateHash', 'CryptDestroyHash', 'CryptHashData', 'RegCreateKeyExW', 'RegCloseKey', 'CryptExportKey', 'RegQueryValueExW', 'RegQueryInfoKeyW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumValueW', 'RegOpenKeyExW', 'SHGetFileInfoW', 'SHGetFolderPathW', 'ShellExecuteExW', 'CommandLineToArgvW', 'SetWindowTheme', 'GetDeviceCaps', 'CreateSolidBrush', 'GetObjectW', 'CreateCompatibleDC', 'SelectObject', 'DeleteObject', 'SetBkMode', 'SetBkColor', 'DeleteDC', 'SetTextColor', 'GetObjectA', 'CreateFontIndirectW', 'InitCommonControlsEx', 'StrCmpW', 'StrCmpNW', 'StrCmpIW', 'PathMatchSpecW', 'PathRemoveBackslashW', 'PathAddBackslashW', 'PathFindFileNameW', 'PathRemoveFileSpecW', 'PathUnquoteSpacesW', 'StrChrW', 'PathQuoteSpacesW', 'AlphaBlend', 'WinHttpConnect', 'WinHttpCloseHandle', 'WinHttpQueryHeaders', 'WinHttpWriteData', 'WinHttpOpenRequest', 'WinHttpReadData', 'WinHttpAddRequestHeaders', 'WinHttpSendRequest', 'WinHttpReceiveResponse', 'WinHttpOpen', 'GdipAlloc', 'GdipDisposeImage', 'GdipCreateHBITMAPFromBitmap', 'GdipCloneImage', 'GdiplusStartup', 'GdipDeleteBrush', 'GdipCreateBitmapFromStream', 'GdipCreateFontFromLogfontA', 'GdipSetStringFormatLineAlign', 'GdipDeleteFont', 'GdipDeleteGraphics', 'GdipDrawImageRectI', 'GdipSetStringFormatAlign', 'GdipCreateSolidFill', 'GdipDrawString', 'GdipCreateFromHDC', 'GdipSetStringFormatHotkeyPrefix', 'GdipCreateStringFormat', 'GdipDeleteStringFormat', 'GdipCreateFontFromDC', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdiplusShutdown', 'GdipFree', 'GdipCloneBrush', 'CoInitializeEx', 'CoUninitialize', 'CoTaskMemFree', 'StringFromGUID2', 'CryptImportPublicKeyInfo', 'CryptStringToBinaryA', 'CryptDecodeObjectEx'], ['SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'TerminateProcess', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RaiseException', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedIncrement', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'GetClipboardData', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'CloseClipboard', 'wsprintfA', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'WaitForInputIdle', 'IsWindow', 'DestroyMenu', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'GetCapture', 'ReleaseCapture', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'UnregisterClassA', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'SetStretchBltMode', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'CreateRectRgnIndirect', 'SetBkColor', 'FillRgn', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegQueryValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleUninitialize', 'CLSIDFromString', 'OleInitialize', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'ioctlsocket', 'recv', 'getpeername', 'accept', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'RemoveDirectoryA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'InterlockedExchange', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'RtlUnwind', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'CreateIconFromResourceEx', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'LPtoDP', 'SelectClipRgn', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['__vbaStrI2', '_CIcos', '_adj_fptan', '__vbaAryMove', '__vbaFreeVar', '__vbaFreeVarList', '_adj_fdiv_m64', '__vbaPut4', '__vbaNextEachVar', '_adj_fprem1', '__vbaStrCat', '__vbaSetSystemError', '__vbaHresultCheckObj', '_adj_fdiv_m32', '__vbaAryDestruct', '__vbaExitProc', '__vbaOnError', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaVarZero', '__vbaChkstk', '__vbaFileClose', 'EVENT_SINK_AddRef', '__vbaStrCmp', '__vbaPutOwner3', '__vbaVarTstEq', '__vbaI2I4', '__vbaObjVar', 'DllFunctionCall', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '__vbaPrintFile', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '__vbaErrorOverflow', '__vbaFileOpen', '__vbaVar2Vec', '__vbaNew2', '__vbaVarLateMemCallLdRf', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '__vbaStrCopy', '__vbaFreeStrList', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaLateMemCall', '__vbaStrToAnsi', '__vbaVarDup', '__vbaFpI2', '__vbaVarLateMemCallLd', '__vbaR8IntI2', '_CIatan', '__vbaStrMove', '__vbaForEachVar', '_allmul', '_CItan', '__vbaFPInt', '__vbaAryUnlock', '_CIexp', '__vbaFreeStr', '__vbaFreeObj'], ['DeleteFileA', 'DeleteFileW', 'CreateDirectoryA', 'CreateDirectoryW', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'FindNextFileW', 'FindFirstFileW', 'GetTickCount', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetVersionExA', 'GlobalAlloc', 'lstrlenA', 'GetModuleFileNameA', 'FindResourceA', 'GetModuleHandleA', 'HeapAlloc', 'GetProcessHeap', 'HeapFree', 'HeapReAlloc', 'CompareStringA', 'ExitProcess', 'GetLocaleInfoA', 'GetNumberFormatA', 'lstrcmpiA', 'GetProcAddress', 'GetDateFormatA', 'GetTimeFormatA', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'ExpandEnvironmentStringsA', 'WaitForSingleObject', 'SetCurrentDirectoryA', 'Sleep', 'GetTempPathA', 'MoveFileExA', 'UnmapViewOfFile', 'GetCommandLineA', 'MapViewOfFile', 'CreateFileMappingA', 'GetModuleFileNameW', 'SetEnvironmentVariableA', 'OpenFileMappingA', 'LocalFileTimeToFileTime', 'SystemTimeToFileTime', 'GetSystemTime', 'IsDBCSLeadByte', 'GetCPInfo', 'FreeLibrary', 'LoadLibraryA', 'GetCurrentDirectoryA', 'GetFullPathNameA', 'SetFileAttributesW', 'SetFileAttributesA', 'GetFileAttributesW', 'GetFileAttributesA', 'WriteFile', 'SetLastError', 'GetStdHandle', 'ReadFile', 'CreateFileW', 'CreateFileA', 'GetFileType', 'SetEndOfFile', 'SetFilePointer', 'MoveFileA', 'SetFileTime', 'GetCurrentProcess', 'CloseHandle', 'GetLastError', 'DosDateTimeToFileTime', 'ReleaseDC', 'GetDC', 'SendMessageA', 'wsprintfA', 'SetDlgItemTextA', 'EndDialog', 'DestroyIcon', 'SendDlgItemMessageA', 'GetDlgItemTextA', 'DialogBoxParamA', 'IsWindowVisible', 'WaitForInputIdle', 'GetSysColor', 'PostMessageA', 'SetMenu', 'SetFocus', 'LoadBitmapA', 'LoadIconA', 'CharToOemA', 'OemToCharA', 'GetClassNameA', 'CharUpperA', 'GetWindowRect', 'GetParent', 'MapWindowPoints', 'CreateWindowExA', 'UpdateWindow', 'SetWindowTextA', 'LoadCursorA', 'RegisterClassExA', 'SetWindowLongA', 'GetWindowLongA', 'DefWindowProcA', 'PeekMessageA', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetClientRect', 'CopyRect', 'IsWindow', 'MessageBoxA', 'ShowWindow', 'GetDlgItem', 'EnableWindow', 'FindWindowExA', 'wvsprintfA', 'CharToOemBuffA', 'LoadStringA', 'SetWindowPos', 'GetWindowTextA', 'GetWindow', 'GetSystemMetrics', 'OemToCharBuffA', 'DestroyWindow', 'GetDeviceCaps', 'GetObjectA', 'CreateCompatibleBitmap', 'SelectObject', 'StretchBlt', 'CreateCompatibleDC', 'DeleteObject', 'DeleteDC', 'GetSaveFileNameA', 'CommDlgExtendedError', 'GetOpenFileNameA', 'LookupPrivilegeValueA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegCloseKey', 'SetFileSecurityW', 'SetFileSecurityA', 'OpenProcessToken', 'AdjustTokenPrivileges', 'ShellExecuteExA', 'SHFileOperationA', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'SHChangeNotify', 'CreateStreamOnHGlobal', 'OleInitialize', 'CoCreateInstance', 'OleUninitialize', 'CLSIDFromString', 'VariantInit'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'LoadLibraryExA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'EnumResourceNamesA', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'SizeofResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'lstrlenA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DefWindowProcA', 'GetClassInfoA', 'DeleteMenu', 'GetSystemMenu', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'ModifyMenuA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'InflateRect', 'SetRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'LoadIconA', 'TranslateMessage', 'SystemParametersInfoA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'DispatchMessageA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'SetStretchBltMode', 'LPtoDP', 'GetClipRgn', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'WSACleanup', 'closesocket', 'getpeername', 'accept', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'GetACP', 'HeapSize', 'TerminateProcess', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'InterlockedExchange', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetSysColorBrush', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetRectEmpty', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'LoadStringA', 'GetMenuCheckMarkDimensions', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'PeekMessageA', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'SetMenu', 'GetMenu', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'GetWindowTextA', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'RedrawWindow', 'GetClassInfoA', 'SetTimer', 'UnregisterClassA', 'RegisterClipboardFormatA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'ExtTextOutA', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'Escape', 'GetTextMetricsA', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'GetClipRgn', 'DeleteObject', 'SelectClipRgn', 'Ellipse', 'CreateDIBitmap', 'CreatePolygonRgn', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetKeyboardLayout', 'VkKeyScanExA', 'GetDesktopWindow', 'GetClassNameA', 'keybd_event', 'GetDlgItem', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'SetRectEmpty', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'SetStretchBltMode', 'LPtoDP', 'GetClipRgn', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['ImmDisableIME', 'WSACleanup', 'WSAGetLastError', '__WSAFDIsSet', 'select', 'WSASetLastError', 'bind', 'getpeername', 'getsockname', 'getsockopt', 'ntohs', 'WSAIoctl', 'getaddrinfo', 'freeaddrinfo', 'recvfrom', 'sendto', 'accept', 'listen', 'ioctlsocket', 'gethostname', 'htonl', 'WSAStartup', 'connect', 'htons', 'setsockopt', 'recv', 'socket', 'closesocket', 'gethostbyname', 'send', 'ntohl', 'WinHttpCrackUrl', 'WinHttpCloseHandle', 'WinHttpQueryDataAvailable', 'WinHttpSendRequest', 'WinHttpSetTimeouts', 'WinHttpReceiveResponse', 'WinHttpOpen', 'WinHttpAddRequestHeaders', 'WinHttpReadData', 'WinHttpOpenRequest', 'WinHttpConnect', 'CreateProcessA', 'GetSystemDirectoryA', 'MultiByteToWideChar', 'CreateEventW', 'WaitForMultipleObjects', 'DeleteFileA', 'GetTickCount', 'FreeLibrary', 'LoadLibraryW', 'GetTempPathW', 'LoadLibraryA', 'DeleteFileW', 'GetSystemDefaultLangID', 'GetTimeZoneInformation', 'GetVersionExA', 'GetSystemTime', 'FreeResource', 'InterlockedExchange', 'InterlockedIncrement', 'GetVersionExW', 'GetSystemInfo', 'WideCharToMultiByte', 'WriteFile', 'Process32First', 'TerminateProcess', 'Process32FirstW', 'Process32Next', 'Process32NextW', 'CreateToolhelp32Snapshot', 'GetTempFileNameW', 'GetFileSize', 'FindFirstFileW', 'SystemTimeToTzSpecificLocalTime', 'CreateDirectoryW', 'GetSystemDirectoryW', 'CopyFileW', 'GetFileAttributesA', 'lstrcpynW', 'GetFileAttributesW', 'FileTimeToSystemTime', 'ReadFile', 'GetModuleFileNameW', 'CreateFileW', 'FindClose', 'SetFilePointer', 'SetEndOfFile', 'SetFileTime', 'SystemTimeToFileTime', 'LocalFileTimeToFileTime', 'GetCurrentDirectoryW', 'lstrcmpiW', 'lstrlenW', 'GlobalAlloc', 'GlobalSize', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'lstrcatW', 'OutputDebugStringW', 'LocalAlloc', 'LocalReAlloc', 'LocalLock', 'LocalUnlock', 'LocalSize', 'SetEvent', 'lstrcpyW', 'CreateThread', 'CreateDirectoryA', 'SetProcessWorkingSetSize', 'SetLastError', 'SleepEx', 'VerSetConditionMask', 'GetModuleHandleA', 'VerifyVersionInfoA', 'FormatMessageA', 'GetFileType', 'GetStdHandle', 'PeekNamedPipe', 'ExpandEnvironmentStringsA', 'GetThreadContext', 'SetThreadContext', 'VirtualQuery', 'InterlockedCompareExchange', 'VirtualFree', 'FlushInstructionCache', 'VirtualAlloc', 'VirtualProtect', 'SuspendThread', 'ResumeThread', 'LoadLibraryExW', 'GetPrivateProfileIntA', 'GetPrivateProfileStringA', 'SwitchToThread', 'DeviceIoControl', 'GetExitCodeThread', 'IsBadReadPtr', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'GetStartupInfoW', 'TlsFree', 'TlsSetValue', 'TlsGetValue', 'TlsAlloc', 'UnhandledExceptionFilter', 'GetCPInfo', 'FindFirstFileExW', 'GetFileInformationByHandle', 'FileTimeToLocalFileTime', 'SetFilePointerEx', 'GetLocalTime', 'RtlUnwind', 'GetCommandLineW', 'ExitThread', 'IsProcessorFeaturePresent', 'GetSystemTimeAsFileTime', 'IsDebuggerPresent', 'EncodePointer', 'GetStringTypeW', 'ExitProcess', 'GetProcAddress', 'GetCurrentThread', 'GetModuleFileNameA', 'GetTempPathA', 'lstrlenA', 'SetEnvironmentVariableA', 'WriteConsoleW', 'LocalFree', 'WaitForSingleObject', 'GetFullPathNameW', 'SetStdHandle', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetConsoleCP', 'GetOEMCP', 'IsValidCodePage', 'ReadConsoleW', 'GetCurrentProcessId', 'CloseHandle', 'GetCurrentThreadId', 'CreateFileMappingW', 'InitializeCriticalSection', 'GetModuleHandleW', 'GetComputerNameW', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnmapViewOfFile', 'MapViewOfFile', 'CreateMutexW', 'CreateFileA', 'LockResource', 'SizeofResource', 'LoadResource', 'FindResourceW', 'FindResourceExW', 'GlobalMemoryStatusEx', 'GetDiskFreeSpaceExW', 'GetLogicalDriveStringsW', 'GetDriveTypeW', 'Sleep', 'InterlockedDecrement', 'DeleteCriticalSection', 'DecodePointer', 'EnterCriticalSection', 'HeapSize', 'GetLastError', 'RaiseException', 'LeaveCriticalSection', 'HeapDestroy', 'InitializeCriticalSectionAndSpinCount', 'GetProcessHeap', 'HeapFree', 'HeapAlloc', 'HeapReAlloc', 'GetModuleHandleExW', 'AreFileApisANSI', 'GetACP', 'GetConsoleMode', 'ResetEvent', 'IsRectEmpty', 'OffsetRect', 'MapWindowPoints', 'ClientToScreen', 'GetActiveWindow', 'GetClassNameW', 'GetParent', 'SetClassLongW', 'GetClassLongW', 'IntersectRect', 'ScreenToClient', 'SetCaretPos', 'ShowCaret', 'HideCaret', 'DestroyCaret', 'GetCaretBlinkTime', 'CreateCaret', 'SetClipboardData', 'GetClipboardData', 'EmptyClipboard', 'CharUpperBuffW', 'CharLowerBuffW', 'GetKeyState', 'EqualRect', 'PtInRect', 'RedrawWindow', 'GetFocus', 'IsMenu', 'GetMenuStringW', 'DestroyMenu', 'GetSubMenu', 'GetMenuItemCount', 'UnregisterClassW', 'EnumDisplaySettingsW', 'DispatchMessageW', 'SendMessageW', 'IsWindow', 'ShowWindow', 'TranslateMessage', 'SetForegroundWindow', 'GetMessageW', 'DefWindowProcW', 'UpdateWindow', 'CreateWindowExW', 'PeekMessageW', 'RegisterClassExW', 'GetCursorPos', 'SetCursor', 'GetWindowRect', 'GetClientRect', 'RemovePropW', 'SetPropW', 'KillTimer', 'SetTimer', 'DrawTextW', 'GetPropW', 'FillRect', 'IsZoomed', 'SetWindowRgn', 'SystemParametersInfoW', 'OpenClipboard', 'GetSysColor', 'CloseClipboard', 'LoadCursorW', 'PostQuitMessage', 'CharNextA', 'MessageBoxW', 'PostMessageW', 'GetDesktopWindow', 'EnableWindow', 'SetWindowTextA', 'EnableMenuItem', 'GetWindowTextW', 'InvalidateRect', 'LoadIconW', 'GetSystemMenu', 'GetSystemMetrics', 'SetWindowLongW', 'ReleaseDC', 'GetWindowLongW', 'GetDC', 'BeginPaint', 'DestroyWindow', 'EndPaint', 'CopyRect', 'SetRectEmpty', 'wsprintfW', 'CallWindowProcW', 'TrackPopupMenu', 'GetIconInfo', 'DestroyCursor', 'LoadImageW', 'EndMenu', 'UpdateLayeredWindow', 'SetWindowPos', 'SetFocus', 'GetCapture', 'SetCapture', 'ReleaseCapture', 'SetTextColor', 'GetTextExtentPoint32W', 'GetTextExtentPointW', 'GetTextMetricsW', 'CreateBitmap', 'CreatePatternBrush', 'SetBkColor', 'CombineRgn', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'SetRectRgn', 'CreateRoundRectRgn', 'ExtCreateRegion', 'GetRegionData', 'GetViewportOrgEx', 'GetStockObject', 'GetClipBox', 'EnumFontsW', 'SetViewportOrgEx', 'SelectClipRgn', 'CreateRectRgn', 'BitBlt', 'CreateDIBSection', 'StretchBlt', 'SetDIBColorTable', 'SetBkMode', 'DeleteObject', 'SelectObject', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateFontW', 'DeleteDC', 'TextOutA', 'CreateSolidBrush', 'TextOutW', 'GetObjectW', 'PatBlt', 'GetDIBColorTable', 'CryptGenRandom', 'RegOpenKeyExW', 'RegEnumKeyExW', 'RegCloseKey', 'CryptEncrypt', 'CryptImportKey', 'CryptDestroyKey', 'CryptDestroyHash', 'CryptHashData', 'CryptCreateHash', 'CryptGetHashParam', 'RegQueryValueExW', 'CryptReleaseContext', 'CryptAcquireContextA', 'RegOpenKeyExA', 'RegQueryValueExA', 'SHGetFolderPathA', 'ShellExecuteW', 'SHGetPathFromIDListW', 'Shell_NotifyIconW', 'SHBrowseForFolderW', 'SHGetSpecialFolderPathW', 'ShellExecuteA', 'SHGetSpecialFolderPathA', 'CoCreateInstance', 'CoSetProxyBlanket', 'CoInitializeSecurity', 'CoInitializeEx', 'CoInitialize', 'CoTaskMemFree', 'CreateStreamOnHGlobal', 'CLSIDFromString', 'CLSIDFromProgID', 'StringFromGUID2', 'CoCreateGuid', 'CoUninitialize', 'SysFreeString', 'VariantClear', 'VariantChangeType', 'VariantInit', 'LoadTypeLib', 'DispGetIDsOfNames', 'GetErrorInfo', 'SysAllocString', 'PathAddBackslashW', 'PathAppendW', 'PathFileExistsW', 'PathFileExistsA', 'StrStrIW', 'StrStrIA', 'PathAppendA', 'GdipDeletePen', 'GdipCreatePen1', 'GdipSetPenDashStyle', 'GdipFillPieI', 'GdipGetImagePaletteSize', 'GdipDisposeImage', 'GdipAlloc', 'GdipDrawImageI', 'GdipBitmapUnlockBits', 'GdipGetImageGraphicsContext', 'GdipDeleteGraphics', 'GdipCreateBitmapFromScan0', 'GdipGetImagePixelFormat', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImageHeight', 'GdipFree', 'GdiplusShutdown', 'GdipSetSmoothingMode', 'GdipCreateFromHDC', 'GdipDrawImageRectI', 'GdipCreateSolidFill', 'GdipDeleteBrush', 'GdiplusStartup', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawLinesI', 'GdipDrawRectangle', 'GdipFillRectangle', 'GdipLoadImageFromStream', 'GdipImageGetFrameDimensionsList', 'GdipImageGetFrameCount', 'GdipImageSelectActiveFrame', 'GdipGetPropertyItemSize', 'GdipGetPropertyItem', 'GdipCreateBitmapFromHBITMAP', 'GdipBitmapLockBits', 'GdipImageGetFrameDimensionsCount', 'GradientFill', 'TransparentBlt', 'AlphaBlend', 'GetAdaptersInfo', 'SetupDiGetClassDevsW', 'SetupDiGetDeviceRegistryPropertyA', 'SetupDiEnumDeviceInfo', 'SetupDiDestroyDeviceInfoList', 'SetupIterateCabinetW', 'Direct3DCreate9', 'MiniDumpWriteDump', 'RasEnumConnectionsW', 'VerQueryValueW', 'GetFileVersionInfoA', 'GetFileVersionInfoSizeA', 'Netbios', '_TrackMouseEvent', 'CertFreeCertificateContext'], ['SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'SuspendThread', 'TerminateThread', 'ReleaseMutex', 'CreateMutexA', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'TerminateProcess', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedIncrement', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'GetClipboardData', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'CloseClipboard', 'wsprintfA', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'DestroyMenu', 'WaitForInputIdle', 'IsWindow', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'GetCapture', 'ReleaseCapture', 'SetTimer', 'KillTimer', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'UnregisterClassA', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'DeleteObject', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'EndPage', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutRestart', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegQueryValueA', 'RegCreateKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'recvfrom', 'ioctlsocket', 'recv', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'SetLastError', 'MultiByteToWideChar', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'InterlockedExchange', 'lstrcpyA', 'FindNextFileA', 'GetDriveTypeA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'ExpandEnvironmentStringsA', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetCPInfo', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'LoadIconA', 'TranslateMessage', 'GetDesktopWindow', 'GetClassNameA', 'FindWindowA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'GetMessageA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Escape', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'GetTextMetricsA', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'Ellipse', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegCloseKey', 'Shell_NotifyIconA', 'SHGetSpecialFolderPathA', 'SHChangeNotify', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'CoCreateInstance', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['midiOutReset', 'midiStreamStop', 'midiStreamClose', 'midiStreamRestart', 'waveOutRestart', 'PlaySoundA', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'ntohl', 'accept', 'getpeername', 'recv', 'ioctlsocket', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'DrawDibDraw', 'AVIStreamInfoA', 'AVIStreamGetFrame', 'GetVersion', 'CreateMutexA', 'ReleaseMutex', 'TerminateThread', 'InterlockedIncrement', 'InterlockedDecrement', 'LocalFree', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'lstrcpynA', 'DuplicateHandle', 'FlushFileBuffers', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'lstrcmpiA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'lstrcmpA', 'LocalAlloc', 'TlsAlloc', 'GlobalHandle', 'TlsFree', 'TlsSetValue', 'LocalReAlloc', 'TlsGetValue', 'GetFileTime', 'GetCurrentThread', 'GlobalFlags', 'SetErrorMode', 'GetProcessVersion', 'GetCPInfo', 'GetOEMCP', 'GetStartupInfoA', 'RtlUnwind', 'GetSystemTime', 'GetLocalTime', 'RaiseException', 'HeapSize', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetTimeZoneInformation', 'SetLastError', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'lstrlenW', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetUserDefaultLCID', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedExchange', 'SuspendThread', 'LoadStringA', 'GetSysColorBrush', 'SetMenuItemBitmaps', 'CheckMenuItem', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'SendDlgItemMessageA', 'MapWindowPoints', 'AdjustWindowRectEx', 'GetScrollPos', 'RegisterClassA', 'GetMenuItemCount', 'GetMenuItemID', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetLastActivePopup', 'GetForegroundWindow', 'RegisterWindowMessageA', 'GetWindowPlacement', 'EndDialog', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'CharUpperA', 'GetWindowTextLengthA', 'GetNextDlgTabItem', 'GetWindowTextA', 'GetDlgItem', 'GetClassNameA', 'GetDesktopWindow', 'LoadIconA', 'TranslateMessage', 'UnregisterClassA', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'GetMenuCheckMarkDimensions', 'DrawIconEx', 'GetMenuState', 'SetRect', 'DrawFrameControl', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'CreatePatternBrush', 'SelectObject', 'GetROP2', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetBkColor', 'CreateFontIndirectA', 'GetStockObject', 'GetObjectA', 'GetBkMode', 'EndPage', 'TextOutA', 'SetBkMode', 'SetTextColor', 'SetDIBitsToDevice', 'SaveDC', 'EndDoc', 'SetPolyFillMode', 'SetROP2', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'DeleteDC', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'ExtSelectClipRgn', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'CreateDIBSection', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'SetBkColor', 'RestoreDC', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA', 'RegCreateKeyExA', 'RegQueryValueA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCreateKeyA', 'RegSetValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'VariantChangeType', 'VariantClear', 'VariantCopyInd', 'SysAllocString', 'VariantInit', 'RegisterTypeLib', 'LHashValOfNameSys', 'UnRegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', '_TrackMouseEvent'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutRestart', 'waveOutPrepareHeader', 'WSACleanup', 'inet_ntoa', 'closesocket', 'getpeername', 'accept', 'ntohl', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'recv', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'TerminateThread', 'CreateMutexA', 'ReleaseMutex', 'SuspendThread', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'InterlockedExchange', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'GetSysColorBrush', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'SetRectEmpty', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'LoadStringA', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'PeekMessageA', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'SetMenu', 'GetMenu', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'EnableWindow', 'GetClassInfoA', 'KillTimer', 'UnregisterClassA', 'CreateIconFromResource', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'PtVisible', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'GetClipRgn', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'Rectangle', 'CreatePalette', 'CreatePolygonRgn', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutRestart', 'waveOutPrepareHeader', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'ntohl', 'recvfrom', 'ioctlsocket', 'recv', 'accept', 'getpeername', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'CreateMutexA', 'ReleaseMutex', 'TerminateThread', 'SuspendThread', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'InterlockedExchange', 'lstrcpyA', 'FindNextFileA', 'GetDriveTypeA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'CreateDirectoryA', 'GetCurrentDirectoryA', 'SetCurrentDirectoryA', 'SetVolumeLabelA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetActiveWindow', 'SetFocus', 'IsIconic', 'PeekMessageA', 'SetMenu', 'GetMenu', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'GetSysColorBrush', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'DispatchMessageA', 'GetMessageA', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'LoadStringA', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'DeleteMenu', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'GetSystemMenu', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetKeyboardLayout', 'VkKeyScanExA', 'GetDesktopWindow', 'GetClassNameA', 'keybd_event', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'GetForegroundWindow', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PtInRect', 'PostQuitMessage', 'ChildWindowFromPointEx', 'UnregisterClassA', 'SetRectEmpty', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'PtVisible', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'DeleteObject', 'GetSystemPaletteEntries', 'DPtoLP', 'CreatePalette', 'CreateDIBitmap', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegOpenKeyA', 'RegCloseKey', 'SHChangeNotify', 'SHGetSpecialFolderPathA', 'Shell_NotifyIconA', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'CoCreateInstance', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['DrawDibDraw', 'AVIStreamGetFrame', 'AVIStreamInfoA', 'midiStreamOut', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'midiOutPrepareHeader', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'PlaySoundA', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'waveOutWrite', 'accept', 'getpeername', 'recv', 'ioctlsocket', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'InterlockedIncrement', 'InterlockedDecrement', 'WideCharToMultiByte', 'LocalFree', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'lstrcpynA', 'DuplicateHandle', 'FlushFileBuffers', 'LockFile', 'GetVersion', 'SetEndOfFile', 'lstrcmpiA', 'GlobalDeleteAtom', 'GlobalFindAtomA', 'GlobalAddAtomA', 'GlobalGetAtomNameA', 'lstrcmpA', 'LocalAlloc', 'TlsAlloc', 'GlobalHandle', 'TlsFree', 'TlsSetValue', 'LocalReAlloc', 'TlsGetValue', 'GetFileTime', 'GetCurrentThread', 'GlobalFlags', 'SetErrorMode', 'GetProcessVersion', 'GetCPInfo', 'GetOEMCP', 'GetStartupInfoA', 'RtlUnwind', 'GetSystemTime', 'GetLocalTime', 'RaiseException', 'HeapSize', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetTimeZoneInformation', 'SetLastError', 'MultiByteToWideChar', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedExchange', 'UnlockFile', 'LoadStringA', 'GetSysColorBrush', 'GetWindowTextA', 'FindWindowExA', 'GetDlgItem', 'FindWindowA', 'GetWindowThreadProcessId', 'GetClassNameA', 'GetDesktopWindow', 'GetNextDlgTabItem', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'SetMenuItemBitmaps', 'CheckMenuItem', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'ScrollWindowEx', 'SendDlgItemMessageA', 'MapWindowPoints', 'AdjustWindowRectEx', 'GetScrollPos', 'RegisterClassA', 'GetMenuItemCount', 'GetMenuItemID', 'CreateWindowExA', 'SetWindowsHookExA', 'CallNextHookEx', 'GetClassLongA', 'SetPropA', 'UnhookWindowsHookEx', 'GetPropA', 'CallWindowProcA', 'RemovePropA', 'GetMessageTime', 'GetLastActivePopup', 'GetForegroundWindow', 'RegisterWindowMessageA', 'GetWindowPlacement', 'EndDialog', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GrayStringA', 'DrawTextA', 'TabbedTextOutA', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'CharUpperA', 'GetWindowTextLengthA', 'IsIconic', 'SetScrollRange', 'UnregisterClassA', 'RoundRect', 'GetCurrentObject', 'DPtoLP', 'LPtoDP', 'Rectangle', 'CreateCompatibleDC', 'GetTextExtentPoint32A', 'StartPage', 'Ellipse', 'BitBlt', 'StartDocA', 'DeleteDC', 'EndDoc', 'EndPage', 'CreateFontIndirectA', 'GetStockObject', 'CreateSolidBrush', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreatePatternBrush', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateDIBSection', 'CreateRectRgnIndirect', 'SetBkColor', 'TextOutA', 'SetBkMode', 'SetTextColor', 'SetDIBitsToDevice', 'SaveDC', 'RestoreDC', 'SetPolyFillMode', 'SetROP2', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'ExtSelectClipRgn', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'GetDeviceCaps', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'LoadTypeLib', 'UnRegisterTypeLib', 'RegisterTypeLib', '_TrackMouseEvent', 'ImageList_Destroy'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'SetLastError', 'MultiByteToWideChar', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'WinExec', 'lstrcpyA', 'InterlockedExchange', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'lstrlenA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetCPInfo', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DefWindowProcA', 'GetClassInfoA', 'DeleteMenu', 'GetSystemMenu', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'ModifyMenuA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'InflateRect', 'SetRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'LoadIconA', 'TranslateMessage', 'SystemParametersInfoA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'WindowFromPoint', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreatePen', 'PatBlt', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Escape', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'GetTextMetricsA', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'Ellipse', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['AVIStreamRelease', 'DrawDibOpen', 'PlaySoundA', 'GetVersionExA', 'GetVersion', 'IsZoomed', 'GetTextAlign', 'ChooseColorA', 'DocumentPropertiesA', 'RegCloseKey', 'SHBrowseForFolderA', 'ImageList_Remove', 'CLSIDFromString', 'SafeArrayGetLBound', 'URLDownloadToFileA', 'ioctlsocket', 'SHAutoComplete', 'InternetGetLastResponseInfoA', 'SkinH_SetAero', 'WinHttpOpenRequest', 'GdipDisposeImage', 'ImmAssociateContext', 'WTSSendMessageW', 'VirtualQuery', 'GetProcessWindowStation', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameW', 'GetProcessAffinityMask', 'SetProcessAffinityMask', 'SetThreadAffinityMask', 'Sleep', 'ExitProcess', 'FreeLibrary', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress', 'GetProcessWindowStation', 'GetUserObjectInformationW'], ['FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'TerminateProcess', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'FreeEnvironmentStringsW', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'GetStringTypeA', 'GetStringTypeW', 'SetUnhandledExceptionFilter', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'SuspendThread', 'TerminateThread', 'ReleaseMutex', 'CreateMutexA', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'CloseHandle', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'GetCurrentThread', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'UnregisterClassA', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'RedrawWindow', 'GetTextMetricsA', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'Escape', 'GetViewportExtEx', 'ExtSelectClipRgn', 'SetBkColor', 'CreateRectRgnIndirect', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'waveOutRestart', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiOutPrepareHeader', 'midiStreamOut', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegQueryValueA', 'RegCloseKey', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'inet_ntoa', 'WSACleanup', 'ntohl', 'accept', 'getpeername', 'recv', 'ioctlsocket', 'recvfrom', 'closesocket', 'WSAAsyncSelect', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'WSACleanup', 'closesocket', 'getpeername', 'accept', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'GetWindowsDirectoryA', 'GetSystemDirectoryA', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'SetSystemPowerState', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'InterlockedExchange', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'GetTempPathA', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'CopyFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'PeekMessageA', 'SetMenu', 'GetMenu', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'GetSysColorBrush', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'DispatchMessageA', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'LoadStringA', 'GetMenuCheckMarkDimensions', 'GetMenuState', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'DeleteMenu', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'GetSystemMenu', 'GetMessageA', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'GetForegroundWindow', 'ExitWindowsEx', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PtInRect', 'PostQuitMessage', 'ChildWindowFromPointEx', 'UnregisterClassA', 'WindowFromPoint', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'MoveToEx', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'PtVisible', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SetStretchBltMode', 'CreateRectRgnIndirect', 'SetBkColor', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'RectVisible', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'GetClipRgn', 'SelectClipRgn', 'Ellipse', 'DeleteObject', 'CreatePolygonRgn', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'LookupPrivilegeValueA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'RegCloseKey', 'OpenProcessToken', 'ShellExecuteA', 'Shell_NotifyIconA', 'SHGetSpecialFolderPathA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['CompareStringW', 'GetTimeZoneInformation', 'GetConsoleCP', 'GetConsoleMode', 'GetEnvironmentStringsW', 'WriteConsoleW', 'CreateFileW', 'SetEnvironmentVariableA', 'FreeEnvironmentStringsW', 'IsValidCodePage', 'HeapCreate', 'GetVersion', 'HeapSetInformation', 'GetStdHandle', 'RtlCaptureContext', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'TerminateProcess', 'FlsAlloc', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'FindResourceW', 'GetFileType', 'SetStdHandle', 'HeapSize', 'HeapQueryInformation', 'HeapReAlloc', 'VirtualQuery', 'GetSystemInfo', 'SetThreadStackGuarantee', 'VirtualAlloc', 'CreateThread', 'LCMapStringW', 'GetStartupInfoW', 'GetCommandLineA', 'HeapFree', 'RtlPcToFileHeader', 'RaiseException', 'ExitProcess', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'DecodePointer', 'EncodePointer', 'RtlUnwindEx', 'RtlLookupFunctionEntry', 'FindResourceExW', 'VirtualProtect', 'SearchPathA', 'GetProfileIntA', 'InitializeCriticalSectionAndSpinCount', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'GetFileTime', 'GetFileSizeEx', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'SetErrorMode', 'GetOEMCP', 'GetCPInfo', 'FileTimeToSystemTime', 'GetACP', 'GetFullPathNameA', 'GetVolumeInformationA', 'GetCurrentProcess', 'GetStringTypeW', 'QueryPerformanceCounter', 'ExitThread', 'SetHandleCount', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'MoveFileA', 'lstrcmpiA', 'GetThreadLocale', 'lstrcpyA', 'DeleteFileA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetModuleFileNameW', 'ReleaseActCtx', 'CreateActCtxW', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'GetVersionExA', 'LoadLibraryW', 'lstrcmpW', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'LocalFree', 'MulDiv', 'GlobalUnlock', 'GlobalFree', 'FindResourceA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'lstrlenA', 'GetModuleHandleA', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetModuleFileNameA', 'GetLocaleInfoA', 'CompareStringA', 'ActivateActCtx', 'GetLastError', 'DeactivateActCtx', 'SetLastError', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'WriteFile', 'SetFileTime', 'LocalFileTimeToFileTime', 'GetCurrentDirectoryA', 'SystemTimeToFileTime', 'ReadFile', 'CloseHandle', 'CreateFileA', 'SetFilePointer', 'MultiByteToWideChar', 'Sleep', 'LoadLibraryA', 'GetProcAddress', 'GetFileAttributesA', 'GetTickCount', 'GetEnvironmentVariableA', 'FindNextFileA', 'lstrlenW', 'CreateDirectoryA', 'FindFirstFileA', 'FindClose', 'WideCharToMultiByte', 'LoadResource', 'LockResource', 'SizeofResource', 'DefFrameProcA', 'PostThreadMessageA', 'CharUpperBuffA', 'CopyIcon', 'FrameRect', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'RegisterClipboardFormatA', 'CopyImage', 'GetIconInfo', 'HideCaret', 'InvertRect', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'LoadImageA', 'LoadAcceleratorsA', 'InsertMenuItemA', 'TranslateAcceleratorA', 'LockWindowUpdate', 'BringWindowToTop', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'MapVirtualKeyA', 'ToAsciiEx', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'SetClassLongPtrA', 'DestroyAcceleratorTable', 'SetParent', 'UnregisterClassA', 'GetMenuDefaultItem', 'SetMenuDefaultItem', 'CreatePopupMenu', 'IsMenu', 'MonitorFromPoint', 'UpdateLayeredWindow', 'EnableScrollBar', 'UnionRect', 'IsZoomed', 'GetAsyncKeyState', 'NotifyWinEvent', 'RedrawWindow', 'SetWindowRgn', 'LoadMenuW', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'IntersectRect', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'OffsetRect', 'CharNextA', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'GetSysColorBrush', 'LoadCursorW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'SetRectEmpty', 'KillTimer', 'SetTimer', 'RealChildWindowFromPoint', 'DeleteMenu', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'DefMDIChildProcA', 'CheckDlgButton', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassLongPtrA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetWindowLongPtrA', 'SetWindowLongPtrA', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'CopyRect', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'GetClassNameA', 'InvalidateRect', 'UpdateWindow', 'DrawStateA', 'GetMenuStringA', 'GetMenuItemID', 'InsertMenuA', 'GetMenuItemCount', 'GetSubMenu', 'RemoveMenu', 'GetSysColor', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ReleaseDC', 'GetDC', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'FillRect', 'UnhookWindowsHookEx', 'GetWindowRgn', 'DestroyCursor', 'SubtractRect', 'MapVirtualKeyExA', 'GetKeyNameTextA', 'IsCharLowerA', 'GetDoubleClickTime', 'GetUpdateRect', 'ScreenToClient', 'ClientToScreen', 'GetWindowRect', 'PtInRect', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'RegisterWindowMessageA', 'GetDesktopWindow', 'SetActiveWindow', 'IsClipboardFormatAvailable', 'CreateMenu', 'TranslateMDISysAccel', 'DrawMenuBar', 'CreateDialogIndirectParamA', 'DestroyWindow', 'IsWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageA', 'PostQuitMessage', 'wsprintfA', 'LoadIconW', 'EnableWindow', 'GetClientRect', 'IsIconic', 'GetSystemMenu', 'SendMessageA', 'AppendMenuA', 'DrawIcon', 'GetSystemMetrics', 'LoadCursorA', 'CreateCompatibleBitmap', 'CreateRectRgnIndirect', 'GetTextMetricsA', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'CreateRoundRectRgn', 'CreateDIBSection', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'PatBlt', 'DPtoLP', 'CreatePolygonRgn', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'OffsetRgn', 'SetDIBColorTable', 'StretchBlt', 'CreateDIBitmap', 'CreateFontIndirectA', 'EnumFontFamiliesExA', 'ExtFloodFill', 'SetPaletteEntries', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'GetTextFaceA', 'SetPixelV', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'SetPixel', 'GetTextExtentPoint32A', 'OffsetViewportOrgEx', 'CreateDCA', 'CopyMetaFileA', 'CreateHatchBrush', 'OffsetWindowOrgEx', 'CreateSolidBrush', 'CreatePen', 'GetDeviceCaps', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'CreateCompatibleDC', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'Rectangle', 'CreateBitmap', 'SetViewportOrgEx', 'SelectObject', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetPixel', 'BitBlt', 'GetWindowExtEx', 'GetViewportExtEx', 'GetObjectA', 'CreateRectRgn', 'SelectClipRgn', 'DeleteObject', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'SetBkColor', 'RestoreDC', 'SaveDC', 'SetWindowExtEx', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegEnumKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCloseKey', 'RegEnumValueA', 'DragQueryFileA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'SHGetDesktopFolder', 'SHBrowseForFolderA', 'SHAppBarMessage', 'ShellExecuteA', 'SHGetPathFromIDListA', 'DragFinish', 'SHGetFileInfoA', 'InitCommonControlsEx', 'ImageList_GetIconSize', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'DoDragDrop', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CreateStreamOnHGlobal', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CoInitializeEx', 'StgCreateDocfileOnILockBytes', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'RevokeDragDrop', 'CoLockObjectExternal', 'CLSIDFromString', 'CLSIDFromProgID', 'CoCreateGuid', 'RegisterDragDrop', 'OleGetClipboard', 'CoRegisterMessageFilter', 'CreateILockBytesOnHGlobal', 'CoRevokeClassObject', 'SysFreeString', 'VarBstrFromDate', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringByteLen', 'SysAllocStringLen', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipDrawImageI', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ChooseColorA', 'EndDoc', 'OleInitialize', 'LoadTypeLib', 'ShellExecuteA', 'GetDC', 'waveOutOpen', 'OpenPrinterA', 'inet_ntoa'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegCloseKey', 'ChooseColorA', 'SaveDC', 'GdipDeletePen', 'ImmGetContext', 'OleInitialize', 'LoadTypeLib', 'ShellExecuteA', 'PathFileExistsA', 'GetDC', 'PlaySoundA', 'OpenPrinterA', 'accept'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', '??1ios@@UAE@XZ', 'time', 'OleRun', 'GetErrorInfo', 'ShellExecuteA', 'SHDeleteKeyA', 'DrawIcon'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'WSACleanup', 'closesocket', 'getpeername', 'accept', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentProcess', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'RemoveDirectoryA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'InterlockedExchange', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'DeleteFileA', 'CopyFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'SetLocalTime', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetSystemTime', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'CreatePopupMenu', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetForegroundWindow', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'ChildWindowFromPointEx', 'UnregisterClassA', 'WindowFromPoint', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'RectVisible', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'TextOutA', 'ExtTextOutA', 'Escape', 'GetTextMetricsA', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'CreateRectRgnIndirect', 'SetStretchBltMode', 'LPtoDP', 'GetClipRgn', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'CoCreateInstance', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'RemoveDirectoryA', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'InterlockedExchange', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'ExpandEnvironmentStringsA', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'RtlUnwind', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBeep', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'CreateIconFromResourceEx', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'LPtoDP', 'SelectClipRgn', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegCreateKeyA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'InterlockedDecrement', 'CreateSemaphoreA', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'TerminateProcess', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'RaiseException', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'GetFileAttributesA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'InterlockedIncrement', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'GetClipboardData', 'PostMessageA', 'GetTopWindow', 'GetParent', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'CloseClipboard', 'wsprintfA', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'WaitForInputIdle', 'IsWindow', 'DestroyMenu', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'UnregisterClassA', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'CreateRectRgnIndirect', 'SetBkColor', 'CreatePen', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleUninitialize', 'CLSIDFromString', 'OleInitialize', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'recv', 'getpeername', 'accept', 'ioctlsocket', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA'], ['SendMessageA', 'IsWindow', 'TranslateMessage', 'CreateWindowExA', 'GetMessageA', 'wsprintfA', 'ShowWindow', 'SetPropA', 'GetPropA', 'SetWindowLongA', 'GetDC', 'UpdateLayeredWindow', 'ReleaseDC', 'CallWindowProcA', 'TrackMouseEvent', 'EnumChildWindows', 'EnableWindow', 'MessageBoxA', 'GetWindowRect', 'GetSystemMetrics', 'GetCursorPos', 'CloseClipboard', 'GetClipboardData', 'OpenClipboard', 'DispatchMessageA', 'PeekMessageA', 'HeapDestroy', 'GetEnvironmentStringsW', 'HeapCreate', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'GetVersionExA', 'GetEnvironmentVariableA', 'FreeEnvironmentStringsA', 'DeleteCriticalSection', 'GetCPInfo', 'RtlUnwind', 'GetVersion', 'GetCommandLineA', 'GetACP', 'GetOEMCP', 'TerminateProcess', 'GetCurrentProcess', 'GetCurrentThreadId', 'TlsSetValue', 'TlsAlloc', 'HeapReAlloc', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'IsBadWritePtr', 'VirtualAlloc', 'RaiseException', 'GetStringTypeA', 'GetStringTypeW', 'TlsFree', 'InterlockedDecrement', 'InterlockedIncrement', 'SetFilePointer', 'SetUnhandledExceptionFilter', 'IsBadCodePtr', 'LCMapStringW', 'SetStdHandle', 'FlushFileBuffers', 'LCMapStringA', 'FreeLibrary', 'Sleep', 'GetLocalTime', 'WriteFile', 'GetTempPathA', 'GetTickCount', 'CreateFileA', 'GetFileSize', 'ReadFile', 'CloseHandle', 'GetModuleFileNameA', 'IsBadReadPtr', 'HeapFree', 'VirtualFree', 'HeapAlloc', 'ExitProcess', 'GetProcessHeap', 'LocalAlloc', 'WideCharToMultiByte', 'lstrlenW', 'MultiByteToWideChar', 'MapViewOfFile', 'CreateFileMappingA', 'GetProcAddress', 'LoadLibraryA', 'LocalSize', 'GlobalUnlock', 'GetModuleHandleA', 'RtlMoveMemory', 'GlobalFree', 'GlobalLock', 'GlobalAlloc', 'SetLastError', 'TlsGetValue', 'GetLastError', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'CreateStreamOnHGlobal', 'CLSIDFromString', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'GdipGetRegionBounds', 'GdipDeletePen', 'GdipSetTextRenderingHint', 'GdipDeleteBrush', 'GdipCreateSolidFill', 'GdipDrawRectangleI', 'GdiplusStartup', 'GdipGetImageGraphicsContext', 'GdipCreateBitmapFromScan0', 'GdipCreateFromHDC', 'GdipDisposeImage', 'GdipLoadImageFromStream', 'GdipLoadImageFromFile', 'GdipSetSmoothingMode', 'GdipGetImageWidth', 'GdipSetSolidFillColor', 'GdipGetImageHeight', 'CreateDIBSection', 'CreateCompatibleDC', 'SelectObject', 'DeleteObject', 'ImmGetCompositionStringW', 'ImmGetContext', 'ImmReleaseContext', 'ImmSetCompositionWindow', 'ShellExecuteA', 'SHAppBarMessage', 'PathFileExistsA', 'PlaySoundA', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'midiStreamProperty', 'WSACleanup', 'inet_ntoa', 'recv', 'getpeername', 'accept', 'closesocket', 'WSAAsyncSelect', 'recvfrom', 'ioctlsocket', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'HeapCreate', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'CloseHandle', 'WaitForSingleObject', 'CreateProcessA', 'GetTickCount', 'GetCommandLineA', 'MulDiv', 'GetProcAddress', 'GetModuleHandleA', 'GetVolumeInformationA', 'SetCurrentDirectoryA', 'DeleteFileA', 'GetFileAttributesA', 'SetFileAttributesA', 'FindClose', 'FindFirstFileA', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'Sleep', 'CreateEventA', 'CreateThread', 'WritePrivateProfileStringA', 'GetVersionExA', 'GetLastError', 'LoadLibraryA', 'FreeLibrary', 'GetFullPathNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'HeapAlloc', 'GetProcessHeap', 'HeapReAlloc', 'HeapFree', 'GlobalReAlloc', 'FindNextFileA', 'lstrcpyA', 'WinExec', 'lstrlenA', 'lstrcatA', 'InitializeCriticalSection', 'DeleteCriticalSection', 'GlobalFree', 'GlobalSize', 'ExitProcess', 'GetCurrentThreadId', 'GetModuleFileNameA', 'ReadFile', 'LockResource', 'LoadResource', 'FindResourceA', 'SetEvent', 'CreateFileA', 'WaitForMultipleObjects', 'WriteFile', 'GetProfileStringA', 'LeaveCriticalSection', 'EnterCriticalSection', 'ReleaseSemaphore', 'ResumeThread', 'CreateSemaphoreA', 'Process32Next', 'Process32First', 'CreateToolhelp32Snapshot', 'SetFilePointer', 'GetFileSize', 'GetCurrentProcess', 'TerminateProcess', 'OpenProcess', 'GetSystemDirectoryA', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'TerminateThread', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'InterlockedExchange', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'InterlockedIncrement', 'InterlockedDecrement', 'LocalFree', 'UnregisterClassA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'ShowCursor', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'GetClassNameA', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'CreateIconFromResourceEx', 'SetScrollRange', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'GetDesktopWindow', 'VkKeyScanExA', 'GetKeyboardLayout', 'IsChild', 'LoadIconA', 'TranslateMessage', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'LoadStringA', 'GetSysColorBrush', 'GetWindowTextLengthA', 'RegisterClipboardFormatA', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'WaitForInputIdle', 'keybd_event', 'LineTo', 'MoveToEx', 'Escape', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'ExtSelectClipRgn', 'CreateCompatibleDC', 'BitBlt', 'StartPage', 'StartDocA', 'DeleteDC', 'EndDoc', 'GetTextMetricsA', 'GetViewportExtEx', 'PtVisible', 'RectVisible', 'TextOutA', 'OffsetViewportOrgEx', 'ExtTextOutA', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'ExcludeClipRect', 'GetDeviceCaps', 'EndPage', 'CreateFontIndirectA', 'GetStockObject', 'CreateSolidBrush', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'SetBkColor', 'CreateRectRgnIndirect', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'SetStretchBltMode', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'GetTextExtentPoint32A', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'Shell_NotifyIconA', 'ShellExecuteA', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'GetSaveFileNameA', 'GetOpenFileNameA', 'ChooseColorA', 'GetFileTitleA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutGetNumDevs', 'waveOutClose', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'WideCharToMultiByte', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'InterlockedExchange', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'GetACP', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'RtlUnwind', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'PeekMessageA', 'SetMenu', 'GetMenu', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'CreateMenu', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'WinHelpA', 'UnregisterClassA', 'CreateIconFromResourceEx', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'RealizePalette', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'CreatePolygonRgn', 'GetClipRgn', 'SetStretchBltMode', 'LPtoDP', 'SelectClipRgn', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetOpenFileNameA', 'GetSaveFileNameA', 'GetFileTitleA'], ['RegCloseKey', 'ChooseColorA', 'LineTo', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'OleInitialize', 'UnRegisterTypeLib', 'ShellExecuteA', 'GetDC', 'waveOutOpen', 'OpenPrinterA', 'getpeername'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'midiStreamOut', 'WSAAsyncSelect', 'GetMenu', 'GetViewportExtEx', 'OpenPrinterA', 'RegOpenKeyExA', 'ShellExecuteA', 'CLSIDFromString', 'LoadTypeLib', 'ChooseColorA'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'RegOpenKeyA', 'ChooseColorA', 'PatBlt', 'OleInitialize', 'UnRegisterTypeLib', 'ShellExecuteA', 'GetDC', 'waveOutOpen', 'OpenPrinterA', 'getpeername'], ['acmDriverDetailsW', 'LZCopy', 'LZOpenFileW', 'RealizePalette', 'CreatePrivateObjectSecurityWithMultipleInheritance', 'RegSaveKeyW', 'JetTerm2', 'GrayStringW', 'GetPropA', 'SetupDiEnumDeviceInfo', 'WaitForSingleObjectEx', 'Process32FirstW', 'GetUserDefaultLangID', 'GetModuleFileNameA', 'GetBinaryTypeA', 'GetModuleFileNameW', 'LoadLibraryW', 'GetProcessHeap', 'select', 'ImmGetCandidateListW'], ['LoadLibraryA', 'GetProcAddress', 'GetWindowLongW'], ['SizeofResource', 'CryptCreateHash', 'GetSystemMetrics', 'ShellExecuteExW', 'CoInitializeEx', 'CryptDecodeObjectEx', 'connect', 'BCryptGenRandom', 'SysFreeString', 'ZwUnmapViewOfSection', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'GetModuleHandleA', 'LoadLibraryA', 'GetProcAddress'], ['free', '_amsg_exit', '_XcptFilter', '_wmakepath_s', '_wsplitpath_s', '_wtoi', 'wcsncpy_s', '_ultow_s', 'wcspbrk', '__C_specific_handler', '_wcsicmp', '_purecall', 'malloc', 'memcpy', 'memcmp', '?terminate@@YAXXZ', '??1type_info@@UEAA@XZ', '_lock', '_unlock', '__dllonexit', '_onexit', 'memmove', '_initterm', '__CxxFrameHandler3', 'memset', 'MpHeapFree', '?CreateHolder@@YAJPEAUIGPDispenser@@HIPEAPEAUIGPHolder@@@Z', 'FXMemDetach', 'MPCSUninitialize', 'FXMemAttach', 'MpGetHeapHandle', 'MPCSInitialize', 'mpRealloc', 'mpMalloc', 'MPInitializeCriticalSection', 'mpCalloc', 'MPDeleteCriticalSection', 'UMSEnterCSWraper', 'MPInitializeCriticalSectionAndSpinCount', 'MpHeapAlloc', 'mpFree', 'RegisterTraceGuidsW', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegGetValueW', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyA', 'UnregisterTraceGuids', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'Sleep', 'GetStringTypeW', 'HeapCreate', 'HeapFree', 'DebugBreak', 'HeapReAlloc', 'HeapAlloc', 'HeapDestroy', 'EnterCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSection', 'UnhandledExceptionFilter', 'GetDriveTypeW', 'SearchPathW', 'GetFullPathNameW', 'GetSystemDirectoryW', 'GetCurrentProcessId', 'GetProcAddress', 'FreeLibrary', 'VirtualQuery', 'LoadLibraryExW', 'GetModuleFileNameW', 'DisableThreadLibraryCalls', 'MultiByteToWideChar', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'GetTickCount', 'OutputDebugStringW', 'InterlockedPushEntrySList', 'LeaveCriticalSection', 'ExitProcess', 'VirtualFree', 'InitializeSListHead', 'VirtualAlloc', 'GetSystemInfo', 'QueryDepthSList', 'InterlockedPopEntrySList', 'CoGetMalloc', 'VariantClear', 'SysFreeString', 'VariantChangeType', 'SysAllocString', 'VariantInit', 'VariantCopy', 'LoadStringW'], ['GetDateFormatW', 'FindResourceA', 'EnumDateFormatsExW', 'FindResourceW', 'EnumCalendarInfoW', '_lwrite', 'ScrollConsoleScreenBufferW', 'AddConsoleAliasW', 'GetComputerNameW', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'SetFileShortNameW', 'LoadLibraryW', 'FreeConsole', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'ReadFile', 'GetCompressedFileSizeA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'InterlockedExchange', 'GetProfileIntA', 'OpenMutexW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'SetCurrentDirectoryW', 'GetOEMCP', 'lstrcmpiW', 'GetModuleHandleA', 'SetLocaleInfoW', 'CreateMutexA', 'FatalAppExitA', 'SetProcessShutdownParameters', '_lopen', 'OpenSemaphoreW', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'DeleteFileW', 'GlobalAddAtomW', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'DdeQueryStringW', 'CharUpperBuffA', 'LoadMenuW', 'CharLowerBuffW'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'VirtualAlloc', 'VirtualFree', 'ExitProcess', 'midiStreamOut', 'WSACleanup', 'GetMenu', 'ExtSelectClipRgn', 'OpenPrinterA', 'RegOpenKeyExA', 'ShellExecuteA', 'CLSIDFromString', 'LoadTypeLib', 'ChooseColorA'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetKeyboardType', 'LoadStringW', 'MessageBoxA', 'CharNextW', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetSystemInfo', 'GetTickCount', 'QueryPerformanceCounter', 'GetVersion', 'GetCurrentThreadId', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenW', 'lstrcpynW', 'LoadLibraryExW', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleW', 'GetModuleFileNameW', 'GetLocaleInfoW', 'GetLastError', 'GetCommandLineW', 'FreeLibrary', 'FindFirstFileW', 'FindClose', 'ExitProcess', 'ExitThread', 'CreateThread', 'CompareStringW', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileW', 'CloseHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleW', 'CreateWindowExA', 'CreateWindowExW', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnregisterClassW', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoW', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCaret', 'SetWindowRgn', 'SetWindowsHookExW', 'SetWindowTextA', 'SetWindowTextW', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetWindowLongW', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropW', 'SetParent', 'SetMenuItemInfoW', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClipboardData', 'SetClassLongW', 'SetCapture', 'SetActiveWindow', 'SendMessageTimeoutA', 'SendMessageA', 'SendMessageW', 'ScrollWindow', 'ScreenToClient', 'RemovePropW', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageW', 'RegisterClipboardFormatW', 'RegisterClassA', 'RegisterClassW', 'RedrawWindow', 'PostThreadMessageA', 'PostThreadMessageW', 'PostQuitMessage', 'PostMessageA', 'PostMessageW', 'PeekMessageA', 'PeekMessageW', 'OpenClipboard', 'OffsetRect', 'MsgWaitForMultipleObjectsEx', 'MsgWaitForMultipleObjects', 'MessageBoxA', 'MessageBoxW', 'MessageBeep', 'MapWindowPoints', 'MapVirtualKeyW', 'LoadStringW', 'LoadKeyboardLayoutW', 'LoadImageA', 'LoadImageW', 'LoadIconW', 'LoadCursorW', 'LoadBitmapW', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsIconic', 'IsDialogMessageA', 'IsDialogMessageW', 'IsClipboardFormatAvailable', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemW', 'InsertMenuW', 'InflateRect', 'HideCaret', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowTextW', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowLongW', 'GetWindowDC', 'GetUpdateRect', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetScrollBarInfo', 'GetPropW', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMessageA', 'GetMessageW', 'GetMenuStringW', 'GetMenuState', 'GetMenuItemInfoW', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameW', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextW', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassNameW', 'GetClassLongW', 'GetClassInfoW', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowExW', 'FindWindowA', 'FindWindowW', 'FillRect', 'EnumWindows', 'EnumThreadWindows', 'EnumClipboardFormats', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'EmptyClipboard', 'DrawTextExW', 'DrawTextA', 'DrawTextW', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DispatchMessageW', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefWindowProcW', 'DefMDIChildProcW', 'DefFrameProcW', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'CloseClipboard', 'ClientToScreen', 'ChildWindowFromPoint', 'CheckMenuItem', 'CharUpperBuffW', 'CharToOemW', 'CharNextW', 'CharLowerBuffW', 'CharLowerW', 'CallWindowProcA', 'CallWindowProcW', 'CallNextHookEx', 'BringWindowToTop', 'BeginPaint', 'AttachThreadInput', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'TransparentBlt', 'AlphaBlend', 'UnrealizeObject', 'TextOutA', 'TextOutW', 'StretchDIBits', 'StretchBlt', 'StartPage', 'StartDocA', 'StartDocW', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetMapMode', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SetAbortProc', 'SelectPalette', 'SelectObject', 'SelectClipRgn', 'SaveDC', 'RestoreDC', 'ResizePalette', 'Rectangle', 'RectVisible', 'RealizePalette', 'Polyline', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetViewportOrgEx', 'GetTextMetricsW', 'GetTextFaceA', 'GetTextExtentPointW', 'GetTextExtentPoint32A', 'GetTextExtentPoint32W', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectType', 'GetObjectW', 'GetNearestPaletteIndex', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetCurrentObject', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'FrameRgn', 'ExtTextOutW', 'ExcludeClipRect', 'EndPage', 'EndDoc', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreateRoundRectRgn', 'CreateRectRgnIndirect', 'CreateRectRgn', 'CreatePenIndirect', 'CreatePen', 'CreatePalette', 'CreateICW', 'CreateHalftonePalette', 'CreateFontIndirectW', 'CreateFontA', 'CreateFontW', 'CreateDIBitmap', 'CreateDIBSection', 'CreateDCW', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileW', 'CombineRgn', 'BitBlt', 'VerQueryValueA', 'VerQueryValueW', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoSizeW', 'GetFileVersionInfoA', 'GetFileVersionInfoW', 'lstrlenW', 'lstrcpyW', 'lstrcmpiW', 'lstrcmpA', 'lstrcmpW', 'WriteProcessMemory', 'WritePrivateProfileStringW', 'WriteFile', 'WinExec', 'WideCharToMultiByte', 'WaitForSingleObject', 'WaitForMultipleObjectsEx', 'WaitForMultipleObjects', 'VirtualQueryEx', 'VirtualQuery', 'VirtualProtect', 'VirtualFree', 'VirtualAlloc', 'UnmapViewOfFile', 'TerminateThread', 'TerminateProcess', 'SystemTimeToFileTime', 'SwitchToThread', 'SuspendThread', 'Sleep', 'SizeofResource', 'SignalObjectAndWait', 'SetWaitableTimer', 'SetUnhandledExceptionFilter', 'SetThreadPriority', 'SetThreadLocale', 'SetLastError', 'SetFilePointer', 'SetFileAttributesA', 'SetFileAttributesW', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResumeThread', 'ResetEvent', 'RemoveDirectoryA', 'RemoveDirectoryW', 'ReleaseMutex', 'ReadProcessMemory', 'ReadFile', 'RaiseException', 'QueryPerformanceFrequency', 'QueryPerformanceCounter', 'QueryDosDeviceW', 'OutputDebugStringW', 'OpenProcess', 'OpenFileMappingA', 'OpenFileMappingW', 'MultiByteToWideChar', 'MulDiv', 'MoveFileExW', 'MoveFileW', 'MapViewOfFile', 'LockResource', 'LocalSize', 'LocalFree', 'LocalAlloc', 'LoadResource', 'LoadLibraryExA', 'LoadLibraryA', 'LoadLibraryW', 'LeaveCriticalSection', 'IsValidLocale', 'IsBadReadPtr', 'InitializeCriticalSection', 'HeapFree', 'HeapDestroy', 'HeapCreate', 'HeapAlloc', 'GlobalUnlock', 'GlobalMemoryStatus', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomW', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomW', 'GetWindowsDirectoryA', 'GetWindowsDirectoryW', 'GetVersionExA', 'GetVersionExW', 'GetVersion', 'GetTickCount', 'GetThreadPriority', 'GetThreadLocale', 'GetThreadContext', 'GetTempPathA', 'GetTempPathW', 'GetSystemTime', 'GetSystemInfo', 'GetSystemDirectoryW', 'GetSystemDefaultLangID', 'GetStdHandle', 'GetShortPathNameW', 'GetProfileStringW', 'GetProcAddress', 'GetPrivateProfileStringW', 'GetPriorityClass', 'GetModuleHandleA', 'GetModuleHandleW', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetLogicalDriveStringsW', 'GetLocaleInfoA', 'GetLocaleInfoW', 'GetLocalTime', 'GetLastError', 'GetFullPathNameW', 'GetFileTime', 'GetFileSize', 'GetFileAttributesExW', 'GetFileAttributesA', 'GetFileAttributesW', 'GetExitCodeThread', 'GetEnvironmentVariableW', 'GetDiskFreeSpaceA', 'GetDiskFreeSpaceW', 'GetDateFormatW', 'GetCurrentThreadId', 'GetCurrentThread', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCurrentDirectoryA', 'GetCurrentDirectoryW', 'GetComputerNameA', 'GetComputerNameW', 'GetCommandLineA', 'GetCommandLineW', 'GetCPInfo', 'FreeResource', 'InterlockedIncrement', 'InterlockedExchangeAdd', 'InterlockedExchange', 'InterlockedDecrement', 'InterlockedCompareExchange', 'FreeLibrary', 'FormatMessageA', 'FormatMessageW', 'FlushInstructionCache', 'FindResourceA', 'FindResourceW', 'FindNextFileA', 'FindNextFileW', 'FindFirstFileA', 'FindFirstFileW', 'FindClose', 'FileTimeToSystemTime', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExpandEnvironmentStringsA', 'ExpandEnvironmentStringsW', 'ExitThread', 'ExitProcess', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DuplicateHandle', 'DeleteFileA', 'DeleteFileW', 'DeleteCriticalSection', 'CreateWaitableTimerW', 'CreateThread', 'CreateProcessA', 'CreateProcessW', 'CreatePipe', 'CreateMutexA', 'CreateMutexW', 'CreateFileMappingA', 'CreateFileMappingW', 'CreateFileA', 'CreateFileW', 'CreateEventA', 'CreateEventW', 'CreateDirectoryA', 'CreateDirectoryW', 'CopyFileA', 'CopyFileW', 'CompareStringA', 'CompareStringW', 'CloseHandle', 'Beep', 'SetSecurityDescriptorDacl', 'ReportEventW', 'RegisterEventSourceW', 'RegSetValueExA', 'RegSetValueExW', 'RegQueryValueExA', 'RegQueryValueExW', 'RegQueryInfoKeyA', 'RegQueryInfoKeyW', 'RegOpenKeyExA', 'RegOpenKeyExW', 'RegFlushKey', 'RegEnumKeyA', 'RegEnumKeyExW', 'RegDeleteValueA', 'RegDeleteValueW', 'RegDeleteKeyW', 'RegCreateKeyExA', 'RegCreateKeyExW', 'RegCloseKey', 'OpenProcessToken', 'LookupPrivilegeValueW', 'LookupAccountSidW', 'InitializeSecurityDescriptor', 'GetUserNameA', 'GetUserNameW', 'GetTokenInformation', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'FreeSid', 'DuplicateTokenEx', 'DeregisterEventSource', 'CreateProcessAsUserW', 'AllocateAndInitializeSid', 'AdjustTokenPrivileges', 'WSACleanup', 'WSAStartup', 'WSAGetLastError', 'gethostbyname', 'socket', 'setsockopt', 'sendto', 'send', 'select', 'recvfrom', 'recv', 'ioctlsocket', 'inet_addr', 'htons', 'connect', 'closesocket', 'bind', 'ShellExecuteExA', 'ShellExecuteA', 'ShellExecuteW', 'SHFileOperationW', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'InternetQueryOptionW', 'InitializeFlatSB', 'FlatSB_SetScrollProp', 'FlatSB_SetScrollPos', 'FlatSB_SetScrollInfo', 'FlatSB_GetScrollPos', 'FlatSB_GetScrollInfo', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'InitCommonControls', 'SHGetSpecialFolderPathW', 'PrintDlgW', 'GetSaveFileNameA', 'GetSaveFileNameW', 'RtlUnwind', 'SHGetPathFromIDListA', 'SHGetSpecialFolderLocation', 'SHGetMalloc', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'StartServiceW', 'StartServiceCtrlDispatcherW', 'SetServiceStatus', 'RegisterServiceCtrlHandlerW', 'QueryServiceConfigW', 'OpenServiceW', 'OpenSCManagerW', 'DeleteService', 'CreateServiceW', 'CloseServiceHandle', 'ChangeServiceConfigW', 'OpenPrinterW', 'EnumPrintersW', 'DocumentPropertiesW', 'ClosePrinter', 'ProcessIdToSessionId', 'DestroyEnvironmentBlock', 'CreateEnvironmentBlock', 'WTSFreeMemory', 'WTSQuerySessionInformationW', 'GetLongPathNameW'], ['OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'RegQueryValueExW', 'RegCloseKey', 'GetTokenInformation', 'OpenThreadToken', 'RevertToSelf', 'ImpersonateLoggedOnUser', 'RegEnumKeyExW', 'RegEnumValueW', 'EventWrite', 'EventRegister', 'EventEnabled', 'BCryptDestroyHash', 'BCryptCloseAlgorithmProvider', 'BCryptOpenAlgorithmProvider', 'BCryptHashData', 'BCryptGetProperty', 'BCryptFinishHash', 'BCryptCreateHash', 'BCryptDestroyKey', 'BCryptExportKey', 'BCryptGenRandom', 'CryptUnprotectMemory', 'CryptProtectMemory', 'CertFreeCertificateChainEngine', 'CertCloseStore', 'PFXImportCertStore', 'PFXExportCertStore', 'CryptFindOIDInfo', 'CryptQueryObject', 'CryptMsgGetParam', 'CryptMsgClose', 'CryptImportPublicKeyInfoEx2', 'CertVerifyCertificateChainPolicy', 'CertFreeCertificateContext', 'CertEnumCertificatesInStore', 'CertAddCertificateContextToStore', 'CertAddCertificateLinkToStore', 'CertControlStore', 'CertCreateCertificateChainEngine', 'CertDuplicateCertificateContext', 'CertFindCertificateInStore', 'CertFindExtension', 'CertFreeCertificateChain', 'CertGetCertificateChain', 'CertGetCertificateContextProperty', 'CertGetIntendedKeyUsage', 'CertGetNameStringW', 'CertGetValidUsages', 'CertNameToStrW', 'CertOpenStore', 'CertSaveStore', 'CertSerializeCertificateStoreElement', 'CertSetCertificateContextProperty', 'CertVerifyTimeValidity', 'CryptDecodeObject', 'CryptFormatObject', 'GetNetworkParams', 'if_nametoindex', 'GetPerAdapterInfo', 'GetAdaptersAddresses', 'EncodePointer', 'TlsAlloc', 'RaiseException', 'TlsSetValue', 'TlsFree', 'RtlPcToFileHeader', 'RtlUnwindEx', 'TlsGetValue', 'SetLastError', 'LoadLibraryExW', 'GetLastError', 'QueryPerformanceCounter', 'GetTickCount64', 'FormatMessageW', 'CloseHandle', 'GetExitCodeProcess', 'CreateProcessW', 'OpenProcess', 'K32EnumProcesses', 'GetProcessId', 'DuplicateHandle', 'CreatePipe', 'GetCPInfoExW', 'GetCurrentProcess', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetStdHandle', 'GetConsoleCP', 'GetConsoleOutputCP', 'GetProcAddress', 'LoadLibraryW', 'CancelIoEx', 'GetConsoleMode', 'GetFileType', 'ReadFile', 'ReadConsoleW', 'WriteFile', 'WriteConsoleW', 'GetCurrentThread', 'LocalFree', 'CloseThreadpoolIo', 'ExitProcess', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'GetSystemTime', 'GetCalendarInfoEx', 'CompareStringOrdinal', 'CompareStringEx', 'FindNLSStringEx', 'GetLocaleInfoEx', 'ResolveLocaleName', 'GetUserPreferredUILanguages', 'FindStringOrdinal', 'GetCurrentProcessorNumber', 'WaitForSingleObject', 'Sleep', 'CreateThreadpoolWork', 'CloseThreadpoolWork', 'SubmitThreadpoolWork', 'CreateThreadpoolTimer', 'SetThreadpoolTimer', 'CreateThreadpoolWait', 'SetThreadpoolWait', 'WaitForThreadpoolWaitCallbacks', 'CloseThreadpoolWait', 'InitializeCriticalSection', 'InitializeConditionVariable', 'DeleteCriticalSection', 'EnterCriticalSection', 'SleepConditionVariableCS', 'LeaveCriticalSection', 'WakeConditionVariable', 'WaitForMultipleObjectsEx', 'QueryPerformanceFrequency', 'GetFullPathNameW', 'GetLongPathNameW', 'GetCPInfo', 'LocalAlloc', 'RaiseFailFastException', 'CreateThreadpoolIo', 'StartThreadpoolIo', 'CancelThreadpoolIo', 'LocaleNameToLCID', 'LCMapStringEx', 'EnumTimeFormatsEx', 'EnumCalendarInfoExEx', 'CreateFileW', 'DeleteFileW', 'DeviceIoControl', 'ExpandEnvironmentStringsW', 'FindClose', 'FindFirstFileExW', 'FlushFileBuffers', 'FreeLibrary', 'GetCurrentDirectoryW', 'GetFileAttributesExW', 'GetFileInformationByHandleEx', 'GetOverlappedResult', 'GetSystemDirectoryW', 'GetTempFileNameW', 'QueryUnbiasedInterruptTime', 'SetFileInformationByHandle', 'SetFilePointerEx', 'SetThreadErrorMode', 'GetDynamicTimeZoneInformation', 'GetTimeZoneInformation', 'SetEvent', 'ResetEvent', 'CreateEventExW', 'GetEnvironmentVariableW', 'CreateThread', 'ResumeThread', 'GetThreadPriority', 'SetThreadPriority', 'FlushProcessWriteBuffers', 'GetCurrentThreadId', 'WaitForSingleObjectEx', 'VirtualQuery', 'RtlRestoreContext', 'AddVectoredExceptionHandler', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'CreateEventW', 'TerminateProcess', 'SwitchToThread', 'SuspendThread', 'GetThreadContext', 'SetThreadContext', 'FlushInstructionCache', 'VirtualAlloc', 'VirtualProtect', 'VirtualFree', 'QueryInformationJobObject', 'GetModuleHandleW', 'GetModuleHandleExW', 'GetProcessAffinityMask', 'InitializeContext', 'GetEnabledXStateFeatures', 'SetXStateFeaturesMask', 'GetSystemTimeAsFileTime', 'InitializeCriticalSectionEx', 'DebugBreak', 'SleepEx', 'GlobalMemoryStatusEx', 'GetSystemInfo', 'GetTickCount', 'GetLogicalProcessorInformation', 'GetLogicalProcessorInformationEx', 'GetLargePageMinimum', 'VirtualUnlock', 'GetWriteWatch', 'ResetWriteWatch', 'VirtualAllocExNuma', 'IsProcessInJob', 'GetNumaHighestNodeNumber', 'GetProcessGroupAffinity', 'K32GetProcessMemoryInfo', 'IsDebuggerPresent', 'InitializeSListHead', 'GetCurrentProcessId', 'IsProcessorFeaturePresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'InitializeCriticalSectionAndSpinCount', 'NCryptSetProperty', 'NCryptGetProperty', 'NCryptOpenStorageProvider', 'NCryptImportKey', 'NCryptOpenKey', 'NCryptFreeObject', 'NCryptDeleteKey', 'CoCreateGuid', 'CoGetApartmentType', 'CoTaskMemAlloc', 'CoWaitForMultipleHandles', 'CoTaskMemFree', 'CoUninitialize', 'CoGetObjectContext', 'CoInitializeEx', 'VariantClear', 'SysAllocStringLen', 'SysFreeString', 'GetUserNameExW', 'LoadStringW', 'WSARecv', 'WSASend', 'WSAEventSelect', 'shutdown', 'WSAConnect', 'recv', 'WSAIoctl', 'closesocket', 'GetNameInfoW', 'GetAddrInfoW', 'FreeAddrInfoW', 'WSASocketW', 'GetAddrInfoExW', 'WSAStartup', 'WSACleanup', 'FreeAddrInfoExW', 'accept', 'bind', 'getpeername', 'getsockname', 'getsockopt', 'ioctlsocket', 'listen', 'setsockopt', 'select', 'send', 'WSAGetOverlappedResult', '_set_new_mode', 'malloc', 'free', 'calloc', '_callnewh', 'cos', 'floor', 'pow', 'sin', 'ceil', 'modf', '__setusermatherr', 'log2', 'tan', 'strcpy_s', '_stricmp', 'strncpy_s', '_wcsicmp', 'strcmp', 'wcsncmp', '_set_app_type', '_configure_wide_argv', '_initialize_wide_environment', '_get_initial_wide_environment', 'exit', '_initialize_onexit_table', 'abort', '_register_onexit_function', '_initterm', '_initterm_e', '_crt_atexit', '_register_thread_local_exe_atexit_callback', '_c_exit', '_cexit', '__p___wargv', '__p___argc', 'terminate', '_exit', '_seh_filter_exe', '__p__commode', '__stdio_common_vsscanf', '__stdio_common_vsprintf_s', '__stdio_common_vfprintf', '__acrt_iob_func', '_set_fmode', '_configthreadlocale'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetUserNameA', 'lstrcpyA', 'WriteFile', 'WinExec', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetTempPathA', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetFileSize', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteFileA', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'WidenPath', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteUse', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharUpperBuffA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'IsEqualGUID', 'CoTaskMemFree', 'StringFromCLSID', 'CoCreateGuid', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayPutElement', 'SafeArrayGetElement', 'SafeArrayUnaccessData', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopyInd', 'VariantCopy', 'VariantClear', 'VariantInit', 'CoCreateInstance', 'CoUninitialize', 'CoInitialize', 'CreateErrorInfo', 'GetErrorInfo', 'SetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteExW', 'DdeCmpStringHandles', 'DdeFreeStringHandle', 'DdeQueryStringA', 'DdeCreateStringHandleA', 'DdeGetLastError', 'DdeFreeDataHandle', 'DdeUnaccessData', 'DdeAccessData', 'DdeCreateDataHandle', 'DdeClientTransaction', 'DdeNameService', 'DdePostAdvise', 'DdeSetUserHandle', 'DdeQueryConvInfo', 'DdeDisconnect', 'DdeConnect', 'DdeUninitialize', 'DdeInitializeA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'CreateWindowExA', 'SafeArrayPtrOfIndex', 'OleUninitialize', 'GetErrorInfo', 'UninitializeFlatSB', 'SHGetFileInfoA', 'SHGetSpecialFolderLocation', 'GradientFill', 'VariantChangeTypeEx', 'RaiseException'], ['SetFileCompletionNotificationModes', 'SafeArrayUnaccessData', 'CertVerifyCertificateChainPolicy', 'SetClipboardData', 'RegQueryValueExW', 'BCryptOpenAlgorithmProvider', 'getaddrinfo', 'NtCreateFile', 'EncryptMessage', 'DeleteDC', 'CoSetProxyBlanket', '__current_exception_context', 'strcmp', 'free', '_rotl64', '_localtime64_s', '_dclass', '_register_thread_local_exe_atexit_callback', '__p__commode', '_configthreadlocale', 'GetSystemTimeAsFileTime', 'HeapAlloc', 'HeapFree', 'ExitProcess', 'LoadLibraryA', 'GetModuleHandleA', 'GetProcAddress'], ['GlobalAlloc', 'ExitProcess', 'CloseHandle', 'GetFileSize', 'ReadFile', 'GlobalFree', 'CreateFileA', 'WriteFile', 'GetModuleFileNameA', 'SetFilePointer', 'CreateFontA', 'GetDlgItem', 'EndDialog', 'InvalidateRect', 'DialogBoxParamA', 'SetTimer', 'SetDlgItemTextA', 'SendMessageA', 'MessageBoxA', 'KillTimer'], ['SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'GetKeyboardType', 'DestroyWindow', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'GetACP', 'Sleep', 'VirtualFree', 'VirtualAlloc', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'CompareStringA', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'CreateWindowExA', 'WindowFromPoint', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongW', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageW', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageW', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowUnicode', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageW', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongW', 'GetWindowLongA', 'GetWindowInfo', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessagePos', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutNameA', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassLongA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EnumChildWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageW', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetRgnBox', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'BitBlt', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryExA', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegFlushKey', 'RegCloseKey', 'GetErrorInfo', 'SysFreeString', 'CoUninitialize', 'CoInitialize', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', '_TrackMouseEvent', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_DragShowNolock', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'GetProcAddress', 'ZwWriteVirtualMemory', 'AutodialHookCallback', 'NtQueryInformationFile', 'NtOpenFile', 'NtClose', 'NtReadFile', 'RtlDosPathNameToNtPathName_U'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegQueryValueExA', 'VerQueryValueA', 'UnrealizeObject', 'CreateWindowExW', 'SafeArrayPtrOfIndex', 'CreateStreamOnHGlobal', 'GetErrorInfo', 'ImageList_SetIconSize', 'OpenPrinterA', 'SHGetSpecialFolderLocation', 'ChooseColorA', 'VariantChangeTypeEx', 'RaiseException'], ['InterlockedIncrement', 'OpenSemaphoreA', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetConsoleAliasExesW', 'WaitNamedPipeW', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetPrivateProfileStructW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'SetConsoleCursorPosition', 'TerminateProcess', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'GetShortPathNameA', 'GetNamedPipeHandleStateW', 'GetPrivateProfileIntW', 'GetLastError', 'SetLastError', 'GetConsoleAliasExesLengthA', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'RemoveDirectoryA', 'SetStdHandle', 'EnterCriticalSection', 'OpenWaitableTimerW', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'GetProfileStringA', 'FoldStringA', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'CreateMailslotA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'PeekConsoleInputA', 'SetCalendarInfoA', 'ReadConsoleInputW', 'FindFirstVolumeW', 'GetConsoleProcessList', 'CloseHandle', 'CreateFileW', 'ReadFile', '_llseek', 'GetFileSize', 'AllocConsole', 'GetPrivateProfileSectionNamesW', 'ReadConsoleOutputCharacterA', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MoveFileA', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'DeleteFileA', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['CompareFileTime', 'VirtualProtect', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'GetTimeZoneInformation', 'EnumSystemCodePagesW', 'CloseHandle', 'WriteConsoleW', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'LCMapStringEx', 'HeapSize', 'LoadLibraryW', 'OutputDebugStringW', 'GetStringTypeW', 'HeapReAlloc', 'HeapAlloc', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'WriteFile', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'Sleep', 'GetModuleHandleW', 'TerminateProcess', 'GetCurrentProcess', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'FlsAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount64', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'HeapFree', 'GetCommandLineA', 'GetCurrentThreadId', 'GetLastError', 'SetLastError', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'InitOnceExecuteOnce', 'GetStartupInfoW', 'GetModuleFileNameA', 'CreateFileW', 'URLOpenBlockingStreamW', 'CreateURLMoniker', 'RegisterMediaTypeClass', 'IsAsyncMoniker', 'URLOpenStreamA', 'CopyBindInfo', 'ReleaseBindInfo', 'BindAsyncMoniker', 'RegisterBindStatusCallback', 'URLDownloadToFileW', 'RevokeFormatEnumerator', 'ResUtilGetProperties', 'ResUtilGetEnvironmentWithNetName', 'ResUtilGetPrivateProperties', 'ResUtilVerifyPropertyTable', 'ResUtilGetDwordValue', 'ResUtilGetPropertySize', 'ClusWorkerStart', 'mmioFlush', 'mmioRead', 'mixerClose', 'waveOutGetPitch', 'waveInGetNumDevs', 'waveInGetID', 'WSACreateEvent', 'WSACancelBlockingCall', 'WSAGetOverlappedResult', 'WSAJoinLeaf', 'getpeername', 'WSAGetServiceClassInfoA', 'WSAGetServiceClassNameByClassIdW', 'WSAAddressToStringA', 'WSASetLastError', '__WSAFDIsSet', 'WSAAsyncGetProtoByName', 'sendto', 'ord1142', 'InternetTimeToSystemTime', 'FindFirstUrlCacheContainerA', 'FindFirstUrlCacheEntryA', 'CommitUrlCacheEntryA', 'IncrementUrlCacheHeaderData', 'GetUrlCacheHeaderData', 'FindNextUrlCacheEntryExA', 'HttpEndRequestA', 'InternetReadFileExA', 'InternetGetCookieA', 'InternetCreateUrlW'], ['InterlockedIncrement', 'OpenSemaphoreA', 'BackupSeek', 'FreeEnvironmentStringsA', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'GetConsoleAliasExesW', 'WaitNamedPipeW', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetPrivateProfileStructW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'SetConsoleCursorPosition', 'TerminateProcess', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'GetShortPathNameA', 'GetNamedPipeHandleStateW', 'GetPrivateProfileIntW', 'GetLastError', 'GetConsoleAliasExesLengthA', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'RemoveDirectoryA', 'SetStdHandle', 'OpenWaitableTimerW', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'GetProfileStringA', 'FoldStringA', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'CreateMailslotA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'PeekConsoleInputA', 'DeleteCriticalSection', 'SetCalendarInfoA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'FindFirstVolumeW', 'GetConsoleProcessList', 'CloseHandle', 'CreateFileW', 'ReadFile', '_llseek', 'GetFileSize', 'AllocConsole', 'SetLastError', 'GetPrivateProfileSectionNamesW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MoveFileA', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'DeleteFileA', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetKeyboardType', 'RegQueryValueExA', 'SysFreeString', 'RegSetValueExA', 'VerQueryValueA', 'UnrealizeObject', 'CreateWindowExW', 'SafeArrayPtrOfIndex', 'CreateStreamOnHGlobal', 'CreateErrorInfo', 'ImageList_SetIconSize', 'OpenPrinterA', 'ShellExecuteA', 'InternetReadFile', 'SHGetSpecialFolderLocation', 'ChooseFontA', 'NotifyWinEvent', 'timeGetTime', 'GetRandomRgn', 'VariantChangeTypeEx', 'RaiseException'], ['GetAdaptersInfo', 'WinHttpQueryDataAvailable', 'WinHttpWriteData', 'WinHttpGetProxyForUrl', 'WinHttpOpenRequest', 'WinHttpCloseHandle', 'WinHttpOpen', 'WinHttpGetIEProxyConfigForCurrentUser', 'WinHttpSetOption', 'WinHttpAddRequestHeaders', 'WinHttpSendRequest', 'WinHttpReceiveResponse', 'WinHttpConnect', 'WinHttpQueryHeaders', 'WinHttpReadData', 'EnumSystemLocalesW', 'GetUserDefaultLCID', 'IsValidLocale', 'GetLocaleInfoW', 'LCMapStringW', 'CompareStringW', 'Sleep', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'LocalAlloc', 'LocalFree', 'MultiByteToWideChar', 'WideCharToMultiByte', 'FindFirstFileExW', 'IsValidCodePage', 'GetVolumeInformationW', 'CloseHandle', 'GetLastError', 'GetComputerNameExW', 'GetComputerNameA', 'VerSetConditionMask', 'GlobalFree', 'VerifyVersionInfoW', 'lstrcmpiW', 'CreateFileW', 'FindNextFileW', 'FlsFree', 'GetACP', 'FindClose', 'FreeEnvironmentStringsW', 'GetOEMCP', 'SetEnvironmentVariableW', 'SetStdHandle', 'SetFilePointerEx', 'HeapSize', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'WriteConsoleW', 'GetEnvironmentStringsW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LCMapStringEx', 'GetStringTypeW', 'GetCPInfo', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlPcToFileHeader', 'RaiseException', 'RtlUnwindEx', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'RtlUnwind', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetFileType', 'HeapReAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'RegQueryValueExW', 'RegOpenKeyExW', 'GetUserNameW'], ['CloseHandle', 'CompareStringW', 'CreateFileA', 'CreateFileW', 'CreateProcessW', 'DecodePointer', 'DeleteCriticalSection', 'DeleteFileW', 'EncodePointer', 'EnterCriticalSection', 'ExitProcess', 'ExpandEnvironmentStringsW', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'FlushFileBuffers', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetACP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetComputerNameExA', 'GetConsoleMode', 'GetConsoleOutputCP', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDriveTypeW', 'GetEnvironmentStringsW', 'GetFileInformationByHandle', 'GetFileSizeEx', 'GetFileType', 'GetFullPathNameW', 'GetLastError', 'GetModuleFileNameA', 'GetModuleFileNameW', 'GetModuleHandleExW', 'GetModuleHandleW', 'GetOEMCP', 'GetProcAddress', 'GetProcessHeap', 'GetStartupInfoW', 'GetStdHandle', 'GetStringTypeW', 'GetSystemTimeAsFileTime', 'GetTimeZoneInformation', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'InitializeSListHead', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'IsValidCodePage', 'LCMapStringW', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryExW', 'LoadLibraryW', 'MultiByteToWideChar', 'PeekNamedPipe', 'QueryPerformanceCounter', 'RaiseException', 'ReadConsoleW', 'ReadFile', 'RtlUnwind', 'SetEndOfFile', 'SetEnvironmentVariableW', 'SetFilePointerEx', 'SetFileTime', 'SetLastError', 'SetStdHandle', 'SetUnhandledExceptionFilter', 'SystemTimeToFileTime', 'SystemTimeToTzSpecificLocalTime', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TzSpecificLocalTimeToSystemTime', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'WinExec', 'WriteConsoleW', 'WriteFile', 'lstrcatW', 'lstrcmpW', 'lstrcmpiW', 'lstrlenW', 'EnumDisplayDevicesA', 'GetDC', 'GetDesktopWindow', 'GetSystemMetrics', 'ReleaseDC', 'SystemParametersInfoW', 'wsprintfW', 'BitBlt', 'CreateCompatibleBitmap', 'CreateCompatibleDC', 'CreateDCW', 'DeleteDC', 'DeleteObject', 'GetDIBits', 'GetObjectW', 'SelectObject', 'RegCloseKey', 'RegEnumKeyExW', 'RegOpenKeyExW', 'RegQueryValueExW', 'WinHttpCloseHandle', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpOpen', 'WinHttpOpenRequest', 'WinHttpQueryDataAvailable', 'WinHttpReadData', 'WinHttpReceiveResponse', 'WinHttpSendRequest', 'InternetQueryDataAvailable', 'InternetReadFile', 'CryptStringToBinaryA'], ['StrToIntA', 'StrRChrW', 'StrStrA', 'SHRegGetUSValueW', 'PathIsRelativeA', 'StrChrW', 'EncodePointer', 'CloseHandle', 'WriteConsoleW', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'CompareFileTime', 'VirtualProtect', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'GetTimeZoneInformation', 'EnumSystemCodePagesW', 'FlushFileBuffers', 'LCMapStringEx', 'HeapSize', 'LoadLibraryW', 'OutputDebugStringW', 'GetStringTypeW', 'HeapReAlloc', 'HeapAlloc', 'RtlUnwind', 'LoadLibraryExW', 'GetModuleFileNameW', 'WriteFile', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'LeaveCriticalSection', 'EnterCriticalSection', 'Sleep', 'GetModuleHandleW', 'TerminateProcess', 'GetCurrentProcess', 'FlsFree', 'FlsSetValue', 'FlsGetValue', 'FlsAlloc', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'WideCharToMultiByte', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetTickCount64', 'GetSystemTimeAsFileTime', 'QueryPerformanceCounter', 'HeapFree', 'GetCommandLineA', 'GetCurrentThreadId', 'GetLastError', 'SetLastError', 'InterlockedIncrement', 'InterlockedDecrement', 'CreateFileW', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'InitOnceExecuteOnce', 'GetStartupInfoW', 'GetModuleFileNameA', 'ReleaseDC', 'DrawStateW', 'RegisterClassA', 'UnregisterHotKey', 'SetMenuItemInfoW', 'CharPrevW', 'OpenWindowStationA', 'RouterGetErrorStringA', 'RouterGetErrorStringW', 'TracePutsExA', 'TracePrintfW', 'RouterLogEventW', 'TraceDumpExW', 'TraceDeregisterExW', 'SHAppBarMessage', 'SHQueryRecycleBinW', 'SHGetFileInfoA', 'Shell_NotifyIconW', 'WNetGetResourceParentA', 'WNetGetConnectionA', 'WNetAddConnectionW', 'WNetCancelConnection2A', 'OleRegEnumVerbs', 'UtConvertDvtd16toDvtd32', 'OleMetafilePictFromIconAndLabel', 'HWND_UserFree', 'OleCreateLinkFromData', 'HENHMETAFILE_UserFree', 'SNB_UserSize', 'GetHGlobalFromILockBytes', 'InternetSetCookieA', 'InternetCanonicalizeUrlA', 'FtpGetFileA', 'ReadUrlCacheEntryStream', 'CreateUrlCacheGroup', 'UnlockUrlCacheEntryStream', 'InternetOpenUrlA', 'IsLoggingEnabledA', 'URLDownloadW', 'MkParseDisplayNameEx', 'UrlMkBuildVersion'], ['CloseHandle', 'GetSystemInfo', 'CreateThread', 'GetThreadContext', 'GetProcAddress', 'VirtualAllocEx', 'RemoveDirectoryA', 'CreateFileA', 'CreateProcessA', 'CreateDirectoryA', 'SetThreadContext', 'WriteConsoleW', 'ReadConsoleW', 'SetEndOfFile', 'HeapReAlloc', 'HeapSize', 'GetFileAttributesA', 'GetLastError', 'GetTempPathA', 'Sleep', 'GetModuleHandleA', 'SetCurrentDirectoryA', 'ResumeThread', 'GetComputerNameExW', 'GetVersionExW', 'CreateMutexA', 'VirtualAlloc', 'WriteFile', 'VirtualFree', 'WriteProcessMemory', 'GetModuleFileNameA', 'ReadProcessMemory', 'ReadFile', 'SetFilePointerEx', 'GetTimeZoneInformation', 'GetConsoleMode', 'GetConsoleCP', 'FlushFileBuffers', 'GetStringTypeW', 'GetProcessHeap', 'SetEnvironmentVariableW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'WideCharToMultiByte', 'GetCPInfo', 'GetOEMCP', 'GetACP', 'IsValidCodePage', 'FindNextFileW', 'FindFirstFileExW', 'FindClose', 'SetStdHandle', 'GetFullPathNameW', 'GetCurrentDirectoryW', 'DeleteFileW', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'WaitForSingleObjectEx', 'CreateEventW', 'GetModuleHandleW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RaiseException', 'SetLastError', 'RtlUnwind', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'ExitProcess', 'GetModuleHandleExW', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetModuleFileNameW', 'GetStdHandle', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'HeapAlloc', 'MultiByteToWideChar', 'CompareStringW', 'LCMapStringW', 'DecodePointer', 'RegCloseKey', 'RegQueryValueExA', 'GetSidSubAuthorityCount', 'GetSidSubAuthority', 'GetUserNameA', 'LookupAccountNameA', 'RegSetValueExA', 'RegOpenKeyExA', 'GetSidIdentifierAuthority', 'SHGetFolderPathA', 'ShellExecuteA', 'SHFileOperationA', 'HttpOpenRequestA', 'InternetReadFile', 'InternetConnectA', 'HttpSendRequestA', 'InternetCloseHandle', 'InternetOpenA', 'InternetOpenW', 'InternetOpenUrlA'], ['RegCloseKey', 'CertOpenStore', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'AcceptEx', 'IdnToAscii', 'SetupDiGetClassDevsA', 'ShowWindow', 'gethostname'], ['lstrcpynA', 'GetConsoleAliasExesLengthA', 'DeleteVolumeMountPointA', 'InterlockedIncrement', 'ReadConsoleA', 'InterlockedDecrement', 'GetNamedPipeHandleStateA', 'OpenSemaphoreA', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetUserDefaultLangID', 'GetCommandLineA', 'GlobalAlloc', 'LoadLibraryW', 'FatalAppExitW', 'GetVersionExW', 'SetConsoleCursorPosition', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'GetVolumePathNameA', 'lstrlenW', 'GetStringTypeExA', 'GetShortPathNameA', 'GetPrivateProfileIntW', 'GetLastError', 'SetLastError', '_llseek', 'HeapSize', 'MoveFileW', 'EnterCriticalSection', 'OpenWaitableTimerA', 'LocalAlloc', 'GetFileType', 'BuildCommDCBAndTimeoutsW', 'RemoveDirectoryW', 'GetProfileStringA', 'AddAtomA', 'FoldStringA', 'FindNextFileA', 'FindFirstVolumeMountPointA', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'GetCurrentDirectoryA', 'EnumDateFormatsW', 'PeekConsoleInputA', 'SetCalendarInfoA', 'SetFileShortNameA', 'ReadConsoleInputW', 'FindFirstVolumeW', 'GetVolumeNameForVolumeMountPointW', 'GetConsoleProcessList', 'ReadConsoleOutputCharacterW', 'EnumSystemLocalesW', 'DeleteFileA', 'lstrcpyA', 'CloseHandle', 'CreateFileW', 'FlushFileBuffers', 'AllocConsole', 'SetInformationJobObject', 'GetConsoleAliasExesA', 'GetProcAddress', 'GetPrivateProfileSectionNamesW', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'MultiByteToWideChar', 'HeapReAlloc', 'ExitProcess', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleW', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['LoadLibraryA', 'GetProcAddress', 'ExitProcess', 'RegCloseKey', 'EndDialog'], ['_llseek', 'lstrcpynA', 'GetConsoleAliasExesLengthA', 'DeleteVolumeMountPointA', 'InterlockedIncrement', 'InterlockedDecrement', 'GetNamedPipeHandleStateA', 'GetUserDefaultLCID', 'OpenSemaphoreA', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'ReadConsoleW', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetUserDefaultLangID', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetVersionExW', 'SetConsoleCursorPosition', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'lstrlenW', 'GetShortPathNameA', 'GetPrivateProfileIntW', 'GetLastError', 'AllocConsole', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'RemoveDirectoryA', 'EnterCriticalSection', 'OpenWaitableTimerA', 'LocalAlloc', 'GetFileType', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'GetProfileStringA', 'AddAtomA', 'FoldStringA', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'GetStringTypeW', 'GetCurrentDirectoryA', 'PeekConsoleInputA', 'SetCalendarInfoA', 'ReadConsoleInputW', 'FindFirstVolumeW', 'GetVolumeNameForVolumeMountPointW', 'GetConsoleProcessList', 'ReadConsoleOutputCharacterW', 'EnumSystemLocalesW', 'DeleteFileA', 'lstrcpyA', 'CloseHandle', 'CreateFileW', 'WriteConsoleW', 'GetConsoleAliasExesA', 'GetFileSize', 'SetInformationJobObject', 'SetLastError', 'GetPrivateProfileSectionNamesW', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'SetStdHandle', 'FlushFileBuffers', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['ExitProcess', 'GetModuleHandleA', 'GetProcAddress', 'SetUnhandledExceptionFilter', 'Sleep', '__getmainargs', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_iob', '_onexit', '_setmode', 'atexit', 'atoi', 'exit', 'fclose', 'fgets', 'fopen', 'fprintf', 'fputc', 'fputs', 'fwrite', 'printf', 'setbuf', 'signal', 'sprintf', 'strchr', 'strerror', 'toupper', 'WSAGetLastError', 'WSAStartup', 'closesocket', 'gethostbyname', 'htons', 'inet_addr', 'inet_ntoa', 'sendto', 'socket'], ['GetPhysicalCursorPos', 'CoCancelCall', 'InitializeFlatSB', 'FlatSB_ShowScrollBar', 'ImageList_SetDragCursorImage', 'CreateFileW', 'WriteConsoleW', 'GetStartupInfoW', 'Sleep', 'CloseHandle', 'WaitForSingleObjectEx', 'GetCurrentThreadId', 'GetExitCodeThread', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'GetSystemTimeAsFileTime', 'GetModuleHandleW', 'GetProcAddress', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'DecodePointer', 'RaiseException', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc'], ['CoCancelCall', 'DeregisterEventSource', 'WriteConsoleW', 'GetCommandLineW', 'GetModuleHandleA', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'CreateFileW', 'RaiseException', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'RtlUnwind', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'DecodePointer', 'GetCurrentThread', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'SetConsoleCtrlHandler', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'ReadFile', 'ReadConsoleW'], ['GetLastError', 'WaitForSingleObject', 'CreateMutexW', 'Sleep', 'CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'lstrlenW', 'FreeConsole', 'WriteConsoleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'CompareStringW', 'LCMapStringW', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'SetFilePointerEx', 'CreateFileW', 'CloseHandle', 'DecodePointer'], ['CryptAcquireContextW', 'CryptReleaseContext', 'RevertToSelf', 'ImpersonateSelf', 'GetSecurityDescriptorLength', 'IsValidSecurityDescriptor', 'CryptGetProvParam', 'CryptDestroyKey', 'CryptGetKeyParam', 'CryptGetUserKey', 'CryptDestroyHash', 'CryptGetHashParam', 'CryptCreateHash', 'CryptHashData', 'CryptEncrypt', 'CryptDuplicateKey', 'CryptDecrypt', 'CryptImportKey', 'CryptGenKey', 'CryptGenRandom', 'CryptSetKeyParam', 'CopySid', 'GetLengthSid', 'GetTokenInformation', 'LookupAccountSidW', 'OpenProcessToken', 'RegCloseKey', 'RegQueryValueExW', 'RegOpenKeyExW', 'RegEnumKeyExW', 'RegSetValueExW', 'RegEnumValueW', 'RegCreateKeyW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegEnumKeyW', 'CryptSetProvParam', 'CryptVerifySignatureW', 'RegOpenKeyW', 'CryptContextAddRef', 'CryptExportKey', 'CryptDuplicateHash', 'CryptSetHashParam', 'CryptSignHashW', 'GetSecurityDescriptorControl', 'SetSecurityDescriptorOwner', 'InitializeSecurityDescriptor', 'DeleteAce', 'EqualSid', 'GetAce', 'GetAclInformation', 'SetSecurityDescriptorDacl', 'SetEntriesInAclW', 'GetSecurityDescriptorDacl', 'AllocateAndInitializeSid', 'LookupAccountNameW', 'MakeSelfRelativeSD', 'MakeAbsoluteSD', 'OpenThreadToken', 'FreeSid', 'CheckTokenMembership', 'DuplicateToken', 'LsaClose', 'LsaFreeMemory', 'LsaOpenPolicy', 'CryptGetDefaultProviderW', 'CryptEnumProvidersA', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'AddAccessDeniedObjectAce', 'AddAccessAllowedObjectAce', 'AddAccessDeniedAce', 'AddAccessAllowedAce', 'SetNamedSecurityInfoW', 'InitializeAcl', 'AddAce', 'RegCreateKeyExW', 'RegConnectRegistryW', 'LsaRetrievePrivateData', 'LsaStorePrivateData', 'CreateWellKnownSid', 'ImpersonateLoggedOnUser', 'SetLastError', 'GetStdHandle', 'GetFileType', 'GetConsoleMode', 'SetConsoleMode', 'CreateThread', 'WaitForSingleObject', 'GetExitCodeThread', 'CloseHandle', 'GetSystemTime', 'SystemTimeToFileTime', 'lstrcmpW', 'CompareFileTime', 'FreeLibrary', 'LocalAlloc', 'GetSystemTimeAsFileTime', 'GetFileAttributesW', 'GetProcAddress', 'GetSystemDefaultLangID', 'DeleteCriticalSection', 'LoadLibraryExA', 'InitializeCriticalSection', 'GetLastError', 'LocalReAlloc', 'GetModuleHandleW', 'PulseEvent', 'OpenEventW', 'GetSystemDefaultUILanguage', 'GetUserDefaultUILanguage', 'GetTempFileNameW', 'GetEnvironmentVariableW', 'GetCurrentProcess', 'GetFileAttributesExW', 'lstrcmpiW', 'DeleteFileW', 'FormatMessageW', 'HeapAlloc', 'GetProcessHeap', 'LocalFree', 'HeapFree', 'EncodePointer', 'DecodePointer', 'LoadLibraryW', 'GetTickCount', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'CreateFileW', 'GetComputerNameExW', 'GetComputerNameW', 'GetVersionExW', 'LeaveCriticalSection', 'SetConsoleCtrlHandler', 'EnterCriticalSection', 'VerifyVersionInfoW', 'VerSetConditionMask', 'DelayLoadFailureHook', 'InterlockedExchange', 'Sleep', 'GetStartupInfoW', 'SetUnhandledExceptionFilter', 'GetModuleHandleA', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetCurrentProcessId', 'TerminateProcess', 'UnhandledExceptionFilter', 'MultiByteToWideChar', 'SearchPathW', 'GetLocaleInfoW', 'FindResourceExW', 'InterlockedCompareExchange', 'OpenProcess', 'RaiseException', 'GetProfileStringA', 'InterlockedIncrement', 'ResetEvent', 'CreateEventW', 'InterlockedDecrement', 'SetEvent', 'GetFileTime', 'lstrlenW', 'GetCommandLineW', 'VirtualFree', 'VirtualAlloc', 'WriteConsoleW', 'GetTempPathW', 'GetACP', 'WideCharToMultiByte', 'FileTimeToLocalFileTime', 'GetConsoleOutputCP', 'GetDateFormatW', 'GetTimeFormatW', 'FindResourceW', 'LoadResource', 'LockResource', 'OutputDebugStringA', 'GetSystemDirectoryW', 'LoadLibraryExW', 'CompareStringW', 'GetSystemInfo', 'CreateFileMappingW', 'WriteFile', 'GetLocalTime', 'HeapSetInformation', 'GetCurrentThread', 'FileTimeToSystemTime', 'LocalFileTimeToFileTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'CreateDirectoryW', 'FoldStringW', 'UnmapViewOfFile', 'MapViewOfFile', 'feof', 'fgetc', '_wfopen', 'fgetws', '_amsg_exit', '__iob_func', 'vfwprintf', '_wfopen_s', 'fwprintf', 'fputws', 'atoi', '_wsetlocale', 'getenv', '_wgetenv', 'gmtime', 'iswxdigit', 'iswalpha', '__isascii', 'isxdigit', 'iswspace', 'memset', 'memmove', 'memcpy', 'wcstok', 'wcschr', '_vsnwprintf', 'wcsrchr', 'iswdigit', '__CxxFrameHandler3', '_CxxThrowException', '_fgetwchar', 'fflush', '_iob', 'wcsspn', '_wcsnicmp', 'wcsstr', '?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z', 'wcscspn', '_setmode', '_fileno', '_strnicmp', 'swscanf', '_stricmp', '_wtoi', '_wcsicmp', '_vsnprintf', 'isdigit', 'atol', 'fwrite', '_errno', 'ftell', 'sscanf', 'strspn', 'strpbrk', 'strcat_s', 'strncmp', 'strcpy_s', 'wcscpy_s', 'bsearch', '_itoa_s', 'qsort', '_strlwr', '_controlfp', '_except_handler4_common', '_onexit', '_lock', '__dllonexit', '_unlock', '?terminate@@YAXXZ', '??1type_info@@UAE@XZ', '__set_app_type', '__p__fmode', '__p__commode', '__setusermatherr', 'wcstoul', '_initterm', '_wcmdln', 'exit', '_XcptFilter', '_exit', '_cexit', '__wgetmainargs', 'malloc', '_callnewh', 'free', '??0exception@@QAE@ABV0@@Z', '??1exception@@UAE@XZ', '?what@exception@@UBEPBDXZ', '??0exception@@QAE@XZ', '_ultow', '_purecall', 'wcsncmp', '_wcslwr', '_swab', 'fopen', 'fgets', 'strchr', 'strstr', 'fputs', 'fseek', 'strcspn', 'ferror', 'fclose', 'fprintf', 'CAGetCertTypeExtensions', 'CAFreeCertTypeExtensions', 'CAGetCertTypeExpiration', 'CAGetCertTypeKeySpec', 'CAFreeCertTypeProperty', 'CAGetCertTypePropertyEx', 'CAGetCertTypeFlagsEx', 'CACloseCertType', 'CAEnumNextCertType', 'CACertTypeAccessCheckEx', 'CAGetCertTypeProperty', 'CAEnumCertTypes', 'CAEnumCertTypesForCA', 'CAFindCertTypeByName', 'CACloseCA', 'CAEnumNextCA', 'CAFreeCAProperty', 'CAGetCAProperty', 'CAFindByName', 'CAEnumFirstCA', 'CAGetCASecurity', 'CAGetCACertificate', 'CAAccessCheck', 'CAGetCAExpiration', 'CAGetCAFlags', 'CASetCAProperty', 'CAFindByCertType', 'CACertTypeAccessCheck', 'CACountCertTypes', 'CACountCAs', 'CASetCASecurity', 'CASetCACertificate', 'CASetCAFlags', 'CACreateNewCA', 'CAUpdateCA', 'InitCommonControlsEx', 'CryptUIDlgFreeCAContext', 'CryptUIDlgViewCRLW', 'CryptUIDlgViewCertificateW', 'GetStockObject', 'BCryptDestroyKey', 'NCryptFinalizeKey', 'NCryptGetProperty', 'NCryptIsKeyHandle', 'NCryptFreeObject', 'NCryptImportKey', 'NCryptOpenStorageProvider', 'NCryptIsAlgSupported', 'NCryptEnumKeys', 'BCryptVerifySignature', 'BCryptSignHash', 'BCryptEncrypt', 'BCryptDecrypt', 'BCryptSetProperty', 'BCryptHashData', 'BCryptFinishHash', 'BCryptDestroyHash', 'NCryptDeriveKey', 'NCryptSecretAgreement', 'NCryptVerifySignature', 'NCryptSignHash', 'NCryptEncrypt', 'NCryptDecrypt', 'NCryptExportKey', 'BCryptExportKey', 'NCryptSetProperty', 'BCryptGenRandom', 'BCryptCreateHash', 'NCryptOpenKey', 'BCryptEnumContexts', 'BCryptQueryContextConfiguration', 'BCryptResolveProviders', 'BCryptEnumContextFunctions', 'BCryptEnumAlgorithms', 'BCryptOpenAlgorithmProvider', 'BCryptGetProperty', 'BCryptCloseAlgorithmProvider', 'NCryptEnumStorageProviders', 'NCryptFreeBuffer', 'NCryptEnumAlgorithms', 'BCryptQueryProviderRegistration', 'BCryptFreeBuffer', 'NCryptCreatePersistedKey', 'NCryptDeleteKey', 'DsGetSiteNameW', 'DsRoleGetPrimaryDomainInformation', 'DsGetDcNameW', 'NetUserGetGroups', 'NetApiBufferFree', 'DsRoleFreeMemory', 'RtlTimeToSecondsSince1970', 'NtQuerySystemTime', 'RtlFindMessage', 'DsCrackNamesW', 'DsBindW', 'DsFreeNameResultW', 'DsGetDomainControllerInfoW', 'DsFreeDomainControllerInfoW', 'DsUnBindW', 'SetupCloseInfFile', 'SetupGetIntField', 'SetupGetStringFieldW', 'SetupGetFieldCount', 'SetupFindNextLine', 'SetupGetLineCountW', 'SetupFindFirstLineW', 'SetupOpenInfFileW', 'SHGetFolderPathW', 'GetFileVersionInfoW', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'CertOpenStore', 'CertCreateCertificateContext', 'CryptMsgClose', 'CertCloseStore', 'CertGetCertificateContextProperty', 'CryptFindOIDInfo', 'CryptEncodeObjectEx', 'CertFreeCertificateContext', 'CertFindExtension', 'CertEnumCRLsInStore', 'CertCreateCRLContext', 'CryptDecodeObject', 'CryptEnumOIDInfo', 'CertCompareCertificateName', 'CertFindAttribute', 'CertEnumCertificatesInStore', 'CertAddEncodedCertificateToStore', 'CryptAcquireCertificatePrivateKey', 'CryptFindCertificateKeyProvInfo', 'CryptFormatObject', 'CryptMsgControl', 'CryptMsgGetAndVerifySigner', 'CryptMsgGetParam', 'PFXIsPFXBlob', 'CertAddCertificateContextToStore', 'CryptQueryObject', 'CryptVerifyCertificateSignature', 'CertDuplicateCertificateContext', 'CertFreeCTLContext', 'CertCreateCTLContext', 'CertFreeCertificateChain', 'CertGetCertificateChain', 'CertSaveStore', 'CertGetNameStringW', 'CertDeleteCertificateFromStore', 'CertEnumCTLsInStore', 'CertComparePublicKeyInfo', 'CryptExportPublicKeyInfo', 'CertSetStoreProperty', 'CertGetCTLContextProperty', 'CertEnumCTLContextProperties', 'CertGetCRLContextProperty', 'CertSetCertificateContextProperty', 'CertEnumCertificateContextProperties', 'CertSetCRLContextProperty', 'CertFindCertificateInStore', 'CertEnumPhysicalStore', 'CertEnumSystemStore', 'CertEnumSystemStoreLocation', 'CertControlStore', 'CryptImportPublicKeyInfo', 'CertAddCRLContextToStore', 'CertAddCTLContextToStore', 'CertDeleteCRLFromStore', 'CertDuplicateCRLContext', 'CertVerifyRevocation', 'CertVerifyTimeValidity', 'CertVerifyCRLTimeValidity', 'CryptHashCertificate', 'CertGetEnhancedKeyUsage', 'CryptVerifyCertificateSignatureEx', 'CertVerifySubjectCertificateContext', 'CryptSignAndEncodeCertificate', 'CryptDecodeObjectEx', 'CryptMsgUpdate', 'CryptMsgOpenToDecode', 'CryptSignCertificate', 'CryptSignMessage', 'CryptHashPublicKeyInfo', 'CryptDecryptMessage', 'PFXImportCertStore', 'CertStrToNameW', 'CertNameToStrW', 'CryptEncryptMessage', 'CertVerifyCertificateChainPolicy', 'CertGetIntendedKeyUsage', 'CryptFreeOIDFunctionAddress', 'CryptGetOIDFunctionAddress', 'CryptInitOIDFunctionSet', 'CertAddCertificateLinkToStore', 'PFXExportCertStore', 'PFXExportCertStoreEx', 'CertEnumCRLContextProperties', 'CertGetPublicKeyLength', 'CertFreeCRLContext', 'CertSetCTLContextProperty', 'CoUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoInitializeEx', 'PropVariantClear', 'StgOpenStorageEx', 'CoSetProxyBlanket', 'CoCreateInstanceEx', 'CoTaskMemAlloc', 'CLSIDFromProgID', 'CLSIDFromString', 'ProgIDFromCLSID', 'StringFromCLSID', 'CoTaskMemFree', 'SafeArrayUnaccessData', 'SysAllocStringLen', 'VariantInit', 'VariantClear', 'SafeArrayGetElement', 'SafeArrayAccessData', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayGetDim', 'SysStringLen', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'VariantCopyInd', 'SetErrorInfo', 'CreateErrorInfo', 'SysFreeString', 'SysAllocString', 'SysAllocStringByteLen', 'SysStringByteLen', 'UuidCreate', 'NdrClientCall2', 'GetComputerObjectNameW', 'TranslateNameW', 'GetUserNameExW', 'CheckDlgButton', 'SetDlgItemInt', 'SetCursor', 'SetDlgItemTextW', 'GetDlgItem', 'EnableWindow', 'SendDlgItemMessageA', 'SendMessageW', 'GetDesktopWindow', 'LoadIconW', 'LoadCursorW', 'RegisterClassW', 'CreateWindowExW', 'EndDialog', 'GetDlgItemInt', 'GetDlgItemTextW', 'IsDlgButtonChecked', 'DialogBoxParamW', 'SetWindowTextW', 'CallWindowProcW', 'GetWindowLongW', 'ShowWindow', 'SetWindowLongW', 'GetWindowTextW', 'SetFocus', 'LoadStringW', 'CharLowerW', 'MessageBoxW', 'PostQuitMessage', 'DefWindowProcW', 'DispatchMessageW', 'TranslateMessage', 'GetMessageW', 'PostMessageW', 'UpdateWindow'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLastError', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateProcessA', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'Polyline', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExtTextOutA', 'ExcludeClipRect', 'DeleteObject', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CloseMetaFile', 'BitBlt', 'AbortDoc', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OpenIcon', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetKBCodePage', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create'], ['_llseek', 'lstrcpynA', 'GetConsoleAliasExesLengthA', 'DeleteVolumeMountPointA', 'InterlockedIncrement', 'InterlockedDecrement', 'GetNamedPipeHandleStateA', 'GetUserDefaultLCID', 'OpenSemaphoreA', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'ReadConsoleW', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetUserDefaultLangID', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetPrivateProfileStructW', 'GetVersionExW', 'SetConsoleCursorPosition', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'lstrlenW', 'GetShortPathNameA', 'GetPrivateProfileIntW', 'GetLastError', 'AllocConsole', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'RemoveDirectoryA', 'EnterCriticalSection', 'OpenWaitableTimerA', 'LocalAlloc', 'GetFileType', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'GetProfileStringA', 'AddAtomA', 'FoldStringA', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'CreateMailslotA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'PeekConsoleInputA', 'SetCalendarInfoA', 'ReadConsoleInputW', 'FindFirstVolumeW', 'GetVolumeNameForVolumeMountPointW', 'GetConsoleProcessList', 'ReadConsoleOutputCharacterW', 'EnumSystemLocalesW', 'DeleteFileA', 'lstrcpyA', 'CloseHandle', 'CreateFileW', 'WriteConsoleW', 'GetConsoleAliasExesA', 'GetFileSize', 'SetInformationJobObject', 'SetLastError', 'GetPrivateProfileSectionNamesW', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'SetStdHandle', 'FlushFileBuffers', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['GetLastError', 'WaitForSingleObject', 'CreateMutexA', 'Sleep', 'CreateThread', 'VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'lstrlenW', 'FreeConsole', 'WriteConsoleW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RaiseException', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'CreateFileW', 'DecodePointer'], ['lstrcpynA', 'GetConsoleAliasExesLengthA', 'InterlockedIncrement', 'InterlockedDecrement', 'GetUserDefaultLCID', 'OpenSemaphoreA', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'ReadConsoleW', 'GetWindowsDirectoryA', 'GetConsoleAliasExesW', 'WaitNamedPipeW', 'GetUserDefaultLangID', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetPrivateProfileStructW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'SetConsoleCursorPosition', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'lstrlenW', 'GetShortPathNameA', 'GetNamedPipeHandleStateW', 'GetPrivateProfileIntW', '_llseek', 'SetLastError', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'RemoveDirectoryA', 'SetStdHandle', 'EnterCriticalSection', 'OpenWaitableTimerW', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'GetProfileStringA', 'AddAtomA', 'FoldStringA', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'CreateMailslotA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'PeekConsoleInputA', 'SetCalendarInfoA', 'ReadConsoleInputW', 'FindFirstVolumeW', 'GetVolumeNameForVolumeMountPointW', 'GetConsoleProcessList', 'EnumSystemLocalesW', 'lstrcpyA', 'DeleteFileA', 'CloseHandle', 'CreateFileW', 'AllocConsole', 'GetFileSize', 'SetInformationJobObject', 'GetLastError', 'GetPrivateProfileSectionNamesW', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MoveFileA', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'ReadFile', 'CharUpperBuffW', 'CharUpperW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'InitCommonControls', 'LoadIconA'], ['GetModuleHandleA', 'GetProcAddress', 'GetSystemMetrics', 'CreateCompatibleBitmap', 'RegCloseKey', 'SHGetFolderPathA', 'HttpOpenRequestA', 'GdipSaveImageToFile'], ['ExitProcess', 'GetModuleHandleA', 'GetTickCount', 'GlobalAlloc', 'GlobalFree', 'GlobalLock', 'GlobalUnlock', 'RtlZeroMemory', 'wsprintfA', 'CloseClipboard', 'DialogBoxParamA', 'EmptyClipboard', 'EndDialog', 'GetDlgItemTextA', 'LoadIconA', 'MessageBoxA', 'OpenClipboard', 'SendDlgItemMessageA', 'SendMessageA', 'SetClipboardData', 'SetDlgItemTextA', 'SetTimer'], ['Sleep'], ['CreateProcessW', 'DisableThreadLibraryCalls', 'GetSystemDirectoryW', 'LoadLibraryExW', 'FreeLibrary', 'GetProcAddress', 'WriteConsoleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetModuleHandleW', 'RtlUnwindEx', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RaiseException', 'ExitProcess', 'GetModuleHandleExW', 'GetModuleFileNameW', 'MultiByteToWideChar', 'HeapFree', 'HeapAlloc', 'GetStdHandle', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'LCMapStringW', 'GetProcessHeap', 'GetStringTypeW', 'SetFilePointerEx', 'SetStdHandle', 'HeapSize', 'HeapReAlloc', 'FlushFileBuffers', 'WriteFile', 'GetConsoleOutputCP', 'GetConsoleMode', 'CloseHandle', 'CreateFileW'], ['DeleteCriticalSection', 'EnterCriticalSection', 'FreeConsole', 'FreeLibrary', 'GetFileAttributesA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'Sleep', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', '__p__environ', '__p__wenviron', 'remove', 'rename', '_set_new_mode', 'calloc', 'free', 'malloc', 'realloc', '__p___argc', '__p___argv', '__p___wargv', '_configure_narrow_argv', '_configure_wide_argv', '_crt_at_quick_exit', '_crt_atexit', '_errno', '_execute_onexit_table', '_initialize_narrow_environment', '_initialize_onexit_table', '_initialize_wide_environment', '_initterm', '_register_onexit_function', 'abort', 'exit', 'system', '__acrt_iob_func', '__stdio_common_vfprintf', '__stdio_common_vfwprintf', 'fclose', 'fopen', 'fwrite', 'strlen', 'strncmp', '__daylight', '__timezone', '__tzname', '_tzset', 'MessageBoxA'], ['GetPrivateProfileSectionNamesW', 'GetConsoleAliasExesA', 'MoveFileExA', 'AllocConsole', '_llseek', 'lstrcpynA', 'BuildCommDCBAndTimeoutsA', 'DeleteVolumeMountPointA', 'InterlockedIncrement', 'ReadConsoleA', 'WaitNamedPipeA', 'GetNamedPipeHandleStateA', 'HeapFree', 'GetComputerNameW', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'FindNextVolumeMountPointA', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'GetCompressedFileSizeW', 'GetUserDefaultLangID', 'InitializeCriticalSection', 'GlobalAlloc', 'GetPrivateProfileIntA', 'GetSystemDirectoryW', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'ReadConsoleInputA', 'GetConsoleAliasExesLengthW', 'GetVersionExW', 'GetStringTypeExW', 'GetVolumePathNameA', 'lstrlenW', 'VirtualUnlock', 'GetShortPathNameA', 'GetCommandLineW', 'GetPrivateProfileIntW', 'GetLastError', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'MoveFileW', 'CreateSemaphoreW', 'OpenWaitableTimerW', 'LocalAlloc', 'SetCalendarInfoW', 'GetFileType', 'AddAtomW', 'RemoveDirectoryW', 'GetProfileStringA', 'FoldStringW', 'FindNextFileA', 'CreateIoCompletionPort', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'GetCurrentDirectoryA', 'EnumDateFormatsW', 'PeekConsoleInputA', 'GetShortPathNameW', 'ReadConsoleInputW', 'TerminateJobObject', 'GetWindowsDirectoryW', 'FindFirstVolumeW', 'DeleteFileW', 'GetFileInformationByHandle', 'GetConsoleProcessList', 'ReadConsoleOutputCharacterW', 'EnumSystemLocalesW', 'lstrcpyA', 'FlushFileBuffers', 'CloseHandle', 'CreateFileW', 'EnumSystemLocalesA', 'GetVolumeNameForVolumeMountPointA', 'WriteConsoleW', 'SetStdHandle', 'InterlockedDecrement', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'WideCharToMultiByte', 'HeapAlloc', 'MultiByteToWideChar', 'HeapReAlloc', 'GetCommandLineA', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'HeapSize', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'InitializeCriticalSectionAndSpinCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetStringTypeW', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'DeleteFileA', 'CharUpperBuffW', 'CharUpperW', 'GetCharWidthFloatA', 'WinHttpGetProxyForUrl'], ['LoadLibraryA', 'GetProcAddress', 'VirtualProtect', 'ExitProcess', 'RegCloseKey', 'ImageList_Add', 'PrintDlgA', 'SaveDC', 'WNetGetConnectionA', 'GradientFill', 'DoDragDrop', 'VariantCopy', 'DragFinish', 'SHGetFolderPathA', 'GetDC', 'VerQueryValueA', 'PlaySoundA', 'WritePrinter'], ['GetDateFormatW', 'EnumDateFormatsExW', 'FindResourceW', 'EnumCalendarInfoW', '_lwrite', 'ScrollConsoleScreenBufferW', 'AddConsoleAliasW', 'GetComputerNameW', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'SetFileShortNameW', 'LoadLibraryW', 'CopyFileW', 'FreeConsole', 'FindNextVolumeW', 'ReadFile', 'GetCompressedFileSizeA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'InterlockedExchange', 'GetProfileIntA', 'OpenMutexW', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'EnumSystemCodePagesW', 'LoadLibraryA', 'SetCurrentDirectoryW', 'GetOEMCP', 'lstrcmpiW', 'GetModuleHandleA', 'SetLocaleInfoW', 'CreateMutexA', 'FatalAppExitA', 'SetProcessShutdownParameters', '_lopen', 'OpenSemaphoreW', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'GlobalAddAtomW', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'CharUpperBuffA', 'LoadMenuW', 'DdeQueryStringA', 'CharLowerBuffW'], ['CreateFileW', 'GetLastError', 'InitializeCriticalSection', 'WaitForSingleObject', 'CreateMutexA', 'CreateMutexW', 'Sleep', 'GetCurrentProcess', 'GetCurrentProcessId', 'CreateThread', 'GetVersion', 'GetNativeSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'AssignProcessToJobObject', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'lstrlenW', 'AddAtomW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'HeapReAlloc', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'TerminateProcess', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'HeapSize', 'DecodePointer', 'ShowWindow', 'OleIconToCursor'], ['GetModuleHandleA', 'GetModuleHandleW', 'MultiByteToWideChar', 'FormatMessageA', 'GetStringTypeW', 'WideCharToMultiByte', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'EncodePointer', 'DecodePointer', 'LocalFree', 'GetLocaleInfoEx', 'LCMapStringEx', 'CompareStringEx', 'GetCPInfo', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'GetCurrentProcess', 'TerminateProcess', 'CreateFileW', 'RaiseException', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapFree', 'GetCurrentThread', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'HeapAlloc', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'ReadConsoleW', 'HeapSize', 'WriteConsoleW'], ['CreateFileW', 'FindFirstFileExW', 'GetFileType', 'LockFileEx', 'SetFilePointerEx', 'AreFileApisANSI', 'GetLastError', 'QueryPerformanceFrequency', 'InitializeCriticalSection', 'WaitForSingleObject', 'CreateMutexA', 'CreateMutexW', 'CreateEventW', 'Sleep', 'CreateThread', 'GetVersion', 'GetNativeSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'AssignProcessToJobObject', 'GetModuleHandleA', 'GetProcAddress', 'LoadLibraryA', 'GetProcessAffinityMask', 'DeleteAtom', 'lstrlenW', 'AddAtomW', 'GetConsoleWindow', 'WriteConsoleW', 'CloseHandle', 'HeapReAlloc', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'FindClose', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'HeapSize', 'DecodePointer', 'ShowWindow', 'OleIconToCursor'], ['_CIcos', '_adj_fptan', '__vbaFreeVar', '__vbaEnd', '__vbaFreeVarList', '_adj_fdiv_m64', '_adj_fprem1', '_adj_fdiv_m32', '_adj_fdiv_m16i', '_adj_fdivr_m16i', '_CIsin', '__vbaChkstk', 'EVENT_SINK_AddRef', '_adj_fpatan', 'EVENT_SINK_Release', '_CIsqrt', 'EVENT_SINK_QueryInterface', '__vbaExceptHandler', '_adj_fprem', '_adj_fdivr_m64', '__vbaFPException', '_CIlog', '_adj_fdiv_m32i', '_adj_fdivr_m32i', '_adj_fdivr_m32', '_adj_fdiv_r', '__vbaVarDup', '_CIatan', '_allmul', '_CItan', '_CIexp'], ['CreateMutexW', 'FindResourceA', 'SetLocaleInfoA', 'EnumCalendarInfoA', 'EnumDateFormatsExW', 'GetProfileIntW', 'FindResourceW', 'ScrollConsoleScreenBufferW', 'GetComputerNameW', 'GetModuleHandleW', 'GetTickCount', 'GetConsoleAliasesA', 'GetConsoleAliasesLengthA', 'GlobalAlloc', 'LoadLibraryW', 'CopyFileW', 'GetVersionExW', 'ReadFile', 'GetCompressedFileSizeA', 'GetVolumePathNameA', 'lstrlenW', 'SetThreadPriority', 'DisconnectNamedPipe', 'SetCurrentDirectoryA', 'OpenMutexW', 'GetLastError', 'SetLastError', 'GetProcAddress', 'VirtualAlloc', 'IsValidCodePage', 'EnumSystemCodePagesW', 'LoadLibraryA', 'lstrcmpiW', 'CreateMutexA', 'FatalAppExitA', 'SetProcessShutdownParameters', '_lopen', 'SetFileShortNameA', 'GetVersionExA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'FileTimeToLocalFileTime', 'GlobalAddAtomW', 'AddConsoleAliasA', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'GetConsoleOutputCP', 'WriteConsoleA', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'HeapFree', 'MultiByteToWideChar', 'ExitProcess', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapSize', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'InitializeCriticalSectionAndSpinCount', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'FlushFileBuffers', 'SetStdHandle', 'GetMenuBarInfo', 'CharLowerBuffW', 'CharUpperBuffA', 'DdeQueryStringA', 'SetClipboardViewer', 'CharToOemBuffA'], ['_llseek', 'lstrcpynA', 'GetConsoleAliasExesLengthA', 'BuildCommDCBAndTimeoutsA', 'DeleteVolumeMountPointA', 'InterlockedIncrement', 'ReadConsoleA', 'InterlockedDecrement', 'GetNamedPipeHandleStateA', 'HeapFree', 'OpenSemaphoreA', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'WaitNamedPipeW', 'GetUserDefaultLangID', 'GetCommandLineA', 'InitializeCriticalSection', 'GlobalAlloc', 'LoadLibraryW', 'FatalAppExitW', 'GetVersionExW', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'GetVolumePathNameA', 'lstrlenW', 'GetStringTypeExA', 'GetShortPathNameA', 'EnumSystemLocalesA', 'AllocConsole', 'GetLastError', 'GetCurrentDirectoryW', 'SetLastError', 'GetProcAddress', 'OpenWaitableTimerA', 'LocalAlloc', 'SetCalendarInfoW', 'GetFileType', 'MoveFileA', 'AddAtomW', 'RemoveDirectoryW', 'GetProfileStringA', 'FoldStringA', 'FindNextFileA', 'FindFirstVolumeMountPointA', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'GetCurrentDirectoryA', 'EnumDateFormatsW', 'PeekConsoleInputA', 'GetShortPathNameW', 'SetFileShortNameA', 'ReadConsoleInputW', 'FindFirstVolumeW', 'GetVolumeNameForVolumeMountPointW', 'GetConsoleProcessList', 'ReadConsoleOutputCharacterW', 'DeleteFileA', 'lstrcpyA', 'FlushFileBuffers', 'CloseHandle', 'CreateFileW', 'SetInformationJobObject', 'GetConsoleAliasExesA', 'GetPrivateProfileIntW', 'GetPrivateProfileSectionNamesW', 'Sleep', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'WideCharToMultiByte', 'HeapAlloc', 'MultiByteToWideChar', 'HeapReAlloc', 'ExitProcess', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'TerminateProcess', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetStringTypeW', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'SetStdHandle', 'WriteConsoleW', 'CharUpperBuffW', 'CharUpperW', 'GetCharWidthFloatW', 'ReadEventLogA'], ['WriteFile', 'Sleep', 'CreateFileA', 'CloseHandle', 'GetConsoleWindow', 'CreateProcessA', 'IsDebuggerPresent', 'InitializeSListHead', 'GetSystemTimeAsFileTime', 'GetCurrentThreadId', 'GetCurrentProcessId', 'QueryPerformanceCounter', 'IsProcessorFeaturePresent', 'TerminateProcess', 'GetCurrentProcess', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'RtlVirtualUnwind', 'RtlLookupFunctionEntry', 'RtlCaptureContext', 'ShowWindow', '__C_specific_handler', 'memset', '__std_type_info_destroy_list', '_initialize_narrow_environment', '_initterm', '_configure_narrow_argv', '_initialize_onexit_table', '_initterm_e', '_cexit', '_seh_filter_dll', '_execute_onexit_table'], ['GetTraceEnableFlags', 'GetTraceLoggerHandle', 'GetTraceEnableLevel', 'RegisterTraceGuidsW', 'TraceEvent', 'RegCloseKey', 'RegQueryInfoKeyW', 'RegEnumKeyExW', 'RegOpenKeyExW', 'RegSetValueExW', 'RegCreateKeyExW', 'RegDeleteValueW', 'UnregisterTraceGuids', 'OpenProcessToken', 'OpenThreadToken', 'GetSidLengthRequired', 'InitializeSid', 'GetTokenInformation', 'IsValidSid', 'GetSidSubAuthority', 'GetLengthSid', 'CopySid', 'EqualSid', 'RegOpenKeyW', 'RegCreateKeyW', 'InitializeSecurityDescriptor', 'SetSecurityDescriptorDacl', 'AllocateAndInitializeSid', 'SetEntriesInAclW', 'FreeSid', 'LoadLibraryExW', 'CreateMutexW', 'HeapSetInformation', 'RegisterApplicationRestart', 'GetSystemDirectoryW', 'SetCurrentDirectoryW', 'ReleaseMutex', 'GetCurrentThread', 'CompareStringW', 'FormatMessageW', 'lstrcmpiW', 'CreateThread', 'ResumeThread', 'MulDiv', 'WaitForMultipleObjects', 'Sleep', 'LocalAlloc', 'OpenProcess', 'GetUserDefaultUILanguage', 'LoadLibraryExA', 'DelayLoadFailureHook', 'GetSystemInfo', 'TerminateThread', 'GetExitCodeThread', 'ResetEvent', 'GetQueuedCompletionStatus', 'SetEvent', 'WaitForSingleObject', 'PostQueuedCompletionStatus', 'CloseHandle', 'CreateIoCompletionPort', 'GetLastError', 'CreateEventW', 'LocalFree', 'ProcessIdToSessionId', 'GetBinaryTypeW', 'GetFileMUIPath', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'RaiseException', 'GetCurrentThreadId', 'LeaveCriticalSection', 'EnterCriticalSection', 'SetLastError', 'GetSystemWindowsDirectoryW', 'OpenEventW', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'GetSystemTime', 'GetUserDefaultLCID', 'InitializeCriticalSectionAndSpinCount', 'GetNativeSystemInfo', 'LoadLibraryA', 'RegSetValueExA', 'RegQueryValueExA', 'RegQueryValueExW', 'FindResourceA', 'OutputDebugStringA', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'TerminateProcess', 'GetSystemTimeAsFileTime', 'GetTickCount', 'QueryPerformanceCounter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'InterlockedPushEntrySList', 'VirtualAlloc', 'InterlockedPopEntrySList', 'VirtualFree', 'lstrlenA', 'WideCharToMultiByte', 'GetProcessHeap', 'HeapSize', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'HeapDestroy', 'GetVersionExA', 'ExpandEnvironmentStringsW', 'FindResourceExW', 'InitializeCriticalSection', 'DeleteCriticalSection', 'MultiByteToWideChar', 'GetCurrentProcessId', 'lstrlenW', 'GetModuleFileNameW', 'LoadLibraryW', 'FlushInstructionCache', 'GetModuleHandleW', 'GetVersionExW', 'GetProcAddress', 'GetCurrentProcess', 'FreeLibrary', 'CreateDIBSection', 'GetDeviceCaps', 'CreateFontIndirectW', 'DeleteDC', 'CreateCompatibleDC', 'GetStockObject', 'GetTextExtentPoint32W', 'SelectObject', 'GetObjectW', 'SetTextColor', 'SetBkMode', 'DeleteObject', 'GetTextMetricsW', 'GetWindowLongW', 'GetMenu', 'AdjustWindowRectEx', 'MoveWindow', 'GetDC', 'ReleaseDC', 'SetFocus', 'IsWindowEnabled', 'IsWindowVisible', 'CreateWindowExW', 'GetClassInfoExW', 'RegisterClassExW', 'SetWindowLongPtrW', 'GetWindowLongPtrW', 'CallWindowProcW', 'GetSubMenu', 'LoadMenuW', 'GetParent', 'ClientToScreen', 'CheckMenuRadioItem', 'TrackPopupMenuEx', 'DestroyMenu', 'SetTimer', 'SetWindowPos', 'KillTimer', 'SetWindowTextW', 'EnableMenuItem', 'GetSysColorBrush', 'GetSysColor', 'SendMessageW', 'UnregisterClassA', 'GetKeyState', 'CharLowerBuffW', 'GetClassNameW', 'GetWindowThreadProcessId', 'DestroyWindow', 'SetActiveWindow', 'LoadStringW', 'InvalidateRect', 'PostMessageW', 'IsWindow', 'CharNextW', 'LoadAcceleratorsW', 'GetMessageW', 'TranslateAcceleratorW', 'TranslateMessage', 'DispatchMessageW', 'BringWindowToTop', 'EnableWindow', 'IsDlgButtonChecked', 'CheckDlgButton', 'GetDlgItem', 'GetSystemMetrics', 'GetClientRect', 'EnumChildWindows', 'GetShellWindow', 'SetWindowLongW', 'DeleteMenu', 'GetProcessDefaultLayout', 'MonitorFromPoint', 'GetWindowRect', 'GetMonitorInfoW', 'MonitorFromRect', 'SetCursor', 'ShowWindow', 'GetFocus', 'GetWindowPlacement', 'IsIconic', 'IsZoomed', 'LockWindowUpdate', 'PostQuitMessage', 'LoadCursorW', 'SystemParametersInfoW', 'DestroyIcon', 'TrackMouseEvent', 'DefWindowProcW', 'malloc', 'wcscpy_s', 'wcscat_s', '_purecall', 'memcpy_s', 'memmove_s', '__RTDynamicCast', '_wcsicmp', '_wcsnicmp', '_itow', '_wtoi', 'iswspace', '_wsplitpath_s', 'wcsncat_s', '_beginthreadex', 'wcsncpy_s', '??0exception@@QEAA@AEBV0@@Z', '?what@exception@@UEBAPEBDXZ', '??1exception@@UEAA@XZ', '??0exception@@QEAA@AEBQEBD@Z', '??0exception@@QEAA@XZ', 'wcsstr', 'memcpy', 'swprintf_s', 'exit', 'wcschr', '_itoa', 'memset', '__C_specific_handler', 'calloc', '??0exception@@QEAA@AEBQEBDH@Z', '_CxxThrowException', '_callnewh', '__CxxFrameHandler3', '__wgetmainargs', '_onexit', '_lock', '__dllonexit', '_unlock', '_errno', '_resetstkoflw', '??1type_info@@UEAA@XZ', '?terminate@@YAXXZ', '__set_app_type', '_fmode', '_commode', '__setusermatherr', '_amsg_exit', '_ultow_s', 'wcsrchr', 'iswdigit', '_vscwprintf', 'vswprintf_s', '_strlwr_s', '_itoa_s', '_ultoa_s', '_i64toa_s', '_ui64toa_s', '_gcvt_s', 'wcsnlen', '_get_errno', '_set_errno', '_msize', 'strncmp', 'wcsncmp', '_wcstoui64', '_wcstoi64', 'wcstod', '_HUGE', '_fpclass', 'swscanf', 'memmove', '_vsnwprintf', 'wcspbrk', '_wcslwr', '_initterm', '_wcmdln', '_cexit', 'free', 'realloc', '_exit', '_XcptFilter', '_ltow', 'memcmp', 'ImageList_LoadImageW', 'PropertySheetW', 'ImageList_Add', 'ImageList_Draw', 'ImageList_Create', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_GetIconSize', 'InitCommonControlsEx', 'CoGetClassObject', 'StringFromCLSID', 'CreateStreamOnHGlobal', 'PropVariantClear', 'OleGetClipboard', 'CoRevertToSelf', 'CoImpersonateClient', 'OleUninitialize', 'CoRevokeClassObject', 'CoResumeClassObjects', 'CoRegisterClassObject', 'CoInitializeSecurity', 'OleInitialize', 'CoTaskMemAlloc', 'CoTaskMemRealloc', 'CoTaskMemFree', 'CoInitialize', 'CoUninitialize', 'CoCreateInstance', 'VariantClear', 'SysAllocStringByteLen', 'SysStringByteLen', 'SysAllocString', 'SysFreeString', 'SysAllocStringLen', 'LoadRegTypeLib', 'LoadTypeLib', 'DispCallFunc', 'VarUI4FromStr', 'VariantInit', 'SafeArrayGetLBound', 'SafeArrayGetUBound', 'SafeArrayDestroy', 'SafeArrayRedim', 'SafeArrayCreate', 'SafeArrayUnlock', 'SafeArrayLock', 'VarBstrCat', 'SysStringLen', 'VariantCopyInd', 'VariantCopy', 'GetErrorInfo', 'VarBstrCmp', 'SHGetPropertyStoreForWindow', 'ShellExecuteW', 'UrlEscapeW', 'UrlUnescapeW', 'SHStrDupW', 'UuidCreateNil', 'RpcStringFreeA', 'UuidToStringA', 'UuidCreate', 'UuidIsNil', 'UuidFromStringA'], ['_controlfp', 'MultiByteToWideChar', 'GetDC', 'SelectObject', 'gethostbyname', '??1Init@ios_base@std@@QAE@XZ', 'GetModuleFileNameW', 'GetModuleHandleA', 'LoadLibraryA', 'LocalAlloc', 'LocalFree', 'GetModuleFileNameA', 'ExitProcess'], ['VirtualProtect', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'GetTimeZoneInformation', 'EnumSystemCodePagesW', 'CloseHandle', 'WriteConsoleW', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleMode', 'GetConsoleCP', 'CompareFileTime', 'LCMapStringEx', 'HeapSize', 'LoadLibraryW', 'OutputDebugStringW', 'GetStringTypeW', 'HeapReAlloc', 'GetProcessVersion', 'FreeEnvironmentStringsA', 'GetVersionExA', 'FlushFileBuffers', 'GetFileType', 'HeapAlloc', 'RtlUnwind', 'LoadLibraryExW', 'GetCommandLineA', 'GetCurrentThreadId', 'GetLastError', 'SetLastError', 'InterlockedIncrement', 'InterlockedDecrement', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'GetProcessHeap', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'DeleteCriticalSection', 'InitOnceExecuteOnce', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'GetTickCount64', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetCurrentProcess', 'TerminateProcess', 'GetModuleHandleW', 'Sleep', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'WriteFile', 'GetModuleFileNameW', 'CreateFileW', 'WNetGetProviderNameW', 'WNetAddConnectionW', 'WNetGetUniversalNameA', 'WNetDisconnectDialog1A', 'WNetGetUserW', 'WNetCancelConnectionA', 'WNetGetConnectionW', 'I_RpcReallocPipeBuffer', 'RpcBindingInqObject', 'RpcBindingFromStringBindingW', 'NdrServerCall', 'NdrXmitOrRepAsUnmarshall', 'NdrComplexArrayMemorySize', 'GetSaveFileNameW', 'GetSaveFileNameA', 'PageSetupDlgW', 'GetFileTitleA', 'UnloadPerfCounterTextStringsW', 'LoadPerfCounterTextStringsA', 'UnloadPerfCounterTextStringsA', 'LoadPerfCounterTextStringsW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetCurrentThreadId', 'SetCurrentDirectoryA', 'GetStartupInfoA', 'GetLastError', 'GetCurrentDirectoryA', 'GetCommandLineA', 'FreeLibrary', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'SetFilePointer', 'SetEndOfFile', 'RtlUnwind', 'ReadFile', 'RaiseException', 'GetStdHandle', 'GetFileSize', 'GetFileType', 'CreateFileA', 'CloseHandle', 'GetKeyboardType', 'MessageBoxA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'SizeofResource', 'LockResource', 'LoadResource', 'GetModuleHandleA', 'FindResourceA', 'FindFirstFileA', 'FindClose', 'FileTimeToLocalFileTime', 'FileTimeToDosDateTime', 'ExitProcess', 'SetDlgItemTextA', 'MessageBoxA', 'GetDlgItem', 'EndDialog', 'EnableWindow', 'DialogBoxParamA'], ['GetTempPathW', 'GetPhysicallyInstalledSystemMemory', 'FreeLibrary', 'GetProcAddress', 'LoadLibraryW', 'WideCharToMultiByte', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'RaiseException', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'GetStartupInfoW', 'GetModuleHandleW', 'GetLastError', 'HeapAlloc', 'HeapFree', 'GetProcessHeap', 'VirtualQuery', 'SetEndOfFile', 'RtlPcToFileHeader', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetModuleFileNameW', 'LoadLibraryExW', 'SetLastError', 'EncodePointer', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'RtlUnwind', 'ExitProcess', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetCurrentThread', 'CloseHandle', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'SetFilePointerEx', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetFileType', 'GetStringTypeW', 'SetConsoleCtrlHandler', 'CreateFileW', 'FlushFileBuffers', 'ReadFile', 'ReadConsoleW', 'HeapSize', 'HeapReAlloc', 'WriteConsoleW'], ['CreateProcessW', 'PeekNamedPipe', 'ReadFile', 'GetExitCodeProcess', 'Sleep', 'GlobalFree', 'HeapAlloc', 'HeapFree', 'lstrcatA', 'ReadProcessMemory', 'ExitProcess', 'HeapReAlloc', 'IsBadReadPtr', 'GetModuleHandleA', 'WaitForSingleObject', 'CreateProcessA', 'GetStartupInfoA', 'GetTickCount', 'FindNextFileA', 'FindFirstFileA', 'FindClose', 'GetVersionExA', 'GetCommandLineA', 'FreeLibrary', 'LCMapStringA', 'Process32First', 'GlobalUnlock', 'GlobalLock', 'GlobalAlloc', 'SetFileAttributesA', 'CreatePipe', 'GetFileAttributesA', 'MoveFileA', 'CreateDirectoryA', 'DeleteFileA', 'RemoveDirectoryA', 'GetTempPathW', 'CreateFileA', 'GetTempFileNameA', 'GetLogicalDriveStringsA', 'GetQueuedCompletionStatus', 'CreateIoCompletionPort', 'CreateThread', 'lstrcpyn', 'MultiByteToWideChar', 'Process32Next', 'CreateToolhelp32Snapshot', 'GetCurrentProcessId', 'WideCharToMultiByte', 'lstrlenW', 'GetCommandLineW', 'GetProcessHeap', 'GetCurrentProcess', 'GetWindowsDirectoryA', 'CreateEventA', 'OpenEventA', 'SetHandleCount', 'RtlMoveMemory', 'VirtualProtect', 'SetUnhandledExceptionFilter', 'CloseHandle', 'LocalFree', 'LocalAlloc', 'GetProcAddress', 'LoadLibraryA', 'CopyFileA', 'OpenProcess', 'GetModuleFileNameA', 'GetServiceDisplayNameA', 'LookupPrivilegeValueA', 'EnumDependentServicesA', 'EnumServicesStatusExA', 'EnumServicesStatusA', 'ChangeServiceConfigA', 'ControlService', 'StartServiceA', 'DeleteService', 'CreateServiceA', 'GetServiceKeyNameA', 'ChangeServiceConfig2A', 'QueryServiceConfig2A', 'QueryServiceConfigA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegCreateKeyExA', 'RegOpenKeyExA', 'RegSetValueExA', 'RegFlushKey', 'RegQueryValueExA', 'RegEnumValueA', 'RegQueryInfoKeyA', 'RegCloseKey', 'RegEnumKeyA', 'RegOpenKeyA', 'RegCreateKeyA', 'CreateProcessWithTokenW', 'DuplicateTokenEx', 'OpenServiceA', 'OpenSCManagerA', 'CloseServiceHandle', 'QueryServiceStatus', 'LookupAccountSidA', 'GetTokenInformation', 'AdjustTokenPrivileges', 'OpenProcessToken', 'CommandLineToArgvW', 'SHGetSpecialFolderPathW', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'WTSFreeMemory', 'WTSEnumerateProcessesA', 'PathIsDirectoryA', 'PathFindFileNameA', 'CoCreateGuid', 'GetSystemMetrics', 'DispatchMessageA', 'wsprintfA', 'MessageBoxA', 'SetWindowPos', 'SetFocus', 'CreateWindowExA', 'IsWindowEnabled', 'EnableWindow', 'MapWindowPoints', 'GetParent', 'GetWindowRect', 'PeekMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'GetInputState', 'WaitForInputIdle', 'CallWindowProcA', 'SetWindowLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'UnhookWindowsHookEx', 'GetForegroundWindow', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'GetMessageA', 'MoveWindow', 'TranslateMessage', '_stricmp', '_ftol', 'free', 'malloc', 'strncmp', 'modf', 'memmove', 'realloc', 'strchr', 'strrchr', '??3@YAXPAX@Z', '__CxxFrameHandler', 'rand', 'srand', 'sprintf', 'atoi', 'gethostname', 'WSACleanup', 'WSAStartup'], ['FreeSid', 'DeleteDC', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'free', 'CoInitialize', 'OleLoadPicture', 'SHGetMalloc', 'GetDC'], ['GetProcAddress', 'GetModuleHandleA', 'LoadLibraryA', 'GetAdaptersInfo', 'WSAStartup', 'NetWkstaTransportEnum', 'DirectDrawCreateEx', 'GetTopWindow', 'SetTextAlign', 'ClosePrinter', 'GetFileTitleA', 'OpenServiceA', 'DragAcceptFiles', 'OleUninitialize', 'SafeArrayCreate', 'MiniDumpWriteDump', 'CheckSumMappedFile', 'timeGetDevCaps', 'VariantChangeTypeEx', 'RaiseException'], ['CreateFileA', 'WriteFile', 'CloseHandle', 'GetComputerNameA', 'GetCurrentActCtx', 'CreateFiber', 'SwitchToFiber', 'CreateActCtxA', 'ActivateActCtx', 'DeactivateActCtx', 'CreateThread', 'ResumeThread', 'OpenThread', 'GetTempPathA', 'LockFile', 'UnlockFile', 'SetEndOfFile', 'ReleaseActCtx', 'CreateNamedPipeA', 'WaitNamedPipeA', 'VirtualAlloc', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'IsProcessorFeaturePresent', 'GetStringTypeW', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'GetACP', 'EncodePointer', 'DecodePointer', 'HeapAlloc', 'HeapFree', 'GetModuleHandleW', 'GetProcAddress', 'InitializeCriticalSectionAndSpinCount', 'TlsGetValue', 'TlsSetValue', 'FreeLibrary', 'LoadLibraryExW', 'LCMapStringW', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'IsValidCodePage', 'GetOEMCP', 'GetCPInfo', 'ExitProcess', 'GetModuleHandleExW', 'WideCharToMultiByte', 'RaiseException', 'RtlUnwind', 'SetStdHandle', 'GetConsoleCP', 'GetConsoleMode', 'SetFilePointerEx', 'FlushFileBuffers', 'WriteConsoleW', 'CreateFileW'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryExA', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'Rectangle', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawFocusRect', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Replace', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'AutodialHookCallback', 'RtlMoveMemory', 'NtProtectVirtualMemory', 'GetProcAddress', 'NtQueryInformationFile', 'NtOpenFile', 'NtClose', 'NtReadFile', 'RtlDosPathNameToNtPathName_U'], ['GetProcAddress', 'GetModuleHandleA', 'MessageBoxA'], ['RegCreateKeyExA', 'RegEnumKeyA', 'RegQueryValueExA', 'RegSetValueExA', 'RegCloseKey', 'RegDeleteValueA', 'RegDeleteKeyA', 'AdjustTokenPrivileges', 'LookupPrivilegeValueA', 'OpenProcessToken', 'SetFileSecurityA', 'RegOpenKeyExA', 'RegEnumValueA', 'SHGetFileInfoA', 'SHFileOperationA', 'SHGetPathFromIDListA', 'ShellExecuteExA', 'SHGetSpecialFolderLocation', 'SHBrowseForFolderA', 'IIDFromString', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'CoTaskMemFree', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'SetClipboardData', 'CharPrevA', 'CallWindowProcA', 'PeekMessageA', 'DispatchMessageA', 'MessageBoxIndirectA', 'GetDlgItemTextA', 'SetDlgItemTextA', 'GetSystemMetrics', 'CreatePopupMenu', 'AppendMenuA', 'TrackPopupMenu', 'FillRect', 'EmptyClipboard', 'LoadCursorA', 'GetMessagePos', 'CheckDlgButton', 'GetSysColor', 'SetCursor', 'GetWindowLongA', 'SetClassLongA', 'SetWindowPos', 'IsWindowEnabled', 'GetWindowRect', 'GetSystemMenu', 'EnableMenuItem', 'RegisterClassA', 'ScreenToClient', 'EndDialog', 'GetClassInfoA', 'SystemParametersInfoA', 'CreateWindowExA', 'ExitWindowsEx', 'DialogBoxParamA', 'CharNextA', 'SetTimer', 'DestroyWindow', 'CreateDialogParamA', 'SetForegroundWindow', 'SetWindowTextA', 'PostQuitMessage', 'SendMessageTimeoutA', 'ShowWindow', 'wsprintfA', 'GetDlgItem', 'FindWindowExA', 'IsWindow', 'GetDC', 'SetWindowLongA', 'LoadImageA', 'InvalidateRect', 'ReleaseDC', 'EnableWindow', 'BeginPaint', 'SendMessageA', 'DefWindowProcA', 'DrawTextA', 'GetClientRect', 'EndPaint', 'IsWindowVisible', 'CloseClipboard', 'OpenClipboard', 'SetBkMode', 'SetBkColor', 'GetDeviceCaps', 'CreateFontIndirectA', 'CreateBrushIndirect', 'DeleteObject', 'SetTextColor', 'SelectObject', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetProcAddress', 'GetSystemDirectoryA', 'WideCharToMultiByte', 'MoveFileExA', 'GetTempFileNameA', 'RemoveDirectoryA', 'WriteFile', 'CreateDirectoryA', 'GetLastError', 'CreateProcessA', 'GlobalLock', 'GlobalUnlock', 'CreateThread', 'lstrcpynA', 'SetErrorMode', 'GetDiskFreeSpaceA', 'lstrlenA', 'GetCommandLineA', 'GetVersion', 'GetWindowsDirectoryA', 'SetEnvironmentVariableA', 'GetTempPathA', 'CopyFileA', 'GetCurrentProcess', 'ExitProcess', 'GetModuleFileNameA', 'GetFileSize', 'ReadFile', 'GetTickCount', 'Sleep', 'CreateFileA', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'SetFileAttributesA', 'GetFullPathNameA', 'GetShortPathNameA', 'MoveFileA', 'CompareFileTime', 'SetFileTime', 'SearchPathA', 'lstrcmpiA', 'lstrcmpA', 'CloseHandle', 'GlobalFree', 'GlobalAlloc', 'ExpandEnvironmentStringsA', 'LoadLibraryExA', 'FreeLibrary', 'lstrcpyA', 'lstrcatA', 'FindClose', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'SetFilePointer', 'GetModuleHandleA', 'FindNextFileA', 'FindFirstFileA', 'DeleteFileA', 'MulDiv'], ['RegCreateKeyExW', 'RegEnumKeyW', 'RegQueryValueExW', 'RegSetValueExW', 'RegCloseKey', 'RegDeleteValueW', 'RegDeleteKeyW', 'AdjustTokenPrivileges', 'LookupPrivilegeValueW', 'OpenProcessToken', 'SetFileSecurityW', 'RegOpenKeyExW', 'RegEnumValueW', 'SHGetSpecialFolderLocation', 'SHFileOperationW', 'SHBrowseForFolderW', 'SHGetPathFromIDListW', 'ShellExecuteExW', 'SHGetFileInfoW', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'IIDFromString', 'CoTaskMemFree', 'ImageList_Create', 'ImageList_Destroy', 'ImageList_AddMasked', 'GetClientRect', 'EndPaint', 'DrawTextW', 'IsWindowEnabled', 'DispatchMessageW', 'wsprintfA', 'CharNextA', 'CharPrevW', 'MessageBoxIndirectW', 'GetDlgItemTextW', 'SetDlgItemTextW', 'GetSystemMetrics', 'FillRect', 'AppendMenuW', 'TrackPopupMenu', 'OpenClipboard', 'SetClipboardData', 'CloseClipboard', 'IsWindowVisible', 'CallWindowProcW', 'GetMessagePos', 'CheckDlgButton', 'LoadCursorW', 'SetCursor', 'GetSysColor', 'SetWindowPos', 'GetWindowLongW', 'PeekMessageW', 'SetClassLongW', 'GetSystemMenu', 'EnableMenuItem', 'GetWindowRect', 'ScreenToClient', 'EndDialog', 'RegisterClassW', 'SystemParametersInfoW', 'CreateWindowExW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'CreateDialogParamW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'SetForegroundWindow', 'ShowWindow', 'wsprintfW', 'SendMessageTimeoutW', 'FindWindowExW', 'IsWindow', 'GetDlgItem', 'SetWindowLongW', 'LoadImageW', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'EmptyClipboard', 'CreatePopupMenu', 'SetBkMode', 'SetBkColor', 'GetDeviceCaps', 'CreateFontIndirectW', 'CreateBrushIndirect', 'DeleteObject', 'SetTextColor', 'SelectObject', 'GetExitCodeProcess', 'WaitForSingleObject', 'GetModuleHandleA', 'GetProcAddress', 'GetSystemDirectoryW', 'lstrcatW', 'Sleep', 'lstrcpyA', 'WriteFile', 'GetTempFileNameW', 'lstrcmpiA', 'RemoveDirectoryW', 'CreateProcessW', 'CreateDirectoryW', 'GetLastError', 'CreateThread', 'GlobalLock', 'GlobalUnlock', 'GetDiskFreeSpaceW', 'WideCharToMultiByte', 'lstrcpynW', 'lstrlenW', 'SetErrorMode', 'GetVersionExW', 'GetCommandLineW', 'GetTempPathW', 'GetWindowsDirectoryW', 'SetEnvironmentVariableW', 'CopyFileW', 'ExitProcess', 'GetCurrentProcess', 'GetModuleFileNameW', 'GetFileSize', 'CreateFileW', 'GetTickCount', 'MulDiv', 'SetFileAttributesW', 'GetFileAttributesW', 'SetCurrentDirectoryW', 'MoveFileW', 'GetFullPathNameW', 'GetShortPathNameW', 'SearchPathW', 'CompareFileTime', 'SetFileTime', 'CloseHandle', 'lstrcmpiW', 'lstrcmpW', 'ExpandEnvironmentStringsW', 'GlobalFree', 'GlobalAlloc', 'GetModuleHandleW', 'LoadLibraryExW', 'MoveFileExW', 'FreeLibrary', 'WritePrivateProfileStringW', 'GetPrivateProfileStringW', 'lstrlenA', 'MultiByteToWideChar', 'ReadFile', 'SetFilePointer', 'FindClose', 'FindNextFileW', 'FindFirstFileW', 'DeleteFileW'], ['GetLastError', 'SetLastError', 'FormatMessageW', 'GetCurrentProcess', 'DeviceIoControl', 'SetFileTime', 'CloseHandle', 'CreateDirectoryW', 'RemoveDirectoryW', 'CreateFileW', 'DeleteFileW', 'CreateHardLinkW', 'GetShortPathNameW', 'GetLongPathNameW', 'MoveFileW', 'GetFileType', 'GetStdHandle', 'WriteFile', 'ReadFile', 'FlushFileBuffers', 'SetEndOfFile', 'SetFilePointer', 'GetCurrentProcessId', 'SetFileAttributesW', 'GetFileAttributesW', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'InterlockedDecrement', 'GetVersionExW', 'GetCurrentDirectoryW', 'GetFullPathNameW', 'FoldStringW', 'GetModuleFileNameW', 'GetModuleHandleW', 'FindResourceW', 'FreeLibrary', 'GetProcAddress', 'ExitProcess', 'SetThreadExecutionState', 'Sleep', 'LoadLibraryW', 'GetSystemDirectoryW', 'CompareStringW', 'AllocConsole', 'FreeConsole', 'AttachConsole', 'WriteConsoleW', 'GetProcessAffinityMask', 'CreateThread', 'SetThreadPriority', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'SetEvent', 'ResetEvent', 'ReleaseSemaphore', 'WaitForSingleObject', 'CreateEventW', 'CreateSemaphoreW', 'GetSystemTime', 'SystemTimeToTzSpecificLocalTime', 'TzSpecificLocalTimeToSystemTime', 'SystemTimeToFileTime', 'FileTimeToLocalFileTime', 'LocalFileTimeToFileTime', 'FileTimeToSystemTime', 'GetCPInfo', 'IsDBCSLeadByte', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GlobalAlloc', 'LockResource', 'GlobalLock', 'GlobalUnlock', 'GlobalFree', 'LoadResource', 'SizeofResource', 'SetCurrentDirectoryW', 'GetTimeFormatW', 'GetDateFormatW', 'LocalFree', 'GetExitCodeProcess', 'GetLocalTime', 'GetTickCount', 'MapViewOfFile', 'UnmapViewOfFile', 'CreateFileMappingW', 'OpenFileMappingW', 'GetCommandLineW', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'GetTempPathW', 'MoveFileExW', 'GetLocaleInfoW', 'GetNumberFormatW', 'DecodePointer', 'SetFilePointerEx', 'GetConsoleMode', 'GetConsoleCP', 'HeapSize', 'SetStdHandle', 'GetProcessHeap', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineA', 'GetOEMCP', 'RaiseException', 'GetSystemInfo', 'VirtualProtect', 'VirtualQuery', 'LoadLibraryExA', 'IsProcessorFeaturePresent', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'TerminateProcess', 'RtlUnwind', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'LoadLibraryExW', 'QueryPerformanceFrequency', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetACP', 'HeapFree', 'HeapReAlloc', 'HeapAlloc', 'GetStringTypeW', 'LCMapStringW', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'SysAllocString', 'SysFreeString', 'VariantClear', 'GdipAlloc', 'GdipDisposeImage', 'GdipCloneImage', 'GdipCreateBitmapFromStream', 'GdipCreateBitmapFromStreamICM', 'GdipCreateHBITMAPFromBitmap', 'GdiplusStartup', 'GdiplusShutdown', 'GdipFree'], ['SetEnvironmentVariableA', 'CreateFileA', 'GetFileSize', 'GetModuleFileNameA', 'ReadFile', 'GetCurrentProcess', 'CopyFileA', 'Sleep', 'GetTickCount', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetCommandLineA', 'lstrlenA', 'GetVersion', 'SetErrorMode', 'lstrcpynA', 'ExitProcess', 'SetCurrentDirectoryA', 'GlobalLock', 'CreateThread', 'GetLastError', 'CreateDirectoryA', 'CreateProcessA', 'RemoveDirectoryA', 'GetTempFileNameA', 'WriteFile', 'lstrcpyA', 'MoveFileExA', 'lstrcatA', 'GetSystemDirectoryA', 'GetProcAddress', 'GetExitCodeProcess', 'WaitForSingleObject', 'CompareFileTime', 'SetFileAttributesA', 'GetFileAttributesA', 'GetShortPathNameA', 'MoveFileA', 'GetFullPathNameA', 'SetFileTime', 'SearchPathA', 'CloseHandle', 'lstrcmpiA', 'GlobalUnlock', 'GetDiskFreeSpaceA', 'lstrcmpA', 'FindFirstFileA', 'FindNextFileA', 'DeleteFileA', 'SetFilePointer', 'GetPrivateProfileStringA', 'FindClose', 'MultiByteToWideChar', 'FreeLibrary', 'MulDiv', 'WritePrivateProfileStringA', 'LoadLibraryExA', 'GetModuleHandleA', 'GlobalAlloc', 'GlobalFree', 'ExpandEnvironmentStringsA', 'ScreenToClient', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'PostQuitMessage', 'GetWindowRect', 'EnableMenuItem', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndDialog', 'RegisterClassA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'ExitWindowsEx', 'GetDC', 'CreateDialogParamA', 'SetTimer', 'GetDlgItem', 'SetWindowLongA', 'SetForegroundWindow', 'LoadImageA', 'IsWindow', 'SendMessageTimeoutA', 'FindWindowExA', 'OpenClipboard', 'TrackPopupMenu', 'AppendMenuA', 'EndPaint', 'DestroyWindow', 'wsprintfA', 'ShowWindow', 'SetWindowTextA', 'SelectObject', 'SetBkMode', 'CreateFontIndirectA', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'ShellExecuteExA', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'SHFileOperationA', 'AdjustTokenPrivileges', 'RegCreateKeyExA', 'RegOpenKeyExA', 'SetFileSecurityA', 'OpenProcessToken', 'LookupPrivilegeValueA', 'RegEnumValueA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumKeyA', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['lstrcpynA', 'GetConsoleAliasExesLengthA', 'InterlockedIncrement', 'InterlockedDecrement', 'GetUserDefaultLCID', 'OpenSemaphoreA', 'BackupSeek', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'ReadConsoleW', 'GetWindowsDirectoryA', 'GetConsoleAliasExesW', 'WaitNamedPipeW', 'GetUserDefaultLangID', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'GetPrivateProfileIntA', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetPrivateProfileStructW', 'GetVersionExW', 'DeleteVolumeMountPointW', 'SetConsoleCursorPosition', 'TerminateProcess', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'lstrlenW', 'GetShortPathNameA', 'GetNamedPipeHandleStateW', 'GetPrivateProfileIntW', '_llseek', 'SetLastError', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'HeapSize', 'MoveFileW', 'RemoveDirectoryA', 'SetStdHandle', 'EnterCriticalSection', 'OpenWaitableTimerW', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'GetProfileStringA', 'AddAtomA', 'FoldStringA', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'GetModuleHandleA', 'FreeEnvironmentStringsW', 'CreateMailslotA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'PeekConsoleInputA', 'SetCalendarInfoA', 'ReadConsoleInputW', 'FindFirstVolumeW', 'GetVolumeNameForVolumeMountPointW', 'GetConsoleProcessList', 'EnumSystemLocalesW', 'lstrcpyA', 'CloseHandle', 'CreateFileW', 'ReadFile', 'AllocConsole', 'GetFileSize', 'SetInformationJobObject', 'GetLastError', 'GetPrivateProfileSectionNamesW', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MoveFileA', 'WideCharToMultiByte', 'HeapFree', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'DeleteFileA', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['ImmGetCandidateListW', 'acmDriverDetailsW', 'RealizePalette', 'CreatePrivateObjectSecurityWithMultipleInheritance', 'RegSaveKeyW', 'JetTerm2', 'GrayStringW', 'GetPropA', 'SetupDiEnumDeviceInfo', 'WaitForSingleObjectEx', 'Process32FirstW', 'GetUserDefaultLangID', 'GetModuleFileNameA', 'GetBinaryTypeA', 'GetModuleFileNameW', 'LoadLibraryW', 'GetProcessHeap', 'select', 'LZCopy', 'LZOpenFileW'], ['ReadConsoleA', 'SwitchToFiber', 'DeleteFiber', 'ConvertFiberToThread', 'CreateFiber', 'ConvertThreadToFiber', 'GetSystemTime', 'SetConsoleMode', 'GetVersionExW', 'FormatMessageW', 'ExitProcess', 'CreateMutexW', 'OpenMutexW', 'GetCommandLineW', 'QueryPerformanceFrequency', 'ReadFile', 'WriteFile', 'QueryPerformanceCounter', 'EnterCriticalSection', 'LeaveCriticalSection', 'SetFilePointer', 'SetEndOfFile', 'GetModuleHandleW', 'DeleteCriticalSection', 'DecodePointer', 'RaiseException', 'HeapReAlloc', 'HeapSize', 'InitializeCriticalSectionAndSpinCount', 'IsBadReadPtr', 'FreeLibrary', 'GetProcessHeap', 'HeapAlloc', 'GetNativeSystemInfo', 'LoadLibraryA', 'VirtualAlloc', 'VirtualFree', 'SetLastError', 'HeapFree', 'VirtualProtect', 'Process32NextW', 'Process32FirstW', 'CreateToolhelp32Snapshot', 'OpenMutexA', 'GetEnvironmentVariableW', 'GetModuleFileNameW', 'GetProcAddress', 'GetModuleHandleA', 'DeleteFileA', 'IsBadWritePtr', 'lstrcpyW', 'CreateDirectoryW', 'SetCurrentDirectoryW', 'GetACP', 'WideCharToMultiByte', 'lstrcpynW', 'Sleep', 'GlobalFree', 'MultiByteToWideChar', 'GlobalAlloc', 'CloseHandle', 'GetFileSize', 'CreateFileW', 'GetDiskFreeSpaceExW', 'GetDriveTypeW', 'GetLogicalDriveStringsW', 'GetLogicalDrives', 'lstrlenW', 'RemoveDirectoryW', 'FindClose', 'FindNextFileW', 'DeleteFileW', 'GetLastError', 'SetFileAttributesW', 'FindFirstFileW', 'GetStringTypeW', 'TryEnterCriticalSection', 'GetCurrentThreadId', 'EncodePointer', 'DuplicateHandle', 'WaitForSingleObjectEx', 'GetCurrentProcess', 'SwitchToThread', 'GetCurrentThread', 'GetExitCodeThread', 'CreateEventW', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetSystemTimeAsFileTime', 'GetTickCount', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'GetCPInfo', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'SetEvent', 'ResetEvent', 'IsDebuggerPresent', 'GetStartupInfoW', 'GetCurrentProcessId', 'InitializeSListHead', 'OutputDebugStringA', 'GetSystemDirectoryW', 'LoadLibraryExW', 'LoadLibraryW', 'GlobalDeleteAtom', 'lstrcmpW', 'GlobalAddAtomW', 'GlobalFindAtomW', 'GlobalLock', 'GlobalUnlock', 'GlobalSize', 'LocalFree', 'MulDiv', 'CopyFileW', 'SetErrorMode', 'InitializeCriticalSection', 'GlobalReAlloc', 'GlobalHandle', 'LocalAlloc', 'LocalReAlloc', 'WaitForSingleObject', 'SetThreadPriority', 'ResumeThread', 'lstrcmpA', 'GetUserDefaultUILanguage', 'GlobalFlags', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'GetCurrentDirectoryW', 'FindResourceExW', 'GetWindowsDirectoryW', 'lstrcmpiW', 'FlushFileBuffers', 'GetFullPathNameW', 'GetVolumeInformationW', 'LockFile', 'UnlockFile', 'VerSetConditionMask', 'VerifyVersionInfoW', 'GetFileAttributesW', 'FileTimeToLocalFileTime', 'GetFileAttributesExW', 'GetFileSizeEx', 'GetFileTime', 'LocalFileTimeToFileTime', 'SetFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetTempPathW', 'GetProfileIntW', 'SearchPathW', 'GetTempFileNameW', 'GetUserDefaultLCID', 'OutputDebugStringW', 'GetLocalTime', 'InterlockedIncrement', 'InterlockedDecrement', 'MoveFileExW', 'CompareFileTime', 'FileTimeToDosDateTime', 'DosDateTimeToFileTime', 'GetSystemInfo', 'ReleaseSemaphore', 'CreateSemaphoreW', 'WaitForMultipleObjects', 'SleepEx', 'GetSystemDirectoryA', 'MoveFileExA', 'GetEnvironmentVariableA', 'GetStdHandle', 'GetFileType', 'PeekNamedPipe', 'CreateTimerQueue', 'SignalObjectAndWait', 'CreateThread', 'GetThreadPriority', 'GetLogicalProcessorInformation', 'CreateTimerQueueTimer', 'ChangeTimerQueueTimer', 'DeleteTimerQueueTimer', 'GetNumaHighestNodeNumber', 'GetProcessAffinityMask', 'SetThreadAffinityMask', 'RegisterWaitForSingleObject', 'UnregisterWait', 'GetThreadTimes', 'FreeLibraryAndExitThread', 'InterlockedPopEntrySList', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'QueryDepthSList', 'UnregisterWaitEx', 'RtlUnwind', 'ExitThread', 'GetModuleHandleExW', 'GetModuleFileNameA', 'GetCommandLineA', 'HeapQueryInformation', 'VirtualQuery', 'SetStdHandle', 'SetFilePointerEx', 'GetDateFormatW', 'GetTimeFormatW', 'IsValidLocale', 'EnumSystemLocalesW', 'GetConsoleCP', 'GetConsoleMode', 'GetTimeZoneInformation', 'ReadConsoleW', 'SetConsoleCtrlHandler', 'FindFirstFileExA', 'FindNextFileA', 'IsValidCodePage', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableA', 'WriteConsoleW', 'GetShortPathNameW', 'LockResource', 'SizeofResource', 'FreeResource', 'LoadResource', 'GlobalGetAtomNameW', 'FindResourceW', 'AppendMenuW', 'RemoveMenu', 'DrawTextW', 'DrawTextExW', 'GrayStringW', 'TabbedTextOutW', 'GetDC', 'GetWindowDC', 'ReleaseDC', 'ClientToScreen', 'FillRect', 'GetSystemMetrics', 'DestroyMenu', 'GetMenuItemInfoW', 'InflateRect', 'CopyImage', 'SendDlgItemMessageA', 'SetRectEmpty', 'OffsetRect', 'GetWindowThreadProcessId', 'GetMessageW', 'TranslateMessage', 'GetCursorPos', 'GetSysColorBrush', 'LoadCursorW', 'RealChildWindowFromPoint', 'GetAsyncKeyState', 'MapDialogRect', 'IntersectRect', 'TrackMouseEvent', 'InvalidateRect', 'DestroyIcon', 'LoadImageW', 'ShowOwnedPopups', 'SetCursor', 'DeleteMenu', 'SetTimer', 'CreatePopupMenu', 'GetMenuDefaultItem', 'CharUpperW', 'GetNextDlgGroupItem', 'SetCapture', 'ReleaseCapture', 'WindowFromPoint', 'DrawFocusRect', 'IsRectEmpty', 'DrawIconEx', 'GetIconInfo', 'EnableScrollBar', 'HideCaret', 'InvertRect', 'NotifyWinEvent', 'MapVirtualKeyW', 'GetKeyNameTextW', 'LoadMenuW', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'SetClassLongW', 'SetParent', 'OpenClipboard', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'DrawStateW', 'DrawEdge', 'DrawFrameControl', 'IsZoomed', 'GetActiveWindow', 'BringWindowToTop', 'SetCursorPos', 'CopyIcon', 'FrameRect', 'DrawIcon', 'UnionRect', 'UpdateLayeredWindow', 'MonitorFromPoint', 'LoadAcceleratorsW', 'TranslateAcceleratorW', 'InsertMenuItemW', 'RegisterClassW', 'ReuseDDElParam', 'GetComboBoxInfo', 'PostThreadMessageW', 'WaitMessage', 'GetKeyboardLayout', 'IsCharLowerW', 'MapVirtualKeyExW', 'ToUnicodeEx', 'GetKeyboardState', 'CreateAcceleratorTableW', 'DestroyAcceleratorTable', 'CopyAcceleratorTableW', 'SetRect', 'LockWindowUpdate', 'GetMenuState', 'GetDoubleClickTime', 'ModifyMenuW', 'RegisterClipboardFormatW', 'CharUpperBuffW', 'IsClipboardFormatAvailable', 'GetUpdateRect', 'DrawMenuBar', 'DefFrameProcW', 'DefMDIChildProcW', 'TranslateMDISysAccel', 'SubtractRect', 'CreateMenu', 'GetWindowRgn', 'DestroyCursor', 'RegisterClassExW', 'CharPrevW', 'CreateCaret', 'GetCaretBlinkTime', 'ShowCaret', 'SetCaretPos', 'GetCaretPos', 'wsprintfA', 'DrawTextA', 'InvalidateRgn', 'GetGUIThreadInfo', 'CharPrevExA', 'DefWindowProcW', 'GetMessageTime', 'GetMessagePos', 'PeekMessageW', 'DispatchMessageW', 'RegisterWindowMessageW', 'GetNextDlgTabItem', 'EndDialog', 'CreateDialogIndirectParamW', 'WinHelpW', 'GetScrollInfo', 'SetScrollInfo', 'LoadIconW', 'CallNextHookEx', 'UnhookWindowsHookEx', 'SetWindowsHookExW', 'GetWindow', 'GetLastActivePopup', 'GetTopWindow', 'GetClassNameW', 'GetParent', 'GetClassLongW', 'PtInRect', 'EqualRect', 'CopyRect', 'GetSysColor', 'MapWindowPoints', 'AdjustWindowRectEx', 'GetWindowTextLengthW', 'GetWindowTextW', 'RemovePropW', 'GetPropW', 'SetPropW', 'ShowScrollBar', 'GetScrollRange', 'SetScrollRange', 'GetScrollPos', 'SetScrollPos', 'ScrollWindow', 'RedrawWindow', 'ValidateRect', 'EndPaint', 'BeginPaint', 'SetForegroundWindow', 'GetForegroundWindow', 'SetActiveWindow', 'UpdateWindow', 'TrackPopupMenu', 'GetMenuItemCount', 'GetMenuItemID', 'GetSubMenu', 'SetMenu', 'GetMenu', 'GetCapture', 'GetKeyState', 'GetFocus', 'SetFocus', 'GetDlgCtrlID', 'GetDlgItem', 'IsWindowVisible', 'EndDeferWindowPos', 'GetMenuStringW', 'GetProcessWindowStation', 'GetUserObjectInformationW', 'InsertMenuW', 'IsDialogMessageW', 'SetWindowTextW', 'CheckDlgButton', 'MoveWindow', 'LoadBitmapW', 'SetMenuItemInfoW', 'GetMenuCheckMarkDimensions', 'SetMenuItemBitmaps', 'EnableMenuItem', 'CheckMenuItem', 'SetMenuDefaultItem', 'DeferWindowPos', 'BeginDeferWindowPos', 'SetWindowPlacement', 'GetWindowPlacement', 'DestroyWindow', 'IsWindowEnabled', 'IsChild', 'IsMenu', 'IsWindow', 'CreateWindowExW', 'GetClassInfoExW', 'GetSystemMenu', 'GetClassInfoW', 'FlashWindow', 'FindWindowW', 'PostMessageW', 'EnableWindow', 'MessageBeep', 'SendMessageW', 'KillTimer', 'ShowWindow', 'PostQuitMessage', 'SetWindowRgn', 'GetClientRect', 'ScreenToClient', 'IsIconic', 'MonitorFromWindow', 'GetMonitorInfoW', 'GetDesktopWindow', 'MessageBoxW', 'SetWindowLongW', 'GetWindowLongW', 'wsprintfW', 'SetWindowPos', 'GetWindowRect', 'SystemParametersInfoW', 'CharNextW', 'UnpackDDElParam', 'CallWindowProcW', 'GetClipBox', 'GetObjectType', 'GetPixel', 'GetStockObject', 'GetViewportExtEx', 'GetWindowExtEx', 'IntersectClipRect', 'LineTo', 'PtVisible', 'RectVisible', 'RestoreDC', 'SaveDC', 'SelectClipRgn', 'ExtSelectClipRgn', 'GetViewportOrgEx', 'GetWindowOrgEx', 'SetPixelV', 'SetPaletteEntries', 'ExtFloodFill', 'PtInRegion', 'GetBoundsRect', 'FrameRgn', 'FillRgn', 'RoundRect', 'OffsetRgn', 'GetRgnBox', 'Rectangle', 'LPtoDP', 'Polyline', 'Polygon', 'CreatePolygonRgn', 'SetBitmapBits', 'Ellipse', 'CreateEllipticRgn', 'SetDIBColorTable', 'CreateDIBSection', 'CreateRoundRectRgn', 'DeleteObject', 'SelectObject', 'GetBitmapBits', 'GetTextExtentPointA', 'GdiFlush', 'GetObjectA', 'GetCharABCWidthsW', 'CreatePenIndirect', 'PlayEnhMetaFile', 'GetEnhMetaFileHeader', 'CreateEnhMetaFileW', 'CloseEnhMetaFile', 'RemoveFontMemResourceEx', 'Escape', 'GetTextFaceW', 'StretchBlt', 'SetPixel', 'GetTextCharsetInfo', 'EnumFontFamiliesW', 'CreateDIBitmap', 'CreateCompatibleBitmap', 'GetBkColor', 'RealizePalette', 'GetSystemPaletteEntries', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'CreatePalette', 'EnumFontFamiliesExW', 'DPtoLP', 'SetRectRgn', 'PatBlt', 'CreateRectRgnIndirect', 'CombineRgn', 'GetTextMetricsW', 'GetTextExtentPoint32W', 'CreateFontIndirectW', 'ScaleWindowExtEx', 'ScaleViewportExtEx', 'OffsetWindowOrgEx', 'OffsetViewportOrgEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'SetViewportOrgEx', 'SetViewportExtEx', 'DeleteDC', 'CreateSolidBrush', 'CreateRectRgn', 'CreatePatternBrush', 'CreatePen', 'CreateHatchBrush', 'ExcludeClipRect', 'CreateDCW', 'CopyMetaFileW', 'CreateBitmap', 'GetObjectW', 'ExtTextOutW', 'SelectPalette', 'SetBkMode', 'SetMapMode', 'SetLayout', 'GetLayout', 'SetPolyFillMode', 'SetROP2', 'CreateCompatibleDC', 'BitBlt', 'AddFontMemResourceEx', 'SetStretchBltMode', 'TextOutW', 'GetDeviceCaps', 'SetTextColor', 'GetTextColor', 'MoveToEx', 'SetTextAlign', 'SetBkColor', 'DeregisterEventSource', 'RegisterEventSourceW', 'ReportEventW', 'CryptAcquireContextW', 'CryptReleaseContext', 'CryptGenRandom', 'CryptDestroyKey', 'CryptSetHashParam', 'CryptGetProvParam', 'CryptGetUserKey', 'CryptExportKey', 'CryptDecrypt', 'CryptCreateHash', 'CryptDestroyHash', 'CryptSignHashW', 'CryptEnumProvidersW', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegSetValueExW', 'RegQueryValueExW', 'RegFlushKey', 'RegEnumKeyExW', 'RegQueryInfoKeyW', 'RegCloseKey', 'RegOpenKeyExW', 'SHGetSpecialFolderPathW', 'SHGetPathFromIDListW', 'SHGetSpecialFolderLocation', 'SHGetDesktopFolder', 'SHBrowseForFolderW', 'SHCreateDirectoryExW', 'SHFileOperationW', 'SHAppBarMessage', 'DragFinish', 'DragQueryFileW', 'ShellExecuteW', 'SHGetFileInfoW', 'SHGetMalloc', 'CoInitialize', 'OleCreateMenuDescriptor', 'OleDestroyMenuDescriptor', 'OleTranslateAccelerator', 'IsAccelerator', 'CLSIDFromProgID', 'OleLockRunning', 'RevokeDragDrop', 'RegisterDragDrop', 'CoLockObjectExternal', 'OleGetClipboard', 'DoDragDrop', 'CreateStreamOnHGlobal', 'CLSIDFromString', 'CoInitializeEx', 'CoDisconnectObject', 'ReleaseStgMedium', 'OleDuplicateData', 'CoTaskMemAlloc', 'CoCreateInstance', 'OleInitialize', 'CoTaskMemFree', 'CoUninitialize', 'AlphaBlend', 'TransparentBlt', 'SHSetValueW', 'SHGetValueW', 'PathFileExistsW', 'PathIsDirectoryW', 'wnsprintfW', 'PathRemoveBackslashW', 'PathFileExistsA', 'PathStripPathW', 'PathRemoveFileSpecW', 'PathAddBackslashW', 'PathAppendW', 'wnsprintfA', 'PathFindExtensionW', 'PathFindFileNameW', 'StrFormatKBSizeW', 'PathIsUNCW', 'PathStripToRootW', 'SHCreateStreamOnFileEx', 'StrCmpIW', 'IsThemeBackgroundPartiallyTransparent', 'IsAppThemed', 'GetWindowTheme', 'GetCurrentThemeName', 'GetThemeColor', 'DrawThemeBackground', 'CloseThemeData', 'OpenThemeData', 'DrawThemeParentBackground', 'DrawThemeText', 'GetThemePartSize', 'GetThemeSysColor', 'WinHttpSetTimeouts', 'WinHttpConnect', 'WinHttpCrackUrl', 'WinHttpSetOption', 'WinHttpOpenRequest', 'WinHttpAddRequestHeaders', 'WinHttpSetStatusCallback', 'WinHttpOpen', 'WinHttpCloseHandle', 'WinHttpWriteData', 'WinHttpReceiveResponse', 'WinHttpQueryAuthSchemes', 'WinHttpReadData', 'WinHttpQueryHeaders', 'WinHttpSendRequest', 'WinHttpSetCredentials', 'GdipDrawLine', 'GdipSetPenEndCap', 'GdipSetPenStartCap', 'GdipCreatePen2', 'GdipRotateWorldTransform', 'GdipTranslateWorldTransform', 'GdipGetPropertyItem', 'GdipGetPropertyItemSize', 'GdipImageSelectActiveFrame', 'GdipImageGetFrameCount', 'GdipImageGetFrameDimensionsList', 'GdipImageGetFrameDimensionsCount', 'GdipSetStringFormatTrimming', 'GdipSetStringFormatLineAlign', 'GdipSetStringFormatAlign', 'GdipSetStringFormatFlags', 'GdipCloneStringFormat', 'GdipDeleteStringFormat', 'GdipStringFormatGetGenericTypographic', 'GdipMeasureString', 'GdipDrawString', 'GdipDeleteFont', 'GdipCreateFontFromLogfontA', 'GdipCreateFontFromDC', 'GdipDrawImageRectRect', 'GdipFillPath', 'GdipFillRectangleI', 'GdipDrawPath', 'GdipDrawRectangleI', 'GdipResetWorldTransform', 'GdipSetWorldTransform', 'GdipSetTextRenderingHint', 'GdipSetSmoothingMode', 'GdipReleaseDC', 'GdipSetImageAttributesColorMatrix', 'GdipDisposeImageAttributes', 'GdipCreateImageAttributes', 'GdipLoadImageFromStreamICM', 'GdipLoadImageFromStream', 'GdipSetPenDashStyle', 'GdipSetPenMode', 'GdipDeletePen', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdipCreateBitmapFromHBITMAP', 'GdipDrawImageI', 'GdipDeleteGraphics', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePaletteSize', 'GdipGetImagePalette', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipGetImageGraphicsContext', 'GdipDisposeImage', 'GdipCloneImage', 'GdipFree', 'GdipAlloc', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreatePen1', 'GdipCreateSolidFill', 'GdipCreatePath', 'GdipDeletePath', 'GdipAddPathLine', 'GdipCreateMatrix', 'GdipDeleteMatrix', 'GdipTranslateMatrix', 'GdipRotateMatrix', 'GdipCloneBrush', 'GdipDeleteBrush', 'ImmSetCompositionWindow', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'GetAdaptersInfo', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'getsockname', 'getsockopt', 'htons', 'ntohs', 'setsockopt', 'socket', 'WSASetLastError', 'WSACleanup', '__WSAFDIsSet', 'select', 'accept', 'htonl', 'listen', 'getaddrinfo', 'freeaddrinfo', 'recvfrom', 'getnameinfo', 'sendto', 'ioctlsocket', 'WSAIoctl', 'gethostbyname', 'gethostname', 'WSAStartup', 'send', 'WSACloseEvent', 'WSACreateEvent', 'WSAEnumNetworkEvents', 'WSAEventSelect', 'WSAResetEvent', 'WSAWaitForMultipleEvents', 'closesocket', 'WSAGetLastError', 'recv', 'bind', 'connect', 'getpeername', 'shutdown', 'PlaySoundW', 'CertFindCertificateInStore', 'CertDuplicateCertificateContext', 'CertGetCertificateContextProperty', 'CertOpenSystemStoreA', 'CertGetIntendedKeyUsage', 'CertGetEnhancedKeyUsage', 'CertFreeCertificateContext', 'CertEnumCertificatesInStore', 'CertCloseStore', 'CertOpenStore', 'OpenPrinterW', 'DocumentPropertiesW', 'ClosePrinter', 'SysFreeString', 'VarBstrFromDate', 'VariantChangeType', 'VariantClear', 'VariantInit', 'VariantCopy', 'VariantTimeToSystemTime', 'SystemTimeToVariantTime', 'SysStringLen', 'LoadTypeLib', 'SysAllocString', 'SysAllocStringLen', 'InitCommonControlsEx', '_TrackMouseEvent'], ['DeleteCriticalSection', 'LeaveCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'VirtualFree', 'VirtualAlloc', 'LocalFree', 'LocalAlloc', 'GetVersion', 'GetCurrentThreadId', 'InterlockedDecrement', 'InterlockedIncrement', 'VirtualQuery', 'WideCharToMultiByte', 'MultiByteToWideChar', 'lstrlenA', 'lstrcpynA', 'LoadLibraryExA', 'GetThreadLocale', 'GetStartupInfoA', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetCommandLineA', 'FreeLibrary', 'FindFirstFileA', 'FindClose', 'ExitProcess', 'WriteFile', 'UnhandledExceptionFilter', 'RtlUnwind', 'RaiseException', 'GetStdHandle', 'GetKeyboardType', 'LoadStringA', 'MessageBoxA', 'CharNextA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'SysFreeString', 'SysReAllocStringLen', 'SysAllocStringLen', 'TlsSetValue', 'TlsGetValue', 'LocalAlloc', 'GetModuleHandleA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCloseKey', 'lstrcpyA', 'WriteFile', 'WaitForSingleObject', 'VirtualQuery', 'VirtualProtect', 'VirtualAlloc', 'Sleep', 'SizeofResource', 'SetThreadLocale', 'SetFilePointer', 'SetEvent', 'SetErrorMode', 'SetEndOfFile', 'ResetEvent', 'ReadFile', 'MultiByteToWideChar', 'MulDiv', 'LockResource', 'LoadResource', 'LoadLibraryExA', 'LoadLibraryA', 'LeaveCriticalSection', 'InitializeCriticalSection', 'GlobalUnlock', 'GlobalSize', 'GlobalReAlloc', 'GlobalHandle', 'GlobalLock', 'GlobalFree', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'GlobalAlloc', 'GlobalAddAtomA', 'GetVersionExA', 'GetVersion', 'GetUserDefaultLCID', 'GetTickCount', 'GetThreadLocale', 'GetSystemInfo', 'GetStringTypeExA', 'GetStdHandle', 'GetProcAddress', 'GetModuleHandleA', 'GetModuleFileNameA', 'GetLocaleInfoA', 'GetLocalTime', 'GetLastError', 'GetFullPathNameA', 'GetDiskFreeSpaceA', 'GetDateFormatA', 'GetCurrentThreadId', 'GetCurrentProcessId', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'FreeResource', 'InterlockedExchange', 'FreeLibrary', 'FormatMessageA', 'FindResourceA', 'EnumCalendarInfoA', 'EnterCriticalSection', 'DeleteCriticalSection', 'CreateThread', 'CreateFileA', 'CreateEventA', 'CompareStringA', 'CloseHandle', 'VerQueryValueA', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'UnrealizeObject', 'StretchBlt', 'SetWindowOrgEx', 'SetWinMetaFileBits', 'SetViewportOrgEx', 'SetTextColor', 'SetStretchBltMode', 'SetROP2', 'SetPixel', 'SetEnhMetaFileBits', 'SetDIBColorTable', 'SetBrushOrgEx', 'SetBkMode', 'SetBkColor', 'SelectPalette', 'SelectObject', 'SaveDC', 'RestoreDC', 'RectVisible', 'RealizePalette', 'PlayEnhMetaFile', 'PatBlt', 'MoveToEx', 'MaskBlt', 'LineTo', 'IntersectClipRect', 'GetWindowOrgEx', 'GetWinMetaFileBits', 'GetTextMetricsA', 'GetTextExtentPoint32A', 'GetSystemPaletteEntries', 'GetStockObject', 'GetPixel', 'GetPaletteEntries', 'GetObjectA', 'GetEnhMetaFilePaletteEntries', 'GetEnhMetaFileHeader', 'GetEnhMetaFileDescriptionA', 'GetEnhMetaFileBits', 'GetDeviceCaps', 'GetDIBits', 'GetDIBColorTable', 'GetDCOrgEx', 'GetCurrentPositionEx', 'GetClipBox', 'GetBrushOrgEx', 'GetBitmapBits', 'GdiFlush', 'ExcludeClipRect', 'DeleteObject', 'DeleteEnhMetaFile', 'DeleteDC', 'CreateSolidBrush', 'CreatePenIndirect', 'CreatePalette', 'CreateHalftonePalette', 'CreateFontIndirectA', 'CreateEnhMetaFileA', 'CreateDIBitmap', 'CreateDIBSection', 'CreateCompatibleDC', 'CreateCompatibleBitmap', 'CreateBrushIndirect', 'CreateBitmap', 'CopyEnhMetaFileA', 'CloseEnhMetaFile', 'BitBlt', 'CreateWindowExA', 'WindowFromPoint', 'WinHelpA', 'WaitMessage', 'UpdateWindow', 'UnregisterClassA', 'UnhookWindowsHookEx', 'TranslateMessage', 'TranslateMDISysAccel', 'TrackPopupMenu', 'SystemParametersInfoA', 'ShowWindow', 'ShowScrollBar', 'ShowOwnedPopups', 'ShowCursor', 'SetWindowsHookExA', 'SetWindowTextA', 'SetWindowPos', 'SetWindowPlacement', 'SetWindowLongA', 'SetTimer', 'SetScrollRange', 'SetScrollPos', 'SetScrollInfo', 'SetRect', 'SetPropA', 'SetParent', 'SetMenuItemInfoA', 'SetMenu', 'SetForegroundWindow', 'SetFocus', 'SetCursor', 'SetClassLongA', 'SetCapture', 'SetActiveWindow', 'SendMessageA', 'ScrollWindow', 'ScreenToClient', 'RemovePropA', 'RemoveMenu', 'ReleaseDC', 'ReleaseCapture', 'RegisterWindowMessageA', 'RegisterClipboardFormatA', 'RegisterClassA', 'RedrawWindow', 'PtInRect', 'PostQuitMessage', 'PostMessageA', 'PeekMessageA', 'OffsetRect', 'OemToCharA', 'MessageBoxA', 'MapWindowPoints', 'MapVirtualKeyA', 'LoadStringA', 'LoadKeyboardLayoutA', 'LoadIconA', 'LoadCursorA', 'LoadBitmapA', 'KillTimer', 'IsZoomed', 'IsWindowVisible', 'IsWindowEnabled', 'IsWindow', 'IsRectEmpty', 'IsIconic', 'IsDialogMessageA', 'IsChild', 'InvalidateRect', 'IntersectRect', 'InsertMenuItemA', 'InsertMenuA', 'InflateRect', 'GetWindowThreadProcessId', 'GetWindowTextA', 'GetWindowRect', 'GetWindowPlacement', 'GetWindowLongA', 'GetWindowInfo', 'GetWindowDC', 'GetTopWindow', 'GetSystemMetrics', 'GetSystemMenu', 'GetSysColorBrush', 'GetSysColor', 'GetSubMenu', 'GetScrollRange', 'GetScrollPos', 'GetScrollInfo', 'GetPropA', 'GetParent', 'GetWindow', 'GetMessageTime', 'GetMenuStringA', 'GetMenuState', 'GetMenuItemInfoA', 'GetMenuItemID', 'GetMenuItemCount', 'GetMenu', 'GetLastActivePopup', 'GetKeyboardState', 'GetKeyboardLayoutList', 'GetKeyboardLayout', 'GetKeyState', 'GetKeyNameTextA', 'GetIconInfo', 'GetForegroundWindow', 'GetFocus', 'GetDesktopWindow', 'GetDCEx', 'GetDC', 'GetCursorPos', 'GetCursor', 'GetClipboardData', 'GetClientRect', 'GetClassNameA', 'GetClassInfoA', 'GetCapture', 'GetActiveWindow', 'FrameRect', 'FindWindowA', 'FillRect', 'EqualRect', 'EnumWindows', 'EnumThreadWindows', 'EndPaint', 'EnableWindow', 'EnableScrollBar', 'EnableMenuItem', 'DrawTextA', 'DrawMenuBar', 'DrawIconEx', 'DrawIcon', 'DrawFrameControl', 'DrawEdge', 'DispatchMessageA', 'DestroyWindow', 'DestroyMenu', 'DestroyIcon', 'DestroyCursor', 'DeleteMenu', 'DefWindowProcA', 'DefMDIChildProcA', 'DefFrameProcA', 'CreatePopupMenu', 'CreateMenu', 'CreateIcon', 'ClientToScreen', 'CheckMenuItem', 'CallWindowProcA', 'CallNextHookEx', 'BeginPaint', 'CharNextA', 'CharLowerBuffA', 'CharLowerA', 'CharToOemA', 'AdjustWindowRectEx', 'ActivateKeyboardLayout', 'Sleep', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayCreate', 'VariantChangeType', 'VariantCopy', 'VariantClear', 'VariantInit', 'CreateStreamOnHGlobal', 'IsAccelerator', 'OleDraw', 'OleSetMenuDescriptor', 'CoCreateInstance', 'CoGetClassObject', 'CoUninitialize', 'CoInitialize', 'IsEqualGUID', 'GetErrorInfo', 'SysFreeString', 'ImageList_SetIconSize', 'ImageList_GetIconSize', 'ImageList_Write', 'ImageList_Read', 'ImageList_GetDragImage', 'ImageList_DragShowNolock', 'ImageList_SetDragCursorImage', 'ImageList_DragMove', 'ImageList_DragLeave', 'ImageList_DragEnter', 'ImageList_EndDrag', 'ImageList_BeginDrag', 'ImageList_Remove', 'ImageList_DrawEx', 'ImageList_Draw', 'ImageList_GetBkColor', 'ImageList_SetBkColor', 'ImageList_ReplaceIcon', 'ImageList_Add', 'ImageList_SetImageCount', 'ImageList_GetImageCount', 'ImageList_Destroy', 'ImageList_Create', 'ShellExecuteA', 'AutodialHookCallback', 'ZwWriteVirtualMemory', 'GetProcAddress', 'NtQueryInformationFile', 'NtOpenFile', 'NtClose', 'NtReadFile', 'RtlDosPathNameToNtPathName_U'], ['StrPBrkA', 'PathStripPathW', 'PathCompactPathExW', 'PathIsUNCServerW', 'CompareFileTime', 'GetCurrentProcess', 'VirtualProtect', 'GetTimeZoneInformation', 'EnumSystemCodePagesA', 'WriteFile', 'RtlUnwind', 'SystemTimeToFileTime', 'FileTimeToSystemTime', 'LCMapStringW', 'MultiByteToWideChar', 'GetStringTypeW', 'HeapSize', 'GetModuleFileNameW', 'SetLastError', 'TerminateProcess', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'LoadLibraryW', 'HeapReAlloc', 'HeapAlloc', 'IsValidCodePage', 'GetCurrentThreadId', 'DecodePointer', 'GetCommandLineA', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'GetModuleHandleW', 'IsProcessorFeaturePresent', 'GetLastError', 'InterlockedDecrement', 'GetProcAddress', 'HeapFree', 'Sleep', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'GetStartupInfoW', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'SHGetFileInfoW', 'ExtractAssociatedIconExW', 'DragAcceptFiles', 'Pie', 'GetKerningPairs', 'GetTextAlign', 'GetOpenFileNameW', 'ChooseColorW', 'PrintDlgW', 'PageSetupDlgW', 'GetSaveFileNameW', 'ReplaceTextW', 'PrintDlgExA', 'MesBufferHandleReset', 'RpcServerUseProtseqEpExW', 'SetupGetFieldCount', 'SetupDiDrawMiniIcon', 'SetupGetLineCountW', 'SetupInstallFileW', 'ntohs', 'WSAStringToAddressA', 'send'], ['InterlockedIncrement', 'GetConsoleAliasA', 'HeapFree', 'SetConsoleScreenBufferSize', 'OpenSemaphoreA', 'BackupSeek', 'FreeEnvironmentStringsA', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'GetConsoleAliasExesW', 'WaitNamedPipeW', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetPrivateProfileStructW', 'DeleteVolumeMountPointW', 'TerminateProcess', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'GetNamedPipeHandleStateW', 'GetPrivateProfileIntW', 'GetLastError', 'GetConsoleAliasExesLengthA', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'MoveFileW', 'RemoveDirectoryA', 'SetStdHandle', 'OpenWaitableTimerW', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'GetProfileStringA', 'FoldStringW', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'CreateMailslotA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'DeleteCriticalSection', 'GetShortPathNameW', 'SetCalendarInfoA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'FindFirstVolumeW', 'CloseHandle', 'CreateFileW', 'ReadFile', '_llseek', 'GetFileSize', 'MoveFileExA', 'SetLastError', 'GetPrivateProfileSectionNamesW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MoveFileA', 'WideCharToMultiByte', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameW', 'InitializeCriticalSectionAndSpinCount', 'RaiseException', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetFileType', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'DeleteFileA', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['CreateMutexW', 'EnumCalendarInfoA', 'lstrlenA', 'EnumDateFormatsExW', 'FindResourceW', '_lwrite', 'GetComputerNameW', 'OpenSemaphoreA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GetWindowsDirectoryA', 'GetDateFormatA', 'WriteFile', 'GlobalAlloc', 'SetFileShortNameW', 'ReadConsoleInputA', 'FreeConsole', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'GetProfileIntA', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'OpenMutexA', 'InterlockedExchangeAdd', 'SetCurrentDirectoryW', 'GetThreadPriority', 'SetLocaleInfoW', 'FatalAppExitA', 'ScrollConsoleScreenBufferA', '_lopen', 'GlobalAddAtomW', 'AddConsoleAliasA', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapFree', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'DdeQueryStringW', 'CharUpperBuffA', 'LoadMenuW', 'CharLowerBuffW'], ['InternetCloseHandle', 'InternetReadFile', 'InternetOpenW', 'InternetOpenUrlW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'FindTextW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_DrawIndirect', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'SHAppBarMessage', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'GetUpdateRect', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'OffsetRect', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'GetScrollBarInfo', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'GetClassLongPtrW', 'SetClassLongPtrW', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'GetWindowLongPtrW', 'SetWindowLongPtrW', 'BringWindowToTop', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'ValidateRect', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'PostThreadMessageW', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateIconIndirect', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'SafeArrayPutElement', 'SetErrorInfo', 'GetErrorInfo', 'VariantInit', 'VariantClear', 'SysFreeString', 'SafeArrayAccessData', 'LoadTypeLibEx', 'SysReAllocStringLen', 'SafeArrayCreate', 'CreateErrorInfo', 'SafeArrayGetElement', 'SysAllocStringLen', 'SafeArrayUnaccessData', 'SafeArrayPtrOfIndex', 'SafeArrayGetElemsize', 'VariantCopy', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'SafeArrayRedim', 'RegisterTypeLib', 'VariantCopyInd', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'memcpy', 'memset', 'SetFileAttributesW', 'GetFileType', 'SetFileTime', 'RtlUnwindEx', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'TlsAlloc', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'GetProcessHeap', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'GetLongPathNameW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'MoveFileExW', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'GlobalLock', 'SetThreadPriority', 'VirtualAlloc', 'GetTempPathW', 'GetCommandLineW', 'GetSystemInfo', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'GetWindowsDirectoryW', 'LCMapStringW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'GetConsoleOutputCP', 'UnmapViewOfFile', 'GetConsoleCP', 'lstrlenW', 'CompareStringA', 'QueryPerformanceCounter', 'SetEndOfFile', 'HeapFree', 'WideCharToMultiByte', 'MultiByteToWideChar', 'FindClose', 'LoadLibraryW', 'SetEvent', 'GetLocaleInfoW', 'CreateFileW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'IsDBCSLeadByteEx', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'IsDBCSLeadByte', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'SHGetFolderPathW', 'SQLGetInfoW', 'SQLNumResultCols', 'SQLBindParameter', 'SQLFreeHandle', 'SQLPrepareW', 'SQLRowCount', 'SQLFreeStmt', 'SQLDescribeColW', 'SQLProceduresW', 'SQLProcedureColumnsW', 'SQLParamData', 'SQLAllocHandle', 'SQLFetchScroll', 'SQLDriverConnectW', 'SQLGetTypeInfoW', 'SQLNativeSqlW', 'SQLExecute', 'SQLStatisticsW', 'SQLBindCol', 'SQLEndTran', 'SQLSetEnvAttr', 'SQLGetDiagRecW', 'SQLSetConnectAttrW', 'SQLExecDirectW', 'SQLForeignKeysW', 'SQLDisconnect', 'SQLTablesW', 'SQLSetStmtAttrW', 'SQLConnectW', 'SQLPutData', 'SQLGetData', 'SQLColumnsW', 'CoRevokeClassObject', 'CoRegisterClassObject', 'CoCreateInstance', 'CoUninitialize', 'IsEqualGUID', 'CoLockObjectExternal', 'OleInitialize', 'OleUninitialize', 'CoDisconnectObject', 'CoInitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'StringFromCLSID', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'SelectClipRgn', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'AbortDoc', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetDateFormatW', 'CreateMutexW', 'EnumCalendarInfoA', 'lstrlenA', 'EnumDateFormatsExW', 'FindResourceW', '_lwrite', 'GetComputerNameW', 'OpenSemaphoreA', 'GetTickCount', 'GetConsoleAliasesLengthA', 'GetWindowsDirectoryA', 'WriteFile', 'GlobalAlloc', 'SetFileShortNameW', 'ReadConsoleInputA', 'FreeConsole', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'GetProfileIntA', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'OpenMutexA', 'InterlockedExchangeAdd', 'SetCurrentDirectoryW', 'GetThreadPriority', 'SetLocaleInfoW', 'FatalAppExitA', 'ScrollConsoleScreenBufferA', '_lopen', 'GlobalAddAtomW', 'AddConsoleAliasA', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapFree', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'DdeQueryStringW', 'CharUpperBuffA', 'LoadMenuW', 'CharLowerBuffW'], ['GetDateFormatW', 'CreateMutexW', 'EnumCalendarInfoA', 'lstrlenA', 'GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'FindResourceW', '_lwrite', 'AddConsoleAliasW', 'GetComputerNameW', 'GetTickCount', 'GetConsoleAliasesA', 'GetWindowsDirectoryA', 'WriteFile', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'FreeConsole', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'InterlockedExchange', 'GetProfileIntA', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'OpenMutexA', 'SetCurrentDirectoryW', 'GetOEMCP', 'GetThreadPriority', 'SetLocaleInfoW', 'FatalAppExitA', 'ScrollConsoleScreenBufferA', '_lopen', 'OpenSemaphoreW', 'SetFileShortNameA', 'GlobalAddAtomW', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'MultiByteToWideChar', 'GetLastError', 'HeapFree', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'LCMapStringA', 'WideCharToMultiByte', 'LCMapStringW', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'DdeQueryStringW', 'CharUpperBuffA', 'LoadMenuW', 'CharLowerBuffW'], ['RegCloseKey', 'BitBlt', 'GdipFree', 'LoadLibraryA', 'ExitProcess', 'GetProcAddress', 'VirtualProtect', 'CoGetObject', 'ExtractIconA', 'StrToIntA', 'URLDownloadToFileW', 'DrawIcon', 'InternetOpenW', 'waveInOpen', 'socket'], ['SHRegQueryInfoUSKeyW', 'PathFindExtensionW', 'UrlCanonicalizeW', 'StrIsIntlEqualA', 'PathIsRootA', 'SHDeleteKeyW', 'UrlUnescapeA', 'GetStringTypeW', 'FileTimeToSystemTime', 'SystemTimeToFileTime', 'CompareFileTime', 'GetTimeZoneInformation', 'EnumSystemCodePagesW', 'VirtualProtect', 'MultiByteToWideChar', 'LCMapStringA', 'GetLocaleInfoA', 'RtlUnwind', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryA', 'LCMapStringW', 'HeapSize', 'GetStringTypeA', 'Sleep', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'GetCurrentProcess', 'TerminateProcess', 'WriteFile', 'HeapReAlloc', 'GetCurrentThreadId', 'GetCommandLineA', 'GetModuleHandleW', 'GetProcAddress', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'InterlockedIncrement', 'SetLastError', 'GetLastError', 'InterlockedDecrement', 'HeapFree', 'ExitProcess', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetStartupInfoA', 'DeleteCriticalSection', 'GetModuleFileNameA', 'FreeEnvironmentStringsA', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'HeapCreate', 'HeapDestroy', 'VirtualFree', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'LeaveCriticalSection', 'EnterCriticalSection', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'HeapAlloc', 'VirtualAlloc', 'UnloadPerfCounterTextStringsA', 'UnloadPerfCounterTextStringsW', 'VarI2FromDec', 'VarUI2FromStr', 'VarDecRound', 'VarUI2FromBool', 'VarUI4FromR4', 'VarBstrFromI1', 'VarCyFromBool', 'GetFileTitleW', 'GetSaveFileNameW', 'PrintDlgExW', 'ChooseColorA', 'ReplaceTextA', 'PrintDlgExA', 'RpcSsSwapClientAllocFree', 'I_UuidCreate', 'RpcMgmtInqComTimeout', 'NdrConformantVaryingStructBufferSize', 'MesEncodeIncrementalHandleCreate', 'I_RpcFreePipeBuffer', 'NdrConformantStructFree', 'NdrClientInitializeNew', 'NdrServerContextMarshall'], ['AddVectoredExceptionHandler', 'AreFileApisANSI', 'CloseHandle', 'CreateEventA', 'CreateFileA', 'CreateFileMappingA', 'CreateFileMappingW', 'CreateFileW', 'CreateIoCompletionPort', 'CreateMutexW', 'CreateThread', 'CreateWaitableTimerA', 'CreateWaitableTimerExW', 'DeleteCriticalSection', 'DeleteFileA', 'DeleteFileW', 'DuplicateHandle', 'EnterCriticalSection', 'ExitProcess', 'FlushFileBuffers', 'FlushViewOfFile', 'FormatMessageA', 'FormatMessageW', 'FreeEnvironmentStringsW', 'FreeLibrary', 'GetConsoleMode', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetDiskFreeSpaceA', 'GetDiskFreeSpaceW', 'GetEnvironmentStringsW', 'GetFileAttributesA', 'GetFileAttributesExW', 'GetFileAttributesW', 'GetFileSize', 'GetFullPathNameA', 'GetFullPathNameW', 'GetLastError', 'GetProcAddress', 'GetProcessAffinityMask', 'GetProcessHeap', 'GetQueuedCompletionStatusEx', 'GetStartupInfoA', 'GetStdHandle', 'GetSystemDirectoryA', 'GetSystemInfo', 'GetSystemTime', 'GetSystemTimeAsFileTime', 'GetTempPathA', 'GetTempPathW', 'GetThreadContext', 'GetTickCount', 'GetVersionExA', 'GetVersionExW', 'HeapAlloc', 'HeapCompact', 'HeapCreate', 'HeapDestroy', 'HeapFree', 'HeapReAlloc', 'HeapSize', 'HeapValidate', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'LoadLibraryW', 'LocalFree', 'LockFile', 'LockFileEx', 'MapViewOfFile', 'MultiByteToWideChar', 'OutputDebugStringA', 'OutputDebugStringW', 'PostQueuedCompletionStatus', 'QueryPerformanceCounter', 'ReadFile', 'ResumeThread', 'RtlAddFunctionTable', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'SetConsoleCtrlHandler', 'SetEndOfFile', 'SetErrorMode', 'SetEvent', 'SetFilePointer', 'SetProcessPriorityBoost', 'SetThreadContext', 'SetUnhandledExceptionFilter', 'SetWaitableTimer', 'Sleep', 'SuspendThread', 'SwitchToThread', 'SystemTimeToFileTime', 'TerminateProcess', 'TlsGetValue', 'TryEnterCriticalSection', 'UnhandledExceptionFilter', 'UnlockFile', 'UnlockFileEx', 'UnmapViewOfFile', 'VirtualAlloc', 'VirtualFree', 'VirtualProtect', 'VirtualQuery', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFile', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__lconv_init', '__set_app_type', '__setusermatherr', '_acmdln', '_amsg_exit', '_beginthread', '_beginthreadex', '_cexit', '_endthreadex', '_errno', '_fmode', '_initterm', '_localtime64', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'qsort', 'realloc', 'signal', 'strcmp', 'strcspn', 'strlen', 'strncmp', 'strrchr', 'vfprintf'], ['ShellExecuteExW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHGetFolderPathW', 'SHGetSpecialFolderLocation', 'gethostbyname', 'ntohs', 'WSAStartup', 'WSACleanup', 'htonl', 'NetGroupGetInfo', 'NetUserModalsGet', 'NetUserGetInfo', 'NetApiBufferFree', 'NetLocalGroupGetInfo', 'NetGetDCName', 'NetQueryDisplayInformation', 'PathIsUNCW', 'PathFileExistsW', 'GetTcpTable', 'LocalAlloc', 'LoadLibraryW', 'GetProcAddress', 'FreeLibrary', 'RaiseException', 'FindFirstFileW', 'DeleteFileW', 'RemoveDirectoryW', 'FindNextFileW', 'ReadFile', 'SetFilePointer', 'FindClose', 'GetTempPathW', 'GetTempFileNameW', 'MoveFileW', 'HeapDestroy', 'HeapSize', 'HeapReAlloc', 'HeapFree', 'HeapAlloc', 'GetProcessHeap', 'GetSystemDirectoryW', 'LoadLibraryExW', 'CreateToolhelp32Snapshot', 'Process32FirstW', 'IsDebuggerPresent', 'Process32NextW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetExitCodeProcess', 'WaitForSingleObject', 'ReadProcessMemory', 'SizeofResource', 'LockResource', 'LoadResource', 'FindResourceExW', 'FindResourceW', 'GetWindowsDirectoryW', 'GetModuleHandleW', 'CreateEventW', 'CloseHandle', 'GetTickCount', 'WriteFile', 'GetModuleFileNameW', 'DeleteCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'LeaveCriticalSection', 'OutputDebugStringW', 'GetCurrentThreadId', 'FlushFileBuffers', 'MultiByteToWideChar', 'GlobalFindAtomW', 'WideCharToMultiByte', 'GlobalAddAtomW', 'GlobalDeleteAtom', 'lstrcpynW', 'lstrcpyW', 'MulDiv', 'InitializeCriticalSectionAndSpinCount', 'DecodePointer', 'ExitProcess', 'lstrlenW', 'lstrcmpW', 'DuplicateHandle', 'GetStdHandle', 'CreateProcessW', 'GetLocaleInfoW', 'lstrcatW', 'GetDiskFreeSpaceW', 'OpenMutexW', 'SetLastError', 'TerminateProcess', 'SetEndOfFile', 'GetCPInfo', 'GetStartupInfoW', 'QueryPerformanceCounter', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlUnwind', 'InterlockedFlushSList', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleExW', 'GetFileType', 'SetEvent', 'GetLastError', 'LocalFree', 'lstrcmpiW', 'CreateFileW', 'UnhandledExceptionFilter', 'IsProcessorFeaturePresent', 'ExpandEnvironmentStringsW', 'SetUnhandledExceptionFilter', 'WaitForSingleObjectEx', 'Sleep', 'ResetEvent', 'LCMapStringW', 'FindFirstFileExW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCommandLineA', 'GetCommandLineW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetFilePointerEx', 'SetStdHandle', 'GetConsoleOutputCP', 'GetConsoleMode', 'WriteConsoleW', 'InitializeCriticalSectionEx', 'EncodePointer', 'OpenProcess', 'GetStringTypeW', 'BringWindowToTop', 'GetWindowLongW', 'wsprintfW', 'CreateWindowExW', 'SendMessageW', 'RedrawWindow', 'GetClassNameW', 'EnumChildWindows', 'MessageBoxW', 'GetDC', 'GetDesktopWindow', 'GetWindowTextW', 'IsWindow', 'GetForegroundWindow', 'EnumWindows', 'GetWindowThreadProcessId', 'PostMessageW', 'AbortDoc', 'EndDoc', 'EndPage', 'StartPage', 'StartDocW', 'DeleteDC', 'GetDeviceCaps', 'PrintDlgW', 'GetOpenFileNameW', 'AdjustTokenPrivileges', 'ConvertStringSidToSidW', 'RegQueryInfoKeyW', 'RegEnumValueW', 'RegCreateKeyExW', 'RegQueryValueExW', 'RegSetValueExW', 'RegOpenKeyExW', 'RegCloseKey', 'GetTokenInformation', 'OpenProcessToken', 'LookupAccountSidW', 'LookupAccountNameW', 'SetSecurityDescriptorDacl', 'InitializeSecurityDescriptor', 'SetEntriesInAclW', 'GetSecurityDescriptorDacl', 'ConvertSidToStringSidW', 'CloseServiceHandle', 'OpenSCManagerW', 'ChangeServiceConfig2W', 'QueryServiceObjectSecurity', 'SetServiceObjectSecurity', 'QueryServiceStatus', 'ControlService', 'StartServiceW', 'OpenServiceW', 'LookupPrivilegeValueW', 'QueryServiceStatusEx', 'LsaClose', 'LsaAddAccountRights', 'LsaNtStatusToWinError', 'LogonUserW', 'AllocateAndInitializeSid', 'FreeSid', 'GetSidSubAuthorityCount', 'LsaOpenPolicy', 'EnumServicesStatusW', 'GetSidSubAuthority', 'GetSidIdentifierAuthority', 'InitializeSid', 'GetSidLengthRequired', 'CoUninitialize', 'CoCreateInstance', 'CoAllowSetForegroundWindow', 'CLSIDFromString', 'CoTaskMemFree', 'CoInitialize', 'VariantClear', 'VariantInit', 'SysFreeString', 'SysAllocString'], ['GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'FindResourceW', 'GlobalAddAtomA', 'EnumCalendarInfoW', '_lwrite', 'ScrollConsoleScreenBufferW', 'AddConsoleAliasW', 'GetComputerNameW', 'GetTickCount', 'GetConsoleAliasesA', 'GlobalAlloc', 'LoadLibraryW', 'FreeConsole', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'ReadFile', 'GetCompressedFileSizeA', 'SetThreadPriority', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'InterlockedExchange', 'GetProfileIntA', 'lstrlenA', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'SetCurrentDirectoryW', 'GetOEMCP', 'GetModuleHandleA', 'SetLocaleInfoW', 'CreateMutexA', 'FatalAppExitA', 'SetProcessShutdownParameters', '_lopen', 'OpenSemaphoreW', 'SetFileShortNameA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'DeleteFileW', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'OpenMutexW', 'GetDateFormatW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'DdeQueryStringW', 'CharUpperBuffA', 'LoadMenuW', 'CharLowerBuffW', 'InitializeAcl'], ['InterlockedIncrement', 'GetConsoleAliasA', 'HeapFree', 'SetConsoleScreenBufferSize', 'OpenSemaphoreA', 'BackupSeek', 'FreeEnvironmentStringsA', '_lclose', 'GetModuleHandleW', 'GetConsoleAliasesLengthA', 'GetNumberFormatA', 'GetConsoleAliasExesW', 'WaitNamedPipeW', 'GetCommandLineA', 'GetVolumePathNameW', 'GlobalAlloc', 'SetFileShortNameW', 'LoadLibraryW', 'FatalAppExitW', 'GetPrivateProfileStructW', 'DeleteVolumeMountPointW', 'TerminateProcess', 'GetCompressedFileSizeA', 'GetOverlappedResult', 'GetNamedPipeHandleStateW', 'GetPrivateProfileIntW', 'GetLastError', 'GetConsoleAliasExesLengthA', 'ReadConsoleOutputCharacterA', 'GetProcAddress', 'MoveFileW', 'RemoveDirectoryA', 'SetStdHandle', 'OpenWaitableTimerW', 'LocalAlloc', 'BuildCommDCBAndTimeoutsW', 'FindFirstVolumeMountPointW', 'SetConsoleCtrlHandler', 'GetProfileStringA', 'FoldStringW', 'FindNextFileA', 'EnumDateFormatsA', '_lread', 'CreateMailslotA', 'GetStringTypeW', 'GetCurrentDirectoryA', 'DeleteCriticalSection', 'GetShortPathNameW', 'SetCalendarInfoA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'FindFirstVolumeW', 'CloseHandle', 'CreateFileW', 'ReadFile', '_llseek', 'GetFileSize', 'MoveFileExA', 'SetLastError', 'GetPrivateProfileSectionNamesW', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'EncodePointer', 'DecodePointer', 'MoveFileA', 'WideCharToMultiByte', 'HeapAlloc', 'ExitProcess', 'MultiByteToWideChar', 'HeapReAlloc', 'HeapSetInformation', 'GetStartupInfoW', 'RtlUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'IsDebuggerPresent', 'GetCurrentProcess', 'GetCPInfo', 'GetACP', 'GetOEMCP', 'IsValidCodePage', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'HeapCreate', 'SetHandleCount', 'GetStdHandle', 'InitializeCriticalSectionAndSpinCount', 'GetFileType', 'WriteFile', 'GetModuleFileNameW', 'RaiseException', 'GetModuleFileNameA', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'QueryPerformanceCounter', 'GetTickCount', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'IsProcessorFeaturePresent', 'SetFilePointer', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringW', 'WriteConsoleW', 'FlushFileBuffers', 'DeleteFileA', 'CharUpperW', 'CharUpperBuffW', 'GetCharWidthA', 'GetCharWidthFloatW', 'ReadEventLogA'], ['SetCurrentDirectoryW', 'GetFileAttributesW', 'GetFullPathNameW', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameW', 'MoveFileW', 'SetFileAttributesW', 'GetCurrentProcess', 'ExitProcess', 'SetEnvironmentVariableW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'GetVersion', 'SetErrorMode', 'lstrlenW', 'WaitForSingleObject', 'CopyFileW', 'CompareFileTime', 'GlobalLock', 'CreateThread', 'GetLastError', 'CreateDirectoryW', 'CreateProcessW', 'RemoveDirectoryW', 'lstrcmpiA', 'CreateFileW', 'GetTempFileNameW', 'WriteFile', 'lstrcpyA', 'lstrcpyW', 'MoveFileExW', 'lstrcatW', 'GetSystemDirectoryW', 'GetProcAddress', 'GetModuleHandleA', 'GlobalFree', 'GlobalAlloc', 'GetShortPathNameW', 'SearchPathW', 'lstrcmpiW', 'SetFileTime', 'CloseHandle', 'ExpandEnvironmentStringsW', 'lstrcmpW', 'GlobalUnlock', 'lstrcpynW', 'GetDiskFreeSpaceW', 'GetExitCodeProcess', 'FindFirstFileW', 'FindNextFileW', 'DeleteFileW', 'SetFilePointer', 'ReadFile', 'FindClose', 'MulDiv', 'MultiByteToWideChar', 'lstrlenA', 'WideCharToMultiByte', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'FreeLibrary', 'LoadLibraryExW', 'GetModuleHandleW', 'GetSystemMenu', 'SetClassLongW', 'IsWindowEnabled', 'EnableMenuItem', 'SetWindowPos', 'GetSysColor', 'GetWindowLongW', 'SetCursor', 'LoadCursorW', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapW', 'CallWindowProcW', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'wsprintfW', 'ScreenToClient', 'GetWindowRect', 'GetSystemMetrics', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharPrevW', 'CharNextA', 'wsprintfA', 'DispatchMessageW', 'PeekMessageW', 'GetDC', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'EndDialog', 'RegisterClassW', 'SystemParametersInfoW', 'CreateWindowExW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'LoadImageW', 'SetTimer', 'SetWindowTextW', 'PostQuitMessage', 'ShowWindow', 'GetDlgItem', 'IsWindow', 'SetWindowLongW', 'FindWindowExW', 'TrackPopupMenu', 'AppendMenuW', 'CreatePopupMenu', 'DrawTextW', 'EndPaint', 'CreateDialogParamW', 'SendMessageTimeoutW', 'SetForegroundWindow', 'SelectObject', 'SetBkMode', 'CreateFontIndirectW', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteW', 'SHFileOperationW', 'RegDeleteKeyW', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'AdjustTokenPrivileges', 'RegOpenKeyExW', 'RegEnumValueW', 'RegDeleteValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegSetValueExW', 'RegQueryValueExW', 'RegEnumKeyW', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['CreateMutexA', 'CreateMutexW', 'Sleep', 'CreateThread', 'GetCurrentThread', 'VirtualAlloc', 'VirtualProtect', 'AssignProcessToJobObject', 'GetModuleHandleA', 'WaitForSingleObject', 'LoadLibraryA', 'SetMessageWaitingIndicator', 'ClearCommError', 'GetCommMask', 'lstrlenW', 'GetConsoleWindow', 'WriteConsoleW', 'GetLastError', 'SetFilePointerEx', 'SetFilePointer', 'GetProcAddress', 'CreateFileW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'RtlUnwind', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'EncodePointer', 'RaiseException', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'HeapAlloc', 'HeapFree', 'CompareStringW', 'LCMapStringW', 'GetFileType', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'GetFileSizeEx', 'HeapSize', 'HeapReAlloc', 'CloseHandle', 'DecodePointer', 'ShowWindow', 'GetCharWidthFloatW', 'EnumObjects', 'Chord', 'SetWorldTransform'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'lstrcmpA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'GetTickCount', 'Sleep', 'GetModuleFileNameA', 'GetLastError', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'LCMapStringA', 'ExitProcess', 'SetUnhandledExceptionFilter', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'RegEnumValueA', 'RegOpenCurrentUser', 'GetUserNameA', 'ShellExecuteA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['lstrlenA', 'GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'FindResourceW', 'GlobalAddAtomA', 'EnumCalendarInfoW', '_lwrite', 'AddConsoleAliasW', 'GetComputerNameW', 'GetTickCount', 'GetConsoleAliasesA', 'GetWindowsDirectoryA', 'WriteFile', 'GlobalAlloc', 'LoadLibraryW', 'ReadConsoleInputA', 'FreeConsole', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'GetCompressedFileSizeA', 'SetThreadPriority', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'CreateMutexW', 'GetProfileIntA', 'OpenMutexW', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'VirtualAlloc', 'SearchPathA', 'LoadLibraryA', 'SetCurrentDirectoryW', 'GetOEMCP', 'SetLocaleInfoW', 'CreateMutexA', 'FatalAppExitA', 'ScrollConsoleScreenBufferA', 'SetProcessShutdownParameters', '_lopen', 'OpenSemaphoreW', 'SetFileShortNameA', 'AddConsoleAliasA', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'InterlockedExchange', 'GetDateFormatW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'DdeQueryStringW', 'CharUpperBuffA', 'LoadMenuW', 'CharLowerBuffW', 'InitializeAcl'], ['CloseHandle', 'CreateProcessA', 'DeleteCriticalSection', 'EnterCriticalSection', 'ExitProcess', 'FindClose', 'FindFirstFileA', 'FindNextFileA', 'FreeLibrary', 'GetCommandLineA', 'GetLastError', 'GetModuleHandleA', 'GetProcAddress', 'InitializeCriticalSection', 'LeaveCriticalSection', 'LoadLibraryA', 'SetUnhandledExceptionFilter', 'TlsGetValue', 'VirtualProtect', 'VirtualQuery', 'WaitForSingleObject', '_strdup', '_stricoll', '__getmainargs', '__mb_cur_max', '__p__environ', '__p__fmode', '__set_app_type', '_cexit', '_errno', '_fpreset', '_fullpath', '_iob', '_isctype', '_onexit', '_pctype', '_setmode', 'abort', 'atexit', 'calloc', 'free', 'fwrite', 'malloc', 'mbstowcs', 'memcpy', 'memset', 'puts', 'realloc', 'setlocale', 'signal', 'strcoll', 'strlen', 'tolower', 'vfprintf', 'wcstombs', 'WSACleanup', 'WSAConnect', 'WSASocketA', 'WSAStartup', 'closesocket', 'htons', 'inet_addr', 'recv'], ['OpenProcessToken', 'RegCloseKey', 'RegEnumKeyExW', 'RegEnumValueW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegSetValueExW', 'SystemFunction036', 'AcquireSRWLockExclusive', 'AcquireSRWLockShared', 'AddVectoredExceptionHandler', 'CancelIo', 'CloseHandle', 'CompareStringOrdinal', 'CopyFileExW', 'CreateDirectoryW', 'CreateEventW', 'CreateFileMappingA', 'CreateFileW', 'CreateHardLinkW', 'CreateMutexA', 'CreateNamedPipeW', 'CreateProcessW', 'CreateSymbolicLinkW', 'CreateThread', 'CreateToolhelp32Snapshot', 'DeleteFileW', 'DeviceIoControl', 'DuplicateHandle', 'ExitProcess', 'FileTimeToSystemTime', 'FindClose', 'FindFirstFileW', 'FindNextFileW', 'FlushFileBuffers', 'FormatMessageW', 'FreeEnvironmentStringsW', 'GetCommandLineW', 'GetConsoleMode', 'GetCurrentDirectoryW', 'GetCurrentProcess', 'GetCurrentProcessId', 'GetCurrentThread', 'GetEnvironmentStringsW', 'GetEnvironmentVariableW', 'GetExitCodeProcess', 'GetFileAttributesW', 'GetFileInformationByHandle', 'GetFileInformationByHandleEx', 'GetFileType', 'GetFinalPathNameByHandleW', 'GetFullPathNameW', 'GetLastError', 'GetModuleFileNameW', 'GetModuleHandleA', 'GetModuleHandleW', 'GetOverlappedResult', 'GetProcAddress', 'GetProcessHeap', 'GetProcessId', 'GetStdHandle', 'GetSystemDirectoryW', 'GetSystemInfo', 'GetSystemTimeAsFileTime', 'GetTempPathW', 'GetWindowsDirectoryW', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'InitOnceBeginInitialize', 'InitOnceComplete', 'LoadLibraryA', 'MapViewOfFile', 'Module32FirstW', 'Module32NextW', 'MoveFileExW', 'MultiByteToWideChar', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'ReadConsoleW', 'ReadFile', 'ReadFileEx', 'ReleaseMutex', 'ReleaseSRWLockExclusive', 'ReleaseSRWLockShared', 'RemoveDirectoryW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'SetCurrentDirectoryW', 'SetEnvironmentVariableW', 'SetFileAttributesW', 'SetFileInformationByHandle', 'SetFilePointerEx', 'SetFileTime', 'SetHandleInformation', 'SetLastError', 'SetThreadStackGuarantee', 'SetUnhandledExceptionFilter', 'Sleep', 'SleepConditionVariableSRW', 'SleepEx', 'SwitchToThread', 'TerminateProcess', 'TlsAlloc', 'TlsFree', 'TlsGetValue', 'TlsSetValue', 'TryAcquireSRWLockExclusive', 'UnmapViewOfFile', 'WaitForMultipleObjects', 'WaitForSingleObject', 'WaitForSingleObjectEx', 'WakeAllConditionVariable', 'WakeConditionVariable', 'WideCharToMultiByte', 'WriteConsoleW', 'WriteFileEx', 'BCryptGenRandom', 'DeleteCriticalSection', 'EnterCriticalSection', 'InitializeCriticalSection', 'LeaveCriticalSection', 'RaiseException', 'RtlUnwindEx', 'RtlVirtualUnwind', 'VirtualProtect', 'VirtualQuery', '__C_specific_handler', '__getmainargs', '__initenv', '__iob_func', '__set_app_type', '__setusermatherr', '_amsg_exit', '_cexit', '_commode', '_fmode', '_fpreset', '_initterm', '_onexit', 'abort', 'calloc', 'exit', 'fprintf', 'free', 'fwrite', 'malloc', 'memcmp', 'memcpy', 'memmove', 'memset', 'signal', 'strlen', 'strncmp', 'vfprintf', 'NtCreateFile', 'NtReadFile', 'NtWriteFile', 'RtlNtStatusToDosError', 'GetUserProfileDirectoryW', 'WSACleanup', 'WSADuplicateSocketW', 'WSAGetLastError', 'WSARecv', 'WSASend', 'WSASocketW', 'WSAStartup', 'accept', 'bind', 'closesocket', 'connect', 'freeaddrinfo', 'getaddrinfo', 'getpeername', 'getsockname', 'getsockopt', 'ioctlsocket', 'listen', 'recv', 'recvfrom', 'select', 'send', 'sendto', 'setsockopt', 'shutdown'], ['VirtualAlloc', 'VirtualProtect', 'GetModuleHandleA', 'GetProcAddress', 'CloseHandle', 'WaitForSingleObjectEx', 'Sleep', 'SwitchToThread', 'GetCurrentThreadId', 'GetExitCodeThread', 'GetNativeSystemInfo', 'QueryPerformanceCounter', 'QueryPerformanceFrequency', 'InitializeSRWLock', 'ReleaseSRWLockExclusive', 'AcquireSRWLockExclusive', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'TryEnterCriticalSection', 'DeleteCriticalSection', 'InitializeConditionVariable', 'WakeConditionVariable', 'WakeAllConditionVariable', 'SleepConditionVariableCS', 'SleepConditionVariableSRW', 'FormatMessageA', 'SetFileInformationByHandle', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'InitOnceExecuteOnce', 'CreateEventExW', 'CreateSemaphoreExW', 'FlushProcessWriteBuffers', 'GetCurrentProcessorNumber', 'GetSystemTimeAsFileTime', 'GetTickCount64', 'FreeLibraryWhenCallbackReturns', 'CreateThreadpoolWork', 'SubmitThreadpoolWork', 'CloseThreadpoolWork', 'CreateThreadpoolTimer', 'SetThreadpoolTimer', 'WaitForThreadpoolTimerCallbacks', 'CloseThreadpoolTimer', 'CreateThreadpoolWait', 'SetThreadpoolWait', 'CloseThreadpoolWait', 'GetModuleHandleW', 'GetFileInformationByHandleEx', 'CreateSymbolicLinkW', 'LocalFree', 'GetCurrentProcessId', 'InitializeSListHead', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RaiseException', 'RtlUnwind', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'EncodePointer', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'CreateThread', 'ExitThread', 'ResumeThread', 'FreeLibraryAndExitThread', 'GetModuleHandleExW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapAlloc', 'HeapFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'SetConsoleCtrlHandler', 'GetFileType', 'GetFileSizeEx', 'SetFilePointerEx', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetStringTypeW', 'GetProcessHeap', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'HeapSize', 'HeapReAlloc', 'ReadFile', 'ReadConsoleW', 'CreateFileW', 'DecodePointer'], ['_adjust_fdiv', '__setusermatherr', '_initterm', '__p__commode', '_acmdln', '_XcptFilter', 'exit', '_setmbcp', '__p__fmode', '__set_app_type', '_except_handler3', '__getmainargs', '__CxxFrameHandler', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_mbscmp', '_CxxThrowException', '_controlfp', 'ResetEvent', 'OutputDebugStringA', 'WaitForSingleObject', 'GetModuleHandleA', 'GetStartupInfoA', 'LoadLibraryA', 'GetProcAddress', 'CreateMutexA', 'GetLastError', 'ReleaseMutex', 'Sleep', 'CloseHandle', 'CreateEventA', 'wsprintfA', 'EnableWindow', 'GetDC', 'GetSubMenu', 'LoadMenuA', 'UpdateWindow', 'InvalidateRect', 'CreateHatchBrush', 'CreatePen', 'SelectObject', 'Rectangle', 'Ellipse', 'LPtoDP', 'recv', 'socket', 'gethostbyname', 'htons', 'connect', 'closesocket', 'WSACleanup', 'WSAStartup', 'send', '??1Init@ios_base@std@@QAE@XZ', '??0_Winit@std@@QAE@XZ', '??1_Winit@std@@QAE@XZ', '??0Init@ios_base@std@@QAE@XZ'], ['InternetCloseHandle', 'InternetReadFile', 'InternetOpenW', 'InternetOpenUrlW', 'DocumentPropertiesW', 'ClosePrinter', 'OpenPrinterW', 'GetDefaultPrinterW', 'EnumPrintersW', 'ImageList_GetImageInfo', 'FlatSB_SetScrollInfo', 'ImageList_DragMove', 'ImageList_Destroy', '_TrackMouseEvent', 'ImageList_DragShowNolock', 'ImageList_Add', 'FlatSB_SetScrollProp', 'ImageList_GetDragImage', 'ImageList_Create', 'ImageList_EndDrag', 'ImageList_DrawEx', 'ImageList_SetImageCount', 'FlatSB_GetScrollPos', 'FlatSB_SetScrollPos', 'InitializeFlatSB', 'ImageList_Copy', 'FlatSB_GetScrollInfo', 'ImageList_Write', 'ImageList_DrawIndirect', 'ImageList_SetBkColor', 'ImageList_GetBkColor', 'ImageList_BeginDrag', 'ImageList_GetIcon', 'ImageList_Replace', 'ImageList_GetImageCount', 'ImageList_DragEnter', 'ImageList_GetIconSize', 'ImageList_SetIconSize', 'ImageList_Read', 'ImageList_DragLeave', 'ImageList_LoadImageW', 'ImageList_Draw', 'ImageList_Remove', 'ImageList_ReplaceIcon', 'ImageList_SetOverlayImage', 'Shell_NotifyIconW', 'SHAppBarMessage', 'ShellExecuteW', 'CopyImage', 'CreateWindowExW', 'GetMenuItemInfoW', 'SetMenuItemInfoW', 'DefFrameProcW', 'GetDCEx', 'PeekMessageW', 'MonitorFromWindow', 'GetDlgCtrlID', 'GetUpdateRect', 'SetTimer', 'WindowFromPoint', 'BeginPaint', 'RegisterClipboardFormatW', 'FrameRect', 'MapVirtualKeyW', 'IsWindowUnicode', 'RegisterWindowMessageW', 'FillRect', 'GetMenuStringW', 'DispatchMessageW', 'CreateAcceleratorTableW', 'SendMessageA', 'DefMDIChildProcW', 'EnumWindows', 'GetClassInfoW', 'ShowOwnedPopups', 'GetSystemMenu', 'GetScrollRange', 'GetScrollPos', 'SetScrollPos', 'GetActiveWindow', 'SetActiveWindow', 'DrawEdge', 'GetKeyboardLayoutList', 'LoadBitmapW', 'DrawFocusRect', 'EnumChildWindows', 'ReleaseCapture', 'UnhookWindowsHookEx', 'LoadCursorW', 'GetCapture', 'SetCapture', 'CreatePopupMenu', 'ScrollWindow', 'ShowCaret', 'GetMenuItemID', 'GetLastActivePopup', 'CharLowerBuffW', 'GetSystemMetrics', 'SetWindowLongW', 'PostMessageW', 'DrawMenuBar', 'SetParent', 'IsZoomed', 'CharUpperBuffW', 'GetClientRect', 'IsChild', 'ClientToScreen', 'GetClipboardData', 'SetClipboardData', 'SetWindowPlacement', 'IsIconic', 'CallNextHookEx', 'GetMonitorInfoW', 'ShowWindow', 'CheckMenuItem', 'CharUpperW', 'DefWindowProcW', 'GetForegroundWindow', 'SetForegroundWindow', 'GetWindowTextW', 'EnableWindow', 'DestroyWindow', 'IsDialogMessageW', 'EndMenu', 'RegisterClassW', 'CharNextW', 'GetWindowThreadProcessId', 'RedrawWindow', 'GetDC', 'GetFocus', 'SetFocus', 'EndPaint', 'ReleaseDC', 'MsgWaitForMultipleObjectsEx', 'LoadKeyboardLayoutW', 'GetClassLongW', 'ActivateKeyboardLayout', 'GetParent', 'DrawTextW', 'SetScrollRange', 'MonitorFromRect', 'InsertMenuItemW', 'PeekMessageA', 'GetPropW', 'SetClassLongW', 'MessageBoxW', 'MessageBeep', 'SetPropW', 'RemovePropW', 'UpdateWindow', 'GetSubMenu', 'MsgWaitForMultipleObjects', 'DestroyMenu', 'DestroyIcon', 'SetWindowsHookExW', 'EmptyClipboard', 'IsWindowVisible', 'DispatchMessageA', 'UnregisterClassW', 'GetTopWindow', 'SendMessageW', 'AdjustWindowRectEx', 'DrawIcon', 'IsWindow', 'EnumThreadWindows', 'InvalidateRect', 'GetKeyboardState', 'DrawFrameControl', 'ScreenToClient', 'SetCursor', 'CreateIcon', 'CreateMenu', 'LoadStringW', 'CharLowerW', 'SetWindowPos', 'SetWindowRgn', 'GetMenuItemCount', 'RemoveMenu', 'GetSysColorBrush', 'GetKeyboardLayoutNameW', 'GetWindowDC', 'TranslateMessage', 'OpenClipboard', 'DrawTextExW', 'MapWindowPoints', 'EnumDisplayMonitors', 'CallWindowProcW', 'CloseClipboard', 'DestroyCursor', 'GetScrollInfo', 'SetWindowTextW', 'GetMessageExtraInfo', 'EnableScrollBar', 'GetSysColor', 'TrackPopupMenu', 'CopyIcon', 'DrawIconEx', 'PostQuitMessage', 'GetClassNameW', 'ShowScrollBar', 'EnableMenuItem', 'GetIconInfo', 'GetMessagePos', 'SetScrollInfo', 'GetKeyNameTextW', 'GetDesktopWindow', 'GetCursorPos', 'SetCursorPos', 'HideCaret', 'GetMenu', 'GetMenuState', 'SetMenu', 'SetRect', 'GetKeyState', 'FindWindowExW', 'MonitorFromPoint', 'ValidateRect', 'SystemParametersInfoW', 'LoadIconW', 'GetCursor', 'GetWindow', 'GetWindowLongW', 'GetWindowRect', 'InsertMenuW', 'KillTimer', 'WaitMessage', 'IsWindowEnabled', 'IsDialogMessageA', 'TranslateMDISysAccel', 'GetWindowPlacement', 'CreateIconIndirect', 'FindWindowW', 'DeleteMenu', 'GetKeyboardLayout', 'GetFileVersionInfoSizeW', 'VerQueryValueW', 'GetFileVersionInfoW', 'SysFreeString', 'VariantClear', 'VariantInit', 'GetErrorInfo', 'SysReAllocStringLen', 'SafeArrayCreate', 'SysAllocStringLen', 'SafeArrayPtrOfIndex', 'SafeArrayGetUBound', 'SafeArrayGetLBound', 'VariantCopy', 'VariantChangeType', 'RegSetValueExW', 'RegConnectRegistryW', 'RegEnumKeyExW', 'RegLoadKeyW', 'GetUserNameW', 'RegDeleteKeyW', 'RegOpenKeyExW', 'RegQueryInfoKeyW', 'RegUnLoadKeyW', 'RegSaveKeyW', 'RegDeleteValueW', 'RegReplaceKeyW', 'RegFlushKey', 'RegQueryValueExW', 'RegEnumValueW', 'RegCloseKey', 'RegCreateKeyExW', 'RegRestoreKeyW', 'memcpy', 'memset', 'WinHttpGetIEProxyConfigForCurrentUser', 'WinHttpSetTimeouts', 'WinHttpSetStatusCallback', 'WinHttpConnect', 'WinHttpReceiveResponse', 'WinHttpQueryAuthSchemes', 'WinHttpGetProxyForUrl', 'WinHttpReadData', 'WinHttpCloseHandle', 'WinHttpQueryHeaders', 'WinHttpOpenRequest', 'WinHttpAddRequestHeaders', 'WinHttpOpen', 'WinHttpWriteData', 'WinHttpSetCredentials', 'WinHttpQueryDataAvailable', 'WinHttpSetOption', 'WinHttpSendRequest', 'WinHttpQueryOption', 'SetFileAttributesW', 'GetFileType', 'SetFileTime', 'QueryDosDeviceW', 'GetACP', 'CloseHandle', 'LocalFree', 'GetCurrentProcessId', 'GetSystemDefaultLangID', 'SizeofResource', 'TlsAlloc', 'TerminateThread', 'QueryPerformanceFrequency', 'IsDebuggerPresent', 'FindNextFileW', 'GetFullPathNameW', 'VirtualFree', 'ExitProcess', 'HeapAlloc', 'GetCPInfoExW', 'RtlUnwind', 'GetCPInfo', 'EnumSystemLocalesW', 'GetStdHandle', 'GetTimeZoneInformation', 'FileTimeToLocalFileTime', 'SystemTimeToTzSpecificLocalTime', 'GetModuleHandleW', 'FreeLibrary', 'TryEnterCriticalSection', 'HeapDestroy', 'FileTimeToDosDateTime', 'ReadFile', 'GetLastError', 'GetModuleFileNameW', 'SetLastError', 'GlobalAlloc', 'GlobalUnlock', 'FindResourceW', 'CreateThread', 'CompareStringW', 'MapViewOfFile', 'LoadLibraryA', 'GetVolumeInformationW', 'ResetEvent', 'MulDiv', 'FreeResource', 'GetDriveTypeW', 'GetVersion', 'RaiseException', 'GlobalAddAtomW', 'FormatMessageW', 'SwitchToThread', 'GetExitCodeThread', 'GetCurrentThread', 'GetLogicalDrives', 'GetFileAttributesExW', 'LoadLibraryExW', 'LockResource', 'FileTimeToSystemTime', 'GetCurrentThreadId', 'UnhandledExceptionFilter', 'GlobalFindAtomW', 'VirtualQuery', 'GlobalFree', 'VirtualQueryEx', 'Sleep', 'EnterCriticalSection', 'SetFilePointer', 'LoadResource', 'SuspendThread', 'GetTickCount', 'GetFileSize', 'GlobalDeleteAtom', 'GetStartupInfoW', 'GetFileAttributesW', 'InitializeCriticalSection', 'VerLanguageNameW', 'GetThreadPriority', 'GetCurrentProcess', 'SetThreadPriority', 'GlobalLock', 'VirtualAlloc', 'GetTempPathW', 'GetCommandLineW', 'GetSystemInfo', 'LeaveCriticalSection', 'GetProcAddress', 'ResumeThread', 'GetLogicalDriveStringsW', 'GetVersionExW', 'VerifyVersionInfoW', 'HeapCreate', 'LCMapStringW', 'GetDiskFreeSpaceW', 'VerSetConditionMask', 'FindFirstFileW', 'GetUserDefaultUILanguage', 'TlsFree', 'GetConsoleOutputCP', 'UnmapViewOfFile', 'GetConsoleCP', 'lstrlenW', 'SetEndOfFile', 'QueryPerformanceCounter', 'HeapFree', 'WideCharToMultiByte', 'FindClose', 'MultiByteToWideChar', 'LoadLibraryW', 'SetEvent', 'GetLocaleInfoW', 'CreateFileW', 'SystemTimeToFileTime', 'EnumResourceNamesW', 'DeleteFileW', 'GetEnvironmentVariableW', 'GetLocalTime', 'WaitForSingleObject', 'WriteFile', 'CreateFileMappingW', 'ExitThread', 'DeleteCriticalSection', 'GetDateFormatW', 'TlsGetValue', 'SetErrorMode', 'GetComputerNameW', 'TzSpecificLocalTimeToSystemTime', 'IsValidLocale', 'TlsSetValue', 'CreateDirectoryW', 'GetSystemDefaultUILanguage', 'EnumCalendarInfoW', 'LocalAlloc', 'RemoveDirectoryW', 'CreateEventW', 'WaitForMultipleObjectsEx', 'GetThreadLocale', 'SetThreadLocale', 'IsEqualGUID', 'OleInitialize', 'OleUninitialize', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'CoTaskMemFree', 'CoTaskMemAlloc', 'Pie', 'SetBkMode', 'CreateCompatibleBitmap', 'GetEnhMetaFileHeader', 'RectVisible', 'AngleArc', 'SetAbortProc', 'SetTextColor', 'StretchBlt', 'RoundRect', 'RestoreDC', 'SetRectRgn', 'GetTextMetricsW', 'GetWindowOrgEx', 'CreatePalette', 'PolyBezierTo', 'CreateICW', 'CreateDCW', 'GetStockObject', 'CreateSolidBrush', 'Polygon', 'MoveToEx', 'PlayEnhMetaFile', 'Ellipse', 'StartPage', 'GetBitmapBits', 'StartDocW', 'GetSystemPaletteEntries', 'GetEnhMetaFileBits', 'AbortDoc', 'GetEnhMetaFilePaletteEntries', 'CreatePenIndirect', 'CreateFontIndirectW', 'PolyBezier', 'EndDoc', 'GetObjectW', 'GetWinMetaFileBits', 'SetROP2', 'GetEnhMetaFileDescriptionW', 'ArcTo', 'Arc', 'SelectPalette', 'ExcludeClipRect', 'MaskBlt', 'SetWindowOrgEx', 'EndPage', 'DeleteEnhMetaFile', 'Chord', 'SetDIBits', 'SetViewportOrgEx', 'CreateRectRgn', 'RealizePalette', 'SetDIBColorTable', 'GetDIBColorTable', 'CreateBrushIndirect', 'PatBlt', 'SetEnhMetaFileBits', 'Rectangle', 'SaveDC', 'DeleteDC', 'FrameRgn', 'BitBlt', 'GetDeviceCaps', 'GetTextExtentPoint32W', 'GetClipBox', 'IntersectClipRect', 'Polyline', 'CreateBitmap', 'SetWinMetaFileBits', 'GetStretchBltMode', 'CreateDIBitmap', 'SetStretchBltMode', 'GetDIBits', 'CreateDIBSection', 'LineTo', 'GetRgnBox', 'EnumFontsW', 'CreateHalftonePalette', 'SelectObject', 'DeleteObject', 'ExtFloodFill', 'UnrealizeObject', 'CopyEnhMetaFileW', 'SetBkColor', 'CreateCompatibleDC', 'GetBrushOrgEx', 'GetCurrentPositionEx', 'GetTextExtentPointW', 'ExtTextOutW', 'SetBrushOrgEx', 'GetPixel', 'GdiFlush', 'SetPixel', 'EnumFontFamiliesExW', 'StretchDIBits', 'GetPaletteEntries'], ['GetConsoleAliasesLengthW', 'EnumDateFormatsExW', 'FindResourceW', 'GlobalAddAtomA', 'EnumCalendarInfoW', '_lwrite', 'ScrollConsoleScreenBufferW', 'AddConsoleAliasW', 'GetComputerNameW', 'GetTickCount', 'GetConsoleAliasesA', 'GlobalAlloc', 'LoadLibraryW', 'FreeConsole', 'EnumSystemCodePagesA', 'FindNextVolumeW', 'ReadFile', 'GetCompressedFileSizeA', 'SetThreadPriority', 'DisconnectNamedPipe', 'GetConsoleAliasesW', 'InterlockedExchange', 'lstrlenA', 'OpenMutexW', 'SetLastError', 'lstrcmpiA', 'GetProcAddress', 'VirtualAlloc', 'LoadLibraryA', 'SetCurrentDirectoryW', 'GetOEMCP', 'SetLocaleInfoW', 'CreateMutexA', 'FatalAppExitA', 'SetProcessShutdownParameters', '_lopen', 'OpenSemaphoreW', 'SetFileShortNameA', 'ReadConsoleInputW', 'GetWindowsDirectoryW', 'DeleteFileW', 'LocalFileTimeToFileTime', 'CreateFileA', 'CloseHandle', 'WriteConsoleW', 'GetProfileIntA', 'GetDateFormatW', 'InterlockedIncrement', 'InterlockedDecrement', 'Sleep', 'InitializeCriticalSection', 'DeleteCriticalSection', 'EnterCriticalSection', 'LeaveCriticalSection', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetLastError', 'HeapFree', 'MultiByteToWideChar', 'GetStartupInfoW', 'RtlUnwind', 'RaiseException', 'GetModuleHandleW', 'ExitProcess', 'WriteFile', 'GetStdHandle', 'GetModuleFileNameA', 'HeapAlloc', 'HeapCreate', 'VirtualFree', 'HeapReAlloc', 'SetHandleCount', 'GetFileType', 'GetStartupInfoA', 'TerminateProcess', 'GetCurrentProcess', 'IsDebuggerPresent', 'GetCPInfo', 'GetACP', 'IsValidCodePage', 'TlsGetValue', 'TlsAlloc', 'TlsSetValue', 'TlsFree', 'GetCurrentThreadId', 'GetModuleFileNameW', 'FreeEnvironmentStringsW', 'GetEnvironmentStringsW', 'GetCommandLineW', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'HeapSize', 'GetLocaleInfoA', 'GetStringTypeA', 'GetStringTypeW', 'InitializeCriticalSectionAndSpinCount', 'SetFilePointer', 'WideCharToMultiByte', 'GetConsoleCP', 'GetConsoleMode', 'LCMapStringA', 'LCMapStringW', 'FlushFileBuffers', 'SetStdHandle', 'WriteConsoleA', 'GetConsoleOutputCP', 'DdeQueryStringW', 'CharUpperBuffA', 'LoadMenuW', 'CharLowerBuffW', 'InitializeAcl'], ['GetProcAddress', 'LoadLibraryW', 'FormatMessageA', 'EnterCriticalSection', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'DeleteCriticalSection', 'LocalFree', 'GetLocaleInfoEx', 'EncodePointer', 'DecodePointer', 'MultiByteToWideChar', 'WideCharToMultiByte', 'LCMapStringEx', 'GetStringTypeW', 'CompareStringEx', 'GetCPInfo', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'GetStartupInfoW', 'IsProcessorFeaturePresent', 'GetModuleHandleW', 'GetCurrentProcess', 'TerminateProcess', 'WriteConsoleW', 'RtlPcToFileHeader', 'RaiseException', 'RtlUnwindEx', 'InterlockedPushEntrySList', 'InterlockedFlushSList', 'GetLastError', 'SetLastError', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'FreeLibrary', 'LoadLibraryExW', 'RtlUnwind', 'CreateDirectoryW', 'GetStdHandle', 'WriteFile', 'GetModuleFileNameW', 'ExitProcess', 'GetModuleHandleExW', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThread', 'HeapFree', 'HeapAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetFileType', 'CloseHandle', 'FlushFileBuffers', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'GetFileSizeEx', 'SetFilePointerEx', 'ReadConsoleW', 'HeapReAlloc', 'SetConsoleCtrlHandler', 'GetTimeZoneInformation', 'OutputDebugStringW', 'FindClose', 'FindFirstFileExW', 'FindNextFileW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetStdHandle', 'GetProcessHeap', 'CreateFileW', 'HeapSize', 'SetEndOfFile'], ['inet_pton', 'WSAStartup', 'closesocket', 'socket', 'connect', 'recv', 'send', 'htons', 'WSACleanup', 'CryptUnprotectData', 'InternetQueryDataAvailable', 'HttpQueryInfoW', 'InternetOpenUrlA', 'InternetReadFile', 'InternetCloseHandle', 'InternetOpenW', 'InternetOpenA', 'MultiByteToWideChar', 'LocalFree', 'WideCharToMultiByte', 'IsDebuggerPresent', 'WriteProcessMemory', 'TerminateProcess', 'GetModuleFileNameW', 'WaitForSingleObject', 'ResumeThread', 'CloseHandle', 'GetThreadContext', 'VirtualAllocEx', 'CreateProcessW', 'SetThreadContext', 'GetExitCodeProcess', 'ExitProcess', 'GetModuleFileNameA', 'GetVolumeInformationW', 'GetGeoInfoA', 'HeapFree', 'EnterCriticalSection', 'GetProductInfo', 'LeaveCriticalSection', 'InitializeCriticalSectionEx', 'HeapSize', 'GetLogicalDriveStringsW', 'GetTimeZoneInformation', 'GetLastError', 'HeapReAlloc', 'GetNativeSystemInfo', 'HeapAlloc', 'GetUserGeoID', 'DecodePointer', 'GetProcAddress', 'DeleteCriticalSection', 'GetComputerNameW', 'GetProcessHeap', 'GlobalMemoryStatusEx', 'GetModuleHandleW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'SetLastError', 'GetCurrentProcess', 'IsProcessorFeaturePresent', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'FreeLibrary', 'GetModuleHandleExW', 'CreateThread', 'ExitThread', 'FreeLibraryAndExitThread', 'GetSystemInfo', 'VirtualAlloc', 'VirtualProtect', 'VirtualQuery', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'InitializeCriticalSectionAndSpinCount', 'LoadLibraryExW', 'GetDateFormatW', 'GetTimeFormatW', 'CompareStringW', 'LCMapStringW', 'GetLocaleInfoW', 'IsValidLocale', 'GetUserDefaultLCID', 'EnumSystemLocalesW', 'GetStdHandle', 'GetFileType', 'GetStartupInfoW', 'RaiseException', 'GetFileSizeEx', 'SetFilePointerEx', 'FlushFileBuffers', 'WriteFile', 'GetConsoleOutputCP', 'GetConsoleMode', 'ReadFile', 'ReadConsoleW', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetStringTypeW', 'SetStdHandle', 'CreateFileW', 'WriteConsoleW', 'OutputDebugStringW', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'SetEnvironmentVariableW', 'SetEvent', 'ResetEvent', 'SetEndOfFile', 'CreateEventW', 'QueryPerformanceCounter', 'InitializeSListHead', 'RtlUnwindEx', 'RtlUnwind', 'RtlPcToFileHeader', 'EncodePointer', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetCommandLineA', 'GetCommandLineW', 'GetCurrentThreadId', 'WaitForSingleObjectEx', 'LCMapStringEx', 'GetExitCodeThread', 'GetFileInformationByHandleEx', 'AreFileApisANSI', 'FormatMessageA', 'GetLocaleInfoEx', 'GetCurrentDirectoryW', 'FindClose', 'FindFirstFileW', 'FindFirstFileExW', 'FindNextFileW', 'GetFileAttributesExW', 'EnumDisplayDevicesW', 'GetDesktopWindow', 'GetDC', 'ReleaseDC', 'GetWindowRect', 'GetSystemMetrics', 'SelectObject', 'CreateCompatibleBitmap', 'BitBlt', 'CreateCompatibleDC', 'GetDeviceCaps', 'DeleteDC', 'GetObjectW', 'DeleteObject', 'RegCloseKey', 'RegQueryValueExA', 'RegOpenKeyExA', 'GetUserNameW', 'RegEnumKeyExA', 'GetCurrentHwProfileW', 'SHGetKnownFolderPath', 'ShellExecuteA', 'CreateStreamOnHGlobal', 'CoTaskMemFree', 'GdiplusStartup', 'GdiplusShutdown', 'GdipCreateBitmapFromScan0', 'GdipSaveImageToStream', 'GdipGetImageEncodersSize', 'GdipDisposeImage', 'GdipCreateBitmapFromHBITMAP', 'GdipGetImageEncoders'], ['CreateFileA', 'ReadFile', 'CloseHandle', 'WriteFile', 'lstrlenA', 'GlobalLock', 'GlobalUnlock', 'LocalFree', 'LocalAlloc', 'GetTickCount', 'lstrcpyA', 'lstrcatA', 'GetFileAttributesA', 'ExpandEnvironmentStringsA', 'GetFileSize', 'CreateFileMappingA', 'MapViewOfFile', 'UnmapViewOfFile', 'LoadLibraryA', 'GetProcAddress', 'GetTempPathA', 'CreateDirectoryA', 'DeleteFileA', 'GetCurrentProcess', 'WideCharToMultiByte', 'GetLastError', 'lstrcmpA', 'CreateToolhelp32Snapshot', 'Process32First', 'OpenProcess', 'Process32Next', 'FindFirstFileA', 'lstrcmpiA', 'FindNextFileA', 'FindClose', 'GetModuleHandleA', 'GetVersionExA', 'GetLocaleInfoA', 'GetSystemInfo', 'GetWindowsDirectoryA', 'GetPrivateProfileStringA', 'SetCurrentDirectoryA', 'GetPrivateProfileSectionNamesA', 'GetPrivateProfileIntA', 'GetCurrentDirectoryA', 'lstrlenW', 'MultiByteToWideChar', 'Sleep', 'GetModuleFileNameA', 'LCMapStringA', 'ExitProcess', 'CreateStreamOnHGlobal', 'GetHGlobalFromStream', 'CoCreateGuid', 'CoTaskMemFree', 'CoCreateInstance', 'OleInitialize', 'wsprintfA', 'RegOpenKeyExA', 'RegQueryValueExA', 'RegCloseKey', 'RegOpenKeyA', 'RegEnumKeyExA', 'RegCreateKeyA', 'RegSetValueExA', 'IsTextUnicode', 'RegOpenCurrentUser', 'RegEnumValueA', 'GetUserNameA', 'InternetCrackUrlA', 'InternetCreateUrlA', 'StrStrIA', 'StrRChrIA', 'StrToIntA', 'StrStrA', 'StrCmpNIA', 'StrStrIW', 'ObtainUserAgentString', 'inet_addr', 'gethostbyname', 'socket', 'connect', 'closesocket', 'send', 'select', 'recv', 'setsockopt', 'WSAStartup', 'LoadUserProfileA', 'UnloadUserProfile'], ['CompareFileTime', 'SearchPathA', 'GetShortPathNameA', 'GetFullPathNameA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'GetLastError', 'CreateDirectoryA', 'SetFileAttributesA', 'Sleep', 'GetTickCount', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'GetWindowsDirectoryA', 'SetFileTime', 'GetCommandLineA', 'SetErrorMode', 'LoadLibraryA', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'CreateProcessA', 'RemoveDirectoryA', 'CreateFileA', 'GetTempFileNameA', 'lstrlenA', 'lstrcatA', 'GetSystemDirectoryA', 'GetVersion', 'CloseHandle', 'lstrcmpiA', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'GlobalFree', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GetModuleHandleA', 'LoadLibraryExA', 'GetProcAddress', 'FreeLibrary', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'WriteFile', 'ReadFile', 'MulDiv', 'SetFilePointer', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'DeleteFileA', 'GetTempPathA', 'EndDialog', 'ScreenToClient', 'GetWindowRect', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongA', 'SetCursor', 'LoadCursorA', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapA', 'CallWindowProcA', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'RegisterClassA', 'TrackPopupMenu', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'DispatchMessageA', 'PeekMessageA', 'DestroyWindow', 'CreateDialogParamA', 'SetTimer', 'SetWindowTextA', 'PostQuitMessage', 'SetForegroundWindow', 'wsprintfA', 'SendMessageTimeoutA', 'FindWindowExA', 'SystemParametersInfoA', 'CreateWindowExA', 'GetClassInfoA', 'DialogBoxParamA', 'CharNextA', 'OpenClipboard', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongA', 'LoadImageA', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndPaint', 'ShowWindow', 'SetBkColor', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectA', 'SetBkMode', 'SetTextColor', 'SelectObject', 'SHGetPathFromIDListA', 'SHBrowseForFolderA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'SHGetSpecialFolderLocation', 'RegQueryValueExA', 'RegSetValueExA', 'RegEnumKeyA', 'RegEnumValueA', 'RegOpenKeyExA', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCloseKey', 'RegCreateKeyExA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['CreateWindowExW', 'MessageBoxW', 'MessageBoxA', 'SystemParametersInfoW', 'DestroyIcon', 'SetWindowLongPtrW', 'GetWindowLongPtrW', 'GetClientRect', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'DrawTextW', 'GetDialogBaseUnits', 'EndDialog', 'DialogBoxIndirectParamW', 'MoveWindow', 'SendMessageW', 'IsValidCodePage', 'GetStringTypeW', 'GetFileAttributesExW', 'HeapReAlloc', 'FlushFileBuffers', 'GetCurrentDirectoryW', 'GetACP', 'GetOEMCP', 'GetModuleHandleW', 'MulDiv', 'GetLastError', 'SetDllDirectoryW', 'GetModuleFileNameW', 'GetProcAddress', 'GetCommandLineW', 'GetCPInfo', 'SetEnvironmentVariableW', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'FreeLibrary', 'LoadLibraryExW', 'FindClose', 'FindFirstFileExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'WriteConsoleW', 'SetEndOfFile', 'GetEnvironmentVariableW', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'RtlUnwindEx', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCommandLineA', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindNextFileW', 'SetStdHandle', 'SetConsoleCtrlHandler', 'DeleteFileW', 'ReadFile', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'OpenProcessToken', 'GetTokenInformation', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ConvertSidToStringSidW', 'SelectObject', 'DeleteObject', 'CreateFontIndirectW'], ['GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'EncodePointer', 'DecodePointer', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'GetLastError', 'SetLastError', 'MultiByteToWideChar', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetStringTypeW', 'LCMapStringW', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'OutputDebugStringW', 'HeapSize', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['GetCommandLineA', 'GetCurrentThreadId', 'IsDebuggerPresent', 'IsProcessorFeaturePresent', 'GetLastError', 'SetLastError', 'EncodePointer', 'DecodePointer', 'ExitProcess', 'GetModuleHandleExW', 'GetProcAddress', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetProcessHeap', 'GetStdHandle', 'GetFileType', 'DeleteCriticalSection', 'GetStartupInfoW', 'GetModuleFileNameA', 'HeapFree', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetSystemTimeAsFileTime', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'InitializeCriticalSectionAndSpinCount', 'Sleep', 'GetCurrentProcess', 'TerminateProcess', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'GetModuleHandleW', 'EnterCriticalSection', 'LeaveCriticalSection', 'IsValidCodePage', 'GetACP', 'GetOEMCP', 'GetCPInfo', 'WriteFile', 'GetModuleFileNameW', 'LoadLibraryExW', 'RtlUnwind', 'HeapAlloc', 'HeapReAlloc', 'GetStringTypeW', 'OutputDebugStringW', 'HeapSize', 'LCMapStringW', 'FlushFileBuffers', 'GetConsoleCP', 'GetConsoleMode', 'SetStdHandle', 'SetFilePointerEx', 'WriteConsoleW', 'CloseHandle', 'CreateFileW'], ['SHGetSpecialFolderPathW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteExW', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'DeleteDC', 'GetCurrentObject', 'StretchBlt', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'SetStretchBltMode', 'GetObjectW', 'FreeSid', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'ReleaseDC', 'CopyImage', 'GetParent', 'GetWindowRect', 'wsprintfA', 'CreateWindowExW', 'SetTimer', 'GetWindowDC', 'DispatchMessageW', 'KillTimer', 'DestroyWindow', 'CharUpperW', 'EndDialog', 'SendMessageW', 'wsprintfW', 'SetWindowPos', 'GetMenu', 'GetWindowLongW', 'GetClassNameA', 'GetWindowTextW', 'GetWindowTextLengthW', 'GetMessageW', 'SetWindowTextW', 'MessageBoxA', 'GetKeyState', 'GetDlgItem', 'GetClientRect', 'SetWindowLongW', 'UnhookWindowsHookEx', 'SetFocus', 'GetSystemMetrics', 'SystemParametersInfoW', 'ShowWindow', 'DrawTextW', 'GetDC', 'ClientToScreen', 'GetWindow', 'DialogBoxIndirectParamW', 'DrawIconEx', 'CallWindowProcW', 'DefWindowProcW', 'CallNextHookEx', 'PtInRect', 'SetWindowsHookExW', 'LoadImageW', 'LoadIconW', 'MessageBeep', 'EnableWindow', 'IsWindow', 'EnableMenuItem', 'GetSystemMenu', 'wvsprintfW', 'GetSysColor', 'ScreenToClient', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'CoInitialize', 'SysAllocString', 'VariantClear', 'OleLoadPicture', 'SetFileTime', 'SetEndOfFile', 'EnterCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleA', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'FormatMessageW', 'lstrcpyW', 'LocalFree', 'IsBadReadPtr', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'SuspendThread', 'TerminateThread', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'GetVersionExW', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetProcessWorkingSetSize', 'SetCurrentDirectoryW', 'SetEnvironmentVariableW', 'GetDriveTypeW', 'CreateFileW', 'GetCommandLineW', 'GetStartupInfoW', 'CreateProcessW', 'CreateJobObjectW', 'AssignProcessToJobObject', 'CreateIoCompletionPort', 'SetInformationJobObject', 'ResumeThread', 'GetQueuedCompletionStatus', 'GetExitCodeProcess', 'CloseHandle', 'GetTempPathW', 'GetSystemTimeAsFileTime', 'lstrlenW', 'CompareFileTime', 'SetThreadLocale', 'FindFirstFileW', 'DeleteFileW', 'FindNextFileW', 'FindClose', 'RemoveDirectoryW', 'ExpandEnvironmentStringsW', 'WideCharToMultiByte', 'VirtualAlloc', 'GlobalMemoryStatusEx', 'lstrcmpW', 'GetEnvironmentVariableW', 'lstrcmpiW', 'lstrlenA', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLCID', 'lstrcmpiA', 'GlobalAlloc', 'GlobalFree', 'MulDiv', 'FindResourceExA', 'SizeofResource', 'ExitProcess', 'lstrcatW', 'GetDiskFreeSpaceExW', 'SetFileAttributesW', 'SetLastError', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'SystemTimeToFileTime', 'GetLocalTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'GetStdHandle', 'VirtualFree', 'GetModuleHandleW', 'GetProcAddress', 'LoadLibraryA', 'LockResource', 'LoadResource', 'GetStartupInfoA', '??2@YAPAXI@Z', '_purecall', 'memcmp', 'free', 'memcpy', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_CxxThrowException', '_beginthreadex', '_EH_prolog', '?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z', 'memset', '_wcsnicmp', 'strncmp', 'wcsncmp', 'malloc', 'memmove', '_wtol', '??3@YAXPAX@Z'], ['ExitProcess', 'SetFileAttributesW', 'Sleep', 'GetTickCount', 'CreateFileW', 'GetFileSize', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetCurrentDirectoryW', 'GetFileAttributesW', 'SetEnvironmentVariableW', 'GetWindowsDirectoryW', 'GetTempPathW', 'GetCommandLineW', 'GetVersion', 'SetErrorMode', 'lstrlenW', 'lstrcpynW', 'CopyFileW', 'GetShortPathNameW', 'GlobalLock', 'CreateThread', 'GetLastError', 'CreateDirectoryW', 'CreateProcessW', 'RemoveDirectoryW', 'lstrcmpiA', 'GetTempFileNameW', 'WriteFile', 'lstrcpyA', 'MoveFileExW', 'lstrcatW', 'GetSystemDirectoryW', 'GetProcAddress', 'GetModuleHandleA', 'GetExitCodeProcess', 'WaitForSingleObject', 'lstrcmpiW', 'MoveFileW', 'GetFullPathNameW', 'SetFileTime', 'SearchPathW', 'CompareFileTime', 'lstrcmpW', 'CloseHandle', 'ExpandEnvironmentStringsW', 'GlobalFree', 'GlobalUnlock', 'GetDiskFreeSpaceW', 'GlobalAlloc', 'FindFirstFileW', 'FindNextFileW', 'DeleteFileW', 'SetFilePointer', 'ReadFile', 'FindClose', 'lstrlenA', 'MulDiv', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetPrivateProfileStringW', 'WritePrivateProfileStringW', 'FreeLibrary', 'LoadLibraryExW', 'GetModuleHandleW', 'GetSystemMenu', 'SetClassLongW', 'EnableMenuItem', 'IsWindowEnabled', 'SetWindowPos', 'GetSysColor', 'GetWindowLongW', 'SetCursor', 'LoadCursorW', 'CheckDlgButton', 'GetMessagePos', 'LoadBitmapW', 'CallWindowProcW', 'IsWindowVisible', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'ScreenToClient', 'GetWindowRect', 'GetDlgItem', 'GetSystemMetrics', 'SetDlgItemTextW', 'GetDlgItemTextW', 'MessageBoxIndirectW', 'CharPrevW', 'CharNextA', 'wsprintfA', 'DispatchMessageW', 'PeekMessageW', 'ReleaseDC', 'EnableWindow', 'InvalidateRect', 'SendMessageW', 'DefWindowProcW', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextW', 'EndDialog', 'RegisterClassW', 'SystemParametersInfoW', 'CreateWindowExW', 'GetClassInfoW', 'DialogBoxParamW', 'CharNextW', 'ExitWindowsEx', 'DestroyWindow', 'GetDC', 'SetTimer', 'SetWindowTextW', 'LoadImageW', 'SetForegroundWindow', 'ShowWindow', 'IsWindow', 'SetWindowLongW', 'FindWindowExW', 'TrackPopupMenu', 'AppendMenuW', 'CreatePopupMenu', 'EndPaint', 'CreateDialogParamW', 'SendMessageTimeoutW', 'wsprintfW', 'PostQuitMessage', 'SelectObject', 'SetBkMode', 'CreateFontIndirectW', 'SetTextColor', 'DeleteObject', 'GetDeviceCaps', 'CreateBrushIndirect', 'SetBkColor', 'SHGetSpecialFolderLocation', 'ShellExecuteExW', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'SHFileOperationW', 'AdjustTokenPrivileges', 'RegCreateKeyExW', 'RegOpenKeyExW', 'SetFileSecurityW', 'OpenProcessToken', 'LookupPrivilegeValueW', 'RegEnumValueW', 'RegDeleteKeyW', 'RegDeleteValueW', 'RegCloseKey', 'RegSetValueExW', 'RegQueryValueExW', 'RegEnumKeyW', 'ImageList_Create', 'ImageList_AddMasked', 'ImageList_Destroy', 'OleUninitialize', 'OleInitialize', 'CoTaskMemFree', 'CoCreateInstance'], ['SHGetSpecialFolderPathW', 'ShellExecuteW', 'SHGetMalloc', 'SHGetPathFromIDListW', 'SHBrowseForFolderW', 'SHGetFileInfoW', 'ShellExecuteExW', 'CreateCompatibleDC', 'CreateFontIndirectW', 'DeleteObject', 'DeleteDC', 'GetCurrentObject', 'StretchBlt', 'GetDeviceCaps', 'CreateCompatibleBitmap', 'SelectObject', 'SetStretchBltMode', 'GetObjectW', 'FreeSid', 'AllocateAndInitializeSid', 'CheckTokenMembership', 'GetMenu', 'SetWindowPos', 'GetWindowDC', 'ReleaseDC', 'CopyImage', 'GetKeyState', 'GetWindowRect', 'ScreenToClient', 'GetWindowLongW', 'SetTimer', 'GetMessageW', 'DispatchMessageW', 'KillTimer', 'DestroyWindow', 'EndDialog', 'SendMessageW', 'wsprintfW', 'GetClassNameA', 'GetWindowTextW', 'GetWindowTextLengthW', 'GetSysColor', 'wsprintfA', 'SetWindowTextW', 'CreateWindowExW', 'GetDlgItem', 'GetClientRect', 'SetWindowLongW', 'UnhookWindowsHookEx', 'SetFocus', 'GetSystemMetrics', 'SystemParametersInfoW', 'ShowWindow', 'DrawTextW', 'GetDC', 'ClientToScreen', 'GetWindow', 'DialogBoxIndirectParamW', 'DrawIconEx', 'CallWindowProcW', 'DefWindowProcW', 'CallNextHookEx', 'PtInRect', 'SetWindowsHookExW', 'LoadImageW', 'LoadIconW', 'MessageBeep', 'EnableWindow', 'IsWindow', 'EnableMenuItem', 'GetSystemMenu', 'wvsprintfW', 'CharUpperW', 'MessageBoxA', 'GetParent', 'CreateStreamOnHGlobal', 'CoCreateInstance', 'CoInitialize', 'SysAllocString', 'VariantClear', 'OleLoadPicture', 'SetFileTime', 'SetEndOfFile', 'EnterCriticalSection', 'DeleteCriticalSection', 'GetModuleHandleA', 'LeaveCriticalSection', 'WaitForMultipleObjects', 'ReadFile', 'SetFilePointer', 'GetFileSize', 'FormatMessageW', 'lstrcpyW', 'LocalFree', 'IsBadReadPtr', 'GetSystemDirectoryW', 'GetCurrentThreadId', 'SuspendThread', 'TerminateThread', 'InitializeCriticalSection', 'ResetEvent', 'SetEvent', 'CreateEventW', 'GetVersionExW', 'GetModuleFileNameW', 'GetCurrentProcess', 'SetProcessWorkingSetSize', 'SetCurrentDirectoryW', 'GetDriveTypeW', 'CreateFileW', 'GetCommandLineW', 'GetStartupInfoW', 'CreateProcessW', 'CreateJobObjectW', 'ResumeThread', 'AssignProcessToJobObject', 'CreateIoCompletionPort', 'SetInformationJobObject', 'GetQueuedCompletionStatus', 'GetExitCodeProcess', 'CloseHandle', 'SetEnvironmentVariableW', 'GetTempPathW', 'GetSystemTimeAsFileTime', 'lstrlenW', 'CompareFileTime', 'SetThreadLocale', 'FindFirstFileW', 'DeleteFileW', 'FindNextFileW', 'FindClose', 'RemoveDirectoryW', 'ExpandEnvironmentStringsW', 'WideCharToMultiByte', 'VirtualAlloc', 'GlobalMemoryStatusEx', 'lstrcmpW', 'GetEnvironmentVariableW', 'lstrcmpiW', 'lstrlenA', 'GetLocaleInfoW', 'MultiByteToWideChar', 'GetUserDefaultUILanguage', 'GetSystemDefaultUILanguage', 'GetSystemDefaultLCID', 'lstrcmpiA', 'GlobalAlloc', 'GlobalFree', 'MulDiv', 'FindResourceExA', 'SizeofResource', 'LoadResource', 'LockResource', 'LoadLibraryA', 'ExitProcess', 'lstrcatW', 'GetDiskFreeSpaceExW', 'SetFileAttributesW', 'SetLastError', 'Sleep', 'GetExitCodeThread', 'WaitForSingleObject', 'CreateThread', 'GetLastError', 'SystemTimeToFileTime', 'GetLocalTime', 'GetFileAttributesW', 'CreateDirectoryW', 'WriteFile', 'GetStdHandle', 'VirtualFree', 'GetModuleHandleW', 'GetProcAddress', 'GetStartupInfoA', '??3@YAXPAX@Z', '??2@YAPAXI@Z', 'memcmp', 'free', 'memcpy', '_controlfp', '_except_handler3', '__set_app_type', '__p__fmode', '__p__commode', '_adjust_fdiv', '__setusermatherr', '_initterm', '__getmainargs', '_acmdln', 'exit', '_XcptFilter', '_exit', '??1type_info@@UAE@XZ', '_onexit', '__dllonexit', '_CxxThrowException', '_beginthreadex', '_EH_prolog', '?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z', 'memset', '_wcsnicmp', 'strncmp', 'wcsncmp', 'malloc', 'memmove', '_wtol', '_purecall'], ['GetConsoleCP', 'GetConsoleMode', 'CreateFileW', 'SetEnvironmentVariableA', 'QueryPerformanceCounter', 'SetHandleCount', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetStdHandle', 'TerminateProcess', 'RtlCaptureContext', 'RtlVirtualUnwind', 'IsDebuggerPresent', 'SetUnhandledExceptionFilter', 'UnhandledExceptionFilter', 'IsValidCodePage', 'HeapCreate', 'GetVersion', 'HeapSetInformation', 'FlsAlloc', 'FlsFree', 'FlsSetValue', 'GetProcAddress', 'FlsGetValue', 'GetFileType', 'SetStdHandle', 'GetSystemTimeAsFileTime', 'HeapSize', 'HeapQueryInformation', 'VirtualQuery', 'GetSystemInfo', 'SetThreadStackGuarantee', 'GetTimeZoneInformation', 'RtlPcToFileHeader', 'RaiseException', 'CreateThread', 'ExitThread', 'ExitProcess', 'GetStartupInfoW', 'GetCommandLineA', 'HeapAlloc', 'HeapFree', 'HeapReAlloc', 'DecodePointer', 'EncodePointer', 'RtlUnwindEx', 'RtlLookupFunctionEntry', 'FindResourceExW', 'VirtualProtect', 'SearchPathA', 'Sleep', 'GetProfileIntA', 'InitializeCriticalSectionAndSpinCount', 'GetTickCount', 'GetNumberFormatA', 'GetWindowsDirectoryA', 'GetTempPathA', 'GetTempFileNameA', 'GetFileTime', 'GetFileSizeEx', 'GetFileAttributesA', 'FileTimeToLocalFileTime', 'GetFileAttributesExA', 'SetErrorMode', 'CompareStringW', 'LCMapStringW', 'VirtualAlloc', 'GetStringTypeW', 'FileTimeToSystemTime', 'GetOEMCP', 'GetCPInfo', 'GetACP', 'GetFullPathNameA', 'GetVolumeInformationA', 'FindFirstFileA', 'FindClose', 'GetCurrentProcess', 'DuplicateHandle', 'GetFileSize', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'WriteFile', 'ReadFile', 'CreateFileA', 'lstrcmpiA', 'GetThreadLocale', 'lstrcpyA', 'DeleteFileA', 'TlsFree', 'DeleteCriticalSection', 'LocalReAlloc', 'TlsSetValue', 'GlobalHandle', 'GlobalReAlloc', 'TlsAlloc', 'InitializeCriticalSection', 'EnterCriticalSection', 'TlsGetValue', 'LeaveCriticalSection', 'LocalAlloc', 'GlobalFlags', 'GetCurrentDirectoryA', 'GetModuleFileNameW', 'ReleaseActCtx', 'CreateActCtxW', 'CopyFileA', 'GlobalSize', 'FormatMessageA', 'LocalFree', 'lstrlenW', 'MulDiv', 'GlobalGetAtomNameA', 'GlobalFindAtomA', 'GetVersionExA', 'LoadLibraryW', 'lstrcmpW', 'GlobalUnlock', 'GlobalFree', 'FindResourceA', 'FreeResource', 'GetCurrentProcessId', 'GlobalAddAtomA', 'GetPrivateProfileStringA', 'WritePrivateProfileStringA', 'GetPrivateProfileIntA', 'lstrlenA', 'GetModuleHandleA', 'WaitForSingleObject', 'ResumeThread', 'SetThreadPriority', 'CloseHandle', 'GlobalDeleteAtom', 'GetCurrentThread', 'GetCurrentThreadId', 'MultiByteToWideChar', 'GetUserDefaultUILanguage', 'ConvertDefaultLocale', 'GetSystemDefaultUILanguage', 'GetModuleFileNameA', 'GetLocaleInfoA', 'CompareStringA', 'ActivateActCtx', 'GetLastError', 'DeactivateActCtx', 'SetLastError', 'GlobalLock', 'lstrcmpA', 'GlobalAlloc', 'GetModuleHandleW', 'FreeLibrary', 'WideCharToMultiByte', 'FindResourceW', 'LoadResource', 'LockResource', 'SizeofResource', 'LoadLibraryA', 'WriteConsoleW', 'IsClipboardFormatAvailable', 'SetMenuDefaultItem', 'PostThreadMessageA', 'CreateMenu', 'IsMenu', 'UpdateLayeredWindow', 'UnionRect', 'MonitorFromPoint', 'TranslateMDISysAccel', 'DrawMenuBar', 'DefMDIChildProcA', 'DefFrameProcA', 'RegisterClipboardFormatA', 'CopyImage', 'GetIconInfo', 'EnableScrollBar', 'HideCaret', 'InvertRect', 'GetMenuDefaultItem', 'UnpackDDElParam', 'ReuseDDElParam', 'LoadMenuA', 'LoadImageA', 'LoadAcceleratorsA', 'InsertMenuItemA', 'TranslateAcceleratorA', 'LockWindowUpdate', 'BringWindowToTop', 'SetCursorPos', 'CreateAcceleratorTableA', 'LoadAcceleratorsW', 'GetKeyboardState', 'GetKeyboardLayout', 'ToAsciiEx', 'DrawFocusRect', 'DrawFrameControl', 'DrawEdge', 'DrawIconEx', 'DrawStateA', 'LoadMenuW', 'SetClassLongPtrA', 'GetAsyncKeyState', 'NotifyWinEvent', 'CreatePopupMenu', 'DestroyAcceleratorTable', 'SetParent', 'SetWindowRgn', 'IsZoomed', 'UnregisterClassA', 'MessageBeep', 'GetNextDlgGroupItem', 'InvalidateRgn', 'SetRect', 'IsRectEmpty', 'CopyAcceleratorTableA', 'OffsetRect', 'CharNextA', 'CharUpperA', 'DestroyIcon', 'WaitMessage', 'ReleaseCapture', 'WindowFromPoint', 'SetCapture', 'GetSysColorBrush', 'LoadCursorA', 'SetLayeredWindowAttributes', 'EnumDisplayMonitors', 'SetRectEmpty', 'KillTimer', 'RealChildWindowFromPoint', 'DeleteMenu', 'IntersectRect', 'EndPaint', 'BeginPaint', 'GetWindowDC', 'ClientToScreen', 'FillRect', 'SystemParametersInfoA', 'DestroyMenu', 'GetMenuItemInfoA', 'InflateRect', 'GetMenuStringA', 'InsertMenuA', 'RemoveMenu', 'FrameRect', 'ShowWindow', 'MoveWindow', 'SetWindowTextA', 'IsDialogMessageA', 'CheckDlgButton', 'RegisterWindowMessageA', 'LoadIconA', 'SendDlgItemMessageA', 'WinHelpA', 'IsChild', 'GetCapture', 'GetClassLongA', 'GetClassNameA', 'GetClassLongPtrA', 'SetPropA', 'GetPropA', 'RemovePropA', 'SetFocus', 'GetWindowTextLengthA', 'GetWindowTextA', 'GetForegroundWindow', 'BeginDeferWindowPos', 'EndDeferWindowPos', 'GetTopWindow', 'GetWindowLongPtrA', 'SetWindowLongPtrA', 'UnhookWindowsHookEx', 'GetMessageTime', 'GetMessagePos', 'MonitorFromWindow', 'GetMonitorInfoA', 'MapWindowPoints', 'ScrollWindow', 'TrackPopupMenu', 'SetMenu', 'SetScrollRange', 'GetScrollRange', 'SetScrollPos', 'GetScrollPos', 'SetForegroundWindow', 'ShowScrollBar', 'UpdateWindow', 'GetSubMenu', 'GetMenuItemID', 'GetMenuItemCount', 'CreateWindowExA', 'GetClassInfoExA', 'GetClassInfoA', 'RegisterClassA', 'AdjustWindowRectEx', 'GetWindowRect', 'ScreenToClient', 'EqualRect', 'DeferWindowPos', 'GetScrollInfo', 'SetScrollInfo', 'PtInRect', 'SetWindowPlacement', 'GetWindowPlacement', 'GetDlgCtrlID', 'DefWindowProcA', 'CallWindowProcA', 'GetMenu', 'SetWindowLongA', 'GetWindow', 'SetWindowContextHelpId', 'MapDialogRect', 'SetWindowPos', 'MapVirtualKeyA', 'GetKeyNameTextA', 'ReleaseDC', 'GetDC', 'GetWindowRgn', 'DestroyCursor', 'SubtractRect', 'MapVirtualKeyExA', 'IsCharLowerA', 'GetDoubleClickTime', 'CharUpperBuffA', 'CopyIcon', 'CopyRect', 'GetDesktopWindow', 'SetActiveWindow', 'CreateDialogIndirectParamA', 'DestroyWindow', 'GetDlgItem', 'GetNextDlgTabItem', 'EndDialog', 'GetWindowThreadProcessId', 'GetWindowLongA', 'LoadImageW', 'EmptyClipboard', 'CloseClipboard', 'SetClipboardData', 'OpenClipboard', 'GetUpdateRect', 'GetLastActivePopup', 'IsWindowEnabled', 'MessageBoxA', 'ShowOwnedPopups', 'SetCursor', 'SetWindowsHookExA', 'CallNextHookEx', 'GetMessageA', 'TranslateMessage', 'DispatchMessageA', 'GetActiveWindow', 'IsWindowVisible', 'GetKeyState', 'PeekMessageA', 'GetCursorPos', 'ValidateRect', 'SetMenuItemBitmaps', 'GetMenuCheckMarkDimensions', 'LoadBitmapW', 'GetFocus', 'GetParent', 'ModifyMenuA', 'GetMenuState', 'EnableMenuItem', 'CheckMenuItem', 'PostMessageA', 'PostQuitMessage', 'GrayStringA', 'DrawTextExA', 'DrawTextA', 'TabbedTextOutA', 'GetSysColor', 'IsWindow', 'RedrawWindow', 'InvalidateRect', 'GetSystemMetrics', 'LoadIconW', 'EnableWindow', 'SetTimer', 'GetClientRect', 'IsIconic', 'GetSystemMenu', 'SendMessageA', 'AppendMenuA', 'DrawIcon', 'LoadCursorW', 'CreateSolidBrush', 'CreateHatchBrush', 'SetRectRgn', 'CombineRgn', 'GetMapMode', 'DPtoLP', 'CreateDIBitmap', 'GetTextMetricsA', 'EnumFontFamiliesA', 'GetTextCharsetInfo', 'GetBkColor', 'GetTextColor', 'GetRgnBox', 'CreateDIBSection', 'CreateRoundRectRgn', 'CreatePolygonRgn', 'CreateEllipticRgn', 'Polyline', 'Ellipse', 'Polygon', 'CreatePalette', 'GetPaletteEntries', 'GetNearestPaletteIndex', 'RealizePalette', 'GetSystemPaletteEntries', 'OffsetRgn', 'SetDIBColorTable', 'StretchBlt', 'CreatePen', 'Rectangle', 'EnumFontFamiliesExA', 'LPtoDP', 'GetWindowOrgEx', 'GetViewportOrgEx', 'PtInRegion', 'FillRgn', 'FrameRgn', 'GetBoundsRect', 'ExtFloodFill', 'SetPaletteEntries', 'GetTextFaceA', 'SetPixelV', 'GetViewportExtEx', 'SelectClipRgn', 'GetObjectType', 'SelectPalette', 'GetStockObject', 'GetWindowExtEx', 'CreatePatternBrush', 'DeleteDC', 'ExtSelectClipRgn', 'ScaleWindowExtEx', 'SetWindowExtEx', 'OffsetWindowOrgEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SelectObject', 'SetPixel', 'CreateCompatibleBitmap', 'DeleteObject', 'SetLayout', 'GetLayout', 'SetTextAlign', 'MoveToEx', 'LineTo', 'IntersectClipRect', 'ExcludeClipRect', 'GetClipBox', 'SetMapMode', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'GetTextExtentPoint32A', 'CreateFontIndirectA', 'CreateDCA', 'CopyMetaFileA', 'GetDeviceCaps', 'GetObjectA', 'SetBkColor', 'SetTextColor', 'PatBlt', 'CreateRectRgnIndirect', 'CreateBitmap', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'BitBlt', 'CreateCompatibleDC', 'CreateRectRgn', 'GetPixel', 'AlphaBlend', 'TransparentBlt', 'GetFileTitleA', 'ClosePrinter', 'OpenPrinterA', 'DocumentPropertiesA', 'RegEnumKeyExA', 'RegQueryValueExA', 'RegOpenKeyExA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegDeleteValueA', 'RegDeleteKeyA', 'RegEnumKeyA', 'RegQueryValueA', 'RegCloseKey', 'RegEnumValueA', 'SHAppBarMessage', 'SHGetFileInfoA', 'DragFinish', 'DragQueryFileA', 'SHGetDesktopFolder', 'SHBrowseForFolderA', 'ShellExecuteA', 'SHGetSpecialFolderLocation', 'SHGetPathFromIDListA', 'ImageList_GetIconSize', 'PathFindFileNameA', 'PathStripToRootA', 'PathIsUNCA', 'PathFindExtensionA', 'PathRemoveFileSpecW', 'DoDragDrop', 'OleFlushClipboard', 'OleIsCurrentClipboard', 'CreateStreamOnHGlobal', 'OleLockRunning', 'IsAccelerator', 'OleTranslateAccelerator', 'OleDestroyMenuDescriptor', 'OleCreateMenuDescriptor', 'OleInitialize', 'CoFreeUnusedLibraries', 'OleUninitialize', 'CoInitializeEx', 'StgOpenStorageOnILockBytes', 'CoGetClassObject', 'CoInitialize', 'CoCreateInstance', 'CoUninitialize', 'OleDuplicateData', 'CoTaskMemAlloc', 'ReleaseStgMedium', 'CoTaskMemFree', 'CLSIDFromString', 'CLSIDFromProgID', 'CoCreateGuid', 'RevokeDragDrop', 'CoLockObjectExternal', 'RegisterDragDrop', 'OleGetClipboard', 'StgCreateDocfileOnILockBytes', 'CoRegisterMessageFilter', 'CreateILockBytesOnHGlobal', 'CoRevokeClassObject', 'SysFreeString', 'VarBstrFromDate', 'VariantCopy', 'SysAllocString', 'SafeArrayDestroy', 'SystemTimeToVariantTime', 'VariantTimeToSystemTime', 'OleCreateFontIndirect', 'SysStringLen', 'SysAllocStringByteLen', 'VariantInit', 'VariantChangeType', 'VariantClear', 'SysAllocStringLen', 'LresultFromObject', 'AccessibleObjectFromWindow', 'CreateStdAccessibleObject', 'GdipGetImageGraphicsContext', 'GdipBitmapUnlockBits', 'GdipBitmapLockBits', 'GdipCreateBitmapFromScan0', 'GdipCreateBitmapFromStream', 'GdipGetImagePalette', 'GdipGetImagePaletteSize', 'GdipGetImagePixelFormat', 'GdipGetImageHeight', 'GdipGetImageWidth', 'GdipCloneImage', 'GdipDrawImageRectI', 'GdipSetInterpolationMode', 'GdipCreateFromHDC', 'GdiplusShutdown', 'GdiplusStartup', 'GdipCreateBitmapFromHBITMAP', 'GdipDisposeImage', 'GdipDeleteGraphics', 'GdipAlloc', 'GdipFree', 'GdipDrawImageI', 'ImmGetOpenStatus', 'ImmReleaseContext', 'ImmGetContext', 'PlaySoundA'], ['CompareFileTime', 'SearchPathA', 'GetShortPathNameA', 'GetFullPathNameA', 'MoveFileA', 'SetCurrentDirectoryA', 'GetFileAttributesA', 'GetLastError', 'CreateDirectoryA', 'SetFileAttributesA', 'Sleep', 'GetTickCount', 'CreateFileA', 'GetFileSize', 'GetModuleFileNameA', 'GetCurrentProcess', 'CopyFileA', 'ExitProcess', 'SetFileTime', 'GetTempPathA', 'GetCommandLineA', 'SetErrorMode', 'lstrcpynA', 'GetDiskFreeSpaceA', 'GlobalUnlock', 'GlobalLock', 'CreateThread', 'LoadLibraryA', 'CreateProcessA', 'GetTempFileNameA', 'lstrlenA', 'lstrcatA', 'GetSystemDirectoryA', 'GetVersion', 'RemoveDirectoryA', 'CloseHandle', 'lstrcmpiA', 'lstrcmpA', 'ExpandEnvironmentStringsA', 'GlobalAlloc', 'WaitForSingleObject', 'GetExitCodeProcess', 'GlobalFree', 'GetModuleHandleA', 'LoadLibraryExA', 'GetProcAddress', 'FreeLibrary', 'MultiByteToWideChar', 'WritePrivateProfileStringA', 'GetPrivateProfileStringA', 'WriteFile', 'ReadFile', 'SetFilePointer', 'MulDiv', 'FindClose', 'FindNextFileA', 'FindFirstFileA', 'DeleteFileA', 'GetWindowsDirectoryA', 'GetAsyncKeyState', 'IsDlgButtonChecked', 'ScreenToClient', 'GetMessagePos', 'CallWindowProcA', 'IsWindowVisible', 'LoadBitmapA', 'CloseClipboard', 'SetClipboardData', 'EmptyClipboard', 'OpenClipboard', 'TrackPopupMenu', 'GetWindowRect', 'AppendMenuA', 'CreatePopupMenu', 'GetSystemMetrics', 'EndDialog', 'EnableMenuItem', 'GetSystemMenu', 'SetClassLongA', 'IsWindowEnabled', 'CheckDlgButton', 'DialogBoxParamA', 'GetClassInfoA', 'CreateWindowExA', 'SystemParametersInfoA', 'RegisterClassA', 'SetDlgItemTextA', 'GetDlgItemTextA', 'MessageBoxIndirectA', 'CharPrevA', 'wvsprintfA', 'DispatchMessageA', 'PeekMessageA', 'DestroyWindow', 'CreateDialogParamA', 'SetTimer', 'SetWindowTextA', 'PostQuitMessage', 'ShowWindow', 'wsprintfA', 'SendMessageTimeoutA', 'FindWindowExA', 'LoadCursorA', 'SetCursor', 'GetWindowLongA', 'GetSysColor', 'CharNextA', 'SetWindowPos', 'ExitWindowsEx', 'IsWindow', 'GetDlgItem', 'SetWindowLongA', 'LoadImageA', 'GetDC', 'EnableWindow', 'InvalidateRect', 'SendMessageA', 'DefWindowProcA', 'BeginPaint', 'GetClientRect', 'FillRect', 'DrawTextA', 'EndPaint', 'SetForegroundWindow', 'SetBkColor', 'GetDeviceCaps', 'DeleteObject', 'CreateBrushIndirect', 'CreateFontIndirectA', 'SetBkMode', 'SetTextColor', 'SelectObject', 'SHBrowseForFolderA', 'SHGetPathFromIDListA', 'SHGetFileInfoA', 'ShellExecuteA', 'SHFileOperationA', 'SHGetSpecialFolderLocation', 'RegEnumKeyA', 'RegOpenKeyExA', 'RegCloseKey', 'RegDeleteKeyA', 'RegDeleteValueA', 'RegCreateKeyExA', 'RegSetValueExA', 'RegQueryValueExA', 'RegEnumValueA', 'ImageList_AddMasked', 'ImageList_Destroy', 'ImageList_Create', 'CoTaskMemFree', 'OleInitialize', 'OleUninitialize', 'CoCreateInstance', 'GetFileVersionInfoSizeA', 'GetFileVersionInfoA', 'VerQueryValueA'], ['CreateWindowExW', 'MessageBoxW', 'MessageBoxA', 'SystemParametersInfoW', 'DestroyIcon', 'SetWindowLongPtrW', 'GetWindowLongPtrW', 'GetClientRect', 'InvalidateRect', 'ReleaseDC', 'GetDC', 'DrawTextW', 'GetDialogBaseUnits', 'EndDialog', 'DialogBoxIndirectParamW', 'MoveWindow', 'SendMessageW', 'IsValidCodePage', 'GetStringTypeW', 'GetFileAttributesExW', 'HeapReAlloc', 'FlushFileBuffers', 'GetCurrentDirectoryW', 'GetACP', 'GetOEMCP', 'GetModuleHandleW', 'MulDiv', 'GetLastError', 'SetDllDirectoryW', 'GetModuleFileNameW', 'GetProcAddress', 'GetCommandLineW', 'GetEnvironmentVariableW', 'GetCPInfo', 'ExpandEnvironmentStringsW', 'CreateDirectoryW', 'GetTempPathW', 'WaitForSingleObject', 'Sleep', 'GetExitCodeProcess', 'CreateProcessW', 'GetStartupInfoW', 'FreeLibrary', 'LoadLibraryExW', 'SetConsoleCtrlHandler', 'FindClose', 'FindFirstFileExW', 'CloseHandle', 'GetCurrentProcess', 'LocalFree', 'FormatMessageW', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetEnvironmentStringsW', 'FreeEnvironmentStringsW', 'GetProcessHeap', 'GetTimeZoneInformation', 'HeapSize', 'WriteConsoleW', 'SetEndOfFile', 'SetEnvironmentVariableW', 'RtlUnwindEx', 'RtlCaptureContext', 'RtlLookupFunctionEntry', 'RtlVirtualUnwind', 'UnhandledExceptionFilter', 'SetUnhandledExceptionFilter', 'TerminateProcess', 'IsProcessorFeaturePresent', 'QueryPerformanceCounter', 'GetCurrentProcessId', 'GetCurrentThreadId', 'GetSystemTimeAsFileTime', 'InitializeSListHead', 'IsDebuggerPresent', 'SetLastError', 'EnterCriticalSection', 'LeaveCriticalSection', 'DeleteCriticalSection', 'InitializeCriticalSectionAndSpinCount', 'TlsAlloc', 'TlsGetValue', 'TlsSetValue', 'TlsFree', 'EncodePointer', 'RaiseException', 'RtlPcToFileHeader', 'GetCommandLineA', 'CreateFileW', 'GetDriveTypeW', 'GetFileInformationByHandle', 'GetFileType', 'PeekNamedPipe', 'SystemTimeToTzSpecificLocalTime', 'FileTimeToSystemTime', 'GetFullPathNameW', 'RemoveDirectoryW', 'FindNextFileW', 'SetStdHandle', 'DeleteFileW', 'ReadFile', 'GetStdHandle', 'WriteFile', 'ExitProcess', 'GetModuleHandleExW', 'HeapFree', 'GetConsoleMode', 'ReadConsoleW', 'SetFilePointerEx', 'GetConsoleOutputCP', 'GetFileSizeEx', 'HeapAlloc', 'FlsAlloc', 'FlsGetValue', 'FlsSetValue', 'FlsFree', 'CompareStringW', 'LCMapStringW', 'OpenProcessToken', 'GetTokenInformation', 'ConvertStringSecurityDescriptorToSecurityDescriptorW', 'ConvertSidToStringSidW', 'SelectObject', 'DeleteObject', 'CreateFontIndirectW'], ['SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'SetFilePointer', 'GetCurrentProcess', 'DuplicateHandle', 'lstrcpynA', 'SetLastError', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'SetStdHandle', 'IsBadCodePtr', 'IsBadReadPtr', 'CompareStringW', 'CompareStringA', 'SetUnhandledExceptionFilter', 'GetStringTypeW', 'GetStringTypeA', 'IsBadWritePtr', 'VirtualAlloc', 'LCMapStringW', 'LCMapStringA', 'SetEnvironmentVariableA', 'VirtualFree', 'HeapCreate', 'HeapDestroy', 'GetEnvironmentVariableA', 'GetFileType', 'GetStdHandle', 'SetHandleCount', 'GetEnvironmentStringsW', 'GetEnvironmentStrings', 'FreeEnvironmentStringsW', 'FreeEnvironmentStringsA', 'UnhandledExceptionFilter', 'GetACP', 'HeapSize', 'TerminateProcess', 'GetLocalTime', 'GetSystemTime', 'GetTimeZoneInformation', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'MultiByteToWideChar', 'WideCharToMultiByte', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'RaiseException', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'GetFileSize', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GetVersion', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'InterlockedIncrement', 'OpenClipboard', 'SetClipboardData', 'EmptyClipboard', 'GetSystemMetrics', 'GetCursorPos', 'MessageBoxA', 'SetWindowPos', 'SendMessageA', 'DestroyCursor', 'SetParent', 'GetClipboardData', 'PostMessageA', 'GetTopWindow', 'GetParent', 'CloseClipboard', 'wsprintfA', 'GetFocus', 'GetClientRect', 'InvalidateRect', 'ValidateRect', 'UpdateWindow', 'EqualRect', 'GetWindowRect', 'SetForegroundWindow', 'IsWindow', 'RegisterClassA', 'DestroyMenu', 'IsChild', 'ReleaseDC', 'IsRectEmpty', 'FillRect', 'GetDC', 'SetCursor', 'LoadCursorA', 'SetCursorPos', 'SetActiveWindow', 'GetSysColor', 'SetWindowLongA', 'GetWindowLongA', 'RedrawWindow', 'EnableWindow', 'IsWindowVisible', 'OffsetRect', 'PtInRect', 'DestroyIcon', 'IntersectRect', 'InflateRect', 'SetRect', 'SetScrollPos', 'SetScrollRange', 'GetScrollRange', 'SetCapture', 'LoadIconA', 'TranslateMessage', 'DrawFrameControl', 'DrawEdge', 'DrawFocusRect', 'WindowFromPoint', 'GetMessageA', 'DispatchMessageA', 'SetRectEmpty', 'RegisterClipboardFormatA', 'CreateIconFromResourceEx', 'CreateIconFromResource', 'DrawIconEx', 'CreatePopupMenu', 'AppendMenuA', 'ModifyMenuA', 'CreateMenu', 'CreateAcceleratorTableA', 'GetDlgCtrlID', 'GetSubMenu', 'EnableMenuItem', 'ClientToScreen', 'EnumDisplaySettingsA', 'LoadImageA', 'SystemParametersInfoA', 'ShowWindow', 'IsWindowEnabled', 'TranslateAcceleratorA', 'GetKeyState', 'CopyAcceleratorTableA', 'PostQuitMessage', 'IsZoomed', 'GetClassInfoA', 'DefWindowProcA', 'GetSystemMenu', 'DeleteMenu', 'GetMenu', 'SetMenu', 'PeekMessageA', 'GetWindowTextA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'GetDlgItem', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'UnregisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'GetClassNameA', 'GetDesktopWindow', 'LoadStringA', 'GetSysColorBrush', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'GetClipRgn', 'CreatePolygonRgn', 'SelectClipRgn', 'DeleteObject', 'CreateDIBitmap', 'GetSystemPaletteEntries', 'CreatePalette', 'StretchBlt', 'SelectPalette', 'RealizePalette', 'GetDIBits', 'GetWindowExtEx', 'GetViewportOrgEx', 'GetWindowOrgEx', 'BeginPath', 'EndPath', 'PathToRegion', 'CreateEllipticRgn', 'CreateRoundRectRgn', 'GetTextColor', 'GetBkMode', 'GetBkColor', 'GetROP2', 'GetStretchBltMode', 'GetPolyFillMode', 'CreateCompatibleBitmap', 'CreateDCA', 'CreateBitmap', 'SelectObject', 'GetObjectA', 'CreatePen', 'PatBlt', 'SetStretchBltMode', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'SaveDC', 'RestoreDC', 'SetBkMode', 'SetPolyFillMode', 'SetROP2', 'SetTextColor', 'SetMapMode', 'SetViewportOrgEx', 'OffsetViewportOrgEx', 'SetViewportExtEx', 'ScaleViewportExtEx', 'SetWindowOrgEx', 'SetWindowExtEx', 'ScaleWindowExtEx', 'GetClipBox', 'ExcludeClipRect', 'MoveToEx', 'LineTo', 'CreateRectRgnIndirect', 'SetBkColor', 'CombineRgn', 'GetTextMetricsA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'midiStreamRestart', 'midiStreamClose', 'midiOutReset', 'midiStreamStop', 'midiStreamOut', 'midiOutPrepareHeader', 'midiStreamProperty', 'midiStreamOpen', 'midiOutUnprepareHeader', 'waveOutOpen', 'waveOutGetNumDevs', 'waveOutClose', 'waveOutReset', 'waveOutPause', 'waveOutWrite', 'waveOutPrepareHeader', 'waveOutUnprepareHeader', 'ClosePrinter', 'DocumentPropertiesA', 'OpenPrinterA', 'RegCloseKey', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'ShellExecuteA', 'Shell_NotifyIconA', 'OleInitialize', 'OleUninitialize', 'CLSIDFromString', 'UnRegisterTypeLib', 'RegisterTypeLib', 'LoadTypeLib', 'ImageList_Destroy', 'ioctlsocket', 'recv', 'getpeername', 'accept', 'recvfrom', 'WSAAsyncSelect', 'closesocket', 'inet_ntoa', 'WSACleanup', 'ChooseColorA', 'GetSaveFileNameA', 'GetOpenFileNameA', 'GetFileTitleA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'recvfrom', 'ioctlsocket', 'recv', 'accept', 'getpeername', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'InterlockedExchange', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'SetFileAttributesA', 'GetFileAttributesA', 'CreateDirectoryA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'RegisterClipboardFormatA', 'GetCapture', 'SetCapture', 'GetScrollRange', 'GetSysColorBrush', 'LoadStringA', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'PeekMessageA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'SetMenu', 'GetMenu', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'FindWindowExA', 'GetWindowTextA', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetWindowLongA', 'GetClassInfoA', 'ReleaseCapture', 'UnregisterClassA', 'SetRectEmpty', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'ExtTextOutA', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'Escape', 'GetTextMetricsA', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'Ellipse', 'DeleteObject', 'SetStretchBltMode', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamProperty', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'WSAAsyncSelect', 'closesocket', 'WSACleanup', 'inet_ntoa', 'recvfrom', 'ioctlsocket', 'recv', 'accept', 'getpeername', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'WideCharToMultiByte', 'MultiByteToWideChar', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'InterlockedExchange', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'CreateProcessA', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'GetMessagePos', 'ScreenToClient', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'RegisterClipboardFormatA', 'GetCapture', 'SetCapture', 'GetScrollRange', 'GetSysColorBrush', 'LoadStringA', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'PeekMessageA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'WaitForInputIdle', 'SetMenu', 'GetMenu', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetDlgItem', 'GetWindowTextA', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetWindowLongA', 'GetClassInfoA', 'ReleaseCapture', 'UnregisterClassA', 'SetRectEmpty', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetForegroundWindow', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'LineTo', 'CreatePen', 'PatBlt', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'ExtTextOutA', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetCurrentObject', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'Escape', 'GetTextMetricsA', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'SelectClipRgn', 'CreatePolygonRgn', 'GetClipRgn', 'Ellipse', 'DeleteObject', 'SetStretchBltMode', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'Shell_NotifyIconA', 'ShellExecuteA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'midiStreamProperty', 'WSAAsyncSelect', 'closesocket', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'WSACleanup', 'accept', 'getpeername', 'MultiByteToWideChar', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'WideCharToMultiByte', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'RtlUnwind', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'ReadFile', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'lstrlenA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'InterlockedExchange', 'GlobalReAlloc', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'GetLastError', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'GetSystemTime', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'DeleteMenu', 'GetSystemMenu', 'DefWindowProcA', 'GetClassInfoA', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'SystemParametersInfoA', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'GetMessagePos', 'CreatePopupMenu', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'SetRect', 'InflateRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'DrawIconEx', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'GetMessageA', 'WindowFromPoint', 'DrawFocusRect', 'DrawEdge', 'DrawFrameControl', 'TranslateMessage', 'LoadIconA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'GetForegroundWindow', 'ScreenToClient', 'UnregisterClassA', 'DispatchMessageA', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetTextMetricsA', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'FillRgn', 'CreateRectRgn', 'CombineRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'CreatePolygonRgn', 'GetClipRgn', 'GetCurrentObject', 'SelectClipRgn', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetStretchBltMode', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA'], ['midiStreamOut', 'midiOutPrepareHeader', 'waveOutUnprepareHeader', 'waveOutPrepareHeader', 'waveOutWrite', 'waveOutPause', 'waveOutReset', 'waveOutClose', 'waveOutGetNumDevs', 'waveOutOpen', 'midiOutUnprepareHeader', 'midiStreamOpen', 'midiStreamStop', 'midiOutReset', 'midiStreamClose', 'midiStreamRestart', 'midiStreamProperty', 'WSAAsyncSelect', 'closesocket', 'recvfrom', 'ioctlsocket', 'inet_ntoa', 'recv', 'WSACleanup', 'accept', 'getpeername', 'SetLastError', 'GetTimeZoneInformation', 'GetVersion', 'WideCharToMultiByte', 'GetACP', 'HeapSize', 'RaiseException', 'GetLocalTime', 'GetSystemTime', 'MultiByteToWideChar', 'GetStartupInfoA', 'GetOEMCP', 'GetCPInfo', 'GetProcessVersion', 'SetErrorMode', 'GlobalFlags', 'GetCurrentThread', 'GetFileTime', 'TlsGetValue', 'LocalReAlloc', 'TlsSetValue', 'TlsFree', 'GlobalHandle', 'TlsAlloc', 'LocalAlloc', 'lstrcmpA', 'GlobalGetAtomNameA', 'GlobalAddAtomA', 'GlobalFindAtomA', 'GlobalDeleteAtom', 'lstrcmpiA', 'SetEndOfFile', 'UnlockFile', 'LockFile', 'FlushFileBuffers', 'DuplicateHandle', 'lstrcpynA', 'FileTimeToLocalFileTime', 'FileTimeToSystemTime', 'LocalFree', 'InterlockedDecrement', 'InterlockedIncrement', 'OpenProcess', 'TerminateProcess', 'GetCurrentProcess', 'GetFileSize', 'SetFilePointer', 'CreateToolhelp32Snapshot', 'Process32First', 'Process32Next', 'CreateSemaphoreA', 'ResumeThread', 'ReleaseSemaphore', 'EnterCriticalSection', 'LeaveCriticalSection', 'GetProfileStringA', 'WriteFile', 'ReadFile', 'GetLastError', 'WaitForMultipleObjects', 'CreateFileA', 'SetEvent', 'FindResourceA', 'LoadResource', 'LockResource', 'GetModuleFileNameA', 'GetCurrentThreadId', 'ExitProcess', 'GlobalSize', 'GlobalFree', 'DeleteCriticalSection', 'InitializeCriticalSection', 'lstrcatA', 'WinExec', 'lstrcpyA', 'FindNextFileA', 'GlobalReAlloc', 'InterlockedExchange', 'HeapFree', 'HeapReAlloc', 'GetProcessHeap', 'HeapAlloc', 'GetFullPathNameA', 'FreeLibrary', 'LoadLibraryA', 'lstrlenA', 'GetVersionExA', 'WritePrivateProfileStringA', 'CreateThread', 'CreateEventA', 'Sleep', 'GlobalAlloc', 'GlobalLock', 'GlobalUnlock', 'FindFirstFileA', 'FindClose', 'GetFileAttributesA', 'DeleteFileA', 'SetCurrentDirectoryA', 'GetVolumeInformationA', 'GetModuleHandleA', 'GetProcAddress', 'MulDiv', 'GetCommandLineA', 'GetTickCount', 'WaitForSingleObject', 'CloseHandle', 'UnhandledExceptionFilter', 'FreeEnvironmentStringsA', 'FreeEnvironmentStringsW', 'GetEnvironmentStrings', 'GetEnvironmentStringsW', 'SetHandleCount', 'GetStdHandle', 'GetFileType', 'GetEnvironmentVariableA', 'HeapDestroy', 'HeapCreate', 'VirtualFree', 'SetEnvironmentVariableA', 'LCMapStringA', 'LCMapStringW', 'VirtualAlloc', 'IsBadWritePtr', 'SetUnhandledExceptionFilter', 'GetStringTypeA', 'GetStringTypeW', 'CompareStringA', 'CompareStringW', 'IsBadReadPtr', 'IsBadCodePtr', 'SetStdHandle', 'RtlUnwind', 'GetMenu', 'SetMenu', 'PeekMessageA', 'IsIconic', 'SetFocus', 'GetActiveWindow', 'GetWindow', 'DestroyAcceleratorTable', 'SetWindowRgn', 'DefWindowProcA', 'GetClassInfoA', 'DeleteMenu', 'GetSystemMenu', 'IsZoomed', 'PostQuitMessage', 'CopyAcceleratorTableA', 'GetKeyState', 'TranslateAcceleratorA', 'IsWindowEnabled', 'ShowWindow', 'LoadImageA', 'EnumDisplaySettingsA', 'ClientToScreen', 'EnableMenuItem', 'GetSubMenu', 'GetDlgCtrlID', 'CreateAcceleratorTableA', 'CreateMenu', 'ModifyMenuA', 'AppendMenuA', 'CreatePopupMenu', 'GetMessagePos', 'DrawIconEx', 'ChildWindowFromPointEx', 'CopyRect', 'LoadBitmapA', 'WinHelpA', 'KillTimer', 'SetTimer', 'ReleaseCapture', 'GetCapture', 'SetCapture', 'GetScrollRange', 'SetScrollRange', 'SetScrollPos', 'InflateRect', 'SetRect', 'IntersectRect', 'GetSysColorBrush', 'DestroyIcon', 'PtInRect', 'OffsetRect', 'IsWindowVisible', 'EnableWindow', 'RedrawWindow', 'GetWindowLongA', 'SetWindowLongA', 'GetSysColor', 'SetActiveWindow', 'SetCursorPos', 'LoadCursorA', 'SetCursor', 'GetDC', 'FillRect', 'IsRectEmpty', 'ReleaseDC', 'IsChild', 'DestroyMenu', 'SetForegroundWindow', 'GetWindowRect', 'EqualRect', 'UpdateWindow', 'ValidateRect', 'InvalidateRect', 'GetClientRect', 'GetFocus', 'GetParent', 'GetTopWindow', 'PostMessageA', 'IsWindow', 'SetParent', 'DestroyCursor', 'SendMessageA', 'SetWindowPos', 'MessageBoxA', 'GetCursorPos', 'GetSystemMetrics', 'EmptyClipboard', 'SetClipboardData', 'OpenClipboard', 'GetClipboardData', 'CloseClipboard', 'wsprintfA', 'CreateIconFromResource', 'CreateIconFromResourceEx', 'RegisterClipboardFormatA', 'SetRectEmpty', 'DispatchMessageA', 'GetMessageA', 'WindowFromPoint', 'DrawEdge', 'DrawFrameControl', 'LoadIconA', 'TranslateMessage', 'SystemParametersInfoA', 'GetDesktopWindow', 'GetClassNameA', 'GetWindowThreadProcessId', 'FindWindowA', 'GetDlgItem', 'GetWindowTextA', 'GetForegroundWindow', 'ScreenToClient', 'UnregisterClassA', 'DrawFocusRect', 'GetWindowTextLengthA', 'CharUpperA', 'GetWindowDC', 'BeginPaint', 'EndPaint', 'TabbedTextOutA', 'DrawTextA', 'GrayStringA', 'DestroyWindow', 'CreateDialogIndirectParamA', 'EndDialog', 'GetNextDlgTabItem', 'GetWindowPlacement', 'RegisterWindowMessageA', 'GetLastActivePopup', 'GetMessageTime', 'RemovePropA', 'CallWindowProcA', 'GetPropA', 'UnhookWindowsHookEx', 'SetPropA', 'GetClassLongA', 'CallNextHookEx', 'SetWindowsHookExA', 'CreateWindowExA', 'GetMenuItemID', 'GetMenuItemCount', 'RegisterClassA', 'GetScrollPos', 'AdjustWindowRectEx', 'MapWindowPoints', 'SendDlgItemMessageA', 'ScrollWindowEx', 'IsDialogMessageA', 'SetWindowTextA', 'MoveWindow', 'CheckMenuItem', 'SetMenuItemBitmaps', 'GetMenuState', 'GetMenuCheckMarkDimensions', 'LoadStringA', 'Escape', 'ExtTextOutA', 'TextOutA', 'RectVisible', 'PtVisible', 'GetViewportExtEx', 'ExtSelectClipRgn', 'CreateSolidBrush', 'GetStockObject', 'CreateFontIndirectA', 'EndPage', 'EndDoc', 'DeleteDC', 'StartDocA', 'StartPage', 'BitBlt', 'CreateCompatibleDC', 'Ellipse', 'Rectangle', 'LPtoDP', 'DPtoLP', 'GetTextMetricsA', 'RoundRect', 'GetTextExtentPoint32A', 'GetDeviceCaps', 'CreateRectRgnIndirect', 'SetBkColor', 'LineTo', 'MoveToEx', 'ExcludeClipRect', 'GetClipBox', 'ScaleWindowExtEx', 'SetWindowExtEx', 'CombineRgn', 'CreateRectRgn', 'FillRgn', 'PatBlt', 'CreatePen', 'GetObjectA', 'SelectObject', 'CreateBitmap', 'CreateDCA', 'CreateCompatibleBitmap', 'GetPolyFillMode', 'GetStretchBltMode', 'GetROP2', 'GetBkColor', 'GetBkMode', 'GetTextColor', 'CreateRoundRectRgn', 'CreateEllipticRgn', 'PathToRegion', 'EndPath', 'BeginPath', 'GetWindowOrgEx', 'GetViewportOrgEx', 'GetWindowExtEx', 'GetDIBits', 'SetWindowOrgEx', 'ScaleViewportExtEx', 'SetViewportExtEx', 'OffsetViewportOrgEx', 'SetViewportOrgEx', 'SetMapMode', 'SetTextColor', 'RealizePalette', 'SelectPalette', 'StretchBlt', 'CreatePalette', 'GetSystemPaletteEntries', 'CreateDIBitmap', 'DeleteObject', 'SelectClipRgn', 'CreatePolygonRgn', 'GetCurrentObject', 'GetClipRgn', 'SetROP2', 'SetPolyFillMode', 'SetBkMode', 'RestoreDC', 'SaveDC', 'SetStretchBltMode', 'OpenPrinterA', 'DocumentPropertiesA', 'ClosePrinter', 'RegOpenKeyExA', 'RegSetValueExA', 'RegQueryValueA', 'RegCreateKeyExA', 'RegCloseKey', 'ShellExecuteA', 'Shell_NotifyIconA', 'CLSIDFromString', 'OleUninitialize', 'OleInitialize', 'LoadTypeLib', 'RegisterTypeLib', 'UnRegisterTypeLib', 'ImageList_Destroy', 'ChooseColorA', 'GetFileTitleA', 'GetSaveFileNameA', 'GetOpenFileNameA']] \ No newline at end of file diff --git a/PYAS_Version.py b/PYAS_Version.py index 4297380..cfc2e05 100644 --- a/PYAS_Version.py +++ b/PYAS_Version.py @@ -1,7 +1,7 @@ import pyinstaller_versionfile pyinstaller_versionfile.create_versionfile( output_file="versionfile.txt", -version='2.7.7', +version='2.7.8', company_name="PYAS Security", file_description="Python Antivirus Software", internal_name="PYAS",